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

Revision 3817, 3.0 KB checked in by shaolin, 13 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.3.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* Sun May 08 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.3.0-1
61- new upstream release
62
63* Sat Mar 20 2010 Shu KONNO <owa@bg.wakwak.com> 1.5.1-3
64- rebuilt with python-2.6
65
66* Sun Sep 21 2008 Shu KONNO <owa@bg.wakwak.com> 1.5.1-2vl5
67- applied new versioning policy, spec in utf-8
68- rebuilt with python-2.5.2
69
70* Wed May 30 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.5.1-1vl1
71- updated to 1.5.1 release based on FC 1.5.1-1
72
73  - Sat Jan 22 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 1.2.0-0vl1
74  - initial build
75
76* Sun Mar 11 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.5.1-1
77- Upstream 1.5.1
78
79* Sat Oct 28 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.5.0-1
80- Upstream 1.5.0
81
82* Wed Sep 06 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-2
83- Ghostbusting
84
85* Sun Sep 03 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-1
86- 1.4.0 final release
87
88* Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.4.rc1
89- Require cvs and subversion
90- Add python-abi for easy builds on systems <FC4
91
92* Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.3.rc1
93- Requires rcs.
94
95* Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.2.rc1
96- Group is Development/Tools
97
98* Wed Jul 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.4.0-0.1.rc1
99- Initial packaging.
Note: See TracBrowser for help on using the repository browser.