]> git.pld-linux.org Git - packages/cvs-fast-export.git/blame - cvs-fast-export.spec
rel. 1
[packages/cvs-fast-export.git] / cvs-fast-export.spec
CommitLineData
63b9a7a8
KK
1Summary: Tool to export CVS history into a fast-import stream
2Name: cvs-fast-export
3Version: 1.10
35133772 4Release: 1
63b9a7a8
KK
5License: GPL v2
6Group: Applications
7Source0: http://www.catb.org/~esr/cvs-fast-export/%{name}-%{version}.tar.gz
8# Source0-md5: a3f6c9a620e0b946fdc1d80ba691b13b
9URL: http://www.catb.org/~esr/cvs-fast-export/
10BuildRequires: asciidoc
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14Export an RCS or CVS history as a fast-import stream. This program
15analyzes a collection of RCS files in a CVS repository (or outside of
16one) and, when possible, emits an equivalent history in the form of a
17fast-import stream. Not all possible histories can be rendered this
18way; the program tries to emit useful warnings when it can't. The
19program can also produce a visualization of the resulting commit DAG
20in the DOT format handled by the graphviz suite. The package also
21includes cvssync, a tool for mirroring masters from remote CVS hosts.
22
23%prep
24%setup -q
25
26%build
27%{__make} \
28 prefix=%{_prefix} \
29 CC="%{__cc}" \
30 CFLAGS="%{rpmcflags} -DVERSION=\\\"\$(VERSION)\\\"" \
31 LDFLAGS="%{rpmldflags}"
32
33%install
34rm -rf $RPM_BUILD_ROOT
35
36%{__make} install \
37 prefix=%{_prefix} \
38 DESTDIR=$RPM_BUILD_ROOT
39
40%clean
41rm -rf $RPM_BUILD_ROOT
42
43
44%files
45%defattr(644,root,root,755)
46%doc AUTHORS NEWS README TODO
47%attr(755,root,root) %{_bindir}/%{name}
48%attr(755,root,root) %{_bindir}/cvssync
49%{_mandir}/man1/*.1*
This page took 0.209032 seconds and 4 git commands to generate.