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