mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-07-27 14:51:29 +00:00
seeded-in-ubuntu: State in error message that it takes a source package.
LP: #1029155
This commit is contained in:
parent
b3f16cbee2
commit
9baf39a262
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -1,5 +1,6 @@
|
|||||||
ubuntu-dev-tools (0.144) UNRELEASED; urgency=low
|
ubuntu-dev-tools (0.144) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
[ Stefano Rivera ]
|
||||||
* submittodebian:
|
* submittodebian:
|
||||||
- Use dpkg-buildpackage instead of debuild. It really doesn't need to run
|
- Use dpkg-buildpackage instead of debuild. It really doesn't need to run
|
||||||
lintian twice.
|
lintian twice.
|
||||||
@ -15,6 +16,10 @@ ubuntu-dev-tools (0.144) UNRELEASED; urgency=low
|
|||||||
same name.
|
same name.
|
||||||
- Explain that backports aren't to fix bugs.
|
- Explain that backports aren't to fix bugs.
|
||||||
|
|
||||||
|
[ Benjamin Drung ]
|
||||||
|
* seeded-in-ubuntu: State in error message that it takes a source package.
|
||||||
|
(LP: #1029155)
|
||||||
|
|
||||||
-- Stefano Rivera <stefanor@ubuntu.com> Wed, 18 Jul 2012 12:47:01 +0200
|
-- Stefano Rivera <stefanor@ubuntu.com> Wed, 18 Jul 2012 12:47:01 +0200
|
||||||
|
|
||||||
ubuntu-dev-tools (0.143) unstable; urgency=low
|
ubuntu-dev-tools (0.143) unstable; urgency=low
|
||||||
|
@ -369,8 +369,14 @@ class Archive(BaseWrapper):
|
|||||||
latest = record
|
latest = record
|
||||||
|
|
||||||
if latest is None:
|
if latest is None:
|
||||||
msg = "The package '%s' does not exist in the %s %s archive" % \
|
if name_key == 'binary_name':
|
||||||
(name, dist.display_name, self.name)
|
package_type = "binary package"
|
||||||
|
elif name_key == 'source_name':
|
||||||
|
package_type = "source package"
|
||||||
|
else:
|
||||||
|
package_type = "package"
|
||||||
|
msg = "The %s '%s' does not exist in the %s %s archive" % \
|
||||||
|
(package_type, name, dist.display_name, self.name)
|
||||||
pockets = [series.name if pocket == 'Release'
|
pockets = [series.name if pocket == 'Release'
|
||||||
else '%s-%s' % (series.name, pocket.lower())
|
else '%s-%s' % (series.name, pocket.lower())
|
||||||
for pocket in pockets]
|
for pocket in pockets]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user