Diff for "Soyuz/ReUploadPackage"

Not logged in - Log In / Register

Differences between revisions 1 and 10 (spanning 9 versions)
Revision 1 as of 2010-08-03 09:43:34
Size: 657
Editor: jtv
Comment:
Revision 10 as of 2021-07-05 16:40:56
Size: 1314
Editor: twom
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
Here's how to re-upload an existing package to Soyuz on dogfood. Here's how to re-upload an existing package to a Soyuz PPA on dogfood.
Line 8: Line 8:
fqdn = dogfood.launchpad.net
method = ftp
incoming = ubuntu/
login = anonymous
allow_unsigned_uploads = 0
fqdn                    = upload.dogfood.paddev.net
method                  = ftp
incoming                = %(dogfood)s
login                   = anonymous
Line 19: Line 18:
dch -i dch -i "Reupload."
dch -r -D xenial # or an appropriate distroseries
Line 22: Line 22:
That last command will prompt you to edit the debian changelog. It creates a new entry for you, which is what tells the system that the package has changed and needs re-processing. That last command will add an entry to the Debian changelog, which is what tells the system that the package has changed and needs re-processing. You can override the name/email that is used by setting the DEBEMAIL environment variable.

debsign (run by debuild below) will attempt to find your GPG key by using the email address in the changelog entry. Alternatively, you can set DEBSIGN_KEYID=yourid in ~/.devscripts.
Line 28: Line 30:
dput <package>.changes dput dogfood:~<username>/ubuntu/<ppa name>
Line 30: Line 32:

If you are uploading to a PPA, you are now done. If you are uploading to a main archive, you may need:

Now, ''on dogfood'':
{{{
sudo -u launchpad -i <<EOF
cd /srv/launchpad.net/codelines/current
.//scripts/process-upload.py -vv -C insecure ../../ubuntu-queue
EOF
}}}

Re-Uploading a Package

Here's how to re-upload an existing package to a Soyuz PPA on dogfood.

First, make sure you have this in your ~/.dput.cf:

[dogfood]
fqdn                    = upload.dogfood.paddev.net
method                  = ftp
incoming                = %(dogfood)s
login                   = anonymous

On your local machine, run:

apt-get source <package>  # (Or obtain in some other way)
cd <package-dir>
dch -i "Reupload."
dch -r -D xenial # or an appropriate distroseries

That last command will add an entry to the Debian changelog, which is what tells the system that the package has changed and needs re-processing. You can override the name/email that is used by setting the DEBEMAIL environment variable.

debsign (run by debuild below) will attempt to find your GPG key by using the email address in the changelog entry. Alternatively, you can set DEBSIGN_KEYID=yourid in ~/.devscripts.

Then:

debuild -S
cd ..
dput dogfood:~<username>/ubuntu/<ppa name>

If you are uploading to a PPA, you are now done. If you are uploading to a main archive, you may need:

Now, on dogfood:

sudo -u launchpad -i <<EOF
cd /srv/launchpad.net/codelines/current
.//scripts/process-upload.py -vv -C insecure ../../ubuntu-queue
EOF

Soyuz/ReUploadPackage (last edited 2021-07-05 16:40:56 by twom)