cvsps-vl.spec 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. Name: cvsps
  2. Version: 2.1
  3. Release: 1%{?_dist_release}
  4. Summary: Patchset tool for CVS
  5. Group: Development/Tools
  6. License: GPL+
  7. URL: http://www.cobite.com/cvsps/
  8. Source0: http://www.cobite.com/cvsps/%{name}-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  10. BuildRequires: zlib-devel
  11. # Requires cvs only with --no-cvs-direct, but I cannot imagine this dep
  12. # being a problem on systems where cvsps will be installed...
  13. Requires(hint): cvs
  14. %description
  15. CVSps is a program for generating 'patchset' information from a CVS
  16. repository. A patchset in this case is defined as a set of changes
  17. made to a collection of files, and all committed at the same time
  18. (using a single 'cvs commit' command). This information is valuable
  19. to seeing the big picture of the evolution of a cvs project. While
  20. cvs tracks revision information, it is often difficult to see what
  21. changes were committed 'atomically' to the repository.
  22. %prep
  23. %setup -q
  24. sed -i -e 's/diffs\\-opts/diff\\-opts/' cvsps.1
  25. %build
  26. CFLAGS="$RPM_OPT_FLAGS" make %{?_smp_mflags}
  27. %install
  28. rm -rf $RPM_BUILD_ROOT
  29. make install prefix=$RPM_BUILD_ROOT%{_prefix}
  30. %clean
  31. rm -rf $RPM_BUILD_ROOT
  32. %files
  33. %defattr(-,root,root,-)
  34. %doc CHANGELOG COPYING README merge_utils.sh
  35. %{_bindir}/cvsps
  36. %{_mandir}/man1/cvsps.1*
  37. %changelog
  38. * Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1-1
  39. - initial build for Vine Linux
  40. * Sat Jun 14 2008 Ville Skyttä <ville.skytta at iki.fi> - 2.2-0.1.b1
  41. - 2.2b1.
  42. * Sat Feb 9 2008 Ville Skyttä <ville.skytta at iki.fi> - 2.1-6
  43. - Change cvs dependency to a Requires(hint).
  44. - Fix typo in man page.
  45. * Thu Aug 16 2007 Ville Skyttä <ville.skytta at iki.fi> - 2.1-5
  46. - License: GPL+
  47. * Tue Aug 29 2006 Ville Skyttä <ville.skytta at iki.fi> - 2.1-4
  48. - Rebuild.
  49. * Wed Feb 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 2.1-3
  50. - Rebuild.
  51. * Fri May 27 2005 Ville Skyttä <ville.skytta at iki.fi> - 2.1-2
  52. - 2.1.
  53. * Sun Mar 20 2005 Ville Skyttä <ville.skytta at iki.fi> - 2.0-0.2.rc1
  54. - Drop 0.fdr and Epoch: 0.
  55. * Sun Sep 14 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.0-0.fdr.0.2.rc1
  56. - Remove #---- section markers.
  57. * Fri Jul 4 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.0-0.fdr.0.1.rc1
  58. - First build.