mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 15:41:09 +00:00
* Added the merge-changelog script from https://lists.ubuntu.com/archives/ubuntu-x/2009-June/000586.html for those who need to manually merge packages. * Fixed typo in doc/grab-merge.1
56 lines
1.5 KiB
Python
Executable File
56 lines
1.5 KiB
Python
Executable File
#!/usr/bin/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,
|
|
scripts=['404main',
|
|
'check-symbols',
|
|
'edit-patch',
|
|
'dch-repeat',
|
|
'dgetlp',
|
|
'get-branches',
|
|
'get-build-deps',
|
|
'grab-attachments',
|
|
'grab-merge',
|
|
'hugdaylist',
|
|
'lp-project-upload',
|
|
'lp-set-dup',
|
|
'lp-shell',
|
|
'manage-credentials',
|
|
'massfile',
|
|
'merge-changelog',
|
|
'mk-sbuild',
|
|
'pbuilder-dist',
|
|
'pbuilder-dist-simple',
|
|
'pull-debian-debdiff',
|
|
'pull-debian-source',
|
|
'pull-lp-source',
|
|
'pull-revu-source',
|
|
'requestsync',
|
|
'reverse-build-depends',
|
|
'setup-packaging-environment',
|
|
'submittodebian',
|
|
'suspicious-source',
|
|
'ubuntu-build',
|
|
'ubuntu-iso',
|
|
'update-maintainer',
|
|
'what-patch',
|
|
],
|
|
packages=['ubuntutools',
|
|
'ubuntutools/lp',
|
|
'ubuntutools/requestsync',
|
|
],
|
|
)
|