]> git.pld-linux.org Git - packages/cvsps.git/blob - cvsps.spec
- x32 rebuild
[packages/cvsps.git] / cvsps.spec
1 Summary:        Patchsets for CVS
2 Summary(pl.UTF-8):      Zestawy łatek dla CVS
3 Name:           cvsps
4 Version:        3.13
5 Release:        2
6 License:        GPL v2+
7 Group:          Development/Version Control
8 Source0:        http://www.catb.org/~esr/cvsps/%{name}-%{version}.tar.gz
9 # Source0-md5:  684c22c70b305030d50dc4ee050978df
10 URL:            http://www.catb.org/~esr/cvsps/
11 BuildRequires:  asciidoc
12 BuildRequires:  zlib-devel
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 CVSps is a program for collecting patchsets from a CVS repository. The
17 original use case was that its reports were useful for human
18 inspection by developers working on projects using CVS, but nowadays
19 the --fast-export option (which emits the history as a git-style
20 fast-import stream) is more interesting.
21
22 This tool was written and maintained until 2.2b1 by David Manfield,
23 who reported his "thanks to my employer Cobite and Robert Lippman,
24 who've given me time to develop this tool". The 3.x versions with
25 fast-export dumping are maintained by Eric S. Raymond.
26
27 %description -l pl.UTF-8
28 CVSps jest programem do generowania informacji o 'zestawie łatek'
29 (ang. patchset) z repozytorium CVS. Pierwotnym zastosowaniem było
30 śledzenie pracy nad projektami wykorzystującymi CVS przez ludzi, ale
31 obecnie bardziej interesująca jest opcja --fast-export (wypuszczająca
32 historię w postaci strumienia w stylu fast-import programu git).
33
34 To narzędzie zostało napisane i było rozwijane do wersji 2.2b1 przez
35 Davida Manfielda (przy wsparciu pracodawcy Cobite i Roberta Lippmana).
36 Wersje 3.x ze zrzutami fast-export są utrzymywane przez Erica S.
37 Raymonda.
38
39 %prep
40 %setup -q
41
42 %build
43 %{__make} cvsps cvsps.1 \
44         CC="%{__cc} -Wall" \
45         CFLAGS="%{rpmcflags}"
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
50 install -p cvsps $RPM_BUILD_ROOT%{_bindir}
51 cp -p cvsps.1 $RPM_BUILD_ROOT%{_mandir}/man1
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc NEWS README TODO
59 %attr(755,root,root) %{_bindir}/cvsps
60 %{_mandir}/man1/cvsps.1*
This page took 0.085359 seconds and 3 git commands to generate.