Upload built source packages over SFTP with host-key verification (Launchpad fingerprints pinned in host_keys.yml, ask-to-accept otherwise), Launchpad account discovery (git config lp.user), and pre-flight checks the upload queue itself never does: changes file discovery/validation, PPA existence via the Launchpad API, target series validity, and debian/control Section validity (sections bundled in distro_info.yml). Upload log prevents duplicate uploads unless --force.
156 lines
3.3 KiB
YAML
156 lines
3.3 KiB
YAML
## Static data needed for pkh operations
|
|
## Instead of hardcoding the data in code, data files allow to quickly
|
|
## update and maintain such data in one unique place
|
|
## The goal is to have the minimal possible set of data necessary
|
|
## to grab the actual data. For example we don't want to store every Ubuntu
|
|
## or Debian series, but rather an URL where we can properly access that data.
|
|
dist_info:
|
|
local: /usr/share/distro-info/{dist}
|
|
network: https://salsa.debian.org/debian/distro-info-data/-/raw/main/
|
|
dist:
|
|
debian:
|
|
base_url: https://deb.debian.org/debian
|
|
archive_keyring: https://ftp-master.debian.org/keys/archive-key-{series_num}.asc
|
|
pockets:
|
|
- updates
|
|
- security
|
|
- proposed-updates
|
|
sections:
|
|
# Valid Section values for debian/control: the Debian policy section
|
|
# list unioned with the sections observed in the live Ubuntu archive.
|
|
# Archives reject uploads carrying an unknown section; only the part
|
|
# before a '/' (the subsection) is validated.
|
|
- admin
|
|
- cli-mono
|
|
- comm
|
|
- database
|
|
- debian-installer
|
|
- debug
|
|
- devel
|
|
- doc
|
|
- editors
|
|
- education
|
|
- electronics
|
|
- embedded
|
|
- fonts
|
|
- games
|
|
- gnome
|
|
- gnu-r
|
|
- golang
|
|
- graphics
|
|
- hamradio
|
|
- haskell
|
|
- httpd
|
|
- interpreters
|
|
- introspection
|
|
- java
|
|
- javascript
|
|
- kde
|
|
- kernel
|
|
- libdevel
|
|
- libs
|
|
- lisp
|
|
- localization
|
|
- mail
|
|
- math
|
|
- metapackages
|
|
- misc
|
|
- net
|
|
- news
|
|
- ocaml
|
|
- oldlibs
|
|
- otherosfs
|
|
- perl
|
|
- php
|
|
- python
|
|
- ruby
|
|
- rust
|
|
- science
|
|
- shells
|
|
- sound
|
|
- tasks
|
|
- tex
|
|
- text
|
|
- translations
|
|
- utils
|
|
- vcs
|
|
- video
|
|
- web
|
|
- x11
|
|
- xfce
|
|
- zope
|
|
series:
|
|
local: /usr/share/distro-info/debian.csv
|
|
network: https://salsa.debian.org/debian/distro-info-data/-/raw/main/debian.csv
|
|
ubuntu:
|
|
base_url: https://archive.ubuntu.com/ubuntu
|
|
archive_keyring: https://archive.ubuntu.com/ubuntu/project/ubuntu-archive-keyring.gpg
|
|
pockets:
|
|
- updates
|
|
- security
|
|
- proposed
|
|
sections:
|
|
# Same list as debian (see the comment there)
|
|
- admin
|
|
- cli-mono
|
|
- comm
|
|
- database
|
|
- debian-installer
|
|
- debug
|
|
- devel
|
|
- doc
|
|
- editors
|
|
- education
|
|
- electronics
|
|
- embedded
|
|
- fonts
|
|
- games
|
|
- gnome
|
|
- gnu-r
|
|
- golang
|
|
- graphics
|
|
- hamradio
|
|
- haskell
|
|
- httpd
|
|
- interpreters
|
|
- introspection
|
|
- java
|
|
- javascript
|
|
- kde
|
|
- kernel
|
|
- libdevel
|
|
- libs
|
|
- lisp
|
|
- localization
|
|
- mail
|
|
- math
|
|
- metapackages
|
|
- misc
|
|
- net
|
|
- news
|
|
- ocaml
|
|
- oldlibs
|
|
- otherosfs
|
|
- perl
|
|
- php
|
|
- python
|
|
- ruby
|
|
- rust
|
|
- science
|
|
- shells
|
|
- sound
|
|
- tasks
|
|
- tex
|
|
- text
|
|
- translations
|
|
- utils
|
|
- vcs
|
|
- video
|
|
- web
|
|
- x11
|
|
- xfce
|
|
- zope
|
|
series:
|
|
local: /usr/share/distro-info/ubuntu.csv
|
|
network: https://salsa.debian.org/debian/distro-info-data/-/raw/main/ubuntu.csv
|