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