Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/quilt/
Date: Sun, 27 Mar 2022 16:24:43
Message-Id: 1648398248.0a896b7792ff59a80ab0aeb86d3828a381b64cbf.mpagano@gentoo
1 commit: 0a896b7792ff59a80ab0aeb86d3828a381b64cbf
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 16:24:08 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 16:24:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a896b77
7
8 dev-util/quilt: drop 0.66
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 dev-util/quilt/quilt-0.66.ebuild | 62 ----------------------------------------
13 1 file changed, 62 deletions(-)
14
15 diff --git a/dev-util/quilt/quilt-0.66.ebuild b/dev-util/quilt/quilt-0.66.ebuild
16 deleted file mode 100644
17 index fc703175e976..000000000000
18 --- a/dev-util/quilt/quilt-0.66.ebuild
19 +++ /dev/null
20 @@ -1,62 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="8"
25 -
26 -inherit bash-completion-r1
27 -
28 -DESCRIPTION="quilt patch manager"
29 -HOMEPAGE="https://savannah.nongnu.org/projects/quilt"
30 -SRC_URI="https://savannah.nongnu.org/download/quilt/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 arm ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
35 -IUSE="emacs graphviz"
36 -# unresolved test failures
37 -RESTRICT="test"
38 -
39 -RDEPEND="sys-apps/ed
40 - dev-util/diffstat
41 - graphviz? ( media-gfx/graphviz )
42 - elibc_Darwin? ( app-misc/getopt )
43 - elibc_SunOS? ( app-misc/getopt )
44 - >=sys-apps/coreutils-8.5"
45 -
46 -PDEPEND="emacs? ( app-emacs/quilt-el )"
47 -
48 -pkg_setup() {
49 - use graphviz && return 0
50 - echo
51 - elog "If you intend to use the folding functionality (graphical illustration of the"
52 - elog "patch stack) then you'll need to remerge this package with USE=graphviz."
53 - echo
54 -}
55 -
56 -src_prepare() {
57 - # Add support for USE=graphviz
58 - use graphviz || PATCHES+=( "${FILESDIR}"/${PN}-0.66-no-graphviz.patch )
59 - default
60 -}
61 -
62 -src_configure() {
63 - [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] && \
64 - myconf="${myconf} --with-getopt=${EPREFIX}/usr/bin/getopt-long"
65 - econf ${myconf}
66 -}
67 -
68 -src_install() {
69 - emake BUILD_ROOT="${D}" install
70 -
71 - rm -rf "${ED}"/usr/share/doc/${P}
72 - dodoc AUTHORS TODO "doc/README" "doc/README.MAIL" "doc/quilt.pdf"
73 -
74 - rm -rf "${ED}"/etc/bash_completion.d
75 - newbashcomp bash_completion ${PN}
76 -
77 - # Remove the compat symlinks
78 - rm -rf "${ED}"/usr/share/quilt/compat
79 -
80 - # Remove Emacs mode; newer version is in app-emacs/quilt-el, bug 247500
81 - rm -rf "${ED}"/usr/share/emacs
82 -}