Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvs-fast-export/
Date: Sun, 27 Jan 2019 16:53:29
Message-Id: 1548607985.0268a1ec6b3d072cfcee7c5c8e7704c5e5bd281c.pacho@gentoo
1 commit: 0268a1ec6b3d072cfcee7c5c8e7704c5e5bd281c
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 27 15:24:00 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 27 16:53:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0268a1ec
7
8 dev-vcs/cvs-fast-export: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-vcs/cvs-fast-export/Manifest | 1 -
14 .../cvs-fast-export/cvs-fast-export-1.44.ebuild | 48 ----------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/dev-vcs/cvs-fast-export/Manifest b/dev-vcs/cvs-fast-export/Manifest
18 index 0d74bc1f112..bfc24493afe 100644
19 --- a/dev-vcs/cvs-fast-export/Manifest
20 +++ b/dev-vcs/cvs-fast-export/Manifest
21 @@ -1,2 +1 @@
22 -DIST cvs-fast-export-1.44.tar.gz 512435 BLAKE2B 2dfcd34efbf400c9d9a726933a18504a8d241928646d73f54f1860d1580030fa0328df4aaf5b57f1fbdc4b7b2c0a988ac903c8f9f03384515fdd5241fbf51c06 SHA512 66209589c692d2b0b2e60494386cb4dbae04f5f6676c89733d3ad6e5ce8b76d3cb70d7b03430be643e44eaff5848fdb7413795e10716a9ed8b4f2a4043f822a5
23 DIST cvs-fast-export-1.45.tar.gz 517917 BLAKE2B 47d0debe2ea4d5674630065ee320c5db71f7ab6e4b17b7850d28c1951359ea98c639639574a7c3a25b9ec4e09ff53f1c5db566bff070e6381061fd828e875061 SHA512 f3acadabdd74f2099003a0cda29b021ea2173127af1a358bcb855397be95edaff2b1f30d3cf31dd6c08e79a8bad07b80b826c374d9b5e43555ec60d08dd577e4
24
25 diff --git a/dev-vcs/cvs-fast-export/cvs-fast-export-1.44.ebuild b/dev-vcs/cvs-fast-export/cvs-fast-export-1.44.ebuild
26 deleted file mode 100644
27 index 37967a3e145..00000000000
28 --- a/dev-vcs/cvs-fast-export/cvs-fast-export-1.44.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit toolchain-funcs
37 -
38 -DESCRIPTION="fast-export history from a CVS repository or RCS collection"
39 -HOMEPAGE="http://www.catb.org/~esr/cvs-fast-export/"
40 -SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE=""
46 -
47 -RDEPEND=""
48 -DEPEND="${RDEPEND}
49 - app-text/asciidoc"
50 -
51 -RESTRICT=test # upstream does not ship some tests in tarball
52 -
53 -src_prepare() {
54 - default
55 -
56 - tc-export CC
57 - export prefix=/usr
58 -
59 - # respect CC, CFLAGS and LDFLAGS
60 - sed \
61 - -e 's/cc /$(CC) $(LDFLAGS) /' \
62 - -e 's/^CFLAGS += -O/#&/' \
63 - -e 's/CFLAGS=/CFLAGS+=/' \
64 - -i Makefile || die
65 -}
66 -
67 -src_compile() {
68 - # '.adoc.html' rules can't be executed in parallel
69 - # as they reuse the same 'docbook-xsl.css' file name.
70 - emake -j1 html
71 - # Allow full parallelism for the rest
72 - emake
73 -}
74 -
75 -src_install() {
76 - default
77 - dodoc README
78 -}