mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-14 00:21:08 +00:00
Rename new binary to python-ubuntutools (ubuntutools is a namespace now). Minor changes.
This commit is contained in:
parent
737d0f8ad4
commit
ba584a2699
3
TODO
Normal file
3
TODO
Normal file
@ -0,0 +1,3 @@
|
||||
- Create missing manpages (for all commands).
|
||||
- Document ubuntutools Python modules.
|
||||
- Add the process-interdiff script to ubuntu-dev-tools.
|
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -10,12 +10,13 @@ ubuntu-dev-tools (0.27) UNRELEASED; urgency=low
|
||||
|
||||
[ Siegfried-Angel Gevatter Pujals (RainCT) ]
|
||||
* Remove wrong element from doc/ppaput.1.docbook.
|
||||
* Move ppaput.py into new python_modules/directory and remove
|
||||
* Move ppaput.py into new ubuntutools/ directory and remove
|
||||
it's shabang.
|
||||
* Write a description for the new python-ubuntu-utils binary
|
||||
* Write a description for the new python-ubuntutools binary
|
||||
package in debian/control. Add a "Suggests: ubuntu-dev-tools".
|
||||
* Check for reportbug being installed in submittodebian. Replace
|
||||
reportbug dependency with a Recommends.
|
||||
* Add ppaput to debian/copyright.
|
||||
* Remove debian/pycompat.
|
||||
|
||||
-- Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com> Sun, 17 Feb 2008 22:05:00 +0100
|
||||
@ -23,7 +24,7 @@ ubuntu-dev-tools (0.27) UNRELEASED; urgency=low
|
||||
ubuntu-dev-tools (0.26) hardy; urgency=low
|
||||
|
||||
[ Stephan Hermann ]
|
||||
* pbuild-dist: fixed a bug with the *sudo call.
|
||||
* pbuilder-dist: fixed a bug with the *sudo call.
|
||||
changed from $SUDOREPLACE "pbuilder" to $SUDOREPLACE -- pbuilder ...
|
||||
|
||||
[ Daniel Hahler ]
|
||||
|
8
debian/control
vendored
8
debian/control
vendored
@ -13,7 +13,7 @@ Standards-Version: 3.7.3
|
||||
Package: ubuntu-dev-tools
|
||||
Architecture: all
|
||||
Section: devel
|
||||
Depends: ${python:Depends}, ${misc:Depends}, binutils, devscripts, sudo, python-launchpad-bugs (>= 0.2.25), python-debian, dctrl-tools, lsb-release
|
||||
Depends: ${python:Depends}, binutils, devscripts, sudo, python-launchpad-bugs (>= 0.2.25), python-debian, dctrl-tools, lsb-release
|
||||
Recommends: bzr, pbuilder, python-ubuntu-utils, reportbug (>= 3.39ubuntu1)
|
||||
Conflicts: devscripts (<< 2.10.7ubuntu5)
|
||||
Replaces: devscripts (<< 2.10.7ubuntu5)
|
||||
@ -23,15 +23,15 @@ Description: useful tools for Ubuntu developers
|
||||
make their packaging work a lot easier. Such tools can include bug
|
||||
filing, packaging preparation, package analysis, etc.
|
||||
|
||||
Package: python-ubuntu-utils
|
||||
Package: python-ubuntutools
|
||||
Architecture: all
|
||||
Section: python
|
||||
Depends: ${python:Depends}
|
||||
Suggests: ubuntu-dev-tools
|
||||
XB-Python-Version: ${python:Versions}
|
||||
Description: useful Python modules for Ubuntu developers
|
||||
This is a collection of useful Python modules that people interested
|
||||
in Ubuntu development might find interesting. Those include:
|
||||
This is a namespace of Python modules that people interested in
|
||||
Ubuntu development might find useful. It include:
|
||||
.
|
||||
* ppaput: a Python module that abstracts the process of creating and
|
||||
uploading Debian source packages to Launchpad's Personal Package
|
||||
|
9
debian/copyright
vendored
9
debian/copyright
vendored
@ -1,7 +1,8 @@
|
||||
This package was re-debianized by Daniel Holbach <daniel.holbach@ubuntu.com> on
|
||||
Fri, 01 Jun 2007 11:30:08 +0200.
|
||||
|
||||
Upstream Author:
|
||||
Upstream Authors:
|
||||
|
||||
Albert Damen <albrt@gmx.net>
|
||||
Albin Tonnerre <lut1n.tne@gmail.com>
|
||||
Daniel Holbach <daniel.holbach@ubuntu.com>
|
||||
@ -17,8 +18,8 @@ Upstream Author:
|
||||
Steve Kowalik <stevenk@ubuntu.com>
|
||||
Terence Simpson <stdin@stdin.me.uk>
|
||||
|
||||
|
||||
Copyright:
|
||||
|
||||
Copyright 2006-2007 (C) Canonical Ltd.
|
||||
Albert Damen <albrt@gmx.net> 2007
|
||||
Albin Tonnerre <lut1n.tne@gmail.com> 2006-2007
|
||||
@ -49,8 +50,8 @@ update-maintainer and what-patch are licensed under GPLv2:
|
||||
On Debian systems, the complete text of the GNU General Public License v2
|
||||
can be found in `/usr/share/common-licenses/GPL-2'.
|
||||
|
||||
get-branches, get-build-deps, massfile andsuspicious-source are licensed
|
||||
under GPLv3:
|
||||
get-branches, get-build-deps, massfile, ppaput and suspicious-source
|
||||
are licensed under GPLv3:
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
2
ppaput
2
ppaput
@ -14,7 +14,7 @@ import sys
|
||||
from optparse import OptionParser
|
||||
|
||||
try:
|
||||
import ppaput
|
||||
import ubuntutools.ppaput
|
||||
except ImportError:
|
||||
print 'You need python-ubuntu-utils installed to use ppaput.'
|
||||
sys.exit(1)
|
||||
|
2
setup.py
2
setup.py
@ -33,5 +33,5 @@ setup(name='ubuntu-dev-tools',
|
||||
'get-build-deps',
|
||||
'dgetlp'
|
||||
],
|
||||
py_modules=['modules/ppaput.py'],
|
||||
packages=['ubuntutools'],
|
||||
)
|
||||
|
4
ubuntutools/__init__.py
Normal file
4
ubuntutools/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ubuntu Development Tools
|
||||
# https://launchpad.net/ubuntu-dev-tools
|
Loading…
x
Reference in New Issue
Block a user