Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/pigz: pigz-2.1.5.ebuild ChangeLog
Date: Tue, 27 Oct 2009 22:23:41
Message-Id: E1N2uS2-0001g4-O7@stork.gentoo.org
1 vostorga 09/10/27 22:23:38
2
3 Modified: ChangeLog
4 Added: pigz-2.1.5.ebuild
5 Log:
6 Version bump to 2.1.5 , bug #284038
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 app-arch/pigz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/pigz/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/pigz/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/pigz/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 25 Oct 2009 20:13:58 -0000 1.4
23 +++ ChangeLog 27 Oct 2009 22:23:38 -0000 1.5
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-arch/pigz
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.4 2009/10/25 20:13:58 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.5 2009/10/27 22:23:38 vostorga Exp $
29 +
30 +*pigz-2.1.5 (27 Oct 2009)
31 +
32 + 27 Oct 2009; VĂ­ctor Ostorga <vostorga@g.o> +pigz-2.1.5.ebuild,
33 + +files/pigz-2.1.5-respect-flags.patch:
34 + Version bump to 2.1.5 , bug #284038
35
36 25 Oct 2009; Torsten Veller <tove@g.o> metadata.xml:
37 Remove drizzt from metadata.xml (#149111)
38
39
40
41 1.1 app-arch/pigz/pigz-2.1.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/pigz/pigz-2.1.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/pigz/pigz-2.1.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pigz-2.1.5.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.1.5.ebuild,v 1.1 2009/10/27 22:23:38 vostorga Exp $
51
52 inherit eutils toolchain-funcs
53
54 DESCRIPTION="A parallel implementation of gzip."
55 HOMEPAGE="http://www.zlib.net/pigz/"
56 SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz"
57
58 LICENSE="PIGZ"
59 SLOT="0"
60 KEYWORDS="~amd64 ~sparc ~x86"
61 IUSE=""
62
63 DEPEND="sys-libs/zlib"
64 RDEPEND=${DEPEND}
65
66 src_unpack() {
67 unpack ${A}
68 epatch "${FILESDIR}"/${P}-respect-flags.patch
69 }
70
71 src_compile() {
72 tc-export CC
73 emake || die "make failed"
74 }
75
76 src_install() {
77 dobin ${PN} || die "Failed to install"
78 dodoc README
79 }