Gentoo Archives: gentoo-commits

From: "Mike Pagano (mpagano)" <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/quilt: ChangeLog quilt-0.48.ebuild
Date: Tue, 24 Feb 2009 18:57:14
Message-Id: E1Lc2ST-0006wf-CM@stork.gentoo.org
1 mpagano 09/02/24 18:56:45
2
3 Modified: ChangeLog
4 Added: quilt-0.48.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc23/cvs/Linux i686)
8
9 Revision Changes Path
10 1.43 dev-util/quilt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/quilt/ChangeLog?rev=1.43&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/quilt/ChangeLog?rev=1.43&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/quilt/ChangeLog?r1=1.42&r2=1.43
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/quilt/ChangeLog,v
19 retrieving revision 1.42
20 retrieving revision 1.43
21 diff -u -r1.42 -r1.43
22 --- ChangeLog 12 Jan 2009 14:02:52 -0000 1.42
23 +++ ChangeLog 24 Feb 2009 18:56:45 -0000 1.43
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/quilt
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/quilt/ChangeLog,v 1.42 2009/01/12 14:02:52 fmccor Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/quilt/ChangeLog,v 1.43 2009/02/24 18:56:45 mpagano Exp $
29 +
30 +*quilt-0.48 (24 Feb 2009)
31 +
32 + 24 Feb 2009; Mike Pagano <mpagano@g.o>
33 + +files/quilt-0.48-no-graphviz.patch, +quilt-0.48.ebuild:
34 + Version bump
35
36 12 Jan 2009; Ferris McCormick <fmccor@g.o> quilt-0.46.ebuild:
37 Sparc stable, part of Bug #254621.
38
39
40
41 1.1 dev-util/quilt/quilt-0.48.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/quilt/quilt-0.48.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/quilt/quilt-0.48.ebuild?rev=1.1&content-type=text/plain
45
46 Index: quilt-0.48.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/dev-util/quilt/quilt-0.48.ebuild,v 1.1 2009/02/24 18:56:45 mpagano Exp $
51
52 inherit bash-completion eutils
53
54 DESCRIPTION="quilt patch manager"
55 HOMEPAGE="http://savannah.nongnu.org/projects/quilt"
56 SRC_URI="http://savannah.nongnu.org/download/quilt/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="emacs graphviz"
62
63 RDEPEND="sys-apps/ed
64 dev-util/diffstat
65 graphviz? ( media-gfx/graphviz )
66 || ( >=sys-apps/coreutils-6.10-r1 sys-apps/mktemp )"
67
68 PDEPEND="emacs? ( app-emacs/quilt-el )"
69
70 pkg_setup() {
71 use graphviz && return 0
72 echo
73 elog "If you intend to use the folding functionality (graphical illustration of the"
74 elog "patch stack) then you'll need to remerge this package with USE=graphviz."
75 echo
76 epause 5
77 }
78
79 src_unpack() {
80 unpack ${A}
81 cd "${S}"
82
83 # Add support for USE=graphviz
84 use graphviz || epatch "${FILESDIR}/${P}-no-graphviz.patch"
85
86 # Some tests are somewhat broken while being run from within portage, work
87 # fine if you run them manually
88 rm "${S}"/test/delete.test "${S}"/test/mail.test
89 }
90
91 src_install() {
92 emake BUILD_ROOT="${D}" install || die "make install failed"
93
94 rm -rf "${D}"/usr/share/doc/${P}
95 dodoc AUTHORS TODO quilt.changes doc/README doc/README.MAIL \
96 doc/quilt.pdf
97
98 rm -rf "${D}"/etc/bash_completion.d
99 dobashcompletion bash_completion
100
101 # Remove the compat symlinks
102 rm -rf "${D}"/usr/share/quilt/compat
103
104 # Remove Emacs mode; newer version is in app-emacs/quilt-el, bug 247500
105 rm -rf "${D}"/usr/share/emacs
106 }