2008-08-12 14:19:52 +01:00
|
|
|
#!/usr/bin/python
|
2007-06-01 11:44:28 +02:00
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
|
|
|
# look/set what version we have
|
|
|
|
changelog = "debian/changelog"
|
|
|
|
if os.path.exists(changelog):
|
|
|
|
head=open(changelog).readline()
|
|
|
|
match = re.compile(".*\((.*)\).*").match(head)
|
|
|
|
if match:
|
|
|
|
version = match.group(1)
|
2007-10-27 23:04:05 +02:00
|
|
|
|
2007-06-01 11:44:28 +02:00
|
|
|
setup(name='ubuntu-dev-tools',
|
|
|
|
version=version,
|
2008-08-09 14:12:06 +02:00
|
|
|
scripts=['404main',
|
|
|
|
'check-symbols',
|
|
|
|
'dch-repeat',
|
|
|
|
'dgetlp',
|
2010-04-13 23:13:41 +02:00
|
|
|
'edit-patch',
|
2007-09-07 14:21:20 +02:00
|
|
|
'get-branches',
|
2008-08-09 14:12:06 +02:00
|
|
|
'get-build-deps',
|
|
|
|
'grab-attachments',
|
2009-03-05 15:14:21 +00:00
|
|
|
'grab-merge',
|
2008-08-09 14:12:06 +02:00
|
|
|
'hugdaylist',
|
2010-07-11 20:30:08 +02:00
|
|
|
'import-bug-from-debian',
|
2009-09-05 16:40:10 +02:00
|
|
|
'lp-project-upload',
|
2009-01-19 15:52:03 +01:00
|
|
|
'lp-set-dup',
|
2010-01-13 14:32:07 +01:00
|
|
|
'lp-shell',
|
2009-01-17 11:32:49 +00:00
|
|
|
'manage-credentials',
|
2008-08-09 14:12:06 +02:00
|
|
|
'massfile',
|
2010-02-15 16:34:10 -05:00
|
|
|
'merge-changelog',
|
2010-02-08 20:04:33 -05:00
|
|
|
'mk-sbuild',
|
2007-09-07 14:21:20 +02:00
|
|
|
'pbuilder-dist',
|
2008-02-25 21:11:24 +01:00
|
|
|
'pbuilder-dist-simple',
|
2007-09-07 14:21:20 +02:00
|
|
|
'pull-debian-debdiff',
|
2008-12-30 15:53:03 +00:00
|
|
|
'pull-debian-source',
|
2008-08-09 14:12:06 +02:00
|
|
|
'pull-lp-source',
|
2009-09-01 11:07:18 +00:00
|
|
|
'pull-revu-source',
|
2007-09-12 16:27:54 +02:00
|
|
|
'requestsync',
|
2008-03-18 14:08:33 +01:00
|
|
|
'reverse-build-depends',
|
2009-10-25 16:17:10 +01:00
|
|
|
'setup-packaging-environment',
|
2008-08-09 14:12:06 +02:00
|
|
|
'submittodebian',
|
|
|
|
'suspicious-source',
|
2010-04-22 21:53:12 +02:00
|
|
|
'syncpackage',
|
2009-11-30 23:01:47 +01:00
|
|
|
'ubuntu-build',
|
2008-10-02 22:36:26 +01:00
|
|
|
'ubuntu-iso',
|
2008-08-09 14:12:06 +02:00
|
|
|
'update-maintainer',
|
2009-01-13 13:32:02 +01:00
|
|
|
'what-patch',
|
2007-10-27 23:04:05 +02:00
|
|
|
],
|
2009-09-01 10:56:57 +02:00
|
|
|
packages=['ubuntutools',
|
|
|
|
'ubuntutools/lp',
|
|
|
|
'ubuntutools/requestsync',
|
|
|
|
],
|
2007-06-01 11:44:28 +02:00
|
|
|
)
|