diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2016-04-22 01:58:31 +0200 |
---|---|---|
committer | Andreas Oberritter <obi@opendreambox.org> | 2020-07-02 12:17:24 +0200 |
commit | b4d1a1d80a3c1cc2b8e3b16fd581d860f1b12841 (patch) | |
tree | 63c98284baac17aea6e86b6ce22e24cfe3d5dce0 /meta/recipes-devtools/apt/apt_1.2.31.bb | |
parent | 0c9016a511577771ae66b12496efc1c222a273c9 (diff) | |
download | openembedded-core-contrib-b4d1a1d80a3c1cc2b8e3b16fd581d860f1b12841.tar.gz openembedded-core-contrib-b4d1a1d80a3c1cc2b8e3b16fd581d860f1b12841.tar.bz2 openembedded-core-contrib-b4d1a1d80a3c1cc2b8e3b16fd581d860f1b12841.zip |
apt: merge apt.inc into .bb
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Diffstat (limited to 'meta/recipes-devtools/apt/apt_1.2.31.bb')
-rw-r--r-- | meta/recipes-devtools/apt/apt_1.2.31.bb | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/meta/recipes-devtools/apt/apt_1.2.31.bb b/meta/recipes-devtools/apt/apt_1.2.31.bb index 306e836fbd..1c71db5513 100644 --- a/meta/recipes-devtools/apt/apt_1.2.31.bb +++ b/meta/recipes-devtools/apt/apt_1.2.31.bb @@ -1,6 +1,45 @@ +SUMMARY = "Advanced front-end for dpkg" +LICENSE = "GPLv2.0+" +SECTION = "base" DEPENDS = "curl db zlib" RDEPENDS_${PN} = "dpkg bash debianutils" -require apt.inc + +SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/${BPN}/${PV}/${BPN}_${PV}.tar.xz \ + file://use-host.patch \ + file://makerace.patch \ + file://no-nls-dpkg.patch \ + file://fix-gcc-4.6-null-not-defined.patch \ + file://truncate-filename.patch \ + file://nodoc.patch \ + file://disable-configure-in-makefile.patch \ + file://disable-test.patch \ + file://0001-environment.mak-musl-based-systems-can-generate-shar.patch \ + file://0001-apt-1.2.12-Fix-musl-build.patch \ + file://0001-Include-array.h-for-std-array.patch \ + file://gcc_4.x_apt-pkg-contrib-strutl.cc-Include-array-header.patch \ + file://gcc_4.x_Revert-avoid-changing-the-global-LC_TIME-for-Release.patch \ + file://gcc_4.x_Revert-use-de-localed-std-put_time-instead-rolling-o.patch \ + file://apt.conf.in \ + " +SRC_URI[md5sum] = "d30eed9304e82ea8238c854b5c5a34d9" +SRC_URI[sha256sum] = "03ded4f5e9b8d43ecec083704b2dcabf20c182ed382db9ac7251da0b0b038059" +LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +# the package is taken from snapshots.debian.org; that source is static and goes stale +# so we check the latest upstream from a directory that does get updated +UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/a/apt/" + +inherit autotools gettext useradd + +EXTRA_AUTORECONF = "--exclude=autopoint,autoheader" + +do_configure_prepend() { + rm -rf ${S}/buildlib/config.sub + rm -rf ${S}/buildlib/config.guess +} + +USERADD_PACKAGES = "${PN}" +USERADD_PARAM_${PN} = "--system --no-create-home --home-dir /nonexistent --shell /bin/false --user-group _apt" USE_NLS_class-native = "yes" |