I'm trying to upload a debian package to ppa.launchpad.net using dput
. As mentioned in launchpad.net help I just have to use the following command:
dput ppa:my-lp-id/ppa <source.changes>
My PPA is called main
. I built the package using debuild -S
and try to upload the resulting foo_0.1.2_source.changes
file using the following command:
dput ppa:myid/main foo_0.1.2_source.changes
But this results in
No host ppa:myid/main found in config
In my dput.cf
I have the following:
[ppa]
fqdn = ppa.launchpad.net
method = ftp
# replace <launchpad-id> with your Launchpad ID
#incoming = ~<launchpad-id>/ubuntu
incoming = ~myid/ubuntu
login = anonymous
So, the host is definitely there, but what's wrong here?
EDIT: Seems to be a problem with dput on ArchLinux. The same command on Ubuntu worked like a charm.
ppa:myid/main
withppa
.ppa
is the entry fromdput.cf
. – Whitelaw