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