~ubuntu-branches/debian/squeeze/configobj/squeeze

« back to all changes in this revision

Viewing changes to debian/patches/eggify.diff

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Rivera, Sandro Tosi, Stefano Rivera
  • Date: 2010-02-01 01:34:21 UTC
  • mfrom: (1.3.1 upstream) (6.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100201013421-jnt5mxdpfpsrjawy
Tags: 4.7.0-1
[ Sandro Tosi ]
* debian/control
  - switch Vcs-Browser field to viewsvn

[ Stefano Rivera ]
* New upstream release. (Closes: 555407)
* Package under team maintenance. (Closes: 544448)
* Bumped Standards-Version to 3.8.4 (no changes needed).
* Converted to 3.0 (quilt)
* debian/rules
  - Converted to debhelper 7 overrides
  - Don't compress epydoc.js
* Patches:
  - 01_eggify.dpatch converted to eggify.diff (quilt+DEP3).
  - 02_doc_generation_fix.dpatch removed (fixed upstream)
* debain/control
  - Unversioned python-setuptools dependency (oldstable has a suitable
    version)
  - Removed unecessary XB-Python-Version.
  - Minor changes to description.
* debian/copyright
  - Updated years and added author Mark Andrews.
  - Included full license, as it isn't identical to the common-licenses one.
* debian/watch
  - Switched from sf.net to author's homepage, as redirector can't see
    4.7.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Switch from using distutils to setuptools.
 
2
Author: Daniel Watkins <daniel@daniel-watkins.co.uk>
 
3
Forwarded: not-needed
 
4
Last-Update: 2010-01-31
 
5
 
 
6
--- configobj_4.5.2.orig/setup.py
 
7
+++ configob_4.5.2/setup.py
 
8
@@ -9,7 +9,7 @@
 
9
 # http://www.voidspace.org.uk/python/license.shtml
 
10
 
 
11
 import sys
 
12
-from distutils.core import setup
 
13
+from setuptools import setup
 
14
 from configobj import __version__ as VERSION
 
15
 
 
16
 NAME = 'configobj'