Explorar el Código

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@607 ec354946-7b23-47d6-9f5a-488ba84defc7

kudoh hace 14 años
padre
commit
1b384189b1

+ 15 - 8
d/deluge/deluge-vl.spec

@@ -2,8 +2,8 @@
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 
 Name:		deluge
-Version:	1.2.0
-Release:	2%{?_dist_release}
+Version:	1.2.1
+Release:	1%{?_dist_release}
 Summary:	A GTK+ BitTorrent client with support for DHT, UPnP, and PEX
 Summary(ja):	DHT・UPnP・PEX をサポートした GTK+ BitTorrent クライアント
 Group:		Applications/Internet
@@ -24,21 +24,21 @@ BuildRequires:	python-devel
 BuildRequires:	python-setuptools
 ## The build script checks for the libtorrent module and skips compiling the
 ## in-tarball one if this is found.
-BuildRequires:	libtorrent-rasterbar-python
+BuildRequires:	libtorrent-rasterbar-python >= 0.14.9
 
-Requires:	/bin/sh
-Requires:	dbus-python
-Requires:	dbus-x11
+Requires:	gnome-python
 ## Required for the proper ownership of icon dirs.
 Requires:	hicolor-icon-theme
+Requires:	notify-python
 Requires:	pygtk2-libglade
 Requires:	pyOpenSSL
 Requires:	python-chardet
+Requires:	python-mako
 Requires:	python-setuptools
-Requires:	python-twisted
 Requires:	python-simplejson
+Requires:	python-twisted
 Requires:	pyxdg
-Requires:	libtorrent-rasterbar-python
+Requires:	libtorrent-rasterbar-python >= 0.14.9
 
 %description
 Deluge is a new BitTorrent client, created using Python and GTK+. It is
@@ -154,6 +154,13 @@ fi
 
 
 %changelog
+* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.2.1-1
+- new upstream release
+- added Requires: python-mako, notify-python, gnome-python
+- removed Requires: /bin/sh, dbus-python, dbus-x11
+- changed BuildRequires and Requires: libtorrent-rasterbar-python >= 0.14.9
+- applied new naming policy to spec
+
 * Tue Feb 9 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.2.0-2
 - rebuilt with python-2.6.4
 

+ 6 - 2
lib/libt/libtorrent-rasterbar/libtorrent-rasterbar-vl.spec

@@ -2,8 +2,8 @@
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 
 Name:		libtorrent-rasterbar
-Version:	0.14.8
-Release:	2%{?_dist_release}
+Version:	0.14.9
+Release:	1%{?_dist_release}
 Summary:	A C++ BitTorrent library aiming to be the best alternative
 Summary(ja):	最良の代替手段となることを目指す C++ BitTorrent ライブラリ
 
@@ -187,6 +187,10 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.14.9-1
+- new upstream release
+- applied new naming policy to spec
+
 * Mon Feb 08 2010 Shu KONNO <owa@bg.wakwak.com> 0.14.8-2
 - rebuilt with new toolchain, python-2.6.4-3
 

+ 118 - 0
p/python-beaker/python-beaker-vl.spec

@@ -0,0 +1,118 @@
+%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name: python-beaker
+Version: 1.5.3
+Release: 1%{?_dist_release}
+Summary: WSGI middleware layer to provide sessions
+Summary(ja): セッションを提供するための WSGI ミドルウェアレイヤ
+
+Group: Development/Languages
+License: BSD
+URL: http://beaker.groovie.org/
+Source0: http://pypi.python.org/packages/source/B/Beaker/beaker-v%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+BuildArch: noarch
+BuildRequires: python-setuptools
+#Patch1: %{name}-absimport.patch
+
+%description
+Beaker is a caching library that includes Session and Cache objects built on
+Myghty's Container API used in MyghtyUtils. WSGI middleware is also included to
+manage Session objects and signed cookies.
+
+
+%prep
+%setup -q -n beaker
+#%patch1 -p0 -b .absimport
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc LICENSE CHANGELOG
+%{python_sitelib}/beaker/
+%{python_sitelib}/Beaker*
+
+
+%changelog
+* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.3-1
+- initail build for VineSeed
+
+* Fri Jan 22 2010 Luke Macken <lmacken@redhat.com> - 1.5.1-1
+- Update to 1.5.1
+- Remove beaker-hmac2.4.patch, which made it into 1.4 upstream
+- Remove middleware-config.patch which is also upstream
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Tue Jul 21 2009 Kyle VanderBeek <kylev@kylev.com> - 1.3.1-5
+- Add patch based on upstream hg 403ef7c82d32 for config overwriting that
+  breaks Pylons unit tests
+
+* Sat Jun 27 2009 Luke Macken <lmacken@redhat.com> - 1.3.1-4
+- Add a patch to remove the use of __future__.absolute_import in the google
+  backend
+
+* Sat Jun 20 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-3
+- Different hmac patch suitable for upstream inclusion.
+
+* Tue Jun 02 2009 Luke Macken <lmacken@redhat.com> - 1.3.1-2
+- Add a patch to remove Beaker's use of hashlib on Python2.4,
+  due to incompatiblities with Python's hmac module (#503772)
+
+* Sun May 31 2009 Luke Macken <lmacken@redhat.com> - 1.3.1-1
+- Update to 1.3.1
+
+* Tue Apr 07 2009 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 1.3-1
+- Update to 1.3
+ 
+* Sun Apr 05 2009 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 1.2.3-1
+- Update to 1.2.3
+ 
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Tue Jan 06 2009 Luke Macken <lmacken@redhat.com> - 1.1.3-1
+- Update to 1.1.3
+
+* Sat Dec 20 2008 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 1.1.2-1
+- Update to 1.1.2
+ 
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.3-2
+- Rebuild for Python 2.6
+
+* Tue Jun 24 2008 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 1.0.3-1
+- Update to 1.0.3.
+
+* Tue Jun 24 2008 Kyle VanderBeek <kylev@kylev.com> - 0.9.5-1
+- Update to 0.9.5.
+- Remove license patch which is now corrected upstream.
+
+* Mon May 12 2008 Kyle VanderBeek <kylev@kylev.com> - 0.9.4-4
+- Fix files to not use wildcard, fixing dir ownership
+
+* Mon May 12 2008 Kyle VanderBeek <kylev@kylev.com> - 0.9.4-3
+- Corrected license
+
+* Mon May 12 2008 Kyle VanderBeek <kylev@kylev.com> - 0.9.4-2
+- More restrictive file includes for safety
+
+* Sun May 11 2008 Kyle VanderBeek <kylev@kylev.com> - 0.9.4-1
+- Update to 0.9.4 (security fix)
+- Fix rpmlint complaints, add CHANGELOG and LICENSE
+
+* Wed Apr  9 2008 Kyle VanderBeek <kylev@kylev.com> - 0.9.3-1
+- Initial version.

+ 74 - 0
p/python-mako/python-mako-vl.spec

@@ -0,0 +1,74 @@
+%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name: python-mako
+Version: 0.3.2
+Release: 1%{?_dist_release}
+Summary: Mako template library for Python
+Summary(ja): Python の Mako テンプレートライブラリ
+
+Group: Development/Languages
+License: MIT
+URL: http://www.makotemplates.org/
+Source0: http://www.makotemplates.org/downloads/Mako-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+BuildArch: noarch
+BuildRequires: python-setuptools
+Requires: python-beaker
+
+%description
+Mako is a template library written in Python. It provides a familiar, non-XML
+syntax which compiles into Python modules for maximum performance. Mako's
+syntax and API borrows from the best ideas of many others, including Django
+templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded
+Python (i.e. Python Server Page) language, which refines the familiar ideas of
+componentized layout and inheritance to produce one of the most straightforward
+and flexible models available, while also maintaining close ties to Python
+calling and scoping semantics.
+
+
+%prep
+%setup -q -n Mako-%{version}
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+ 
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc CHANGES LICENSE README doc examples
+%{_bindir}/mako-render
+%{python_sitelib}/*
+
+
+%changelog
+* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.2-1
+- initial build for VineSeed
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Tue Jan 06 2009 Luke Macken <lmacken@redhat.com> - 0.2.4-1
+- Update to 0.2.4
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.10-3
+- Rebuild for Python 2.6
+
+* Sun May 11 2008 Kyle VanderBeek <kylev@kylev.com> - 0.1.10-2
+- Fix rpmlint warnings.
+- Add docs and examples.
+
+* Wed Apr  9 2008 Kyle VanderBeek <kylev@kylev.com> - 0.1.10-1
+- Initial version.

+ 5 - 1
t/transmission/transmission-vl.spec

@@ -1,5 +1,5 @@
 Name:	transmission
-Version:	1.91
+Version:	1.92
 Release:	1%{?_dist_release}
 Summary:	A lightweight BitTorrent client
 Summary(ja):	軽量な BitTorrent クライアント
@@ -249,6 +249,10 @@ fi
 %{_datadir}/applications/vine-qtr.desktop
 
 %changelog
+* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.92-1
+- Update to upstream 1.92
+- applied new naming policy to spec
+
 * Mon Feb 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.91-1
 - Update to upstream 1.91
 - changed summary, summary(ja) a little

+ 6 - 2
u/uget/uget-vl.spec

@@ -1,7 +1,7 @@
-%define _version 1.5.0.1
+%define _version 1.5.0.2
 Name:		uget
 Version:	%{_version}
-Release:	2%{?_dist_release}
+Release:	1%{?_dist_release}
 Summary:	Uget is a download manager that using gtk+2 and curl
 Summary(ja):	Uget - gtk+2 と curl を用いたダウンロードマネージャ
 
@@ -67,6 +67,10 @@ update-desktop-database > /dev/null 2>&1 || :
 %{_datadir}/sounds/*
 
 %changelog
+* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.0.2-1
+- new upstream release
+- applied new naming policy to spec
+
 * Wed Jan 17 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.0.1-2
 - added Patch1 from Fedora to fix segv when invalid uri is passed to the argument