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