diff options
author | Pacho Ramos <pacho@gentoo.org> | 2019-01-27 16:24:00 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2019-01-27 17:53:05 +0100 |
commit | 0268a1ec6b3d072cfcee7c5c8e7704c5e5bd281c (patch) | |
tree | ccba6f579d41dc788df0fbb0af59c825f7c9fb6d /dev-vcs/cvs-fast-export | |
parent | dev-vcs/cvs: Drop old (diff) | |
download | gentoo-0268a1ec6b3d072cfcee7c5c8e7704c5e5bd281c.tar.gz gentoo-0268a1ec6b3d072cfcee7c5c8e7704c5e5bd281c.tar.bz2 gentoo-0268a1ec6b3d072cfcee7c5c8e7704c5e5bd281c.zip |
dev-vcs/cvs-fast-export: Drop old
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-vcs/cvs-fast-export')
-rw-r--r-- | dev-vcs/cvs-fast-export/Manifest | 1 | ||||
-rw-r--r-- | dev-vcs/cvs-fast-export/cvs-fast-export-1.44.ebuild | 48 |
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-vcs/cvs-fast-export/Manifest b/dev-vcs/cvs-fast-export/Manifest index 0d74bc1f1127..bfc24493afee 100644 --- a/dev-vcs/cvs-fast-export/Manifest +++ b/dev-vcs/cvs-fast-export/Manifest @@ -1,2 +1 @@ -DIST cvs-fast-export-1.44.tar.gz 512435 BLAKE2B 2dfcd34efbf400c9d9a726933a18504a8d241928646d73f54f1860d1580030fa0328df4aaf5b57f1fbdc4b7b2c0a988ac903c8f9f03384515fdd5241fbf51c06 SHA512 66209589c692d2b0b2e60494386cb4dbae04f5f6676c89733d3ad6e5ce8b76d3cb70d7b03430be643e44eaff5848fdb7413795e10716a9ed8b4f2a4043f822a5 DIST cvs-fast-export-1.45.tar.gz 517917 BLAKE2B 47d0debe2ea4d5674630065ee320c5db71f7ab6e4b17b7850d28c1951359ea98c639639574a7c3a25b9ec4e09ff53f1c5db566bff070e6381061fd828e875061 SHA512 f3acadabdd74f2099003a0cda29b021ea2173127af1a358bcb855397be95edaff2b1f30d3cf31dd6c08e79a8bad07b80b826c374d9b5e43555ec60d08dd577e4 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 deleted file mode 100644 index 37967a3e1452..000000000000 --- a/dev-vcs/cvs-fast-export/cvs-fast-export-1.44.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="fast-export history from a CVS repository or RCS collection" -HOMEPAGE="http://www.catb.org/~esr/cvs-fast-export/" -SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - app-text/asciidoc" - -RESTRICT=test # upstream does not ship some tests in tarball - -src_prepare() { - default - - tc-export CC - export prefix=/usr - - # respect CC, CFLAGS and LDFLAGS - sed \ - -e 's/cc /$(CC) $(LDFLAGS) /' \ - -e 's/^CFLAGS += -O/#&/' \ - -e 's/CFLAGS=/CFLAGS+=/' \ - -i Makefile || die -} - -src_compile() { - # '.adoc.html' rules can't be executed in parallel - # as they reuse the same 'docbook-xsl.css' file name. - emake -j1 html - # Allow full parallelism for the rest - emake -} - -src_install() { - default - dodoc README -} |