app-arch/dpkg: Old.
authorJeroen Roovers <jer@gentoo.org>
Sat, 31 Mar 2018 10:51:24 +0000 (12:51 +0200)
committerJeroen Roovers <jer@gentoo.org>
Sat, 31 Mar 2018 10:51:24 +0000 (12:51 +0200)
Package-Manager: Portage-2.3.27, Repoman-2.3.9

app-arch/dpkg/Manifest
app-arch/dpkg/dpkg-1.17.26.ebuild [deleted file]
app-arch/dpkg/dpkg-1.18.18.ebuild [deleted file]
app-arch/dpkg/dpkg-1.19.0.4.ebuild [deleted file]
app-arch/dpkg/files/dpkg-1.17.0-gzip-rsyncable.patch [deleted file]
app-arch/dpkg/files/dpkg-1.17.1-flags.patch [deleted file]

index 78b2ebc9beaaf23a75eb546d5c551d6ba8b155e3..832ba163aa0a67ec50f5305916f90e077ce6a581 100644 (file)
@@ -1,4 +1 @@
-DIST dpkg_1.17.26.tar.xz 4410860 BLAKE2B ebb4676afc981ec3f08e4c6f2b7bd6ca6951051cfafb2b3cda4b7cad3d05b1ad8a947d5554338d6397bdc1d61f6684c6ed3f597b7d88822ce5bb45a98ba396d2 SHA512 4d2f2a7691dd34d47b62ec1f602d9bab612b151f05362607ec8e31037c4ba0baf5d609c46352240e9806e5781db8df9781e8a0ee9fd24faf54f8b43244a7e538
-DIST dpkg_1.18.18.tar.xz 4501988 BLAKE2B 62133cefc40ef3668837906a014cbb12f007402105c6b182d13f6b522af2350af6fe3b4f3dfda1865fa1742da70cb384f4bec4dc897aedfce23ce379dec41c48 SHA512 7682c8ac523ff710acd6742b9a884ed8ec8537e3b38496f871f112fdfd2f874af6d676cfef2d31d2474c5637df043838c814ef4038097b009cf06b3d4e66029c
-DIST dpkg_1.19.0.4.tar.xz 4559160 BLAKE2B 544927e07443ca6ba4c1c965e08940aeee1c61ce689a6c3819f78e900e167becafbc1c9845211cd49ffcf05ebe0149a43df1debb857d899c33657157ef642ebd SHA512 3452889a0b5820372a9dd919becff694d4814f12a77b633f0c5f75f2a3bf6c883894b11dcc93e3be591bec42e15ae9824c2496c470962691759525f6aa42f250
 DIST dpkg_1.19.0.5.tar.xz 4557428 BLAKE2B 99c31705bfad1cfa024366c788264f4e747a7143f87c581730797975303c1054003e41fd65ecf80df1dc053ba87c0e8449ec574ddcb158228b41ae57a23db18f SHA512 60d7198ffe6ea759c30ad82143b3107d41ce59224b853cb5a7beb79af0de6ba6a69414c365e6b3555a0a9c60e3cf9b543a3a448d80a734be38ccecb77ae963a9
diff --git a/app-arch/dpkg/dpkg-1.17.26.ebuild b/app-arch/dpkg/dpkg-1.17.26.ebuild
deleted file mode 100644 (file)
index b967679..0000000
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils multilib autotools toolchain-funcs
-
-DESCRIPTION="Package maintenance system for Debian"
-HOMEPAGE="https://packages.qa.debian.org/dpkg"
-SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
-IUSE="+bzip2 +lzma nls selinux test unicode +update-alternatives +zlib"
-
-RDEPEND="
-       >=dev-lang/perl-5.6.0:=
-       dev-perl/TimeDate
-       >=sys-libs/ncurses-5.2-r7:0=
-       bzip2? ( app-arch/bzip2 )
-       lzma? ( app-arch/xz-utils )
-       selinux? ( sys-libs/libselinux )
-       zlib? ( >=sys-libs/zlib-1.1.4 )
-"
-DEPEND="
-       ${RDEPEND}
-       app-arch/xz-utils
-       sys-devel/flex
-       virtual/pkgconfig
-       nls? (
-               app-text/po4a
-               >=sys-devel/gettext-0.18.2
-       )
-       test? (
-               dev-perl/DateTime-Format-DateParse
-               dev-perl/IO-String
-               dev-perl/Test-Pod
-               virtual/perl-Test-Harness
-       )
-"
-
-DOCS=( ChangeLog THANKS TODO )
-
-src_prepare() {
-       # do not expect Debian's gzip --rsyncable extension
-       epatch "${FILESDIR}"/${PN}-1.17.0-gzip-rsyncable.patch
-
-       epatch "${FILESDIR}"/${PN}-1.17.1-flags.patch
-
-       # Force the use of the running bash for get-version (this file is never
-       # installed, so no need to worry about hardcoding a temporary bash)
-       sed -i -e '1c\#!'"${BASH}" get-version || die
-
-       if [[ ${CHOST} == mips64*-linux-gnu ]] ; then
-               # Debian targets use custom full tuples.  Map the default one
-               # based on the ABI we're using.
-               local abi
-               if [[ ${ABI} == "n64" ]] ; then
-                       abi="mips64"
-               else
-                       abi="mipsn32"
-               fi
-               printf "gnu-linux-mips64 ${abi}\ngnu-linux-mips64el ${abi}el\n" >> triplettable
-       fi
-
-       use nls && strip-linguas -i po
-
-       eautoreconf
-}
-
-src_configure() {
-       tc-export CC
-       econf \
-               $(use_enable nls) \
-               $(use_enable unicode) \
-               $(use_enable update-alternatives) \
-               $(use_with bzip2 bz2) \
-               $(use_with lzma liblzma) \
-               $(use_with selinux) \
-               $(use_with zlib) \
-               --disable-compiler-warnings \
-               --disable-dselect \
-               --disable-silent-rules \
-               --disable-start-stop-daemon \
-               --localstatedir="${EPREFIX}"/var
-}
-
-src_compile() {
-       emake AR=$(tc-getAR)
-}
-
-src_install() {
-       default
-
-       keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
-       keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
-}
diff --git a/app-arch/dpkg/dpkg-1.18.18.ebuild b/app-arch/dpkg/dpkg-1.18.18.ebuild
deleted file mode 100644 (file)
index 7a0b17c..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils multilib autotools toolchain-funcs
-
-DESCRIPTION="Package maintenance system for Debian"
-HOMEPAGE="https://packages.qa.debian.org/dpkg"
-SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
-IUSE="+bzip2 +lzma nls selinux test unicode +update-alternatives +zlib"
-
-RDEPEND="
-       >=dev-lang/perl-5.14.2:=
-       bzip2? ( app-arch/bzip2 )
-       lzma? ( app-arch/xz-utils )
-       selinux? ( sys-libs/libselinux )
-       zlib? ( >=sys-libs/zlib-1.1.4 )
-"
-DEPEND="
-       ${RDEPEND}
-       app-arch/xz-utils
-       sys-devel/flex
-       virtual/pkgconfig
-       nls? (
-               app-text/po4a
-               >=sys-devel/gettext-0.18.2
-       )
-       test? (
-               dev-perl/IO-String
-               dev-perl/Test-Pod
-               virtual/perl-Test-Harness
-       )
-"
-
-DOCS=(
-       ChangeLog
-       THANKS
-       TODO
-)
-PATCHES=(
-       "${FILESDIR}"/${PN}-1.18.12-dpkg_buildpackage-test.patch
-       "${FILESDIR}"/${PN}-1.18.12-flags.patch
-       "${FILESDIR}"/${PN}-1.18.12-rsyncable.patch
-)
-
-src_prepare() {
-       use nls && strip-linguas -i po
-
-       default
-
-       eautoreconf
-}
-
-src_configure() {
-       tc-export CC
-       econf \
-               $(use_enable nls) \
-               $(use_enable unicode) \
-               $(use_enable update-alternatives) \
-               $(use_with bzip2 libbz2) \
-               $(use_with lzma liblzma) \
-               $(use_with selinux libselinux) \
-               $(use_with zlib libz) \
-               --disable-compiler-warnings \
-               --disable-dselect \
-               --disable-silent-rules \
-               --disable-start-stop-daemon \
-               --localstatedir="${EPREFIX}"/var \
-               --without-libmd
-}
-
-src_compile() {
-       emake AR=$(tc-getAR)
-}
-
-src_install() {
-       default
-
-       keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
-       keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
-
-       prune_libtool_files
-}
diff --git a/app-arch/dpkg/dpkg-1.19.0.4.ebuild b/app-arch/dpkg/dpkg-1.19.0.4.ebuild
deleted file mode 100644 (file)
index 88cfc19..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils multilib autotools toolchain-funcs
-
-DESCRIPTION="Package maintenance system for Debian"
-HOMEPAGE="https://packages.qa.debian.org/dpkg"
-SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
-IUSE="+bzip2 +lzma nls selinux test unicode +update-alternatives +zlib"
-
-RDEPEND="
-       >=dev-lang/perl-5.14.2:=
-       bzip2? ( app-arch/bzip2 )
-       lzma? ( app-arch/xz-utils )
-       selinux? ( sys-libs/libselinux )
-       zlib? ( >=sys-libs/zlib-1.1.4 )
-"
-DEPEND="
-       ${RDEPEND}
-       app-arch/xz-utils
-       sys-devel/flex
-       virtual/pkgconfig
-       nls? (
-               app-text/po4a
-               >=sys-devel/gettext-0.18.2
-       )
-       test? (
-               dev-perl/IO-String
-               dev-perl/Test-Pod
-               virtual/perl-Test-Harness
-       )
-"
-
-DOCS=(
-       ChangeLog
-       THANKS
-       TODO
-)
-PATCHES=(
-       "${FILESDIR}"/${PN}-1.18.12-dpkg_buildpackage-test.patch
-       "${FILESDIR}"/${PN}-1.18.12-flags.patch
-       "${FILESDIR}"/${PN}-1.18.12-rsyncable.patch
-)
-
-src_prepare() {
-       use nls && strip-linguas -i po
-
-       default
-
-       eautoreconf
-}
-
-src_configure() {
-       tc-export CC
-       econf \
-               $(use_enable nls) \
-               $(use_enable unicode) \
-               $(use_enable update-alternatives) \
-               $(use_with bzip2 libbz2) \
-               $(use_with lzma liblzma) \
-               $(use_with selinux libselinux) \
-               $(use_with zlib libz) \
-               --disable-compiler-warnings \
-               --disable-dselect \
-               --disable-silent-rules \
-               --disable-start-stop-daemon \
-               --localstatedir="${EPREFIX}"/var \
-               --without-libmd
-}
-
-src_compile() {
-       emake AR=$(tc-getAR)
-}
-
-src_install() {
-       default
-
-       keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
-       keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
-
-       prune_libtool_files
-}
diff --git a/app-arch/dpkg/files/dpkg-1.17.0-gzip-rsyncable.patch b/app-arch/dpkg/files/dpkg-1.17.0-gzip-rsyncable.patch
deleted file mode 100644 (file)
index f956ca5..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/scripts/Dpkg/Compression.pm
-+++ b/scripts/Dpkg/Compression.pm
-@@ -52,7 +52,7 @@
- my $COMP = {
-     gzip => {
-       file_ext => 'gz',
--      comp_prog => [ 'gzip', '--no-name', '--rsyncable' ],
-+      comp_prog => [ 'gzip', '--no-name' ],
-       decomp_prog => [ 'gunzip' ],
-       default_level => 9,
-     },
diff --git a/app-arch/dpkg/files/dpkg-1.17.1-flags.patch b/app-arch/dpkg/files/dpkg-1.17.1-flags.patch
deleted file mode 100644 (file)
index 9517714..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -104,8 +104,6 @@
- # Checks for the build machinery.
- AC_DEFINE(LIBDPKG_VOLATILE_API, 1, [Acknowledge the volatility of the API.])
- DPKG_COMPILER_WARNINGS
--DPKG_COMPILER_OPTIMISATIONS
--DPKG_LINKER_OPTIMISATIONS
- DPKG_ARCHITECTURE
- AC_CONFIG_FILES([ Makefile