]> git.pld-linux.org Git - packages/cvsps.git/blob - cvsps.spec
- up to 2.2b1:
[packages/cvsps.git] / cvsps.spec
1 %define         subver  b1
2 %define         rel             1
3 Summary:        Patchsets for CVS
4 Summary(pl.UTF-8):      Zestawy łatek dla CVS
5 Name:           cvsps
6 Version:        2.2
7 Release:        0.%{subver}.%{rel}
8 License:        GPL
9 Group:          Development/Version Control
10 Source0:        http://www.cobite.com/cvsps/%{name}-%{version}%{subver}.tar.gz
11 # Source0-md5:  997580e8e283034995b9209076858c68
12 # Fixes made by git people, see:
13 # http://ydirson.free.fr/en/software/scm/cvsps.html
14 Patch0:         %{name}-fixes.patch
15 URL:            http://www.cobite.com/cvsps/
16 BuildRequires:  zlib-devel
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 CVSps is a program for generating 'patchset' information from a CVS
21 repository. A patchset in this case is defined as a set of changes
22 made to a collection of files, and all committed at the same time
23 (using a single 'cvs commit' command). This information is valuable to
24 seeing the big picture of the evolution of a cvs project. While cvs
25 tracks revision information, it is often difficult to see what changes
26 were committed 'atomically' to the repository.
27
28 %description -l pl.UTF-8
29 CVSps jest programem do generowania informacji o 'zestawie łatek'
30 (ang. patchset) z repozytorium CVS. Patchset w tym przypadku jest
31 zdefiniowany jako zbiór zmian dokonanych na kolekcji plików wysłanych
32 w tym samym momencie (za pomocą jednego wywołania 'cvs commit'). Ta
33 informacja jest przydatna do śledzenia procesu rozwoju projektu w CVS.
34 Choć CVS śledzi informacje o rewizjach, obejrzenie zmian wysłanych
35 'atomowo' do repozytorium nie jest rzeczą łatwą.
36
37 %prep
38 %setup -q -n %{name}-%{version}%{subver}
39 %patch0 -p1
40
41 %build
42 %{__make} \
43         CC="%{__cc}" \
44         CFLAGS="%{rpmcflags}"
45
46 %install
47 rm -rf $RPM_BUILD_ROOT
48 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
49 install -p cvsps $RPM_BUILD_ROOT%{_bindir}
50 cp -a cvsps.1 $RPM_BUILD_ROOT%{_mandir}/man1
51
52 %clean
53 rm -rf $RPM_BUILD_ROOT
54
55 %files
56 %defattr(644,root,root,755)
57 %doc CHANGELOG README
58 %attr(755,root,root) %{_bindir}/*
59 %{_mandir}/man1/*
This page took 0.033452 seconds and 3 git commands to generate.