Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvs-fast-export/
Date: Thu, 02 Jan 2020 22:42:10
Message-Id: 1578004920.75dee4d5cc2eb81c9abdcd013bab7b14f43bbfde.slyfox@gentoo
1 commit: 75dee4d5cc2eb81c9abdcd013bab7b14f43bbfde
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 2 22:41:14 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 2 22:42:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75dee4d5
7
8 dev-vcs/cvs-fast-export: bump up to 1.50
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-vcs/cvs-fast-export/Manifest | 1 +
14 .../cvs-fast-export/cvs-fast-export-1.50.ebuild | 48 ++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/dev-vcs/cvs-fast-export/Manifest b/dev-vcs/cvs-fast-export/Manifest
18 index 0a123163200..a80a366cea5 100644
19 --- a/dev-vcs/cvs-fast-export/Manifest
20 +++ b/dev-vcs/cvs-fast-export/Manifest
21 @@ -1,3 +1,4 @@
22 DIST cvs-fast-export-1.47.tar.gz 522489 BLAKE2B 5f83524137b38f863287feef9f95074dd40bc2189420abcf4d04cd02d686e21cc7fb26bf1e5fc3736efb04fe2e97202f1b4112483f420c7609fb208984c21095 SHA512 0da4b6d27e93c3bcf8ee0669acb0f15973f6eb3c566fd843755ac1176315220a23813d8ed72eba6f7429fa8ce5c00ed99d22fd9dd14e438473ff0a63c2d20cac
23 DIST cvs-fast-export-1.48.tar.gz 524991 BLAKE2B d26cf7dfe07eacdf21f9a3627b12548acaf2d5fc3b1c871d4f91a8ddc1bdde621a6ed2eb93e57869a2cf5507e396fcc22d5ef800bb6966f4ad8488b6ebff5b4c SHA512 6a8398bed512abac1e8d5dffcb1fed14d5a0170f45a43f16dbde9fcfd068dc921cc22510a8d4d11ae9266a336da60a0dba33789aa447c013c5a800bf21055d7a
24 DIST cvs-fast-export-1.49.tar.gz 446347 BLAKE2B 0b26ed771eec6320a6fc9def82e10dc82bb66f166b07d900cfbae89780bbdd783d0f7fb2d56c780d4ed788a2c07f41943f1b7f84394b5376dd10175f86384482 SHA512 24630c68af954b5f6051aca5d3af9e440189a2a062c8519892cc3a2d977f650a6ba340031f978555fbf9613cf7f9f5cea766f89d3f0ad34f188a4562a0d507f4
25 +DIST cvs-fast-export-1.50.tar.gz 440789 BLAKE2B 86c9f582090601fe97c98eaadf927902dbc8b0351a02bed3b1eca77c75641495bf2e457db3d75f058ccfc7f36c8800d59d53c3bd4abccf46fffbe324626273c5 SHA512 29c0e3e87917e5f11a7be318240bf80327a5f46b796d9fcbb6a6fd4fadc91fac924d60a74de80559d4c2713021b8a8a518e2dcae7594928e1d040f2c8614065b
26
27 diff --git a/dev-vcs/cvs-fast-export/cvs-fast-export-1.50.ebuild b/dev-vcs/cvs-fast-export/cvs-fast-export-1.50.ebuild
28 new file mode 100644
29 index 00000000000..91e884f274b
30 --- /dev/null
31 +++ b/dev-vcs/cvs-fast-export/cvs-fast-export-1.50.ebuild
32 @@ -0,0 +1,48 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit toolchain-funcs
39 +
40 +DESCRIPTION="fast-export history from a CVS repository or RCS collection"
41 +HOMEPAGE="http://www.catb.org/~esr/cvs-fast-export/"
42 +SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND=""
50 +DEPEND="${RDEPEND}
51 + app-text/asciidoc"
52 +
53 +RESTRICT=test # upstream does not ship some tests in tarball
54 +
55 +src_prepare() {
56 + default
57 +
58 + tc-export CC
59 + export prefix=/usr
60 +
61 + # respect CC, CFLAGS and LDFLAGS
62 + sed \
63 + -e 's/cc /$(CC) $(LDFLAGS) /' \
64 + -e 's/^CFLAGS += -O/#&/' \
65 + -e 's/CFLAGS=/CFLAGS+=/' \
66 + -i Makefile || die
67 +}
68 +
69 +src_compile() {
70 + # '.adoc.html' rules can't be executed in parallel
71 + # as they reuse the same 'docbook-xsl.css' file name.
72 + emake -j1 html
73 + # Allow full parallelism for the rest
74 + emake
75 +}
76 +
77 +src_install() {
78 + default
79 + dodoc README.adoc
80 +}