2007-06-01 11:44:28 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
setup(name='ubuntu-dev-tools',
|
|
|
|
version=version,
|
2007-07-04 12:23:13 +02:00
|
|
|
scripts=['404main',
|
2007-09-07 14:21:20 +02:00
|
|
|
'check-symbols',
|
|
|
|
'get-branches',
|
|
|
|
'pbuilder-dist',
|
|
|
|
'update-maintainer',
|
|
|
|
'dch-repeat',
|
|
|
|
'mk-sbuild-lv',
|
|
|
|
'pull-debian-debdiff',
|
|
|
|
'what-patch',
|
|
|
|
'suspicious-source',
|
2007-09-13 14:36:09 +02:00
|
|
|
'ppaput',
|
2007-09-12 16:27:54 +02:00
|
|
|
'requestsync',
|
2007-09-27 11:09:42 +02:00
|
|
|
'hugdaylist',
|
2007-10-05 11:36:28 +02:00
|
|
|
'massfile',
|
|
|
|
'submittodebian'
|
2007-09-07 14:21:20 +02:00
|
|
|
],
|
2007-06-01 11:44:28 +02:00
|
|
|
)
|
|
|
|
|