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