Gentoo Archives: gentoo-commits

From: "Tiago Cunha (tcunha)" <tcunha@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/diffstat: ChangeLog diffstat-1.49.ebuild
Date: Mon, 07 Sep 2009 14:12:58
Message-Id: E1Mkexj-0001ci-B7@stork.gentoo.org
1 tcunha 09/09/07 14:12:55
2
3 Modified: ChangeLog
4 Added: diffstat-1.49.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.81 dev-util/diffstat/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/diffstat/ChangeLog?rev=1.81&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/diffstat/ChangeLog?rev=1.81&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/diffstat/ChangeLog?r1=1.80&r2=1.81
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/diffstat/ChangeLog,v
19 retrieving revision 1.80
20 retrieving revision 1.81
21 diff -u -r1.80 -r1.81
22 --- ChangeLog 13 Aug 2009 11:47:40 -0000 1.80
23 +++ ChangeLog 7 Sep 2009 14:12:55 -0000 1.81
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/diffstat
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/diffstat/ChangeLog,v 1.80 2009/08/13 11:47:40 tcunha Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/diffstat/ChangeLog,v 1.81 2009/09/07 14:12:55 tcunha Exp $
29 +
30 +*diffstat-1.49 (07 Sep 2009)
31 +
32 + 07 Sep 2009; Tiago Cunha <tcunha@g.o> +diffstat-1.49.ebuild:
33 + Version bump.
34
35 *diffstat-1.48 (13 Aug 2009)
36
37
38
39
40 1.1 dev-util/diffstat/diffstat-1.49.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/diffstat/diffstat-1.49.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/diffstat/diffstat-1.49.ebuild?rev=1.1&content-type=text/plain
44
45 Index: diffstat-1.49.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-util/diffstat/diffstat-1.49.ebuild,v 1.1 2009/09/07 14:12:55 tcunha Exp $
50
51 DESCRIPTION="Display a histogram of diff changes"
52 HOMEPAGE="http://invisible-island.net/diffstat/diffstat.html"
53 SRC_URI="ftp://invisible-island.net/diffstat/${P}.tgz"
54
55 LICENSE="as-is"
56 SLOT="0"
57 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
58 IUSE=""
59
60 # NOTE: diffstat(1) auto-detects which decompressors are available, and switches
61 # off the ability to read diff compressed files in a specific format if the
62 # decompressor isn't found at build-time, even if you install it afterwards.
63 # There are three solutions:
64 # 1) Patch the build system to enable/disable a given decompressor, and provide
65 # USE flags.
66 # 2) (R)DEPEND on all decompressors.
67 # 3) Warn the user by stating that if a decompressor is installed after
68 # dev-util/diffstat, (s)he either needs to recompile this package, or set the
69 # decompressor environment variable (eg DIFFSTAT_LZCAT_PATH).
70 #
71 # In the long term the first two solutions are flawed, because:
72 # 1) Adding USE flags for each new decompressor is obviously wrong (the user
73 # would still need to recompile dev-util/diffstat just to obtain support for
74 # a given decompressor).
75 # 2) Of keywording. An architecture team would either need to mask the USE flag,
76 # drop its keyword from this package, or keyword every single decompressor.
77 #
78 # Thus, I think that if in the future a new decompressor support is added, it
79 # would be better to just warn the user. For the 1.48 release, aside from the
80 # ones that are installed by the system set (eg bzcat, zcat), only lzma-utils
81 # would be needed, but there are already a few important packages that depend
82 # on it, anyway.
83 #
84 # Also, pack(1) support is disabled, even though zcat from gzip(1) supports it.
85 # Not sure if anyone is using this, but it was marked as LEGACY on SUSv2, and
86 # disappeared on SUSv3. Nevertheless, if wanted set DIFFSTAT_PCAT_PATH to
87 # /bin/zcat.
88 DEPEND=""
89 RDEPEND=""
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "emake install failed"
93 dodoc CHANGES || die "dodoc failed"
94 }