1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
<!--
These variables are read and used by XML files; they are included
separate from the main document since they may need to change. This
allows builders to override the defaults without editing the main XML
file.
These entries are language independent.
Remember, this is XML; the *first* definition of an ENTITY wins.
-->
<!-- Full name for Debian -->
<!ENTITY debian "Debian GNU/Linux">
<!-- release data -->
<!ENTITY release "13">
<!ENTITY releasename "trixie">
<!ENTITY Releasename "Trixie">
<!ENTITY oldreleasename "bookworm">
<!ENTITY Oldreleasename "Bookworm">
<!ENTITY nextreleasename "forky">
<!ENTITY Nextreleasename "Forky">
<!--
These values have been obtained with the following query on UDD. For more info see
https://wiki.debian.org/UltimateDebianDatabase
jfs@ullmann:~$ psql service=udd
psql (13.16 (Debian 13.16-0+deb11u1))
udd=> SELECT COUNT(DISTINCT package), component FROM all_packages
WHERE distribution='debian' AND release='bookworm' GROUP BY component;
count | component
312 | contrib
1 | contrib/debian-installer
63879 | main
1582 | main/debian-installer
732 | non-free
1 | non-free/debian-installer
38 | non-free-firmware
(7 filas)
-->
<!ENTITY packages-total "64961">
<!ENTITY packages-main "63879">
<!ENTITY packages-contrib-nonfree "1082">
<!--
Number of hardware platforms in stable release
See release.debian.org or buildd.debian.org
For 12 (bookworm), the release architectures are:
amd64, arm64, armel, armhf, i386, mips64el, mipsel, ppc64el, s390x
For 13 (trixie), there are 6 fully supported release architectures,
and 2 partial ones.
-->
<!ENTITY number-archs "7">
<!--
Developer information can be extracted from
https://nm.debian.org/members/, https://contributors.debian.org,
from votes in DPL elections as well as from Debian's LDAP.
contributors.debian.org counts active contributors and merges
developer's email addresses.
The number below of developers is from https://nm.debian.org/members/
The number below of contributors comes from https://contributors.debian.org
Note that the number from Developer's LDAP search
(https://db.debian.org/search.cgi) might turn up a higher number
We round the number, so that even if we slack in updating them, they're
still pretty ok.
-->
<!ENTITY developers "1000">
<!ENTITY contributors "1400">
<!ENTITY contributors-non-dd "400">
<!-- URLs -->
<!ENTITY url-debian-doc "https://www.debian.org/doc">
<!ENTITY url-debian-donation "https://www.debian.org/donations">
<!ENTITY url-debian-faq "https://www.debian.org/doc/FAQ/">
<!ENTITY url-debian-help "https://www.debian.org/intro/help">
<!ENTITY url-debian-hurd "https://www.debian.org/ports/hurd/">
<!ENTITY url-debian-installmanual "https://www.debian.org/releases/stable/installmanual">
<!ENTITY url-debian-manuals-faq "https://www.debian.org/doc/user-manuals#faq">
<!ENTITY url-debian-reference "https://www.debian.org/doc/manuals/debian-reference/">
<!ENTITY url-debian-releasenotes "https://www.debian.org/releases/stable/releasenotes">
<!ENTITY url-debian-releases "https://www.debian.org/releases">
<!ENTITY url-debian-social-contract "https://www.debian.org/social_contract">
<!ENTITY url-debian-support "https://www.debian.org/support">
<!ENTITY url-gnu-hurd "https://www.gnu.org/software/hurd">
<!ENTITY url-lists-debian "https://lists.debian.org/">
<!ENTITY url-pathname-fhs "https://www.pathname.com/fhs">
|