summaryrefslogtreecommitdiffstats
path: root/python-Acquisition
diff options
context:
space:
mode:
authorRobin Lee <robinlee.sysu@gmail.com>2010-06-17 22:18:59 +0800
committerRobin Lee <robinlee.sysu@gmail.com>2010-06-17 22:18:59 +0800
commitbc057b279eb24cbf66ad6ff917b46fc0e375af8b (patch)
treec7d1a5836df04c6ed399ea8556d37dc734156919 /python-Acquisition
parent839c24b70dac3d1c5e0fec4e76911534091501c2 (diff)
downloadzope-rpm-bc057b279eb24cbf66ad6ff917b46fc0e375af8b.tar.gz
zope-rpm-bc057b279eb24cbf66ad6ff917b46fc0e375af8b.tar.xz
zope-rpm-bc057b279eb24cbf66ad6ff917b46fc0e375af8b.zip
most of the denpendencies of Zope 2.12
Diffstat (limited to 'python-Acquisition')
-rw-r--r--python-Acquisition/F-13/python-Acquisition.spec77
1 files changed, 77 insertions, 0 deletions
diff --git a/python-Acquisition/F-13/python-Acquisition.spec b/python-Acquisition/F-13/python-Acquisition.spec
new file mode 100644
index 0000000..11abe42
--- /dev/null
+++ b/python-Acquisition/F-13/python-Acquisition.spec
@@ -0,0 +1,77 @@
+%include %{_rpmconfigdir}/macros.python
+%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
+%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
+%endif
+%global modname Acquisition
+%global version 2.13.3
+%global release 1
+
+Summary: Allowing objects to obtain attributes from their containment hierarchy
+Name: python-%{modname}
+Version: %{version}
+Release: %{release}%{?dist}
+License: ZPLv2.1
+Source0: http://pypi.python.org/packages/source/A/%{modname}/%{modname}-%{version}.zip
+Group: Development/Libraries
+URL: http://pypi.python.org/pypi/Acquisition
+
+BuildRequires: python2-devel
+BuildRequires: python-setuptools
+#BuildRequires: python-ExtensionClass-devel
+Requires: python-ExtensionClass
+Requires: python-zope-interface
+
+%description
+Acquisition provides a powerful way to dynamically share information
+between objects. Zope 2 uses acquisition for a number of its key
+features including security, object publishing, and DTML variable
+lookup. Acquisition also provides an elegant solution to the problem
+of circular references for many classes of problems. While acquisition
+is powerful, you should take care when using acquisition in your
+applications. The details can get complex, especially with the
+differences between acquiring from context and acquiring from
+containment.
+
+%package devel
+Summary: Developer files for %{name}
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: python2-devel
+Requires: python-ExtensionClass-devel
+BuildArch: noarch
+%description devel
+Files for developing applications using %{name}.
+
+%prep
+%setup -q -n %{modname}-%{version}
+
+%build
+env CFLAGS="$RPM_OPT_FLAGS" python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+python setup.py install --root=$RPM_BUILD_ROOT
+# remove contained source file(s)
+find $RPM_BUILD_ROOT -name '*.c' -type f -print0 | xargs -0 rm -fv
+# deal with header file(s)
+rm $RPM_BUILD_ROOT%{python_sitearch}/%{modname}/*.txt
+mkdir -p $RPM_BUILD_ROOT%{_includedir}/python%{py_ver}/%{modname}/
+mv $RPM_BUILD_ROOT%{python_sitearch}/%{modname}/%{modname}.h \
+ $RPM_BUILD_ROOT%{_includedir}/python%{py_ver}/%{modname}/
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc CHANGES.txt COPYRIGHT.txt LICENSE.txt src/Acquisition/README.txt
+%{python_sitearch}/%{modname}/
+%{python_sitearch}/%{modname}-*.egg-info
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/python%{py_ver}/%{modname}/
+
+%changelog
+* Tue Jun 15 2010 Robin Lee <robinlee.sysu@gmail.com> - 2.13.3-1
+- Initial packaging