Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/dpkg/
Date: Tue, 03 Jan 2023 02:46:54
Message-Id: 1672713981.12673e8b384c2c56ed51a82f22303915ec0b0b82.gyakovlev@gentoo
1 commit: 12673e8b384c2c56ed51a82f22303915ec0b0b82
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 02:41:28 2023 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 02:46:21 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12673e8b
7
8 app-arch/dpkg: add 1.21.15
9
10 libmd no longer optional.
11 modernize ebuild a bit.
12 hackfix buffer overflow in tests.
13
14 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
15
16 app-arch/dpkg/Manifest | 1 +
17 app-arch/dpkg/dpkg-1.21.15.ebuild | 103 ++++++++++++++++++++++++++++++++++++++
18 2 files changed, 104 insertions(+)
19
20 diff --git a/app-arch/dpkg/Manifest b/app-arch/dpkg/Manifest
21 index 23cd031b0a4c..85daa766a78c 100644
22 --- a/app-arch/dpkg/Manifest
23 +++ b/app-arch/dpkg/Manifest
24 @@ -2,3 +2,4 @@ DIST dpkg_1.20.12.tar.xz 5009108 BLAKE2B 47ecb53c331503c72081a4c472acd6e94a5b7fc
25 DIST dpkg_1.20.9.tar.xz 4954428 BLAKE2B 4e04f7a90c8696971895081e18b220d9dee4bc5930428f131556ae71c673e61e18c363e279b566c2218da60a5aca421807c14cf518952502e707c7397769097b SHA512 904a4742f5f340dc65b2137364dce102a0b2eb42ccedb2a73f79c207362c699fbffaaf1379f1f6c8b8b0e490321af1d03c34b50ebe0c703f5ce8a7f75f17a839
26 DIST dpkg_1.21.1.tar.xz 4986936 BLAKE2B f5b0f9fe7ac5fe7ba47191a9e467356e748418846ce0fc9f3c61d731e035eb096932848b15e6a85a15938d3bbd6fa069c786ab0e89c77119958fe632a91c309f SHA512 3f3f263e1300f3e4b55e84521847703dcfe465aa54829a69c31c174a2ad5e8b6a8a251da7c6020d31a38e9e6744113924a71e9579469e32289328e91a48db07f
27 DIST dpkg_1.21.11.tar.xz 5147576 BLAKE2B c6854e9b3d9db9744675104ec477d0967a7de7fad1b9774fcfce3be6f7cfe587ea09b4824764f4cf7ab658fcb92864d57da0e2a5f601c7e9dc253adbda01e1b0 SHA512 ed93ccb6b39779c9aa03c4d3505c5c3f70cb198445d95d14eb119f8d5382539fe529e46c062b89f27a7b96ad44fe1d48c9cb30be76dd5c3dbf716af2b25d7b48
28 +DIST dpkg_1.21.15.tar.xz 5350148 BLAKE2B f26611db365266ef9f43484c20d3150889238b34b156cac26f0ae8ae9572e7e4a9839e08a0073a25c886cd2891fc6d84afc97262ae6992267b47fa6e86c03a33 SHA512 eb31db63dd454048c3b7539b539720ed71239303ca679df92b934e971914d63dd771da09149054048e24dde1f5627ee24d43dbd8782ca1dc28c4a2bd3ed8f26a
29
30 diff --git a/app-arch/dpkg/dpkg-1.21.15.ebuild b/app-arch/dpkg/dpkg-1.21.15.ebuild
31 new file mode 100644
32 index 000000000000..2a5678759150
33 --- /dev/null
34 +++ b/app-arch/dpkg/dpkg-1.21.15.ebuild
35 @@ -0,0 +1,103 @@
36 +# Copyright 1999-2023 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=8
40 +inherit autotools toolchain-funcs
41 +
42 +DESCRIPTION="Package maintenance system for Debian"
43 +HOMEPAGE="https://packages.qa.debian.org/dpkg"
44 +SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
49 +IUSE="+bzip2 +lzma nls selinux static-libs test +update-alternatives +zlib"
50 +RESTRICT="!test? ( test )"
51 +
52 +RDEPEND="
53 + >=app-arch/gzip-1.7
54 + >=app-arch/tar-1.34-r1
55 + app-crypt/libmd
56 + >=dev-lang/perl-5.14.2:=
57 + sys-libs/ncurses:=[unicode(+)]
58 + bzip2? ( app-arch/bzip2 )
59 + lzma? ( app-arch/xz-utils )
60 + nls? ( virtual/libintl )
61 + selinux? ( sys-libs/libselinux )
62 + zlib? ( >=sys-libs/zlib-1.1.4 )
63 +"
64 +DEPEND="
65 + ${RDEPEND}
66 + app-arch/xz-utils
67 + virtual/pkgconfig
68 + test? (
69 + dev-perl/IO-String
70 + dev-perl/Test-Pod
71 + virtual/perl-Test-Harness
72 + )
73 +"
74 +BDEPEND="
75 + sys-devel/flex
76 + nls? (
77 + app-text/po4a
78 + >=sys-devel/gettext-0.18.2
79 + )
80 +"
81 +
82 +PATCHES=(
83 + "${FILESDIR}"/${PN}-1.18.12-flags.patch
84 +)
85 +
86 +src_prepare() {
87 + default
88 +
89 + sed -i -e 's|\<ar\>|${AR}|g' src/at/deb-format.at src/at/testsuite || die
90 +
91 + # upstream sets 200, that's a bit too short.
92 + # it may not fail in real usage, but fails with /var/tmp/portage/$cat/pkg added.
93 + # on my system it's exactly 201 characters.
94 + sed -i -e 's/char\ buf\[200\]/char\ buf\[300\]/' src/deb/extract.c || die
95 +
96 + eautoreconf
97 +}
98 +
99 +src_configure() {
100 + tc-export AR CC
101 +
102 + local myconf=(
103 + --disable-compiler-warnings
104 + --disable-devel-docs
105 + --disable-dselect
106 + --disable-start-stop-daemon
107 + --enable-unicode
108 + --localstatedir="${EPREFIX}"/var
109 + $(use_enable nls)
110 + $(use_enable update-alternatives)
111 + $(use_with bzip2 libbz2)
112 + $(use_with lzma liblzma)
113 + $(use_with selinux libselinux)
114 + $(use_with zlib libz)
115 +
116 + )
117 +
118 + econf "${myconf[@]}"
119 +}
120 +
121 +src_compile() {
122 + emake AR="$(tc-getAR)"
123 +}
124 +
125 +src_install() {
126 + local DOCS=( debian/changelog THANKS TODO )
127 + default
128 +
129 + keepdir \
130 + /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} \
131 + /var/lib/dpkg/{alternatives,info,parts,updates}
132 +
133 + find "${ED}" -name '*.la' -delete || die
134 +
135 + if ! use static-libs; then
136 + find "${ED}" -name '*.a' -delete || die
137 + fi
138 +}