~ubuntu-branches/ubuntu/trusty/dput-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Paul Tagliamonte, Arno Töll, Ansgar Burchardt, Paul Tagliamonte
  • Date: 2012-12-04 09:19:39 UTC
  • Revision ID: package-import@ubuntu.com-20121204091939-u99bdiu23jevgxn5
Tags: 1.1
* The "monday afternoon's a rather awkward day to get so drunk" release

[ Arno Töll ]
* Clarify copyight for dput/changes.py: It's MIT, not GPL
* Install dput.cf(5) to the correct man page directory.
* Fix a bunch of grammar and Python styling issues - thanks to Jakub Wilk
  for the pointers.
* Fix "FTBFS: a2x call -> missing build dependency on docbook-xsl" add
  docbook-xsl to the build dependencies. Thanks gregoa for spotting it and
  providing a fix (Closes: #694983)

[ Ansgar Burchardt ]
* debian/control: Add Vcs-{Browser,Git} fields.
* debian/control: Conflicts: dput instead of Breaks.
* debian/control: Don't use hyphens in the package description.

[ Paul Tagliamonte ]
* debian/copyright: move to DEP5.
* debian/control: remove senseless multiarch tags
* debian/control: add Homepage
* debian/control: since we conflict with dput-old, mark this as priority
  extra.
* other random pythonic fixes pointed out by Jakub.
   + pep8'd `klass' to `cls'
   + clean the .coverage file
   + remove the except:\n\tpass

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
from setuptools import setup
6
6
 
7
7
long_description = open('README.md').read()
8
 
cur = open('debian/changelog', 'r').readlines()[0].strip()
9
 
rgx = r"(?<src>.+) \((?<version>.+)\) (?<suite>.*); .*"
 
8
cur = open('debian/changelog', 'r').readline().strip()
10
9
pobj = re.findall(
11
10
    r'(?P<src>.*) \((?P<version>.*)\) (?P<suite>.*); .*',
12
11
    cur