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: Fri, 26 Apr 2019 15:24:18
Message-Id: 1556292248.d2f8aa85e22c399baf897fb8d45bf0a3ec667cc1.slyfox@gentoo
1 commit: d2f8aa85e22c399baf897fb8d45bf0a3ec667cc1
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 26 15:23:50 2019 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 26 15:24:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f8aa85
7
8 dev-vcs/cvs-fast-export: bump up to 1.48
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
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.48.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 29225c05f2a..319ee332624 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.45.tar.gz 517917 BLAKE2B 47d0debe2ea4d5674630065ee320c5db71f7ab6e4b17b7850d28c1951359ea98c639639574a7c3a25b9ec4e09ff53f1c5db566bff070e6381061fd828e875061 SHA512 f3acadabdd74f2099003a0cda29b021ea2173127af1a358bcb855397be95edaff2b1f30d3cf31dd6c08e79a8bad07b80b826c374d9b5e43555ec60d08dd577e4
23 DIST cvs-fast-export-1.46.tar.gz 519521 BLAKE2B 7ecf0a87bef922a0fa69c1f63ab07e943e2a501c8565a610df3cb07e3af04b9abea02e78ae1d764c715e8e8b402cdc32f41e9109cee030d8339ebb8bdb97e561 SHA512 bd2e2a426bdfd76af06346c4a20469d134dd33ee98457afd8db3f1599e6f186451eb181057c97dd7383d35e66c4915f2cb42d51b818127cb3464c8cafc2f34f3
24 DIST cvs-fast-export-1.47.tar.gz 522489 BLAKE2B 5f83524137b38f863287feef9f95074dd40bc2189420abcf4d04cd02d686e21cc7fb26bf1e5fc3736efb04fe2e97202f1b4112483f420c7609fb208984c21095 SHA512 0da4b6d27e93c3bcf8ee0669acb0f15973f6eb3c566fd843755ac1176315220a23813d8ed72eba6f7429fa8ce5c00ed99d22fd9dd14e438473ff0a63c2d20cac
25 +DIST cvs-fast-export-1.48.tar.gz 524991 BLAKE2B d26cf7dfe07eacdf21f9a3627b12548acaf2d5fc3b1c871d4f91a8ddc1bdde621a6ed2eb93e57869a2cf5507e396fcc22d5ef800bb6966f4ad8488b6ebff5b4c SHA512 6a8398bed512abac1e8d5dffcb1fed14d5a0170f45a43f16dbde9fcfd068dc921cc22510a8d4d11ae9266a336da60a0dba33789aa447c013c5a800bf21055d7a
26
27 diff --git a/dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild b/dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild
28 new file mode 100644
29 index 00000000000..50babdf251f
30 --- /dev/null
31 +++ b/dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild
32 @@ -0,0 +1,48 @@
33 +# Copyright 1999-2019 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 +}