Man page - rmadison(1)
Packages contains this manual
- devscripts.conf(5)
- build-rdeps(1)
- whodepends(1)
- checkbashisms(1)
- annotate-output(1)
- namecheck(1)
- transition-check(1)
- debrsign(1)
- dpkg-genbuilddeps(1)
- deb-reversion(1)
- ltnu(1)
- debbisect(1)
- cowpoke(1)
- dscextract(1)
- list-unreleased(1)
- getbuildlog(1)
- debclean(1)
- chdist(1)
- rc-alert(1)
- mk-origtargz(1)
- deb2docker(1)
- edit-patch(1)
- what-patch(1)
- dd-list(1)
- tagpending(1)
- suspicious-source(1)
- bts(1)
- deb-why-removed(1)
- devscripts(7)
- plotchangelog(1)
- uscan(1)
- mergechanges(1)
- debsnap(1)
- debftbfs(1)
- hardening-check(1)
- dscverify(1)
- dget(1)
- who-uploads(1)
- debrepro(1)
- git-deborig(1)
- deb-janitor(1)
- deb2apptainer(1)
- dep-14-convert-git-branch-names(1)
- dep3changelog(1)
- wnpp-alert(1)
- pts-unsubscribe(1)
- sadt(1)
- debc(1)
- debdiff-apply(1)
- nmudiff(1)
- add-patch(1)
- dpkg-depcheck(1)
- rmadison(1)
- debsign(1)
- deb2singularity(1)
- diff2patches(1)
- debi(1)
- mk-build-deps(1)
- origtargz(1)
- debrebuild(1)
- deb-check-file-conflicts(1)
- reproducible-check(1)
- mass-bug(1)
- debootsnap(1)
- salsa(1)
- svnpath(1)
- debrelease(1)
- pts-subscribe(1)
- debdiff(1)
- dch(1)
- debcheckout(1)
- wrap-and-sort(1)
- wnpp-check(1)
- manpage-alert(1)
- dcmd(1)
- who-permits-upload(1)
- debchange(1)
- archpath(1)
- debuild(1)
- grep-excuses(1)
- debcommit(1)
- uupdate(1)
apt-get install devscripts
Available languages:
en fr deManual
RMADISON
NAMESYNOPSIS
DESCRIPTION
OPTIONS
CONFIGURATION VARIABLES
NOTES
SEE ALSO
AUTHOR
NAME
rmadison -- Remotely query the Debian archive database about packages
SYNOPSIS
rmadison [ OPTIONS ] PACKAGE ...
DESCRIPTION
dak ls queries the Debian archive database ("projectb") and displays which package version is registered per architecture/component/suite. The CGI at https://qa.debian.org/madison.php provides that service without requiring SSH access to ftp-master.debian.org or the mirror on mirror.ftp-master.debian.org. This script, rmadison , is a command line frontend to this CGI.
OPTIONS
-a , --architecture= ARCH
only show info for ARCH(s)
-b , --binary-type= TYPE
only show info for binary TYPE
-c , --component= COMPONENT
only show info for COMPONENT(s)
-g , --greaterorequal
show buildd βdep-wait pkg >= {highest version}β info
-G , --greaterthan
show buildd βdep-wait pkg >> {highest version}β info
-h , --help
show this help and exit
-s , --suite= SUITE
only show info for this suite
-r , --regex
treat PACKAGE as a regex
Note: Since -r can easily DoS the database ("-r ."), this option is not supported by the CGI on qa.debian.org and most other installations.
-S , --source-and-binary
show info for the binary children of source pkgs
-t , --time
show projectb snapshot and reload time (not supported by all archives)
-u , --url= URL [ , URL ...]
use
URL
for the query.
Supported shorthands are
debian
https://api.ftp-master.debian.org/madison
new
https://api.ftp-master.debian.org/madison?s=new
qa
https://qa.debian.org/madison.php
ubuntu
https://ubuntu-archive-team.ubuntu.com/madison.cgi
udd
https://qa.debian.org/cgi-bin/madison.cgi
all
https://qa.debian.org/cgi-bin/madison.cgi?table=all
archive
https://qa.debian.org/cgi-bin/madison.cgi?table=archived
ports
https://qa.debian.org/cgi-bin/madison.cgi?table=ports
See the RMADISON_URL_MAP_ variable below for a method to add new shorthands.
--version
show version and exit
--no-conf , --noconf
donβt read the devscripts configuration files
ARCH, COMPONENT and SUITE can be comma (or space) separated lists, e.g. --architecture=amd64,i386
CONFIGURATION VARIABLES
The two
configuration files
/etc/devscripts.conf
and
Λ/.devscripts
are sourced by a shell in that
order to set configuration variables. Command line options
can be used to override configuration file settings.
Environment variable settings are ignored for this purpose.
The currently recognised variables are:
RMADISON_URL_MAP_
SHORTHAND
=
URL
Add an entry to the set of shorthand URLs listed above. SHORTHAND should be replaced with the shorthand form to be used to refer to URL .
Multiple shorthand entries may be specified by using multiple RMADISON_URL_MAP_* variables.
RMADISON_DEFAULT_URL = URL
Set the default URL to use unless overridden by a command line option. For Debian this defaults to debian. For Ubuntu this defaults to ubuntu.
RMADISON_ARCHITECTURE = ARCH
Set the default architecture to use unless overridden by a command line option. To run an unrestricted query when RMADISON_ARCHITECTURE is set, use --architecture=β*β .
RMADISON_SSL_CA_FILE = FILE
Use the specified CA file instead of the default CA bundle for curl/wget, passed as --cacert to curl, and as --ca-certificate to wget.
RMADISON_SSL_CA_PATH = PATH
Use the specified CA directory instead of the default CA bundle for curl/wget, passed as --capath to curl, and as --ca-directory to wget.
NOTES
dak ls was formerly called madison .
The protocol used by rmadison is fairly simple, the CGI accepts query the parameters a, b, c, g, G, r, s, S, t, and package. The parameter text is passed to enable plain-text output.
SEE ALSO
dak (1), madison-lite (1)
AUTHOR
rmadison and https://qa.debian.org/madison.php were written by Christoph Berg <myon@debian.org>. dak was written by James Troup <james@nocrew.org>, Anthony Towns <ajt@debian.org>, and others.