Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libtar: libtar-1.2.20-r3.ebuild ChangeLog
Date: Tue, 21 Jul 2015 05:36:28
Message-Id: 20150721053623.8E23EC0@oystercatcher.gentoo.org
1 idella4 15/07/21 05:36:23
2
3 Modified: ChangeLog
4 Added: libtar-1.2.20-r3.ebuild
5 Log:
6 revbump; sec. patch from Bug 487686, sourced, prepared and runtested by proxy maintainer
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.40 dev-libs/libtar/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtar/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtar/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtar/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtar/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 21 Jul 2015 05:13:18 -0000 1.39
24 +++ ChangeLog 21 Jul 2015 05:36:23 -0000 1.40
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/libtar
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtar/ChangeLog,v 1.39 2015/07/21 05:13:18 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtar/ChangeLog,v 1.40 2015/07/21 05:36:23 idella4 Exp $
30 +
31 +*libtar-1.2.20-r3 (21 Jul 2015)
32 +
33 + 21 Jul 2015; Ian Delaney <idella4@g.o> +files/CVE-2013-4420.patch,
34 + +libtar-1.2.20-r3.ebuild:
35 + revbump; sec. patch from Bug 487686, sourced, prepared and runtested by proxy
36 + maintainer
37
38 21 Jul 2015; Ian Delaney <idella4@g.o> metadata.xml:
39 set proxy maintainer under the proxy-maintainers herd
40
41
42
43 1.1 dev-libs/libtar/libtar-1.2.20-r3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtar/libtar-1.2.20-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtar/libtar-1.2.20-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libtar-1.2.20-r3.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/dev-libs/libtar/libtar-1.2.20-r3.ebuild,v 1.1 2015/07/21 05:36:23 idella4 Exp $
53
54 EAPI=5
55
56 AUTOTOOLS_AUTORECONF=1
57 inherit autotools-utils
58
59 DESCRIPTION="C library for manipulating tar archives"
60 HOMEPAGE="http://www.feep.net/libtar/ http://repo.or.cz/w/libtar.git/"
61 SRC_URI="http://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
66 IUSE="static-libs zlib"
67
68 RDEPEND="zlib? ( sys-libs/zlib )
69 !zlib? ( app-arch/gzip )"
70 DEPEND="${RDEPEND}"
71
72 S="${WORKDIR}/${PN}"
73
74 PATCHES=(
75 "${FILESDIR}"/${PN}-1.2.11-free.patch
76 "${FILESDIR}"/${PN}-1.2.11-impl-dec.patch
77 "${FILESDIR}"/CVE-2013-4420.patch
78 )
79
80 src_prepare() {
81 sed -i \
82 -e '/INSTALL_PROGRAM/s:-s::' \
83 {doc,lib{,tar}}/Makefile.in || die
84
85 autotools-utils_src_prepare
86 }
87
88 src_configure() {
89 local myeconfargs=(
90 --disable-encap
91 --disable-epkg-install
92 $(use_with zlib)
93 )
94
95 autotools-utils_src_configure
96 }
97
98 src_install() {
99 autotools-utils_src_install
100
101 dodoc ChangeLog* README TODO
102 newdoc compat/README README.compat
103 newdoc compat/TODO TODO.compat
104 newdoc listhash/TODO TODO.listhash
105 }