Saurik's version of apt managed for tvOS/ARM64

David Kalnischkies 8b79c94af7 use std::locale::global instead of setlocale 10 vuotta sitten
abicheck e75e5879c0 replace "which" with "command -v" for portability 10 vuotta sitten
apt-inst 8d89cda7d6 Fix several typos 10 vuotta sitten
apt-pkg eceb219c2a use de-localed std::put_time instead rolling our own 10 vuotta sitten
apt-private 8b79c94af7 use std::locale::global instead of setlocale 10 vuotta sitten
buildlib e3fbd54cee FileFd: (native) LZ4 support 10 vuotta sitten
cmdline b58e2c7c56 prevent C++ locale number formatting in text APIs 10 vuotta sitten
completions 5aba18968d Provide complete apt bash completion 10 vuotta sitten
debian cb6020cdfe use *.docs files instead of hardcoding in debian/rules 10 vuotta sitten
doc 124e6916b7 fix and document on the fly compressor config 10 vuotta sitten
dselect 94171725b1 Replace all "press enter" occurrences with "press [Enter]" 11 vuotta sitten
ftparchive e0b01a85bd avoid changing the global LC_TIME for Release writing 10 vuotta sitten
methods 8b79c94af7 use std::locale::global instead of setlocale 10 vuotta sitten
po 91be4122fb Russian program translation update 10 vuotta sitten
test 9febc2b238 accept only the expected UTC timezones in date parsing 10 vuotta sitten
vendor b5aba9096e use local changelog from /usr/share/doc if possible 10 vuotta sitten
.bzrignore 04e9cc0814 * doc/examples/sources.list: 14 vuotta sitten
.gitignore d1da489f01 ensure built en-manpages are ignored by git 10 vuotta sitten
.travis.yml 0390edd545 Fix bug where the problemresolve can put a pkg into a heisenstate 10 vuotta sitten
AUTHORS fe4a537822 AUTHORS: Update: I am active, bubulle is not 10 vuotta sitten
COMPILING a034d8528b build: Convert from DebianDoc SGML to DocBook XML 12 vuotta sitten
COPYING 6ae07b8231 merged r1811 from lp:~donkult/apt/experimenal 17 vuotta sitten
COPYING.GPL a62f8bb911 QT1 license exception 22 vuotta sitten
Makefile 586bdb0c12 Do not fail if building test/ fails (issues with parallel builds) 11 vuotta sitten
README.SrvRecords e6849dd846 fix typo in SrvRecords documentation 10 vuotta sitten
README.make 1e3f4083db Fix typos in documentation (codespell) 12 vuotta sitten
README.md 2ee1a6f0ec say 'master' is default branch in README, too 10 vuotta sitten
README.progress-reporting add81166f8 typo: run s#frontend#front-end# on all of src:apt 10 vuotta sitten
configure.ac 5b0577488f Release 1.3~exp1 10 vuotta sitten
mirror-failure.py 2769f0bcf6 * mirror-failure.py: example mirror failure cgi 19 vuotta sitten
prepare-release 2c80abf922 prepare-release: travis: Ignore build profiles in build-depends 10 vuotta sitten

README.SrvRecords

DNS SRV record support in apt
=============================

Apt supports a subset of the DNS SRV server records protocol as
described in RFC 2782 for service discovery.

Before connecting to the requested server APT will send a SRV
record request of the form "_$protocol._tcp._$host", e.g.
"_http._tcp.ftp.debian.org" or "_http._tcp.security.debian.org".

If the server sends SRV records
as a reply APT will use those to connect to the server(s) in
this reply. It will honor the "priority" field in the reply.

However it does not implement the "weight" algorithm as described
in RFC 2782. It will use an equal weight for each server of the
same priority.

If connecting to a server fails APT will retry with the next one
and remove the server from the list of valid servers for this
session.