mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
Merge with trunk.
This commit is contained in:
commit
c060c48ec8
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -13,8 +13,13 @@ ubuntu-dev-tools (0.76) UNRELEASED; urgency=low
|
||||
|
||||
[ Michael Bienia ]
|
||||
* Drop python-launchpad-bugs from Depends.
|
||||
* buildd: Add a --batch mode for batch retrying/rescoring of packages.
|
||||
|
||||
-- Michael Bienia <geser@ubuntu.com> Fri, 24 Jul 2009 09:19:45 +0200
|
||||
[ Iain Lane ]
|
||||
* requestsync: Guard some calls when -n is specified
|
||||
* suspicious-source: Add *.hs *.el *.css to whitelist
|
||||
|
||||
-- Iain Lane <laney@ubuntu.com> Sat, 08 Aug 2009 16:02:25 +0100
|
||||
|
||||
ubuntu-dev-tools (0.75) karmic; urgency=low
|
||||
|
||||
|
@ -501,7 +501,11 @@ if __name__ == '__main__':
|
||||
sys.exit(1)
|
||||
|
||||
# -s flag not specified - check if we do need sponsorship.
|
||||
if not sponsorship: sponsorship = checkNeedsSponsorship(srcpkg)
|
||||
if (not newsource):
|
||||
if (not sponsorship):
|
||||
sponsorship = checkNeedsSponsorship(srcpkg)
|
||||
else:
|
||||
sponsorship = LpApiWrapper.isLpTeamMember('motu') # assume going to universe
|
||||
|
||||
# Check for existing package reports.
|
||||
if not newsource and use_lp_bugs: checkExistingReports(srcpkg)
|
||||
@ -566,7 +570,7 @@ if __name__ == '__main__':
|
||||
if force_base_ver:
|
||||
base_ver = force_base_ver
|
||||
|
||||
report += 'Changelog since current %s version %s:\n\n' % (release, cur_ver)
|
||||
if not newsource: report += 'Changelog since current %s version %s:\n\n' % (release, cur_ver)
|
||||
report += debian_changelog(srcpkg, debiancomponent, base_ver) + '\n'
|
||||
|
||||
if need_interaction:
|
||||
|
@ -26,9 +26,9 @@ FILES="*.h *.c *.cc *.cpp *.py *.sh *.txt *.text *.3 *.m4 *.xml *.html *.php \
|
||||
depcomp *.docbook *.desktop *.menu AUTHORS INSTALL NEWS README TODO \
|
||||
COPYING LICENSE ChangeLog *.ui *.glade *.gladep *.po *.pot *.ts *.pro \
|
||||
*.svg *.png *.bmp *.gif *.xpm *.hh *.in *.cs *.1 *.2 *.3 *.4 *.5 *.6 \
|
||||
*.7 *.8 *.9"
|
||||
*.7 *.8 *.9 *.hs *.el *.css"
|
||||
|
||||
IGNORE=".bzr CVS .svn debian"
|
||||
IGNORE=".bzr CVS .svn debian .git"
|
||||
|
||||
|
||||
COMMAND=(find ! \( )
|
||||
|
Loading…
x
Reference in New Issue
Block a user