source: projects/specs/branches/6/c/cvs2svn/cvs2svn-vl.spec @ 8164

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