sftp PPA uploads don't show up, no error e-mail from LP

Asked by Václav Šmilauer

I am trying to upload lightly modified distribution packages to my PPA; I've done this many times in the past, but I might be doing something wonrg now. This time it is trusty's python-lockfile, where I added a stanza to build the package for python3 as well. The procedure is as follows:

* $ apt-get source python-lockfile
* modify the source
* $ dch -i [add something to changelog]
* $ debuild -S -sd -kFD1D2699

   ...
   dpkg-buildpackage: binary and diff upload (original source NOT included)
   Now signing changes and any dsc files...
   ...
    signfile python-lockfile_0.8-2ubuntu2.1_source.changes FD1D2699

   You need a passphrase to unlock the secret key for
   user: "Václav Šmilauer (Launchpad PPA) <email address hidden>"
   2048-bit RSA key, ID FD1D2699, created 2015-01-27

   Successfully signed dsc and changes files

* $ cat ~/.dput.cf
   [woo-daily]
   fqdn = ppa.launchpad.net
   method = sftp
   incoming = ~eudoxos/woo-daily/ubuntu
   login = eudoxos
   allow_unsigned_uploads = 0

* $ dput woo-daily python-lockfile_0.8-2ubuntu2.1_source.changes
   Checking signature on .changes
   gpg: Signature made Tue 24 Feb 2015 09:46:54 PM CET using RSA key ID FD1D2699
   gpg: Good signature from "Václav Šmilauer (Launchpad PPA) <email address hidden>"
   Good signature on /tmp/python-lockfile_0.8-2ubuntu2.1_source.changes.
   Checking signature on .dsc
   gpg: Signature made Tue 24 Feb 2015 09:46:52 PM CET using RSA key ID FD1D2699
   gpg: Good signature from "Václav Šmilauer (Launchpad PPA) <email address hidden>"
   Good signature on /tmp/python-lockfile_0.8-2ubuntu2.1.dsc.
   Uploading to woo-daily (via sftp to ppa.launchpad.net):
     python-lockfile_0.8-2ubuntu2.1.dsc: done.
     python-lockfile_0.8-2ubuntu2.1.debian.tar.gz: done.
     python-lockfile_0.8-2ubuntu2.1_source.changes: done.
   Successfully uploaded packages.

Everything look OK, except that nothing shows up in https://launchpad.net/~eudoxos/+archive/ubuntu/woo-daily ??

An I overlooking something?

Question information

Language:
English Edit question
Status:
Solved
For:
Launchpad itself Edit question
Assignee:
No assignee Edit question
Solved by:
William Grant
Solved:
Last query:
Last reply:
Revision history for this message
Best William Grant (wgrant) said :
#1

That OpenPGP key ID (FD1D2699) doesn't match either of the keys registered to your Launchpad account. Use one of the two existing keys, or add the new one at https://launchpad.net/~/+editpgpkeys.

Revision history for this message
Václav Šmilauer (eudoxos) said :
#2

Thanks William Grant, that solved my question.

Revision history for this message
Anuarg Priyam (yeban) said :
#3

Different package, similar issue. Does one need to re-upload a package after adding a new PGP key? (dput -f?)

Revision history for this message
William Grant (wgrant) said :
#4

Yes, you need to upload the package again.

Revision history for this message
Anuarg Priyam (yeban) said :
#5

That helped. Thanks!