|
@@ -1,21 +1,26 @@
|
|
|
-%define _python python%(python -c 'import sys;print(sys.version[0:3])')
|
|
|
+%define _zope2_pythonlibs %{_var}/lib/Zope2/lib/python
|
|
|
+%define _zope2_installdir %{_var}/lib/Zope2/Products
|
|
|
%define _product ZPsycopgDA
|
|
|
-%define _zope_instance %{_libdir}/zope/lib/python/Products
|
|
|
-
|
|
|
Summary: psycopg is a PostgreSQL database adapter for Python
|
|
|
Summary(ja): psycopg は Python の PostgreSQL 用データベースアダプタです
|
|
|
Name: python-psycopg
|
|
|
Group: Applications/Databases
|
|
|
Version: 1.1.21
|
|
|
-Release: 4%{?_dist_release}
|
|
|
+Release: 5%{?_dist_release}
|
|
|
License: GNU GPL2
|
|
|
URL: http://initd.org/software/initd/psycopg
|
|
|
-Source: http://initd.org/pub/software/psycopg/psycopg-%{version}.tar.gz
|
|
|
+Source0: http://initd.org/pub/software/psycopg/psycopg-%{version}.tar.gz
|
|
|
+Patch0: psycopg-1.1.21-DA.patch
|
|
|
+Patch1: psycopg-1.1.21-DABase.patch
|
|
|
+BuildRequires: python-devel
|
|
|
+BuildRequires: postgresql-devel
|
|
|
+BuildRequires: python-egenix-mx-base
|
|
|
+Requires: python
|
|
|
+Requires: postgresql-libs
|
|
|
+BuildRoot: %{_tmppath}/psycopg-%{version}-root
|
|
|
Distribution: Vine Linux
|
|
|
Vendor: Project Vine
|
|
|
-BuildRoot: %{_tmppath}/psycopg-%{version}-root
|
|
|
-BuildRequires: python-devel postgresql-devel python-egenix-mx-base
|
|
|
-Requires: python postgresql-libs
|
|
|
+Packager: owa
|
|
|
|
|
|
%description
|
|
|
psycopg is a PostgreSQL database adapter for the Python programming
|
|
@@ -32,57 +37,76 @@ Group: Applications/Databases
|
|
|
Documenation and example files for the psycopg python PostgreSQL
|
|
|
database adapter.
|
|
|
|
|
|
-%package -n Zope-%{_product}
|
|
|
+%package %{_product}
|
|
|
Summary: ZPsycopgDA is a PostgreSQL database adapter product for Zope
|
|
|
Group: Development/Web Applications
|
|
|
-Requires: python-psycopg == %{version}
|
|
|
-Requires: Zope-zserver
|
|
|
+Requires: %{name} == %{version}
|
|
|
+Requires: Zope2-zserver >= 2.12
|
|
|
+Provides: %{_product}
|
|
|
+Obsoletes: Zope-%{_product}
|
|
|
|
|
|
-%description -n Zope-%{_product}
|
|
|
+%description %{_product}
|
|
|
ZPsycopgDA is a PostgreSQL database adapter product for Zope.
|
|
|
|
|
|
+
|
|
|
%prep
|
|
|
%setup -q -n psycopg-%{version}
|
|
|
+%patch0 -p1 -b .DA
|
|
|
+%patch1 -p1 -b .DABase
|
|
|
+
|
|
|
|
|
|
%build
|
|
|
%configure \
|
|
|
- --with-python=%{_bindir}/%{_python} \
|
|
|
--with-postgres-libraries=%{_libdir} \
|
|
|
--with-postgres-includes=%{_includedir}/pgsql \
|
|
|
- --with-mxdatetime-includes=%{_libdir}/%{_python}/site-packages/mx/DateTime/mxDateTime \
|
|
|
- --with-zope=%{_libdir}/zope
|
|
|
-
|
|
|
+ --with-mxdatetime-includes=%{python_sitearch}/mx/DateTime/mxDateTime \
|
|
|
+ --with-zope=%{_libdir}/Zope2 \
|
|
|
+ ;
|
|
|
make
|
|
|
|
|
|
+
|
|
|
%install
|
|
|
-mkdir -p $RPM_BUILD_ROOT%{_libdir}/%{_python}/site-packages
|
|
|
-install -m 755 psycopgmodule.so $RPM_BUILD_ROOT%{_libdir}/%{_python}/site-packages
|
|
|
+rm -rf $RPM_BUILD_ROOT
|
|
|
+mkdir -p $RPM_BUILD_ROOT%{python_sitearch}
|
|
|
+install -m 755 psycopgmodule.so $RPM_BUILD_ROOT%{python_sitearch}
|
|
|
+mkdir -p $RPM_BUILD_ROOT%{_zope2_pythonlibs}
|
|
|
+ln -sf %{python_sitearch}/psycopgmodule.so $RPM_BUILD_ROOT%{_zope2_pythonlibs}
|
|
|
|
|
|
-mkdir -p $RPM_BUILD_ROOT%{_zope_instance}
|
|
|
find %{_product} -name CVS | xargs rm -fr
|
|
|
-cp -pR %{_product} $RPM_BUILD_ROOT%{_zope_instance}
|
|
|
+mkdir -p $RPM_BUILD_ROOT%{_zope2_installdir}
|
|
|
+cp -pR %{_product} $RPM_BUILD_ROOT%{_zope2_installdir}
|
|
|
+
|
|
|
|
|
|
%clean
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
-%post
|
|
|
-if [ -d /var/lib/zope/Products/%{_product} ]; then
|
|
|
- rm -rf /var/lib/zope/Products/%{_product}
|
|
|
+
|
|
|
+%preun %{_product}
|
|
|
+if [ $1 = 0 ]; then
|
|
|
+ rm -rf %{_zope2_installdir}/%{_product}/*.pyc
|
|
|
fi
|
|
|
|
|
|
+
|
|
|
%files
|
|
|
%defattr(-,root,root)
|
|
|
-%{_libdir}/%{_python}/site-packages/*.so
|
|
|
+%{python_sitearch}/psycopgmodule.so
|
|
|
|
|
|
%files doc
|
|
|
%defattr(-,root,root)
|
|
|
-%doc AUTHORS COPYING CREDITS FAQ INSTALL NEWS README RELEASE-1.0 SUCCESS TODO doc
|
|
|
+%doc AUTHORS COPYING CREDITS FAQ INSTALL NEWS README RELEASE-1.0 SUCCESS TODO doc
|
|
|
+
|
|
|
+%files %{_product}
|
|
|
+%defattr(-,Zope2,Zope2)
|
|
|
+%{_zope2_pythonlibs}/psycopgmodule.so
|
|
|
+%{_zope2_installdir}/%{_product}
|
|
|
|
|
|
-%files -n Zope-%{_product}
|
|
|
-%defattr(-,zope,zope)
|
|
|
-%{_zope_instance}/%{_product}
|
|
|
|
|
|
%changelog
|
|
|
+* Wed Dec 15 2010 Shu KONNO <owa@bg.wakwak.com> 1.1.21-5
|
|
|
+- added psycopg-1.1.21-DA.patch
|
|
|
+- added psycopg-1.1.21-DABase.patch
|
|
|
+- rename sub-package: Zope-%{_product} => %{name}-%{_product}
|
|
|
+
|
|
|
* Tue Feb 02 2010 Shu KONNO <owa@bg.wakwak.com> 1.1.21-4
|
|
|
- rebuild with python-2.6
|
|
|
|