Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/dpkg: dpkg-1.17.4.ebuild ChangeLog dpkg-1.17.1-r1.ebuild
Date: Sat, 07 Dec 2013 13:38:48
Message-Id: 20131207133839.62BAE2004B@flycatcher.gentoo.org
1 jer 13/12/07 13:38:39
2
3 Modified: ChangeLog
4 Added: dpkg-1.17.4.ebuild
5 Removed: dpkg-1.17.1-r1.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.244 app-arch/dpkg/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?rev=1.244&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?rev=1.244&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?r1=1.243&r2=1.244
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v
21 retrieving revision 1.243
22 retrieving revision 1.244
23 diff -u -r1.243 -r1.244
24 --- ChangeLog 5 Dec 2013 15:26:51 -0000 1.243
25 +++ ChangeLog 7 Dec 2013 13:38:39 -0000 1.244
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-arch/dpkg
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.243 2013/12/05 15:26:51 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.244 2013/12/07 13:38:39 jer Exp $
31 +
32 +*dpkg-1.17.4 (07 Dec 2013)
33 +
34 + 07 Dec 2013; Jeroen Roovers <jer@g.o> -dpkg-1.17.1-r1.ebuild,
35 + +dpkg-1.17.4.ebuild:
36 + Version bump.
37
38 *dpkg-1.17.3 (05 Dec 2013)
39
40
41
42
43 1.1 app-arch/dpkg/dpkg-1.17.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/dpkg-1.17.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/dpkg-1.17.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dpkg-1.17.4.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.17.4.ebuild,v 1.1 2013/12/07 13:38:39 jer Exp $
53
54 EAPI=5
55 inherit eutils multilib autotools toolchain-funcs
56
57 DESCRIPTION="Package maintenance system for Debian"
58 HOMEPAGE="http://packages.qa.debian.org/dpkg"
59 SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
64 IUSE="+bzip2 dselect +lzma nls test unicode +update-alternatives +zlib"
65 REQUIRED_USE="dselect? ( nls )"
66
67 RDEPEND="
68 >=dev-lang/perl-5.6.0
69 dev-perl/TimeDate
70 >=sys-libs/ncurses-5.2-r7
71 lzma? ( app-arch/xz-utils )
72 zlib? ( >=sys-libs/zlib-1.1.4 )
73 bzip2? ( app-arch/bzip2 )
74 "
75 DEPEND="
76 ${RDEPEND}
77 app-arch/xz-utils
78 sys-devel/flex
79 virtual/pkgconfig
80 nls? (
81 app-text/po4a
82 >=sys-devel/gettext-0.18.2
83 )
84 test? (
85 dev-perl/DateTime-Format-DateParse
86 dev-perl/IO-String
87 dev-perl/Test-Pod
88 )
89 "
90
91 DOCS=( ChangeLog THANKS TODO )
92
93 src_prepare() {
94 # do not expect Debian's gzip --rsyncable extension
95 epatch "${FILESDIR}"/${PN}-1.17.0-gzip-rsyncable.patch
96
97 epatch "${FILESDIR}"/${PN}-1.17.1-flags.patch
98
99 # Force the use of the running bash for get-version (this file is never
100 # installed, so no need to worry about hardcoding a temporary bash)
101 sed -i -e '1c\#!'"${BASH}" get-version || die
102
103 # this test depends on a Debian only gzip extension that adds --rsyncable
104 # which will therefore always fail on Gentoo. (bug #310847).
105 sed -i scripts/Makefile.am \
106 -e '/850_Dpkg_Compression.t/d' \
107 || die "sed failed"
108
109 # test fails (bug #414095)
110 sed -i utils/Makefile.am \
111 -e '/^test_cases/d;/100_update_alternatives/d' || die
112
113 use nls && strip-linguas -i po
114
115 eautoreconf
116 }
117
118 src_configure() {
119 tc-export CC
120 econf \
121 $(use_enable dselect) \
122 $(use_enable nls) \
123 $(use_enable unicode) \
124 $(use_enable update-alternatives) \
125 $(use_with bzip2 bz2) \
126 $(use_with zlib) \
127 $(use_with lzma liblzma) \
128 --disable-compiler-warnings \
129 --disable-silent-rules \
130 --disable-start-stop-daemon \
131 --localstatedir="${EPREFIX}"/var \
132 --without-selinux
133 }
134
135 src_compile() {
136 emake AR=$(tc-getAR)
137 }
138
139 src_install() {
140 default
141
142 keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
143 keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
144 }