Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
Make linux-uclibcgnueabi an alias for linux-uclibceabi since it's
|
||||
what we use in buildroot toolchains.
|
||||
Slightly tweak musleabi to match the buildroot-used tuple.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
|
||||
diff -Nura dpkg-1.18.3.orig/ostable dpkg-1.18.3/ostable
|
||||
--- dpkg-1.18.3.orig/ostable 2015-10-15 08:05:04.471762555 -0300
|
||||
+++ dpkg-1.18.3/ostable 2015-10-15 08:11:05.206132648 -0300
|
||||
@@ -12,10 +12,10 @@
|
||||
# system part of the output of the GNU config.guess script.
|
||||
#
|
||||
# <Debian name> <GNU name> <config.guess regex>
|
||||
-uclibceabi-linux linux-uclibceabi linux[^-]*-uclibceabi
|
||||
+uclibceabi-linux linux-uclibceabi linux[^-]*-uclibc.*eabi
|
||||
uclibc-linux linux-uclibc linux[^-]*-uclibc
|
||||
musleabihf-linux linux-musleabihf linux[^-]*-musleabihf
|
||||
-musl-linux linux-musl linux[^-]*-musl
|
||||
+musl-linux linux-musl linux[^-]*-musl[^-]*
|
||||
gnueabihf-linux linux-gnueabihf linux[^-]*-gnueabihf
|
||||
gnueabi-linux linux-gnueabi linux[^-]*-gnueabi
|
||||
gnuabin32-linux linux-gnuabin32 linux[^-]*-gnuabin32
|
||||
@@ -34,6 +34,6 @@
|
||||
bsd-netbsd netbsd netbsd[^-]*
|
||||
bsd-openbsd openbsd openbsd[^-]*
|
||||
sysv-solaris solaris solaris[^-]*
|
||||
-uclibceabi-uclinux uclinux-uclibceabi uclinux[^-]*-uclibceabi
|
||||
+uclibceabi-uclinux uclinux-uclibceabi uclinux[^-]*-uclibc.*eabi
|
||||
uclibc-uclinux uclinux-uclibc uclinux[^-]*(-uclibc.*)?
|
||||
tos-mint mint mint[^-]*
|
||||
@@ -0,0 +1,19 @@
|
||||
Just warn on missing arch
|
||||
|
||||
Some architectures are not listed in dpkg list (e.g. mips64el, xtensa, sh4a).
|
||||
Don't break the build for that.
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
diff -Nuar dpkg-1.16.15-orig/m4/dpkg-arch.m4 dpkg-1.16.15/m4/dpkg-arch.m4
|
||||
--- dpkg-1.16.15-orig/m4/dpkg-arch.m4 2014-05-30 02:47:25.000000000 +0300
|
||||
+++ dpkg-1.16.15/m4/dpkg-arch.m4 2015-01-16 06:55:19.701596362 +0200
|
||||
@@ -57,7 +57,7 @@
|
||||
AC_MSG_CHECKING([dpkg architecture name])
|
||||
_DPKG_ARCHITECTURE([DEB_HOST_ARCH], [dpkg_arch])
|
||||
if test "x$dpkg_arch" = "x"; then
|
||||
- AC_MSG_ERROR([cannot determine host dpkg architecture])
|
||||
+ AC_MSG_WARN([cannot determine host dpkg architecture])
|
||||
else
|
||||
AC_MSG_RESULT([$dpkg_arch])
|
||||
fi
|
||||
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_START_STOP_DAEMON
|
||||
bool "start-stop-daemon"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
start-stop-daemon is used to control the creation and termination
|
||||
of system-level processes.
|
||||
|
||||
https://tracker.debian.org/pkg/dpkg
|
||||
@@ -0,0 +1,2 @@
|
||||
# From http://ftp.de.debian.org/debian/pool/main/d/dpkg/dpkg_1.18.4.dsc
|
||||
sha256 fe89243868888ce715bf45861f26264f767d4e4dbd0d6f1a26ce60bbbbf106da dpkg_1.18.4.tar.xz
|
||||
@@ -0,0 +1,39 @@
|
||||
################################################################################
|
||||
#
|
||||
# start-stop-daemon
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# Debian start-stop-daemon is part of dpkg. Since start-stop-daemon is the only
|
||||
# interesting tool in it, we call the buildroot package start-stop-daemon.
|
||||
|
||||
START_STOP_DAEMON_VERSION = 1.18.4
|
||||
START_STOP_DAEMON_SOURCE = dpkg_$(START_STOP_DAEMON_VERSION).tar.xz
|
||||
START_STOP_DAEMON_SITE = http://snapshot.debian.org/archive/debian/20151225T154922Z/pool/main/d/dpkg
|
||||
START_STOP_DAEMON_CONF_OPTS = \
|
||||
--disable-dselect \
|
||||
--disable-update-alternatives \
|
||||
--disable-install-info \
|
||||
--exec-prefix=/
|
||||
START_STOP_DAEMON_CONF_ENV = \
|
||||
dpkg_cv_va_copy=yes \
|
||||
dpkg_cv_c99_snprintf=yes \
|
||||
DPKG_DEVEL_MODE=1
|
||||
START_STOP_DAEMON_DEPENDENCIES = host-pkgconf \
|
||||
$(if $(BR2_PACKAGE_BUSYBOX),busybox)
|
||||
# Patching m4/dpkg-arch.m4
|
||||
START_STOP_DAEMON_AUTORECONF = YES
|
||||
START_STOP_DAEMON_LICENSE = GPLv2+
|
||||
START_STOP_DAEMON_LICENSE_FILES = COPYING
|
||||
|
||||
define START_STOP_DAEMON_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/lib/compat
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/utils
|
||||
endef
|
||||
|
||||
define START_STOP_DAEMON_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 -D $(@D)/utils/start-stop-daemon \
|
||||
$(TARGET_DIR)/sbin/start-stop-daemon
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user