Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/cvs-fast-export: metadata.xml cvs-fast-export-1.0.ebuild ChangeLog
Date: Sat, 28 Dec 2013 22:32:27
Message-Id: 20131228223224.752942004C@flycatcher.gentoo.org
1 slyfox 13/12/28 22:32:24
2
3 Added: metadata.xml cvs-fast-export-1.0.ebuild ChangeLog
4 Log:
5 Initial version. Another speedy tool to fast-export CVS repos from ',v' files.
6
7 (Portage version: 2.2.7_p53/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
8
9 Revision Changes Path
10 1.1 dev-vcs/cvs-fast-export/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvs-fast-export/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvs-fast-export/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>slyfox@g.o</email>
22 <name>Sergei Trofimovich</name>
23 </maintainer>
24 <herd>cvs-utils</herd>
25 <upstream>
26 <remote-id type="freecode">cvs-fast-export</remote-id>
27 </upstream>
28 </pkgmetadata>
29
30
31
32 1.1 dev-vcs/cvs-fast-export/cvs-fast-export-1.0.ebuild
33
34 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvs-fast-export/cvs-fast-export-1.0.ebuild?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvs-fast-export/cvs-fast-export-1.0.ebuild?rev=1.1&content-type=text/plain
36
37 Index: cvs-fast-export-1.0.ebuild
38 ===================================================================
39 # Copyright 1999-2013 Gentoo Foundation
40 # Distributed under the terms of the GNU General Public License v2
41 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/cvs-fast-export/cvs-fast-export-1.0.ebuild,v 1.1 2013/12/28 22:32:24 slyfox Exp $
42
43 EAPI=5
44
45 inherit toolchain-funcs
46
47 DESCRIPTION="fast-export history from a CVS repository or RCS collection"
48 HOMEPAGE="http://www.catb.org/~esr/cvs-fast-export/"
49 SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
50
51 LICENSE="GPL-2"
52 SLOT="0"
53 KEYWORDS="~amd64 ~x86"
54 IUSE=""
55
56 RDEPEND=""
57 DEPEND="${RDEPEND}
58 app-text/asciidoc"
59
60 RESTRICT=test # upstream does not ship them in tarball
61
62 src_prepare() {
63 tc-export CC
64 export prefix=/usr
65
66 # respect CC, CFLAGS and LDFLAGS. don't install cvssync
67 sed \
68 -e 's/cc /$(CC) $(LDFLAGS) /' \
69 -e 's/^CFLAGS += -O/#&/' \
70 -e 's/CFLAGS=/CFLAGS+=/' \
71 -e 's/$(INSTALL).*cvssync/#&/g' \
72 -i Makefile || die
73 }
74
75 src_install() {
76 default
77 dodoc README
78 }
79
80
81
82 1.1 dev-vcs/cvs-fast-export/ChangeLog
83
84 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvs-fast-export/ChangeLog?rev=1.1&view=markup
85 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvs-fast-export/ChangeLog?rev=1.1&content-type=text/plain
86
87 Index: ChangeLog
88 ===================================================================
89 # ChangeLog for dev-vcs/cvs-fast-export
90 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
91 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/cvs-fast-export/ChangeLog,v 1.1 2013/12/28 22:32:24 slyfox Exp $
92
93 *cvs-fast-export-1.0 (28 Dec 2013)
94
95 28 Dec 2013; Sergei Trofimovich <slyfox@g.o>
96 +cvs-fast-export-1.0.ebuild, +metadata.xml:
97 Initial version. Another speedy tool to fast-export CVS repos from ',v' files.