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