diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2021-05-09 12:49:26 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2021-05-09 12:53:20 +0100 |
commit | 0b452f3ed5482f2507d5d4a10518ad7c67da9c36 (patch) | |
tree | 79d33236754c04cdab2f3964b41b4f9a32c6d832 /dev-vcs/cvs-fast-export | |
parent | dev-util/shellcheck: drop old (diff) | |
download | gentoo-0b452f3ed5482f2507d5d4a10518ad7c67da9c36.tar.gz gentoo-0b452f3ed5482f2507d5d4a10518ad7c67da9c36.tar.bz2 gentoo-0b452f3ed5482f2507d5d4a10518ad7c67da9c36.zip |
dev-vcs/cvs-fast-export: drop old
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich <slyfox@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.56.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 ab3886b3a297..79611242d1be 100644 --- a/dev-vcs/cvs-fast-export/Manifest +++ b/dev-vcs/cvs-fast-export/Manifest @@ -1,2 +1 @@ -DIST cvs-fast-export-1.56.tar.gz 492482 BLAKE2B 936f9f448dd6577122ace45380d8726f648fd31ffb9840bd931e343cc6c3f3526e4aa6f8735feb2a49d4d8df5fdb83ea54438e51951ea2be3b1ab221fdc11c33 SHA512 852a13fab095817a9650164c93f11aaeb4ced827489f20bde35baa492f6f125e82c3f35410899978706589105275536d98d973fbf482758ed054b3bbe9e3c581 DIST cvs-fast-export-1.57.tar.gz 503473 BLAKE2B 06d5b03d550be9604a04b4f03cd19d06abbe84efb6fbb424a3ae8c58f2964dff31e1718baf61adf70fe17c2beb6753cdd0fba9e0e1a5ba5e9d8ae7b87721a336 SHA512 bb129d58a66ca8aa9feb6dcdf6d83553ed1099d6023041c4fb8fa9b923461b6eb9e59ec304b3443f754d7710a2655fd2c104cbaa5ac604ee471de727b92fc091 diff --git a/dev-vcs/cvs-fast-export/cvs-fast-export-1.56.ebuild b/dev-vcs/cvs-fast-export/cvs-fast-export-1.56.ebuild deleted file mode 100644 index 45dc138ac582..000000000000 --- a/dev-vcs/cvs-fast-export/cvs-fast-export-1.56.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 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="${EPREFIX}"/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.adoc -} |