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 glob
|
|
|
|
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',
|
2008-08-12 14:19:52 +01:00
|
|
|
'buildd',
|
2008-08-09 14:12:06 +02:00
|
|
|
'check-symbols',
|
|
|
|
'dch-repeat',
|
|
|
|
'dgetlp',
|
2007-09-07 14:21:20 +02:00
|
|
|
'get-branches',
|
2008-08-09 14:12:06 +02:00
|
|
|
'get-build-deps',
|
|
|
|
'grab-attachments',
|
|
|
|
'hugdaylist',
|
|
|
|
'massfile',
|
|
|
|
'mk-sbuild-lv',
|
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-08-09 14:12:06 +02:00
|
|
|
'pull-lp-source',
|
2007-09-12 16:27:54 +02:00
|
|
|
'requestsync',
|
2008-03-18 14:08:33 +01:00
|
|
|
'reverse-build-depends',
|
2008-08-09 14:12:06 +02:00
|
|
|
'submittodebian',
|
|
|
|
'suspicious-source',
|
|
|
|
'update-maintainer',
|
|
|
|
'what-patch',
|
2007-10-27 23:04:05 +02:00
|
|
|
],
|
2008-02-18 17:33:02 +01:00
|
|
|
packages=['ubuntutools'],
|
2007-06-01 11:44:28 +02:00
|
|
|
)
|