cvs2cl-vl.spec 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. %define version 2.59
  2. %define release 1%{?_dist_release}
  3. Name: cvs2cl
  4. Version: %{version}
  5. Release: %{release}
  6. License: GPL
  7. Group: Development/Tools
  8. URL: http://www.red-bean.com/cvs2cl/
  9. Source0: cvs2cl.pl
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildArch: noarch
  12. Requires: perl cvs
  13. Summary: CVS-log-message-to-ChangeLog conversion script
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. Packager: Ryoichi INAGAKI <ryo1@bc.wakwak.com>
  17. %description
  18. This perl script produces a GNU-style ChangeLog for CVS-controlled
  19. sources, by running "cvs log" and parsing the output. Duplicate log
  20. messages get unified in the Right Way.
  21. %prep
  22. %build
  23. %install
  24. %__rm -rf %{buildroot}
  25. %__mkdir_p %{buildroot}%{_bindir}
  26. %__install %{SOURCE0} %{buildroot}%{_bindir}
  27. %clean
  28. %__rm -rf %{buildroot}
  29. %files
  30. %defattr(-,root,root)
  31. %{_bindir}/*
  32. %changelog
  33. * Sun Sep 21 2008 Shu KONNO <owa@bg.wakwak.com> 2.59-1vl5
  34. - applied new versioning policy
  35. * Thu Oct 20 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.59-0vl1
  36. - updated to 2.59
  37. * Thu Aug 28 2003 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 2.50-0vl1
  38. - Initial build.