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.18.1.ebuild ChangeLog dpkg-1.17.23.ebuild dpkg-1.18.0.ebuild
Date: Sat, 30 May 2015 09:44:56
Message-Id: 20150530094447.9666AA0C@oystercatcher.gentoo.org
1 jer 15/05/30 09:44:47
2
3 Modified: ChangeLog
4 Added: dpkg-1.18.1.ebuild
5 Removed: dpkg-1.17.23.ebuild dpkg-1.18.0.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.328 app-arch/dpkg/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?rev=1.328&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?rev=1.328&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?r1=1.327&r2=1.328
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v
21 retrieving revision 1.327
22 retrieving revision 1.328
23 diff -u -r1.327 -r1.328
24 --- ChangeLog 27 May 2015 13:01:04 -0000 1.327
25 +++ ChangeLog 30 May 2015 09:44:47 -0000 1.328
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-arch/dpkg
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.327 2015/05/27 13:01:04 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.328 2015/05/30 09:44:47 jer Exp $
31 +
32 +*dpkg-1.18.1 (30 May 2015)
33 +
34 + 30 May 2015; Jeroen Roovers <jer@g.o> -dpkg-1.17.23.ebuild,
35 + -dpkg-1.18.0.ebuild, +dpkg-1.18.1.ebuild:
36 + Version bump.
37
38 27 May 2015; Agostino Sarubbo <ago@g.o> dpkg-1.17.25.ebuild:
39 Stable for arm, wrt bug #546108
40
41
42
43 1.1 app-arch/dpkg/dpkg-1.18.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/dpkg-1.18.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/dpkg-1.18.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dpkg-1.18.1.ebuild
49 ===================================================================
50 # Copyright 1999-2015 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.18.1.ebuild,v 1.1 2015/05/30 09:44:47 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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
64 IUSE="+bzip2 +lzma nls selinux test unicode +update-alternatives +zlib"
65
66 RDEPEND="
67 >=dev-lang/perl-5.6.0:=
68 dev-perl/TimeDate
69 >=sys-libs/ncurses-5.2-r7
70 bzip2? ( app-arch/bzip2 )
71 lzma? ( app-arch/xz-utils )
72 selinux? ( sys-libs/libselinux )
73 zlib? ( >=sys-libs/zlib-1.1.4 )
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 virtual/perl-Test-Harness
89 )
90 "
91
92 DOCS=( ChangeLog THANKS TODO )
93
94 src_prepare() {
95 # do not expect Debian's gzip --rsyncable extension
96 epatch "${FILESDIR}"/${PN}-1.17.0-gzip-rsyncable.patch
97
98 epatch "${FILESDIR}"/${PN}-1.17.1-flags.patch
99
100 # Force the use of the running bash for get-version (this file is never
101 # installed, so no need to worry about hardcoding a temporary bash)
102 sed -i -e '1c\#!'"${BASH}" get-version || die
103
104 if [[ ${CHOST} == mips64*-linux-gnu ]] ; then
105 # Debian targets use custom full tuples. Map the default one
106 # based on the ABI we're using.
107 local abi
108 if [[ ${ABI} == "n64" ]] ; then
109 abi="mips64"
110 else
111 abi="mipsn32"
112 fi
113 printf "gnu-linux-mips64 ${abi}\ngnu-linux-mips64el ${abi}el\n" >> triplettable
114 fi
115
116 use nls && strip-linguas -i po
117
118 eautoreconf
119 }
120
121 src_configure() {
122 tc-export CC
123 econf \
124 $(use_enable nls) \
125 $(use_enable unicode) \
126 $(use_enable update-alternatives) \
127 $(use_with bzip2 bz2) \
128 $(use_with lzma liblzma) \
129 $(use_with selinux) \
130 $(use_with zlib) \
131 --disable-compiler-warnings \
132 --disable-dselect \
133 --disable-silent-rules \
134 --disable-start-stop-daemon \
135 --localstatedir="${EPREFIX}"/var
136 }
137
138 src_compile() {
139 emake AR=$(tc-getAR)
140 }
141
142 src_install() {
143 default
144
145 keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
146 keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
147 }