[Python-modules-commits] r19923 - in packages/python-icalendar/trunk/debian (3 files)
paultag-guest at users.alioth.debian.org
paultag-guest at users.alioth.debian.org
Sun Jan 8 00:42:31 UTC 2012
Date: Sunday, January 8, 2012 @ 00:42:29
Author: paultag-guest
Revision: 19923
Adding in a patch to correct the upstream build-chain
Added:
packages/python-icalendar/trunk/debian/patches/
packages/python-icalendar/trunk/debian/patches/fix-build-chain.patch
packages/python-icalendar/trunk/debian/patches/series
Added: packages/python-icalendar/trunk/debian/patches/fix-build-chain.patch
===================================================================
--- packages/python-icalendar/trunk/debian/patches/fix-build-chain.patch (rev 0)
+++ packages/python-icalendar/trunk/debian/patches/fix-build-chain.patch 2012-01-08 00:42:29 UTC (rev 19923)
@@ -0,0 +1,45 @@
+From: Paul Tagliamonte <paultag at ubuntu.com>
+Date: Sat, 7 Jan 2012 19:38:23 -0500
+Subject: Fix the upstream build system to be sane
+
+ - MANIFEST.in
+ * Removed the recursive addition of iCalendar's module
+
+ - setup.py
+ * Removed the icalendar.tests module from being installed
+ * Removed the unneeded dependency on setuptools.
+
+---
+ MANIFEST.in | 1 -
+ setup.py | 3 +--
+ 2 files changed, 1 insertions(+), 3 deletions(-)
+
+diff --git a/MANIFEST.in b/MANIFEST.in
+index 6ec5b84..48f0ffb 100644
+--- a/MANIFEST.in
++++ b/MANIFEST.in
+@@ -1,3 +1,2 @@
+ include README.rst docs/changelog.rst
+-recursive-include src/icalendar *
+ recursive-exclude src/icalendar *.pyc
+diff --git a/setup.py b/setup.py
+index abc7fa8..f320fe0 100644
+--- a/setup.py
++++ b/setup.py
+@@ -22,12 +22,11 @@ setuptools.setup(
+ author_email='max at mxm.dk',
+ url='https://gihub.com/collective/icalendar',
+ license='GPL',
+- packages=setuptools.find_packages('src'),
++ packages=['icalendar'],
+ package_dir={'': 'src'},
+ include_package_data=True,
+ zip_safe=False,
+ install_requires=[
+- 'setuptools',
+ ],
+ extras_require={
+ 'test': [
+--
+1.7.8.2
+
Added: packages/python-icalendar/trunk/debian/patches/series
===================================================================
--- packages/python-icalendar/trunk/debian/patches/series (rev 0)
+++ packages/python-icalendar/trunk/debian/patches/series 2012-01-08 00:42:29 UTC (rev 19923)
@@ -0,0 +1 @@
+fix-build-chain.patch
More information about the Python-modules-commits
mailing list