]> git.pld-linux.org Git - packages/python-setuptools.git/commitdiff
- new
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 9 Dec 2005 17:34:39 +0000 (17:34 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    python-setuptools.spec -> 1.1

python-setuptools.spec [new file with mode: 0644]

diff --git a/python-setuptools.spec b/python-setuptools.spec
new file mode 100644 (file)
index 0000000..363b023
--- /dev/null
@@ -0,0 +1,48 @@
+
+%define        module  setuptools
+
+Summary:       A collection of enhancements to the Python distutils
+Name:          python-setuptools
+Version:       0.6a8
+Release:       1
+License:       GPL
+Group:         Development/Languages/Python
+Source0:       http://cheeseshop.python.org/packages/source/s/setuptools/setuptools-%{version}.zip
+# Source0-md5: 3eecdf66c1a2cf8a6556bc00b69d572a
+URL:           http://peak.telecommunity.com/DevCenter/setuptools
+%pyrequires_eq python
+BuildRequires: python-devel
+BuildRequires: unzip
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+setuptools is a collection of enhancements to the Python distutils
+(for Python 2.3.5 and up on most platforms; 64-bit platforms require a
+minimum of Python 2.4) that allow you to more easily build and
+distribute Python packages, especially ones that have dependencies on
+other packages.
+
+%prep
+%setup  -q -n %{module}-%{version}
+
+%build
+python ./setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+python ./setup.py install \
+       --optimize 2 \
+       --root=$RPM_BUILD_ROOT
+
+%py_postclean
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc *.txt
+%attr(755,root,root) %{_bindir}/*
+%{py_sitescriptdir}/%{module}*
This page took 0.078192 seconds and 4 git commands to generate.