[Bug 2064112] Re: mk-sbuild fails to add user to group on first run if $USER is not set

2024-04-29 Thread Benjamin Drung
** Summary changed:

- mk-sbuild fails to add user to group on first run
+ mk-sbuild fails to add user to group on first run if $USER is not set

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/2064112

Title:
  mk-sbuild fails to add user to group on first run if $USER is not set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/2064112/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 2017786] Re: update script in ubuntu-meta not handling germinate or specified versions

2024-03-14 Thread Benjamin Drung
I see nothing in this bug that needs sponsoring. Unsubscribing ~ubuntu-
sponsors.

-- 
You received this bug notification because you are a member of Ubuntu
Cinnamon Developers, which is subscribed to ubuntucinnamon-meta in
Ubuntu.
https://bugs.launchpad.net/bugs/2017786

Title:
  update script in ubuntu-meta not handling germinate or specified
  versions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/edubuntu-meta/+bug/2017786/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 2024908] Re: syncpackage: httplib2.error.ServerNotFoundError: Unable to find the server at api.launchpad.test

2023-06-23 Thread Benjamin Drung
My comment #2 is wrong. syncpackage uses lpapicache.py. So the
parameters are okay.

Launchpad.__init__() from /usr/lib/python3/dist-
packages/launchpadlib/launchpad.py is called with
service_root="https://api.launchpad.net/;

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/2024908

Title:
  syncpackage: httplib2.error.ServerNotFoundError: Unable to find the
  server at api.launchpad.test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/2024908/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 2024908] Re: syncpackage: httplib2.error.ServerNotFoundError: Unable to find the server at api.launchpad.test

2023-06-23 Thread Benjamin Drung
Looking at the Launchpad class, syncpackage should specify
`service_root` instead of `service` (and `api_version` is renamed to
`version`).

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/2024908

Title:
  syncpackage: httplib2.error.ServerNotFoundError: Unable to find the
  server at api.launchpad.test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/2024908/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 2024908] [NEW] syncpackage: httplib2.error.ServerNotFoundError: Unable to find the server at api.launchpad.test

2023-06-23 Thread Benjamin Drung
Public bug reported:

syncpackage fails to connect to api.launchpad.test:

```
Traceback:
 Traceback (most recent call last):
   File "/usr/lib/python3/dist-packages/httplib2/__init__.py", line 1343, in 
_conn_request
 conn.connect()
   File "/usr/lib/python3/dist-packages/httplib2/__init__.py", line 1119, in 
connect
 address_info = socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM)
^
   File "/usr/lib/python3.11/socket.py", line 962, in getaddrinfo
 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
^^^
 socket.gaierror: [Errno -2] Name or service not known
 
 During handling of the above exception, another exception occurred:
 
 Traceback (most recent call last):
   File "/usr/bin/syncpackage", line 777, in 
 main()
   File "/usr/bin/syncpackage", line 658, in main
 Launchpad.login(**kwargs)
   File "/usr/lib/python3/dist-packages/ubuntutools/lp/lpapicache.py", line 84, 
in login
 self.__lp = LP.login_with("ubuntu-dev-tools", service, version=api_version)
 ^^^
   File "/usr/lib/python3/dist-packages/launchpadlib/launchpad.py", line 700, 
in login_with
 return cls._authorize_token_and_login(
^^^
   File "/usr/lib/python3/dist-packages/launchpadlib/launchpad.py", line 464, 
in _authorize_token_and_login
 return cls(

   File "/usr/lib/python3/dist-packages/launchpadlib/launchpad.py", line 230, 
in __init__
 super(Launchpad, self).__init__(
   File "/usr/lib/python3/dist-packages/lazr/restfulclient/resource.py", line 
516, in __init__
 self._browser.get(root_resource), "application/json"
 
   File "/usr/lib/python3/dist-packages/lazr/restfulclient/_browser.py", line 
494, in get
 response, content = self._request(url, extra_headers=headers)
 ^
   File "/usr/lib/python3/dist-packages/lazr/restfulclient/_browser.py", line 
441, in _request
 response, content = self._request_and_retry(
 
   File "/usr/lib/python3/dist-packages/lazr/restfulclient/_browser.py", line 
400, in _request_and_retry
 response, content = self._connection.request(
 ^
   File "/usr/lib/python3/dist-packages/httplib2/__init__.py", line 1701, in 
request
 (response, content) = self._request(
   ^^
   File "/usr/lib/python3/dist-packages/launchpadlib/launchpad.py", line 144, 
in _request
 response, content = super(LaunchpadOAuthAwareHttp, self)._request(
 ^^
   File "/usr/lib/python3/dist-packages/lazr/restfulclient/_browser.py", line 
204, in _request
 return super(RestfulHttp, self)._request(
^^
   File "/usr/lib/python3/dist-packages/httplib2/__init__.py", line 1421, in 
_request
 (response, content) = self._conn_request(conn, request_uri, method, body, 
headers)
   

   File "/usr/lib/python3/dist-packages/httplib2/__init__.py", line 1350, in 
_conn_request
 raise ServerNotFoundError("Unable to find the server at %s" % conn.host)
 httplib2.error.ServerNotFoundError: Unable to find the server at 
api.launchpad.test
```

syncpackage uses `Launchpad.login(service=args.lpinstance,
api_version="devel")` (where args.lpinstance is `production`), but why
does it use the devel API version?

ProblemType: Bug
DistroRelease: Ubuntu 23.04
Package: ubuntu-dev-tools 0.193ubuntu2
ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
Uname: Linux 6.2.0-20-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.26.1-0ubuntu2
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: Unity:Unity7:ubuntu
Date: Fri Jun 23 16:44:20 2023
InstallationDate: Installed on 2022-03-20 (460 days ago)
InstallationMedia: Ubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
PackageArchitecture: all
RebootRequiredPkgs: Error: path contained symlinks.
SourcePackage: ubuntu-dev-tools
UpgradeStatus: Upgraded to lunar on 2023-04-20 (64 days ago)

** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug lunar

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/2024908

Title:
  syncpackage: httplib2.error.ServerNotFoundError: Unable to find the
  server at api.launchpad.test

To manage notifications about this bug go to:

[Bug 1984113] Re: can't run anymore ubuntu-build --batch --retry from cmdline due to wrong login() call in Python

2023-06-05 Thread Benjamin Drung
** Bug watch added: Debian Bug tracker #1016480
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016480

** Also affects: ubuntu-dev-tools (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016480
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1984113

Title:
  can't run anymore ubuntu-build --batch --retry from cmdline due to
  wrong login() call in Python

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1984113/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 2018516] Re: missing private ppa support

2023-05-04 Thread Benjamin Drung
** Description changed:

- When downloading form a private ppa https should be used. Currently
+ When downloading from a private ppa https should be used. Currently
  there seems to be no possibility to use two factor authentication with
  pull-ppa-source.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/2018516

Title:
  missing private ppa support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/2018516/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 2016025] Re: schroot made by mk-sbuild have broken TZ info

2023-04-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided => Medium

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New => Triaged

** Summary changed:

- schroot made by mk-sbuild have broken TZ info
+ mk-sbuild: schroot made by mk-sbuild have broken TZ info

** Summary changed:

- mk-sbuild: schroot made by mk-sbuild have broken TZ info
+ [mk-sbuild] schroot made by mk-sbuild have broken TZ info

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/2016025

Title:
  [mk-sbuild] schroot made by mk-sbuild have broken TZ info

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/2016025/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 2013237] Re: backportpackage incorrectly errors with "Unknown distribution Ubuntu, can't guess target release"

2023-04-04 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Merged your fix: https://git.launchpad.net/ubuntu-dev-
tools/commit/?id=66a2773c1c80898305f85fe5305bd130d2edb0a9

It will be part of the next release.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided => Medium

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/2013237

Title:
  backportpackage incorrectly errors with "Unknown distribution Ubuntu,
  can't guess target release"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/2013237/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1992700] [NEW] pull-debian-source crashed with urllib.error.HTTPError in http_error_default(): HTTP Error 404: NOT FOUND

2022-10-12 Thread Benjamin Drung
Public bug reported:

ubuntu-dev-tools 0.190:

$ pull-debian-source golang-github-edsrzf-mmap-go
Found golang-github-edsrzf-mmap-go 1.1.0-1 in sid
Traceback (most recent call last):
  File "/usr/bin/pull-debian-source", line 11, in 
PullPkg.main(distro='debian', pull='source')
  File "/usr/lib/python3/dist-packages/ubuntutools/pullpkg.py", line 107, in 
main
cls(*args, **kwargs).pull()
  File "/usr/lib/python3/dist-packages/ubuntutools/pullpkg.py", line 429, in 
pull
srcpkg.pull()
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 431, in 
pull
Path(self.dsc_pathname).write_bytes(self.dsc.raw_text)
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 292, in dsc
self._download_file_from_urls(urls, tmpdsc)
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 403, in 
_download_file_from_urls
for url in urls:
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 591, in 
_source_urls
for url in super(DebianSourcePackage, self)._source_urls(name):
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 328, in 
_source_urls
yield self._mirror_url(server, self.component, name)
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 586, in 
component
self._component = Snapshot.getComponent(self.source, self.version)
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 934, in 
getComponent
response = self.load("{}?fileinfo=1".format(url))
  File "/usr/lib/python3/dist-packages/ubuntutools/archive.py", line 880, in 
load
with closing(urlopen(url)) as data:
  File "/usr/lib/python3.10/urllib/request.py", line 216, in urlopen
return opener.open(url, data, timeout)
  File "/usr/lib/python3.10/urllib/request.py", line 525, in open
response = meth(req, response)
  File "/usr/lib/python3.10/urllib/request.py", line 634, in http_response
response = self.parent.error(
  File "/usr/lib/python3.10/urllib/request.py", line 563, in error
return self._call_chain(*args)
  File "/usr/lib/python3.10/urllib/request.py", line 496, in _call_chain
result = func(*args)
  File "/usr/lib/python3.10/urllib/request.py", line 643, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 404: NOT FOUND

ProblemType: Crash
DistroRelease: Ubuntu 22.10
Package: ubuntu-dev-tools 0.190
ProcVersionSignature: Ubuntu 5.19.0-19.19-generic 5.19.7
Uname: Linux 5.19.0-19-generic x86_64
ApportVersion: 2.23.1-0ubuntu2
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 13 00:34:27 2022
ExecutablePath: /usr/bin/pull-debian-source
InstallationDate: Installed on 2022-03-09 (217 days ago)
InstallationMedia: Ubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
InterpreterPath: /usr/bin/python3.10
JournalErrors: -- No entries --
PackageArchitecture: all
ProcCmdline: /usr/bin/python3 /usr/bin/pull-debian-source 
golang-github-edsrzf-mmap-go
Python3Details: /usr/bin/python3.10, Python 3.10.7, python3-minimal, 3.10.6-1
PythonArgs: ['/usr/bin/pull-debian-source', 'golang-github-edsrzf-mmap-go']
PythonDetails: N/A
SourcePackage: ubuntu-dev-tools
Title: pull-debian-source crashed with urllib.error.HTTPError in 
http_error_default(): HTTP Error 404: NOT FOUND
UpgradeStatus: Upgraded to kinetic on 2022-04-21 (174 days ago)
UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild sudo

** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-crash kinetic need-duplicate-check third-party-packages 
wayland-session

** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1992700

Title:
  pull-debian-source crashed with urllib.error.HTTPError in
  http_error_default(): HTTP Error 404: NOT FOUND

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1992700/+subscriptions


-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1661324] Re: add pull-ca-source to ubuntu-dev-tools

2017-03-29 Thread Benjamin Drung
Yes, please move ubuntu-dev-tools to git (and update the Vcs package
reference).

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1661324

Title:
  add pull-ca-source to ubuntu-dev-tools

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1661324/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1508948] Re: pull-debian-source fails use of rmadison on wily (devscripts 2.15.8ubuntu1 )

2015-12-14 Thread Benjamin Drung
The fix is included in ubuntu-dev-tools 0.155 in xenial.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Confirmed => Fix Released

** Also affects: ubuntu-dev-tools (Ubuntu Wily)
   Importance: Undecided
   Status: New

** Changed in: ubuntu-dev-tools (Ubuntu Wily)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1508948

Title:
  pull-debian-source fails use of rmadison on wily (devscripts
  2.15.8ubuntu1 )

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1508948/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1508948] Re: pull-debian-source fails use of rmadison on wily (devscripts 2.15.8ubuntu1 )

2015-12-14 Thread Benjamin Drung
Attached the uploaded debdiff for wily-proposed.

** Patch added: "ubuntu-dev-tools_0.155~ubuntu3.1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1508948/+attachment/4534481/+files/ubuntu-dev-tools_0.155%7Eubuntu3.1.debdiff

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1508948

Title:
  pull-debian-source fails use of rmadison on wily (devscripts
  2.15.8ubuntu1 )

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1508948/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1068390] Re: pbuilder-dist dies when there is no development release

2014-10-21 Thread Benjamin Drung
The changelog for ubuntu-dev-tools 0.142 says:

  * pbuilder-dist, pull-debian-source, pull-lp-source, requestsync,
 reverse-depends, submittodebian, syncpackage:
 Handle outdated distro-info data. Fall back to sane defaults where
 possible. (Closes: #673957)

So, which version of ubuntu-dev-tools do you use?

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1068390

Title:
  pbuilder-dist dies when there is no development release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1068390/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 371221] Re: [pbuilder-dist] Use packages from ~/pbuilder/dist_result to satisfy deps

2013-12-19 Thread Benjamin Drung
Here is a quick and dirty implementation that adds an --use-local
parameter. It involves creating a local repository (Packages and Release
files), signing them with gpg, add the key to the repository and
updating it before building.

** Patch added: use-local-repository.patch
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/371221/+attachment/3932662/+files/use-local-repository.patch

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/371221

Title:
  [pbuilder-dist] Use packages from ~/pbuilder/dist_result to satisfy
  deps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/371221/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1188036] Re: debian-keyring is a rather heavyweight Recommends for ubuntu-dev-tools, perhaps demote to Suggests?

2013-07-19 Thread Benjamin Drung
I prefer to have debian-keyring installed by default, because
cryptographic verification is important IMO. Not doing cryptographic
verification can cause a security issue, but Ubuntu should be secure by
default. debian-keyring is just a recommendation. You can remove it if
it is to heavyweight for you.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1188036

Title:
  debian-keyring is a rather heavyweight Recommends for ubuntu-dev-
  tools, perhaps demote to Suggests?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1188036/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1194687] Re: distro info bails out and prevents work from getting done when it doesn't have to

2013-06-26 Thread Benjamin Drung
I agree. pbuilder-dist should handle this error case better, when
distro-info raises this exception. There is nothing that distro-info
could do differently.

** Package changed: distro-info (Ubuntu) = ubuntu-dev-tools (Ubuntu)

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1194687

Title:
  distro info bails out and prevents work from getting done when it
  doesn't have to

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1194687/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1166766] Re: [sponsor-patch] used wrong distribution in the changelog

2013-04-09 Thread Benjamin Drung
$ sponsor-patch -s 1163999
sponsor-patch: https://launchpad.net/bugs/1163999 has 2 patches attached:
1) precise.debdiff
2) quantal.debdiff
Which branch or patch do you want to download [2]? 
sponsor-patch: https://launchpad.net/bugs/1163999 has 3 Ubuntu tasks:
1) libcroco
2) libcroco (precise)
3) libcroco (quantal)
To which Ubuntu tasks do the patch belong? 3
[...]
sponsor-patch: Error: UNRELEASED is not an allowed series. It needs to be one 
of quantal, precise, oneiric, lucid, hardy, quantal-proposed, precise-proposed, 
oneiric-proposed, lucid-proposed, hardy-proposed, raring.
Do you want to resolve this issue manually [Y|i|n|?]?

The debdiff have UNRELEASED as distributions and sponsor-patch doesn't
change that. What do you expect from sponsor-patch to do differently?

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1166766

Title:
  [sponsor-patch] used wrong distribution in the changelog

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1166766/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 846420] Re: restrict package to only ship Ubuntu packaging scripts

2013-04-04 Thread Benjamin Drung
** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
  * mk-sbuild (should move into sbuild; Debian #613903)
- * pbuilder-dist (should move into pbuilder)
+ * pbuilder-dist/cowbuilder-dist (should move into pbuilder)
  * check-symbols (blocked by LP: #184906)
  * pull-debian-source (should work without Launchpad)
  * merge-changelog
  * reverse-depends

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/846420

Title:
  restrict package to only ship Ubuntu packaging scripts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/846420/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1099537] Re: ubuntu-dev-scripts should be ported to Python 3

2013-04-01 Thread Benjamin Drung
** Description changed:

  ubuntu-dev-scripts is mostly python2, but should be ported to python3
  eventually.  There was a brief scare during raring when devscripts went
  python3-only to remind us that we still have this large body of python2
  code that we own.  (this bug was originally a crash report from that)
  
  Not all dependencies are ported to python3 yet.  As of this writing 
(2013-01-14), the following are only-python2:
-  python-launchpadlib
-  python-lazr.restfulclient
-  python-mox
-  python-soappy
+  python-launchpadlib (LP: #1060734)
+  python-lazr.restfulclient
+  python-mox
+  python-soappy

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1099537

Title:
  ubuntu-dev-scripts should be ported to Python 3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1099537/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 846420] Re: restrict package to only ship Ubuntu packaging scripts

2013-04-01 Thread Benjamin Drung
** Summary changed:

- Do a 1.0 release
+ restrict package to only ship Ubuntu packaging scripts

** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
  * pbuilder-dist (should move into pbuilder)
- * reverse-build-depends (should be merged into build-rdeps)
  * check-symbols
  * pull-*-source (?)
  * merge-changelog (?)

** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
  * pbuilder-dist (should move into pbuilder)
- * check-symbols
+ * check-symbols (blocked by LP: #184906)
  * pull-*-source (?)
  * merge-changelog (?)

** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
  * pbuilder-dist (should move into pbuilder)
  * check-symbols (blocked by LP: #184906)
- * pull-*-source (?)
- * merge-changelog (?)
+ * pull-debian-source (should work without Launchpad)
+ * merge-changelog

** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
  * pbuilder-dist (should move into pbuilder)
  * check-symbols (blocked by LP: #184906)
  * pull-debian-source (should work without Launchpad)
  * merge-changelog
+ * mk-sbuild

** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
  * pbuilder-dist (should move into pbuilder)
  * check-symbols (blocked by LP: #184906)
  * pull-debian-source (should work without Launchpad)
  * merge-changelog
  * mk-sbuild
+ * reverse-depends

** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
+ * mk-sbuild (should move into sbuild; Debian bug #613903)
  * pbuilder-dist (should move into pbuilder)
  * check-symbols (blocked by LP: #184906)
  * pull-debian-source (should work without Launchpad)
  * merge-changelog
- * mk-sbuild
  * reverse-depends

** Description changed:

  We should do a 1.0 release once all scripts are moved out that do not
  belong here. These are:
  
- * mk-sbuild (should move into sbuild; Debian bug #613903)
+ * mk-sbuild (should move into sbuild; Debian #613903)
  * pbuilder-dist (should move into pbuilder)
  * check-symbols (blocked by LP: #184906)
  * pull-debian-source (should work without Launchpad)
  * merge-changelog
  * reverse-depends

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/846420

Title:
  restrict package to only ship Ubuntu packaging scripts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/846420/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 936014] Re: [sponsor-patch] crashed with AssertionError in get_open_ubuntu_bug_task()

2013-03-11 Thread Benjamin Drung
I played around with the target series, but all combinations worked as
expected.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/936014

Title:
  [sponsor-patch] crashed with AssertionError in
  get_open_ubuntu_bug_task()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/936014/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 936014] Re: [sponsor-patch] crashed with AssertionError in get_open_ubuntu_bug_task()

2013-03-10 Thread Benjamin Drung
I played with your patch and cannot reproduce the bug. sponsor-patch
from precise and precise-proposed work as expected.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/936014

Title:
  [sponsor-patch] crashed with AssertionError in
  get_open_ubuntu_bug_task()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/936014/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1149679] [NEW] [check-mir] fails on libreoffice

2013-03-06 Thread Benjamin Drung
Public bug reported:

check-mir fails when run in the libreoffice source.

$ check-mir 
Checking support status of build dependencies...

Checking support status of binary dependencies...
Traceback (most recent call last):
  File /usr/bin/check-mir, line 151, in module
main()
  File /usr/bin/check-mir, line 141, in main
unsupported_binary_deps = check_binary_dependencies(apt_cache, control)
  File /usr/bin/check-mir, line 109, in check_binary_dependencies
for or_group in apt.apt_pkg.parse_depends(control.section[field]):
ValueError: Problem Parsing Dependency

** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1149679

Title:
  [check-mir] fails on libreoffice

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1149679/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1106429] Re: [backportpackage] -sa detection does not worth with private PPAs

2013-02-27 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1106429

Title:
  [backportpackage] -sa detection does not worth with private PPAs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1106429/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1088010] Re: [ubuntu-build] Should default to -proposed

2013-02-27 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1088010

Title:
  [ubuntu-build] Should default to -proposed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1088010/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1087194] Re: [mk-sbuild] names cross chroots after build architecture, not target

2013-02-27 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1087194

Title:
  [mk-sbuild] names cross chroots after build architecture, not target

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1087194/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1021917] Re: [submittodebian]'s update-maintainer reversal isn't always the right thing to do

2013-02-27 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1021917

Title:
  [submittodebian]'s update-maintainer reversal isn't always the right
  thing to do

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1021917/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1069867] Re: syncpackage picks up too many changelog versions when the target is -proposed

2013-02-16 Thread Benjamin Drung
syncpackage apt-setup -r raring-proposed --force shows the correct
changelog entries (when installing the package from proposed on
precise). Therefore setting verification-done.

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1069867

Title:
  syncpackage picks up too many changelog versions when the target is
  -proposed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1069867/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1059848] Re: pull-lp-source crashed with ValueError in raw_decode(): Expecting object: line 1 column 5 (char 5)

2013-02-16 Thread Benjamin Drung
I have tested pull-lp-source and it still works in all my test case.
Therefore I set verification-done.

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1059848

Title:
  pull-lp-source crashed with ValueError in raw_decode(): Expecting
  object: line 1 column 5 (char 5)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1059848/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 936014] Re: [sponsor-patch] crashed with AssertionError in get_open_ubuntu_bug_task()

2013-02-16 Thread Benjamin Drung
Has someone an open bug as testcase for me?

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/936014

Title:
  [sponsor-patch] crashed with AssertionError in
  get_open_ubuntu_bug_task()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/936014/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1100333] Re: [sponsor-patch] Sometimes downloads packages for the wrong release

2013-01-16 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1100333

Title:
  [sponsor-patch] Sometimes downloads packages for the wrong release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1100333/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1100328] Re: [sponsor-patch] Exits, deleting temporary directory, when dput fails.

2013-01-16 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1100328

Title:
  [sponsor-patch] Exits, deleting temporary directory, when dput fails.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1100328/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1093008] Re: backportpackage fails with the error message Error: The package 'kleopatra' does not exist in the Ubuntu primary archive in quantal, quantal-security, quantal-updates or quantal-prop

2012-12-22 Thread Benjamin Drung
You have to specify a _source_ package name. In case of kleopatra, the
source package is kdepim.

Therefore this bug report is about improving the error message. Maybe we
should add Have you specified a valid source package name? or Please
specify a existing source package name.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

** Summary changed:

- backportpackage fails with the error message Error: The package 'kleopatra' 
does not exist in the Ubuntu primary archive in quantal, quantal-security, 
quantal-updates or quantal-proposed
+ [backportpackage] fails with the error message Error: The package 'kleopatra' 
does not exist in the Ubuntu primary archive

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1093008

Title:
  [backportpackage] fails with the error message Error: The package
  'kleopatra' does not exist in the Ubuntu primary archive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1093008/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1082452] Re: [pbuilder-dist] should include -proposed on the development release now

2012-12-10 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1082452

Title:
  [pbuilder-dist] should include -proposed on the development release
  now

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1082452/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1088423] Re: [backportpackage] Make it look a bit less like the backporter is responsible for the upload

2012-12-10 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1088423

Title:
  [backportpackage] Make it look a bit less like the backporter is
  responsible for the upload

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1088423/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1078920] Re: [pbuilder-dist] should steal missing features from pbuilder-scripts

2012-11-15 Thread Benjamin Drung
** Summary changed:

- pbuilder-dist: should steal missing features from pbuilder-scripts
+ [pbuilder-dist] should steal missing features from pbuilder-scripts

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1078920

Title:
  [pbuilder-dist] should steal missing features from pbuilder-scripts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1078920/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1068049] Re: [setup-packaging-environment] Refer to new packaging guide

2012-11-10 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: In Progress = Fix Committed

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1068049

Title:
  [setup-packaging-environment] Refer to new packaging guide

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1068049/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1076190] Re: Wishlist: Add submittodebian flag to allow disabling of Patch E-mail Template

2012-11-08 Thread Benjamin Drung
Your request sounds plausible. I wouldn't want to call the parameter
--expert, because expert doesn't tell me what I have to expect. In
contrast, --no-template would be clear to me.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

** Summary changed:

- Wishlist: Add submittodebian flag to allow disabling of Patch E-mail Template
+ [submittodebian] Add flag to allow disabling of Patch E-mail Template

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1076190

Title:
  [submittodebian] Add flag to allow disabling of Patch E-mail Template

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1076190/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1068390] Re: pbuilder-dist dies when there is no development release

2012-10-19 Thread Benjamin Drung
Better workaround: Install distro-info-data from -proposed.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1068390

Title:
  pbuilder-dist dies when there is no development release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1068390/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1019887] Re: requestsync crashed with KeyError in __getitem__(): 'hostname'

2012-10-18 Thread Benjamin Drung
Line 193 of the source code says:

release = Distribution('ubuntu').getDevelopmentSeries().name

Your requestsync says instead:

release = Distribution('hostname').getDevelopmentSeries().name

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1019887

Title:
  requestsync crashed with KeyError in __getitem__(): 'hostname'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1019887/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1019887] Re: requestsync crashed with KeyError in __getitem__(): 'hostname'

2012-10-18 Thread Benjamin Drung
I mark this bug as invalid. Please set the status back to new if you can
reproduce the bug.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Incomplete = Invalid

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1019887

Title:
  requestsync crashed with KeyError in __getitem__(): 'hostname'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1019887/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1061043] Re: [requestbackport] Support backporting from Debian for pre-release backports

2012-10-03 Thread Benjamin Drung
** Summary changed:

- [ requestbackport ] Support backporting from Debian for pre-release backports
+ [requestbackport] Support backporting from Debian for pre-release backports

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1061043

Title:
  [requestbackport] Support backporting from Debian for pre-release
  backports

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1061043/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1044795] Re: requestbackport tool missing from ubuntu-dev-tools package for Oneiric

2012-09-01 Thread Benjamin Drung
The tool is too new for your (old) system. requestbackport was added in
version 0.135 of ubuntu-dev-tools. Therefore you need at least Ubuntu
12.04 (precise). You can use the daily build of ubuntu-dev-tools on
oneiric [1].

[1] https://code.launchpad.net/~udt-developers/+archive/daily/

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1044795

Title:
  requestbackport tool missing from ubuntu-dev-tools package for Oneiric

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1044795/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1029155] Re: [seeded-in-ubuntu] should be clearer that it takes a source package

2012-07-26 Thread Benjamin Drung
Why not allowing binary package checks?

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1029155

Title:
  [seeded-in-ubuntu] should be clearer that it takes a source package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1029155/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1029620] [NEW] [seeded-in-ubuntu] lies about non existing binary package

2012-07-26 Thread Benjamin Drung
Public bug reported:

$ seeded-in-ubuntu python-rpyx -b
python-rpyx is not seeded.

python-rpyx does not exist and seeded-in-ubuntu should have told me
that.

** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Low
 Status: New

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1029620

Title:
  [seeded-in-ubuntu] lies about non existing binary package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1029620/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1029155] Re: [seeded-in-ubuntu] should be clearer that it takes a source package

2012-07-26 Thread Benjamin Drung
$ seeded-in-ubuntu python-rpy
seeded-in-ubuntu: Error: The source package 'python-rpy' does not exist in the 
Ubuntu primary archive in quantal, quantal-security, quantal-updates or 
quantal-proposed

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1029155

Title:
  [seeded-in-ubuntu] should be clearer that it takes a source package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1029155/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1029155] Re: [seeded-in-ubuntu] should be clearer that it takes a source package

2012-07-26 Thread Benjamin Drung
What's the use case for the requested behavior?

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1029155

Title:
  [seeded-in-ubuntu] should be clearer that it takes a source package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1029155/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1027900] Re: [syncpackage] crashed with AttributeError in get_password(): 'NoneType' object has no attribute 'keyDoesNotExist'

2012-07-23 Thread Benjamin Drung
** Summary changed:

- syncpackage crashed with AttributeError in get_password(): 'NoneType' object 
has no attribute 'keyDoesNotExist'
+ [syncpackage] crashed with AttributeError in get_password(): 'NoneType' 
object has no attribute 'keyDoesNotExist'

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1027900

Title:
  [syncpackage] crashed with AttributeError in get_password():
  'NoneType' object has no attribute 'keyDoesNotExist'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1027900/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1011870] Re: pbuilder-dist: wheezy-updates does not exist

2012-06-16 Thread Benjamin Drung
cowbuilder-dist knows about wheezy. This bug report does not have
anything to do with outdated distro-info data.

** This bug is no longer a duplicate of bug 1012458
   carve out distro information to distro-info package

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1011870

Title:
  pbuilder-dist: wheezy-updates does not exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1011870/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1012458] Re: carve out distro information to distro-info package

2012-06-16 Thread Benjamin Drung
pbuilder-dist already uses distro-info. Therefore I am marking this bug
as invalid. /usr/share/debootstrap/scripts/ is part of debootstrap and
upstream declined to use distro-info.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Confirmed = Invalid

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1012458

Title:
  carve out distro information to distro-info package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1012458/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1009758] Re: [requestsync] crashed with SSLError in do_handshake(): [Errno 8] _ssl.c:504: EOF occurred in violation of protocol

2012-06-16 Thread Benjamin Drung
** Summary changed:

- requestsync crashed with SSLError in do_handshake(): [Errno 8] _ssl.c:504: 
EOF occurred in violation of protocol
+ [requestsync] crashed with SSLError in do_handshake(): [Errno 8] _ssl.c:504: 
EOF occurred in violation of protocol

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1009758

Title:
  [requestsync] crashed with SSLError in do_handshake(): [Errno 8]
  _ssl.c:504: EOF occurred in violation of protocol

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1009758/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1008783] Re: [seeded-in-ubuntu] crashed with IOError in _read_eof(): CRC check failed 0x282b98f1 != 0xdff779cL

2012-06-16 Thread Benjamin Drung
** Summary changed:

- seeded-in-ubuntu crashed with IOError in _read_eof(): CRC check failed 
0x282b98f1 != 0xdff779cL
+ [seeded-in-ubuntu] crashed with IOError in _read_eof(): CRC check failed 
0x282b98f1 != 0xdff779cL

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1008783

Title:
  [seeded-in-ubuntu] crashed with IOError in _read_eof(): CRC check
  failed 0x282b98f1 != 0xdff779cL

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1008783/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1007908] Re: [backportpackage] doesn't work if package isn't already in Ubuntu

2012-06-16 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1007908

Title:
  [backportpackage] doesn't work if package isn't already in Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1007908/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1007042] Re: [backportpackage] errors out on packages with no ubuntu revision

2012-06-16 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1007042

Title:
  [backportpackage] errors out on packages with no ubuntu revision

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1007042/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1005834] Re: [submittodebian] UnicodeEncodeError: 'ascii' codec can't encode character u'\u2192' in position 555: ordinal not in range(128)

2012-06-16 Thread Benjamin Drung
Can you provide a small test case for this bug?

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1005834

Title:
  [submittodebian] UnicodeEncodeError: 'ascii' codec can't encode
  character u'\u2192' in position 555: ordinal not in range(128)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1005834/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1011870] Re: [pbuilder-dist] wheezy-updates does not exist

2012-06-16 Thread Benjamin Drung
** Summary changed:

- pbuilder-dist: wheezy-updates does not exist
+ [pbuilder-dist] wheezy-updates does not exist

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1011870

Title:
  [pbuilder-dist] wheezy-updates does not exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1011870/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1010951] Re: [requestsync] crashed with AssertionError in rmadison()

2012-06-16 Thread Benjamin Drung
** Summary changed:

- requestsync crashed with AssertionError in rmadison()
+ [requestsync] crashed with AssertionError in rmadison()

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1010951

Title:
  [requestsync] crashed with AssertionError in rmadison()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1010951/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 979845] Re: [requestsync] crashed with BadStatusLine in _read_status(): ''

2012-06-16 Thread Benjamin Drung
** Summary changed:

- requestsync crashed with BadStatusLine in _read_status(): ''
+ [requestsync] crashed with BadStatusLine in _read_status(): ''

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/979845

Title:
  [requestsync] crashed with BadStatusLine in _read_status(): ''

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/979845/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 944768] Re: [mk-sbuild] does not respect $no_proxy

2012-06-16 Thread Benjamin Drung
** Summary changed:

- mk-sbuild does not respect $no_proxy
+ [mk-sbuild] does not respect $no_proxy

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/944768

Title:
  [mk-sbuild] does not respect $no_proxy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/944768/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 936014] Re: [sponsor-patch] crashed with AssertionError in get_open_ubuntu_bug_task()

2012-06-16 Thread Benjamin Drung
** Summary changed:

- sponsor-patch crashed with AssertionError in get_open_ubuntu_bug_task()
+ [sponsor-patch] crashed with AssertionError in get_open_ubuntu_bug_task()

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/936014

Title:
  [sponsor-patch] crashed with AssertionError in
  get_open_ubuntu_bug_task()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/936014/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 878868] Re: [syncpackage] --no-lp picks up to many changelog entries in certain situations

2012-06-16 Thread Benjamin Drung
** Summary changed:

- syncpackage --no-lp picks up to many changelog entries in certain situations
+ [syncpackage] --no-lp picks up to many changelog entries in certain situations

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/878868

Title:
  [syncpackage] --no-lp picks up to many changelog entries in certain
  situations

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/878868/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1007042] Re: [backportpackage] fails but worked last week

2012-06-01 Thread Benjamin Drung
Wouldn't it be better to tweak dpkg-source to look for ubuntu, but not
for ~ubuntu?

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1007042

Title:
  [backportpackage] fails but worked last week

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1007042/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1007564] Re: [backportpackage] undocumented --key, --dont-sign options

2012-06-01 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1007564

Title:
  [backportpackage] undocumented --key, --dont-sign options

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1007564/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 1004579] Re: [pbuilder-dist] overwrite OTHERMIRROR set in ~/.pbuilderrc

2012-05-30 Thread Benjamin Drung
** Summary changed:

- pbuilder-dist overwrite OTHERMIRROR set in ~/.pbuilderrc
+ [pbuilder-dist] overwrite OTHERMIRROR set in ~/.pbuilderrc

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1004579

Title:
  [pbuilder-dist] overwrite OTHERMIRROR set in ~/.pbuilderrc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1004579/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 999727] Re: [backportpackage] -v and -m options don't work

2012-05-28 Thread Benjamin Drung
parser.add_option('-m', '--mirror',
  metavar='INSTANCE',
  help='Preferred mirror (default: Launchpad)')

Setting INSTANCE as metavar for mirror is clearly a bug.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Invalid = Triaged

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/999727

Title:
  [backportpackage] -v and -m options don't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/999727/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 993006] Re: [pbuilder-dist] Debian devel release should default to pbuilder-dist --release-only

2012-05-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/993006

Title:
  [pbuilder-dist] Debian devel release should default to pbuilder-dist
  --release-only

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/993006/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 992739] Re: [backportpackage] fails if no GPG present

2012-05-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/992739

Title:
  [backportpackage] fails if no GPG present

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/992739/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 988009] Re: [submittodebian] '--help' runs the program anyway

2012-05-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/988009

Title:
  [submittodebian] '--help' runs the program anyway

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/988009/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 979117] Re: dgetlp crashes

2012-05-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/979117

Title:
  dgetlp crashes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/979117/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 888736] Re: [mk-sbuild] should be able to run as root

2012-05-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/888736

Title:
  [mk-sbuild] should be able to run as root

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/888736/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 902233] Re: submittodebian should intelligently filter changes to the Maintainer field out of the debdiff

2012-05-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/902233

Title:
  submittodebian should intelligently filter changes to the Maintainer
  field out of the debdiff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/902233/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 691897] Re: [backportpackage] detect if orig.tar.gz upload needed

2012-05-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/691897

Title:
  [backportpackage] detect if orig.tar.gz upload needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/691897/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 992739] Re: [backportpackage] fails if no GPG present

2012-05-01 Thread Benjamin Drung
** Summary changed:

- backportpackage fails if no GPG present
+ [backportpackage] fails if no GPG present

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/992739

Title:
  [backportpackage] fails if no GPG present

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/992739/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 964731] Re: [pull-debian-source] wildcard support

2012-04-28 Thread Benjamin Drung
** Summary changed:

- pull-debian-source wildcard support
+ [pull-debian-source] wildcard support

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/964731

Title:
  [pull-debian-source] wildcard support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/964731/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 691897] Re: [backportpackage] detect if orig.tar.gz upload needed

2012-04-15 Thread Benjamin Drung
Doing a head request sounds good. Time to implement it. ;)

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/691897

Title:
  [backportpackage] detect if orig.tar.gz upload needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/691897/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 409696] Re: [cowbuilder-dist] doesn't find dependencies when building in sid chroot

2012-04-14 Thread Benjamin Drung
Yes, but someone needs to do the SRU.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/409696

Title:
  [cowbuilder-dist] doesn't find dependencies when building in sid
  chroot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/409696/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 979117] Re: dgetlp crashes

2012-04-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/979117

Title:
  dgetlp crashes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/979117/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 974132] Re: [backportpackage] please support backporting to Debian stable

2012-04-12 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Wishlist

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/974132

Title:
  [backportpackage] please support backporting to Debian stable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/974132/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 979117] Re: dgetlp crashes

2012-04-11 Thread Benjamin Drung
We could switch to Python 3 to get rid of these bugs (if all addional
libraries support Python 3).

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/979117

Title:
  dgetlp crashes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/979117/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 700036] Re: package blcr-dkms 0.8.2-15ubuntu1 failed to install/upgrade: blcr kernel module failed to build - error: ‘struct signal_struct’ has no member named ‘count’

2012-04-07 Thread Benjamin Drung
** Changed in: blcr (Ubuntu Natty)
   Status: Fix Released = Triaged

-- 
You received this bug notification because you are a member of MOTU,
which is a bug assignee.
https://bugs.launchpad.net/bugs/700036

Title:
  package blcr-dkms 0.8.2-15ubuntu1 failed to install/upgrade: blcr
  kernel module failed to build - error: ‘struct signal_struct’ has no
  member named ‘count’

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/blcr/+bug/700036/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 974132] Re: [backportpackage] please support backporting to Debian stable

2012-04-05 Thread Benjamin Drung
-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/974132

Title:
  [backportpackage] please support backporting to Debian stable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/974132/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 974132] Re: [backportpackage] please support backporting to Debian stable

2012-04-05 Thread Benjamin Drung
Here's a quick hack to generate the correct prefix for a Debian target.

** Patch added: backportpackage-debian.patch
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/974132/+attachment/3008471/+files/backportpackage-debian.patch

** Tags added: patch

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/974132

Title:
  [backportpackage] please support backporting to Debian stable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/974132/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 974132] [NEW] [backportpackage] please support backporting to Debian stable

2012-04-05 Thread Benjamin Drung
Public bug reported:

I want to do something like:

$ backportpackage -d squeeze -s sid shunit2 -u backports

backportpackage needs some adjustments for Debian:

* It should append something like ~bpo60+1 to the version.

* It should always build the binaries and upload these.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: ubuntu-dev-tools 0.140
ProcVersionSignature: Ubuntu 3.2.0-20.33-generic 3.2.12
Uname: Linux 3.2.0-20-generic x86_64
NonfreeKernelModules: btrfs zlib_deflate libcrc32c ufs qnx4 hfsplus hfs minix 
ntfs msdos jfs xfs reiserfs ext2 udf crc_itu_t nls_utf8 isofs nls_iso8859_1 
nls_cp437 vfat fat ip6table_filter ip6_tables ebtable_nat ebtables 
ipt_MASQUERADE iptable_nat nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_state 
nf_conntrack ipt_REJECT xt_CHECKSUM openafs iptable_mangle xt_tcpudp 
iptable_filter ip_tables x_tables bridge stp kvm_intel kvm bnep rfcomm 
bluetooth parport_pc ppdev dm_crypt binfmt_misc snd_emu10k1_synth 
snd_emux_synth snd_seq_virmidi snd_seq_midi_emul snd_emu10k1 snd_ac97_codec 
ac97_bus eeepc_wmi asus_wmi snd_pcm sparse_keymap snd_page_alloc snd_util_mem 
snd_hwdep snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer 
snd_seq_device joydev snd soundcore psmouse serio_raw mei mac_hid lm75 coretemp 
lp parport hid_cherry usbhid hid usb_storage uas i915 wmi r8169 drm_kms_helper 
drm i2c_algo_bit video
ApportVersion: 2.0-0ubuntu4
Architecture: amd64
Date: Thu Apr  5 12:46:53 2012
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Alpha amd64 (20100921.1)
PackageArchitecture: all
SourcePackage: ubuntu-dev-tools
UpgradeStatus: Upgraded to precise on 2012-03-05 (30 days ago)

** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug patch precise

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/974132

Title:
  [backportpackage] please support backporting to Debian stable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/974132/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 968129] Re: [syncpackage] crashed with TypeError in error(): not enough arguments for format string

2012-03-29 Thread Benjamin Drung
** Description changed:

  syncpackage should print a nice error message if LP is unavailable
- instead of crashing.
+ instead of crashing after printing
+ 
+ syncpackage: Error: HTTP Error 503: Service Unavailable
  
  ProblemType: Crash
  DistroRelease: Ubuntu 12.04
  Package: ubuntu-dev-tools 0.139
  ProcVersionSignature: Ubuntu 3.2.0-20.33-generic 3.2.12
  Uname: Linux 3.2.0-20-generic x86_64
  NonfreeKernelModules: openafs
  ApportVersion: 1.95-0ubuntu1
  Architecture: amd64
  Date: Thu Mar 29 12:00:57 2012
  ExecutablePath: /usr/bin/syncpackage
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Alpha amd64 (20100921.1)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/syncpackage -d sid audacious-plugins
  PythonArgs: ['/usr/bin/syncpackage', '-d', 'sid', 'audacious-plugins']
  SourcePackage: ubuntu-dev-tools
  Title: syncpackage crashed with TypeError in error(): not enough arguments 
for format string
  UpgradeStatus: Upgraded to precise on 2012-03-05 (23 days ago)
  UserGroups: adm admin cdrom dialout libvirtd lpadmin plugdev sambashare

** Visibility changed to: Public

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/968129

Title:
  [syncpackage] crashed with TypeError in error(): not enough arguments
  for format string

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/968129/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 967041] Re: reuqestsync should suscribe the ubuntu-release team if a sync request is made after feature freeze

2012-03-28 Thread Benjamin Drung
You have to specify '-e' for this behavior. How should requestsync
automatically determine, if the requested sync needs a freeze exception?

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/967041

Title:
  reuqestsync should suscribe the ubuntu-release team if a sync request
  is made after feature freeze

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/967041/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 967041] Re: reuqestsync should suscribe the ubuntu-release team if a sync request is made after feature freeze

2012-03-28 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/967041

Title:
  reuqestsync should suscribe the ubuntu-release team if a sync request
  is made after feature freeze

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/967041/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 965817] Re: [ubuntu-dev-tools.5] man page should contain an overview of commands

2012-03-26 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Wishlist

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/965817

Title:
  [ubuntu-dev-tools.5] man page should contain an overview of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/965817/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 964731] Re: pull-debian-source wildcard support

2012-03-25 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/964731

Title:
  pull-debian-source wildcard support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/964731/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 963888] Re: requestsync crashed with SeriesNotFoundException in getSeries(): Release '0.7' is unknown in 'Ubuntu'.

2012-03-24 Thread Benjamin Drung
** Visibility changed to: Public

** Summary changed:

- requestsync crashed with SeriesNotFoundException in getSeries(): Release 
'0.7' is unknown in 'Ubuntu'.
+ [requestsync] crashed with SeriesNotFoundException in getSeries(): Release 
'0.7' is unknown in 'Ubuntu'.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/963888

Title:
  [requestsync] crashed with SeriesNotFoundException in getSeries():
  Release '0.7' is unknown in 'Ubuntu'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/963888/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 946001] Re: [sponsor-patch] Allow specifying branch instead of bug

2012-03-04 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/946001

Title:
  [sponsor-patch] Allow specifying branch instead of bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/946001/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 919534] Re: [pull-debian-source] lucid pull-debian-source does not know about squeeze

2012-01-23 Thread Benjamin Drung
We already have a separate package for that volatile data. It is called
distro-info.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/919534

Title:
  [pull-debian-source] lucid pull-debian-source does not know about
  squeeze

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/919534/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 904288] Re: [syncpackage] Mention sponsoree when closing bugs in sponsored syncs

2011-12-21 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/904288

Title:
  [syncpackage] Mention sponsoree when closing bugs in sponsored syncs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/904288/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 896733] Re: [sponsor-patch] User should be able to override sanity checks

2011-12-21 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided = Medium

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/896733

Title:
  [sponsor-patch] User should be able to override sanity checks

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/896733/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 735896] Re: update-maintainer crashed with KeyError in __getitem__(): '# Phatch handles all popular image formats and can duplicate (sub)folder\n'

2011-12-11 Thread Benjamin Drung
*** This bug is a duplicate of bug 701487 ***
https://bugs.launchpad.net/bugs/701487

** This bug is no longer a duplicate of bug 705201
   update-maintainer failed
** This bug has been marked a duplicate of bug 701487
   [update-maintainer] No Maintainer field found in ./debian/control.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/735896

Title:
  update-maintainer crashed with KeyError in __getitem__(): '# Phatch
  handles all popular image formats and can duplicate (sub)folder\n'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/735896/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 715360] Re: update-maintainer needlessly reads entire control file and can explode

2011-12-11 Thread Benjamin Drung
*** This bug is a duplicate of bug 701487 ***
https://bugs.launchpad.net/bugs/701487

** This bug is no longer a duplicate of bug 705201
   update-maintainer failed
** This bug has been marked a duplicate of bug 701487
   [update-maintainer] No Maintainer field found in ./debian/control.

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/715360

Title:
  update-maintainer needlessly reads entire control file and can explode

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/715360/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 896733] Re: [sponsor-patch] User should be able to override sanity checks

2011-12-11 Thread Benjamin Drung
Wouldn't it be enough to check if the specified bug is marked as
duplicate and then get the related bug number to check against?

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/896733

Title:
  [sponsor-patch] User should be able to override sanity checks

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/896733/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 902233] Re: submittodebian should intelligently filter changes to the Maintainer field out of the debdiff

2011-12-09 Thread Benjamin Drung
** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/902233

Title:
  submittodebian should intelligently filter changes to the Maintainer
  field out of the debdiff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/902233/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 890464] [NEW] Ubuntu 12.04 LTS Precise Pangolin is unknown

2011-11-14 Thread Benjamin Drung
Public bug reported:

distro-info should know about Ubuntu 12.04 LTS Precise Pangolin.

** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: ubuntu-dev-tools (Ubuntu Natty)
 Importance: Undecided
 Status: New

** Also affects: ubuntu-dev-tools (Ubuntu Natty)
   Importance: Undecided
   Status: New

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/890464

Title:
  Ubuntu 12.04 LTS Precise Pangolin is unknown

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/890464/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 890464] Re: Ubuntu 12.04 LTS Precise Pangolin is unknown

2011-11-14 Thread Benjamin Drung
** Patch added: ubuntu-dev-tools_0.122.3.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/890464/+attachment/2596991/+files/ubuntu-dev-tools_0.122.3.debdiff

-- 
You received this bug notification because you are a member of MOTU,
which is subscribed to ubuntu-dev-tools in Ubuntu.
https://bugs.launchpad.net/bugs/890464

Title:
  Ubuntu 12.04 LTS Precise Pangolin is unknown

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/890464/+subscriptions

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


  1   2   3   4   5   6   7   8   9   10   >