cvs2svn-vl.spec 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. ## %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  2. Name: cvs2svn
  3. Version: 2.4.0
  4. Release: 1%{?_dist_release}
  5. Summary: CVS to Subversion Repository Converter
  6. Summary(ja): CVS から Subversion へのリポジトリコンバータ
  7. Group: Development/Tools
  8. License: BSD
  9. URL: http://cvs2svn.tigris.org/
  10. Source0: http://cvs2svn.tigris.org/files/documents/1462/46528/cvs2svn-%{version}.tar.gz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  12. BuildArch: noarch
  13. BuildRequires: python-devel
  14. Requires: cvs, rcs, subversion
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. Packager: shaolin
  18. %description
  19. cvs2svn is a Python script that converts a CVS repository to a
  20. Subversion repository. It is designed for one-time conversions, not for
  21. repeated synchronizations between CVS and Subversion.
  22. %description -l ja
  23. cvs2svn は Python で書かれたスクリプトで、CVS リポジトリを
  24. Subversion (SVN) リポジトリに変換します。
  25. このスクリプトは一度変換することだけを目的としており、
  26. CVS と SVN のリポジトリの同期をとるためのものではありません。
  27. %prep
  28. %setup -q
  29. %build
  30. %{__python} setup.py build
  31. %install
  32. rm -rf %{buildroot}
  33. %{__python} setup.py install -O1 --skip-build --root %{buildroot}
  34. %clean
  35. rm -rf %{buildroot}
  36. %files
  37. %defattr(-,root,root,-)
  38. %doc BUGS CHANGES COMMITTERS COPYING HACKING PKG-INFO README cvs2svn-example.options www/*.html
  39. %{_bindir}/*
  40. %{python_sitelib}/*
  41. %changelog
  42. * Mon Jan 13 2014 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.4.0-1
  43. - new upstream release
  44. * Sun May 08 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.3.0-1
  45. - new upstream release
  46. * Sat Mar 20 2010 Shu KONNO <owa@bg.wakwak.com> 1.5.1-3
  47. - rebuilt with python-2.6
  48. * Sun Sep 21 2008 Shu KONNO <owa@bg.wakwak.com> 1.5.1-2vl5
  49. - applied new versioning policy, spec in utf-8
  50. - rebuilt with python-2.5.2
  51. * Wed May 30 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.5.1-1vl1
  52. - updated to 1.5.1 release based on FC 1.5.1-1
  53. - Sat Jan 22 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 1.2.0-0vl1
  54. - initial build
  55. * Sun Mar 11 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.5.1-1
  56. - Upstream 1.5.1
  57. * Sat Oct 28 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.5.0-1
  58. - Upstream 1.5.0
  59. * Wed Sep 06 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-2
  60. - Ghostbusting
  61. * Sun Sep 03 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-1
  62. - 1.4.0 final release
  63. * Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.4.rc1
  64. - Require cvs and subversion
  65. - Add python-abi for easy builds on systems <FC4
  66. * Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.3.rc1
  67. - Requires rcs.
  68. * Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.2.rc1
  69. - Group is Development/Tools
  70. * Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.1.rc1
  71. - Initial packaging.