diff --git a/.flake8 b/.flake8 index 607808a1c..393ab659b 100644 --- a/.flake8 +++ b/.flake8 @@ -1,7 +1,7 @@ [flake8] -max-line-length = 200 +max-line-length = 240 ignore = E126,E241,E741,W504 include = system exclude = - system/env \ No newline at end of file + system/env diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e7b811b4..388ee2225 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ env: jobs: build: name: test - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 continue-on-error: false timeout-minutes: 30 @@ -60,7 +60,7 @@ jobs: - name: Install O/S packages run: | sudo apt-get update - sudo apt-get install -y graphviz gnupg1 gnupg2 gpgv1 gpgv2 git gcc make + sudo apt-get install -y graphviz gnupg2 gpgv2 git gcc make - name: Install Python packages run: | @@ -76,7 +76,7 @@ jobs: - name: Make env: - RUN_LONG_TESTS: 'yes' + RUN_LONG_TESTS: 'yes' AZURE_STORAGE_ENDPOINT: "127.0.0.1:10000" AZURE_STORAGE_ACCOUNT: "devstoreaccount1" AZURE_STORAGE_ACCESS_KEY: "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==" @@ -97,7 +97,7 @@ jobs: release: name: release needs: build - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/.gitignore b/.gitignore index 76902418b..986235547 100644 --- a/.gitignore +++ b/.gitignore @@ -2,11 +2,14 @@ *.o *.a *.so +unit.out # Folders _obj _test +tmp/ + # Architecture specific extensions/prefixes *.[568vq] [568vq].out diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..9335a9320 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM debian:bookworm-slim + +RUN apt-get update -y && apt-get install -y --no-install-recommends curl gnupg && apt-get clean && rm -rf /var/lib/apt/lists/* + +RUN echo deb http://deb.debian.org/debian bookworm-backports main > /etc/apt/sources.list.d/backports.list +RUN apt-get update && \ + apt-get install -y --no-install-recommends apg bzip2 xz-utils ca-certificates golang/bookworm-backports golang-go/bookworm-backports golang-doc/bookworm-backports golang-src/bookworm-backports make git python3 && \ + apt-get clean && rm -rf /var/lib/apt/lists/* + +RUN useradd -m --shell /bin/sh --home-dir /var/lib/aptly aptly + +RUN mkdir app +WORKDIR /app + +CMD /app/system/run-system-tests diff --git a/Makefile b/Makefile index f2c3468b4..7772584ef 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,8 @@ TESTS?= BINPATH?=$(GOPATH)/bin RUN_LONG_TESTS?=yes COVERAGE_DIR?=$(shell mktemp -d) +# Uncomment to update test outputs +# CAPTURE := "--capture" all: modules test bench check system-test @@ -47,7 +49,7 @@ ifeq ($(RUN_LONG_TESTS), yes) go test -v -coverpkg="./..." -c -tags testruncli if [ ! -e ~/aptly-fixture-db ]; then git clone https://github.com/aptly-dev/aptly-fixture-db.git ~/aptly-fixture-db/; fi if [ ! -e ~/aptly-fixture-pool ]; then git clone https://github.com/aptly-dev/aptly-fixture-pool.git ~/aptly-fixture-pool/; fi - PATH=$(BINPATH)/:$(PATH) && . system/env/bin/activate && APTLY_VERSION=$(VERSION) $(PYTHON) system/run.py --long $(TESTS) --coverage-dir $(COVERAGE_DIR) + PATH=$(BINPATH)/:$(PATH) && . system/env/bin/activate && APTLY_VERSION=$(VERSION) $(PYTHON) system/run.py --long $(TESTS) --coverage-dir $(COVERAGE_DIR) $(CAPTURE) endif test: @@ -82,4 +84,10 @@ man: version: @echo $(VERSION) -.PHONY: man modules version release goxc +docker-build: + docker build -f system/Dockerfile --no-cache . -t aptly-system-test + +docker-system-tests: + docker run --rm -it -v ${PWD}:/app aptly-system-test + +.PHONY: man modules version release goxc docker-build docker-system-tests diff --git a/api/gpg.go b/api/gpg.go index b4fcd6aa1..7bf5f1f0c 100644 --- a/api/gpg.go +++ b/api/gpg.go @@ -61,7 +61,7 @@ func apiGPGAddKey(c *gin.Context) { args = append(args, keys...) } - finder := pgp.GPG1Finder() + finder := pgp.GPGDefaultFinder() gpg, _, err := finder.FindGPG() if err != nil { AbortWithJSONError(c, 400, err) diff --git a/go.mod b/go.mod index 8f0710c3f..6b61ae9df 100644 --- a/go.mod +++ b/go.mod @@ -33,7 +33,6 @@ require ( github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d github.com/ugorji/go/codec v1.2.11 github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0 - golang.org/x/crypto v0.14.0 // indirect golang.org/x/sys v0.13.0 golang.org/x/term v0.13.0 golang.org/x/time v0.3.0 @@ -90,6 +89,7 @@ require ( github.com/rogpeppe/go-internal v1.10.0 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect golang.org/x/arch v0.5.0 // indirect + golang.org/x/crypto v0.14.0 // indirect golang.org/x/net v0.17.0 // indirect golang.org/x/text v0.13.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/system/fixture.sh b/system/fixture.sh index e5474bb15..81b26aee8 100644 --- a/system/fixture.sh +++ b/system/fixture.sh @@ -22,11 +22,11 @@ aptly mirror update wheezy-non-free-src aptly mirror update wheezy-updates-src aptly mirror update wheezy-backports-src -aptly mirror create gnuplot-maverick http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick +aptly mirror create gnuplot-maverick http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick aptly mirror update gnuplot-maverick -aptly mirror create -with-sources gnuplot-maverick-src http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick +aptly mirror create -with-sources gnuplot-maverick-src http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick aptly mirror update gnuplot-maverick-src aptly mirror create sensu http://repos.sensuapp.org/apt sensu -aptly mirror update sensu \ No newline at end of file +aptly mirror update sensu diff --git a/system/lib.py b/system/lib.py index c651ea635..995b52403 100644 --- a/system/lib.py +++ b/system/lib.py @@ -251,7 +251,7 @@ def sort_lines(self, output): return "\n".join(sorted(self.ensure_utf8(output).split("\n"))) def run(self): - output = self.run_cmd(self.runCmd, self.expectedCode) + output = self.run_cmd(self.runCmd, self.expectedCode).decode("utf-8") if self.sortOutput: output = self.sort_lines(output) self.output = self.output_processor(output) @@ -342,7 +342,7 @@ def check_output(self): try: self.verify_match(self.get_gold(), self.output, match_prepare=self.outputMatchPrepare) - except: # noqa: E722 + except Exception: # noqa: E722 if self.captureResults: if self.outputMatchPrepare is not None: self.output = self.outputMatchPrepare(self.output) @@ -352,7 +352,7 @@ def check_output(self): raise def check_cmd_output(self, command, gold_name, match_prepare=None, expected_code=0): - output = self.run_cmd(command, expected_code=expected_code) + output = self.run_cmd(command, expected_code=expected_code).decode("utf-8") try: self.verify_match(self.get_gold(gold_name), output, match_prepare) except: # noqa: E722 @@ -439,7 +439,7 @@ def check_subset(self, a, b): diff += "wrong value '%s' for key '%s', expected '%s'\n" % ( v, k, b[k]) if diff: - raise Exception("content doesn't match:\n" + diff) + raise Exception("content subset doesn't match:\n" + diff) def ensure_utf8(self, a): if isinstance(a, bytes): diff --git a/system/run-system-tests b/system/run-system-tests new file mode 100755 index 000000000..3b5643837 --- /dev/null +++ b/system/run-system-tests @@ -0,0 +1,13 @@ +#!/bin/sh + +rm -rf /tmp/aptly* +rm -rf /home/test/.* +rm -rf /home/test/aptly-fixture-* + +usermod -u `stat -c %u /app` aptly +chown -R `stat -c %u /app` /var/lib/aptly + +mkdir -p /home/runner +chown -R `stat -c %u /app` /home/runner + +exec su - aptly -c "cd /app; go mod tidy; HOME=/home/runner make system-test" diff --git a/system/run.py b/system/run.py index 1ba5c1ea8..229950dcd 100755 --- a/system/run.py +++ b/system/run.py @@ -143,13 +143,13 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non if sys.version_info < PYTHON_MINIMUM_VERSION: raise RuntimeError(f'Tests require Python {PYTHON_MINIMUM_VERSION} or higher.') - output = subprocess.check_output(['gpg1', '--version'], text=True) - if not output.startswith('gpg (GnuPG) 1'): - raise RuntimeError('Tests require gpg v1') + output = subprocess.check_output(['gpg', '--version'], text=True) + if not output.startswith('gpg (GnuPG) 2'): + raise RuntimeError('Tests require gpg v2') - output = subprocess.check_output(['gpgv1', '--version'], text=True) - if not output.startswith('gpgv (GnuPG) 1'): - raise RuntimeError('Tests require gpgv v1') + output = subprocess.check_output(['gpgv', '--version'], text=True) + if not output.startswith('gpgv (GnuPG) 2'): + raise RuntimeError('Tests require gpgv v2') os.chdir(os.path.realpath(os.path.dirname(sys.argv[0]))) random.seed() diff --git a/system/t04_mirror/CreateMirror10Test_gold b/system/t04_mirror/CreateMirror10Test_gold index 3fecedc90..f05558451 100644 --- a/system/t04_mirror/CreateMirror10Test_gold +++ b/system/t04_mirror/CreateMirror10Test_gold @@ -1,17 +1,21 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease -gpgv: RSA key ID 22F3D138 +gpgv: Signature made Thu Mar 30 14:21:34 2023 UTC +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 -gpgv: RSA key ID 386FA1D9 +gpgv: Signature made Thu Mar 30 14:22:13 2023 UTC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/Release -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/Release.gpg... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/Release.gpg +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/Release.gpg -gpgv: RSA key ID 22F3D138 +gpgv: Signature made Thu Mar 30 14:20:54 2023 UTC +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 -gpgv: RSA key ID 386FA1D9 +gpgv: Signature made Thu Mar 30 14:21:30 2023 UTC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 ERROR: unable to fetch mirror: verification of detached signature failed: exit status 2 diff --git a/system/t04_mirror/CreateMirror11Test_gold b/system/t04_mirror/CreateMirror11Test_gold index 207c16340..7323bc128 100644 --- a/system/t04_mirror/CreateMirror11Test_gold +++ b/system/t04_mirror/CreateMirror11Test_gold @@ -1,19 +1,25 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg -gpgv: RSA key ID B7D453EC +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Sat Aug 14 07:43:24 2021 UTC +gpgv: using RSA key 16E90B3FDF65EDE3AA7F323C04EE7237B7D453EC gpgv: Good signature from "Debian Archive Automatic Signing Key (9/stretch) " -gpgv: RSA key ID 22F3D138 +gpgv: Signature made Sat Aug 14 07:43:25 2021 UTC +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) " -gpgv: RSA key ID 386FA1D9 +gpgv: Signature made Sat Aug 14 08:46:19 2021 UTC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 gpgv: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) " -gpgv: RSA key ID 1A7B6500 +gpgv: Signature made Sat Aug 14 08:26:43 2021 UTC +gpgv: using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 +gpgv: issuer "debian-release@lists.debian.org" gpgv: Good signature from "Debian Stable Release Key (9/stretch) " -Mirror [mirror11]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror11]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror11' to download repository contents. diff --git a/system/t04_mirror/CreateMirror11Test_mirror_show b/system/t04_mirror/CreateMirror11Test_mirror_show index 8e77b7256..b2c40eb69 100644 --- a/system/t04_mirror/CreateMirror11Test_mirror_show +++ b/system/t04_mirror/CreateMirror11Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror11 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib, non-free Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x diff --git a/system/t04_mirror/CreateMirror12Test_gold b/system/t04_mirror/CreateMirror12Test_gold index 1e3fcac63..bc9f39005 100644 --- a/system/t04_mirror/CreateMirror12Test_gold +++ b/system/t04_mirror/CreateMirror12Test_gold @@ -1,18 +1,23 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg -gpgv: RSA key ID B7D453EC +gpgv: Signature made Sat Aug 14 07:43:24 2021 UTC +gpgv: using RSA key 16E90B3FDF65EDE3AA7F323C04EE7237B7D453EC -gpgv: RSA key ID 22F3D138 +gpgv: Signature made Sat Aug 14 07:43:25 2021 UTC +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 -gpgv: RSA key ID 386FA1D9 +gpgv: Signature made Sat Aug 14 08:46:19 2021 UTC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 -gpgv: RSA key ID 1A7B6500 +gpgv: Signature made Sat Aug 14 08:26:43 2021 UTC +gpgv: using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 +gpgv: issuer "debian-release@lists.debian.org" ERROR: unable to fetch mirror: verification of detached signature failed: exit status 2 diff --git a/system/t04_mirror/CreateMirror13Test_gold b/system/t04_mirror/CreateMirror13Test_gold index d79fe2d3c..4546c7d07 100644 --- a/system/t04_mirror/CreateMirror13Test_gold +++ b/system/t04_mirror/CreateMirror13Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror13]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror13]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror13' to download repository contents. diff --git a/system/t04_mirror/CreateMirror13Test_mirror_show b/system/t04_mirror/CreateMirror13Test_mirror_show index db3c54925..61e380fda 100644 --- a/system/t04_mirror/CreateMirror13Test_mirror_show +++ b/system/t04_mirror/CreateMirror13Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror13 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib, non-free Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x diff --git a/system/t04_mirror/CreateMirror14Test_gold b/system/t04_mirror/CreateMirror14Test_gold index 0429473ed..ff238ddbd 100644 --- a/system/t04_mirror/CreateMirror14Test_gold +++ b/system/t04_mirror/CreateMirror14Test_gold @@ -1,7 +1,9 @@ -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease -gpgv: RSA key ID 73EACF41 +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Thu Nov 2 07:43:52 2023 UTC +gpgv: using RSA key 7BA040A510E4E66ED3743EC1B8F25A8A73EACF41 gpgv: Good signature from "Johannes Ranke " -Mirror [mirror14]: https://cloud.r-project.org/bin/linux/debian/ ./bullseye-cran40/ successfully added. +Mirror [mirror14]: http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/ ./bullseye-cran40/ successfully added. You can run 'aptly mirror update mirror14' to download repository contents. diff --git a/system/t04_mirror/CreateMirror14Test_mirror_show b/system/t04_mirror/CreateMirror14Test_mirror_show index 3dfed1fe6..754770d0f 100644 --- a/system/t04_mirror/CreateMirror14Test_mirror_show +++ b/system/t04_mirror/CreateMirror14Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror14 -Archive Root URL: https://cloud.r-project.org/bin/linux/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/ Distribution: ./bullseye-cran40/ Components: Architectures: diff --git a/system/t04_mirror/CreateMirror16Test_gold b/system/t04_mirror/CreateMirror16Test_gold index 5b67e0571..013b0ef61 100644 --- a/system/t04_mirror/CreateMirror16Test_gold +++ b/system/t04_mirror/CreateMirror16Test_gold @@ -1,3 +1,3 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -ERROR: unable to fetch mirror: architecture source not available in repo [mirror16]: http://archive.debian.org/debian-archive/debian/ stretch, use -force-architectures to override +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +ERROR: unable to fetch mirror: architecture source not available in repo [mirror16]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch, use -force-architectures to override diff --git a/system/t04_mirror/CreateMirror17Test_gold b/system/t04_mirror/CreateMirror17Test_gold index 2878f674c..7426edb2b 100644 --- a/system/t04_mirror/CreateMirror17Test_gold +++ b/system/t04_mirror/CreateMirror17Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror17]: http://archive.debian.org/debian-archive/debian/ stretch [src] successfully added. +Mirror [mirror17]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch [src] successfully added. You can run 'aptly mirror update mirror17' to download repository contents. diff --git a/system/t04_mirror/CreateMirror17Test_mirror_show b/system/t04_mirror/CreateMirror17Test_mirror_show index 7baf807a0..5f233f298 100644 --- a/system/t04_mirror/CreateMirror17Test_mirror_show +++ b/system/t04_mirror/CreateMirror17Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror17 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib, non-free Architectures: i386 diff --git a/system/t04_mirror/CreateMirror18Test_gold b/system/t04_mirror/CreateMirror18Test_gold index 7367a3fc8..895b1e27e 100644 --- a/system/t04_mirror/CreateMirror18Test_gold +++ b/system/t04_mirror/CreateMirror18Test_gold @@ -6,7 +6,9 @@ Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/ Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg... Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg -gpgv: RSA key ID 3B1F56C0 +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Mon Oct 22 13:19:50 2012 UTC +gpgv: using RSA key A5279A973B1F56C0 gpgv: Good signature from "Launchpad sim" Mirror [mirror18]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick successfully added. diff --git a/system/t04_mirror/CreateMirror19Test_gold b/system/t04_mirror/CreateMirror19Test_gold index 474361296..8225c059c 100644 --- a/system/t04_mirror/CreateMirror19Test_gold +++ b/system/t04_mirror/CreateMirror19Test_gold @@ -1,9 +1,12 @@ -Downloading http://archive.debian.org/debian-security/dists/stretch/updates/InRelease... -Success downloading http://archive.debian.org/debian-security/dists/stretch/updates/InRelease -gpgv: RSA key ID 331F7F50 +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Sat Feb 18 04:22:45 2023 UTC +gpgv: using RSA key 379483D8B60160B155B372DDAA8E81B4331F7F50 gpgv: Good signature from "Debian Security Archive Automatic Signing Key (9/stretch) " -gpgv: RSA key ID E562B32A +gpgv: Signature made Sat Feb 18 04:22:45 2023 UTC +gpgv: using RSA key 5237CEEEF212F3D51C74ABE0112695A0E562B32A gpgv: Good signature from "Debian Security Archive Automatic Signing Key (10/buster) " -Mirror [mirror19]: http://archive.debian.org/debian-security/ stretch/updates [src] successfully added. +Mirror [mirror19]: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates [src] successfully added. You can run 'aptly mirror update mirror19' to download repository contents. diff --git a/system/t04_mirror/CreateMirror19Test_mirror_show b/system/t04_mirror/CreateMirror19Test_mirror_show index 9c7753816..5bcaf744a 100644 --- a/system/t04_mirror/CreateMirror19Test_mirror_show +++ b/system/t04_mirror/CreateMirror19Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror19 -Archive Root URL: http://archive.debian.org/debian-security/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ Distribution: stretch/updates Components: main Architectures: i386 diff --git a/system/t04_mirror/CreateMirror1Test_gold b/system/t04_mirror/CreateMirror1Test_gold index d6a50f230..e27d3287a 100644 --- a/system/t04_mirror/CreateMirror1Test_gold +++ b/system/t04_mirror/CreateMirror1Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror1]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror1]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror1' to download repository contents. diff --git a/system/t04_mirror/CreateMirror1Test_mirror_show b/system/t04_mirror/CreateMirror1Test_mirror_show index c755797a8..3acf9b5b7 100644 --- a/system/t04_mirror/CreateMirror1Test_mirror_show +++ b/system/t04_mirror/CreateMirror1Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror1 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib, non-free Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x diff --git a/system/t04_mirror/CreateMirror20Test_gold b/system/t04_mirror/CreateMirror20Test_gold index b4c40cbb0..fbbd13c27 100644 --- a/system/t04_mirror/CreateMirror20Test_gold +++ b/system/t04_mirror/CreateMirror20Test_gold @@ -1,9 +1,9 @@ -Downloading http://archive.debian.org/debian-security/dists/stretch/updates/InRelease... -Error downloading http://archive.debian.org/debian-security/dists/stretch/updates/InRelease: http://archive.debian.org/debian-security/dists/stretch/updates/InRelease: Get "http://archive.debian.org/debian-security/dists/stretch/updates/InRelease": http: error connecting to proxy http://127.0.0.1:3137: dial tcp 127.0.0.1:3137: connection refused retrying... -Retrying 0 http://archive.debian.org/debian-security/dists/stretch/updates/InRelease... -Giving up on http://archive.debian.org/debian-security/dists/stretch/updates/InRelease... -Downloading http://archive.debian.org/debian-security/dists/stretch/updates/Release... -Error downloading http://archive.debian.org/debian-security/dists/stretch/updates/Release: http://archive.debian.org/debian-security/dists/stretch/updates/Release: Get "http://archive.debian.org/debian-security/dists/stretch/updates/Release": http: error connecting to proxy http://127.0.0.1:3137: dial tcp 127.0.0.1:3137: connection refused retrying... -Retrying 0 http://archive.debian.org/debian-security/dists/stretch/updates/Release... -Giving up on http://archive.debian.org/debian-security/dists/stretch/updates/Release... -ERROR: unable to fetch mirror: http://archive.debian.org/debian-security/dists/stretch/updates/Release: Get http://archive.debian.org/debian-security/dists/stretch/updates/Release: http: error connecting to proxy http://127.0.0.1:3137: dial tcp 127.0.0.1:3137: connection refused +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease: Get "http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease": http: error connecting to proxy http://127.0.0.1:3137: dial tcp 127.0.0.1:3137: connection refused retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release: Get "http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release": http: error connecting to proxy http://127.0.0.1:3137: dial tcp 127.0.0.1:3137: connection refused retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release... +ERROR: unable to fetch mirror: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release: Get "http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release": http: error connecting to proxy http://127.0.0.1:3137: dial tcp 127.0.0.1:3137: connection refused diff --git a/system/t04_mirror/CreateMirror21Test_gold b/system/t04_mirror/CreateMirror21Test_gold index 32e234567..8353de4dc 100644 --- a/system/t04_mirror/CreateMirror21Test_gold +++ b/system/t04_mirror/CreateMirror21Test_gold @@ -1,16 +1,15 @@ -Downloading http://pkg.jenkins-ci.org/debian-stable/binary/InRelease... -Following redirect to https://pkg.jenkins.io/debian-stable/binary/InRelease... -Error downloading http://pkg.jenkins-ci.org/debian-stable/binary/InRelease: HTTP code 404 while fetching http://pkg.jenkins-ci.org/debian-stable/binary/InRelease retrying... -Retrying 0 http://pkg.jenkins-ci.org/debian-stable/binary/InRelease... -Giving up on http://pkg.jenkins-ci.org/debian-stable/binary/InRelease... -Downloading http://pkg.jenkins-ci.org/debian-stable/binary/Release... -Following redirect to https://pkg.jenkins.io/debian-stable/binary/Release... -Success downloading http://pkg.jenkins-ci.org/debian-stable/binary/Release -Downloading http://pkg.jenkins-ci.org/debian-stable/binary/Release.gpg... -Following redirect to https://pkg.jenkins.io/debian-stable/binary/Release.gpg... -Success downloading http://pkg.jenkins-ci.org/debian-stable/binary/Release.gpg -gpgv: RSA key ID EF5975CA +Downloading http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/InRelease... +Error downloading http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/InRelease... +Giving up on http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/InRelease... +Downloading http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/Release... +Success downloading http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/Release +Downloading http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/binary/Release.gpg +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Wed Dec 13 17:19:55 2023 UTC +gpgv: using RSA key 63667EE74BBA1F0A08A698725BA31D57EF5975CA gpgv: Good signature from "Jenkins Project " -Mirror [mirror21]: http://pkg.jenkins-ci.org/debian-stable/ ./binary/ successfully added. +Mirror [mirror21]: http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/ ./binary/ successfully added. You can run 'aptly mirror update mirror21' to download repository contents. diff --git a/system/t04_mirror/CreateMirror21Test_mirror_show b/system/t04_mirror/CreateMirror21Test_mirror_show index ba5365acb..a03890128 100644 --- a/system/t04_mirror/CreateMirror21Test_mirror_show +++ b/system/t04_mirror/CreateMirror21Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror21 -Archive Root URL: http://pkg.jenkins-ci.org/debian-stable/ +Archive Root URL: http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable/ Distribution: ./binary/ Components: Architectures: @@ -9,6 +9,5 @@ Last update: never Information from release file: Architectures: all -Date: Wed, 28 Jan 2015 02:32:16 UTC Origin: jenkins.io Suite: binary diff --git a/system/t04_mirror/CreateMirror22Test_gold b/system/t04_mirror/CreateMirror22Test_gold index 8779bd2b0..e9954fbad 100644 --- a/system/t04_mirror/CreateMirror22Test_gold +++ b/system/t04_mirror/CreateMirror22Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-security/dists/stretch/updates/Release... -Success downloading http://archive.debian.org/debian-security/dists/stretch/updates/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release -Mirror [mirror22]: http://archive.debian.org/debian-security/ stretch/updates successfully added. +Mirror [mirror22]: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates successfully added. You can run 'aptly mirror update mirror22' to download repository contents. diff --git a/system/t04_mirror/CreateMirror22Test_mirror_show b/system/t04_mirror/CreateMirror22Test_mirror_show index 8d143a32e..2e8ddb9d1 100644 --- a/system/t04_mirror/CreateMirror22Test_mirror_show +++ b/system/t04_mirror/CreateMirror22Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror22 -Archive Root URL: http://archive.debian.org/debian-security/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ Distribution: stretch/updates Components: main Architectures: amd64, arm64, armel, armhf, i386 diff --git a/system/t04_mirror/CreateMirror24Test_gold b/system/t04_mirror/CreateMirror24Test_gold index 27f35f701..79e599884 100644 --- a/system/t04_mirror/CreateMirror24Test_gold +++ b/system/t04_mirror/CreateMirror24Test_gold @@ -1,9 +1,12 @@ -Downloading http://archive.debian.org/debian-security/dists/stretch/updates/InRelease... -Success downloading http://archive.debian.org/debian-security/dists/stretch/updates/InRelease -gpgv: RSA key ID 331F7F50 +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/InRelease +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Sat Feb 18 04:22:45 2023 UTC +gpgv: using RSA key 379483D8B60160B155B372DDAA8E81B4331F7F50 gpgv: Good signature from "Debian Security Archive Automatic Signing Key (9/stretch) " -gpgv: RSA key ID E562B32A +gpgv: Signature made Sat Feb 18 04:22:45 2023 UTC +gpgv: using RSA key 5237CEEEF212F3D51C74ABE0112695A0E562B32A gpgv: Good signature from "Debian Security Archive Automatic Signing Key (10/buster) " -Mirror [mirror24]: http://archive.debian.org/debian-security/ stretch/updates successfully added. +Mirror [mirror24]: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates successfully added. You can run 'aptly mirror update mirror24' to download repository contents. diff --git a/system/t04_mirror/CreateMirror25Test_gold b/system/t04_mirror/CreateMirror25Test_gold index c068fc670..a98c27c71 100644 --- a/system/t04_mirror/CreateMirror25Test_gold +++ b/system/t04_mirror/CreateMirror25Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror25]: http://archive.debian.org/debian-archive/debian/ stretch [udeb] successfully added. +Mirror [mirror25]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch [udeb] successfully added. You can run 'aptly mirror update mirror25' to download repository contents. diff --git a/system/t04_mirror/CreateMirror25Test_mirror_show b/system/t04_mirror/CreateMirror25Test_mirror_show index 96b02022b..0b2c675ed 100644 --- a/system/t04_mirror/CreateMirror25Test_mirror_show +++ b/system/t04_mirror/CreateMirror25Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror25 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib, non-free Architectures: i386 diff --git a/system/t04_mirror/CreateMirror29Test_gold b/system/t04_mirror/CreateMirror29Test_gold index f5cedc054..ad244b4fd 100644 --- a/system/t04_mirror/CreateMirror29Test_gold +++ b/system/t04_mirror/CreateMirror29Test_gold @@ -1,9 +1,9 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease openpgp: RSA key ID 648ACFD622F3D138 openpgp: Good signature from "Debian Archive Automatic Signing Key (10/buster) " openpgp: RSA key ID 0E98404D386FA1D9 openpgp: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) " -Mirror [mirror9]: http://archive.debian.org/debian-archive/debian/ stretch-backports successfully added. +Mirror [mirror9]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch-backports successfully added. You can run 'aptly mirror update mirror9' to download repository contents. diff --git a/system/t04_mirror/CreateMirror2Test_gold b/system/t04_mirror/CreateMirror2Test_gold index ead9e7a99..776028395 100644 --- a/system/t04_mirror/CreateMirror2Test_gold +++ b/system/t04_mirror/CreateMirror2Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror2]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror2]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror2' to download repository contents. diff --git a/system/t04_mirror/CreateMirror2Test_mirror_show b/system/t04_mirror/CreateMirror2Test_mirror_show index 910de1236..e17e96197 100644 --- a/system/t04_mirror/CreateMirror2Test_mirror_show +++ b/system/t04_mirror/CreateMirror2Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror2 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x diff --git a/system/t04_mirror/CreateMirror30Test_gold b/system/t04_mirror/CreateMirror30Test_gold index e964aedd0..d2123b673 100644 --- a/system/t04_mirror/CreateMirror30Test_gold +++ b/system/t04_mirror/CreateMirror30Test_gold @@ -1,14 +1,14 @@ opengpg: failure opening keyring '${HOME}/.gnupg/aptlytest.gpg': open ${HOME}/.gnupg/aptlytest.gpg: no such file or directory Looks like your keyring with trusted keys is empty. You might consider importing some keys. -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg openpgp: RSA key ID 04EE7237B7D453EC openpgp: Can't check signature: public key not found openpgp: RSA key ID 648ACFD622F3D138 diff --git a/system/t04_mirror/CreateMirror31Test_gold b/system/t04_mirror/CreateMirror31Test_gold index a597f15bf..2a2c236b0 100644 --- a/system/t04_mirror/CreateMirror31Test_gold +++ b/system/t04_mirror/CreateMirror31Test_gold @@ -1,11 +1,11 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg openpgp: RSA key ID 04EE7237B7D453EC openpgp: Good signature from "Debian Archive Automatic Signing Key (9/stretch) " openpgp: RSA key ID 648ACFD622F3D138 @@ -15,5 +15,5 @@ openpgp: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) openpgp: RSA key ID EF0F382A1A7B6500 openpgp: Good signature from "Debian Stable Release Key (9/stretch) " -Mirror [mirror11]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror11]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror11' to download repository contents. diff --git a/system/t04_mirror/CreateMirror32Test_gold b/system/t04_mirror/CreateMirror32Test_gold index bf7a5ddb2..4b333d186 100644 --- a/system/t04_mirror/CreateMirror32Test_gold +++ b/system/t04_mirror/CreateMirror32Test_gold @@ -1,16 +1,17 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' gpgv: Good signature from "Debian Archive Automatic Signing Key (9/stretch) " gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) " gpgv: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) " gpgv: issuer "debian-release@lists.debian.org" gpgv: Good signature from "Debian Stable Release Key (9/stretch) " -Mirror [mirror32]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror32]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror32' to download repository contents. diff --git a/system/t04_mirror/CreateMirror32Test_mirror_show b/system/t04_mirror/CreateMirror32Test_mirror_show index 5f70a55ce..6cd09c53a 100644 --- a/system/t04_mirror/CreateMirror32Test_mirror_show +++ b/system/t04_mirror/CreateMirror32Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror32 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib, non-free Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x diff --git a/system/t04_mirror/CreateMirror3Test_gold b/system/t04_mirror/CreateMirror3Test_gold index a31f8bdc8..714c1d197 100644 --- a/system/t04_mirror/CreateMirror3Test_gold +++ b/system/t04_mirror/CreateMirror3Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror3]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror3]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror3' to download repository contents. diff --git a/system/t04_mirror/CreateMirror3Test_mirror_show b/system/t04_mirror/CreateMirror3Test_mirror_show index baff0369c..f016c6efb 100644 --- a/system/t04_mirror/CreateMirror3Test_mirror_show +++ b/system/t04_mirror/CreateMirror3Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror3 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib Architectures: i386, amd64 diff --git a/system/t04_mirror/CreateMirror4Test_gold b/system/t04_mirror/CreateMirror4Test_gold index 6e80ec6e2..98f475c9a 100644 --- a/system/t04_mirror/CreateMirror4Test_gold +++ b/system/t04_mirror/CreateMirror4Test_gold @@ -1,3 +1,3 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -ERROR: unable to fetch mirror: component life not available in repo [mirror4]: http://archive.debian.org/debian-archive/debian/ stretch, use -force-components to override +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +ERROR: unable to fetch mirror: component life not available in repo [mirror4]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch, use -force-components to override diff --git a/system/t04_mirror/CreateMirror5Test_gold b/system/t04_mirror/CreateMirror5Test_gold index abfa61995..6cd4a0cc3 100644 --- a/system/t04_mirror/CreateMirror5Test_gold +++ b/system/t04_mirror/CreateMirror5Test_gold @@ -1,3 +1,3 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -ERROR: unable to fetch mirror: architecture nano68 not available in repo [mirror5]: http://archive.debian.org/debian-archive/debian/ stretch, use -force-architectures to override +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +ERROR: unable to fetch mirror: architecture nano68 not available in repo [mirror5]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch, use -force-architectures to override diff --git a/system/t04_mirror/CreateMirror6Test_gold b/system/t04_mirror/CreateMirror6Test_gold index 2e5cb7058..ff0917025 100644 --- a/system/t04_mirror/CreateMirror6Test_gold +++ b/system/t04_mirror/CreateMirror6Test_gold @@ -1,9 +1,9 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/suslik/InRelease... -Error downloading http://archive.debian.org/debian-archive/debian/dists/suslik/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/suslik/InRelease retrying... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/suslik/InRelease... -Giving up on http://archive.debian.org/debian-archive/debian/dists/suslik/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/suslik/Release... -Error downloading http://archive.debian.org/debian-archive/debian/dists/suslik/Release: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/suslik/Release retrying... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/suslik/Release... -Giving up on http://archive.debian.org/debian-archive/debian/dists/suslik/Release... -ERROR: unable to fetch mirror: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/suslik/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/InRelease... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/Release... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/Release: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/Release retrying... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/Release... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/Release... +ERROR: unable to fetch mirror: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/suslik/Release diff --git a/system/t04_mirror/CreateMirror7Test_gold b/system/t04_mirror/CreateMirror7Test_gold index 8741c1cb2..f3452d75e 100644 --- a/system/t04_mirror/CreateMirror7Test_gold +++ b/system/t04_mirror/CreateMirror7Test_gold @@ -1,5 +1,5 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror7]: http://archive.debian.org/debian-archive/debian/ stretch successfully added. +Mirror [mirror7]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully added. You can run 'aptly mirror update mirror7' to download repository contents. diff --git a/system/t04_mirror/CreateMirror7Test_mirror_show b/system/t04_mirror/CreateMirror7Test_mirror_show index 7fe300f50..a62cfb67a 100644 --- a/system/t04_mirror/CreateMirror7Test_mirror_show +++ b/system/t04_mirror/CreateMirror7Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror7 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib Architectures: i386, amd64 diff --git a/system/t04_mirror/CreateMirror8Test_gold b/system/t04_mirror/CreateMirror8Test_gold index 10c9f2230..4883620dd 100644 --- a/system/t04_mirror/CreateMirror8Test_gold +++ b/system/t04_mirror/CreateMirror8Test_gold @@ -1,3 +1,3 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release ERROR: unable to add mirror: mirror with name mirror8 already exists diff --git a/system/t04_mirror/CreateMirror9Test_gold b/system/t04_mirror/CreateMirror9Test_gold index 000725687..fa1fb54b0 100644 --- a/system/t04_mirror/CreateMirror9Test_gold +++ b/system/t04_mirror/CreateMirror9Test_gold @@ -1,9 +1,12 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease -gpgv: RSA key ID 22F3D138 +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch-backports/InRelease +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Thu Mar 30 14:21:34 2023 UTC +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) " -gpgv: RSA key ID 386FA1D9 +gpgv: Signature made Thu Mar 30 14:22:13 2023 UTC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 gpgv: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) " -Mirror [mirror9]: http://archive.debian.org/debian-archive/debian/ stretch-backports successfully added. +Mirror [mirror9]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch-backports successfully added. You can run 'aptly mirror update mirror9' to download repository contents. diff --git a/system/t04_mirror/CreateMirror9Test_mirror_show b/system/t04_mirror/CreateMirror9Test_mirror_show index d3cb6e2c1..302a565c8 100644 --- a/system/t04_mirror/CreateMirror9Test_mirror_show +++ b/system/t04_mirror/CreateMirror9Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror9 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch-backports Components: main, contrib, non-free Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x diff --git a/system/t04_mirror/EditMirror10Test_gold b/system/t04_mirror/EditMirror10Test_gold index 563cdde82..5b1f44edd 100644 --- a/system/t04_mirror/EditMirror10Test_gold +++ b/system/t04_mirror/EditMirror10Test_gold @@ -1,3 +1,3 @@ -Downloading ftp://ftp.ch.debian.org/debian/dists/stretch/Release... -Success downloading ftp://ftp.ch.debian.org/debian/dists/stretch/Release -Mirror [mirror10]: ftp://ftp.ch.debian.org/debian/ stretch successfully updated. +Downloading http://repo.aptly.info/system-tests/ftp.ch.debian.org/debian/dists/bookworm/Release... +Success downloading http://repo.aptly.info/system-tests/ftp.ch.debian.org/debian/dists/bookworm/Release +Mirror [mirror10]: http://repo.aptly.info/system-tests/ftp.ch.debian.org/debian/ bookworm successfully updated. diff --git a/system/t04_mirror/EditMirror5Test_gold b/system/t04_mirror/EditMirror5Test_gold index 898eed5a3..23379081a 100644 --- a/system/t04_mirror/EditMirror5Test_gold +++ b/system/t04_mirror/EditMirror5Test_gold @@ -1 +1 @@ -Mirror [mirror5]: http://archive.debian.org/debian-security/ stretch/updates successfully updated. +Mirror [mirror5]: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates successfully updated. diff --git a/system/t04_mirror/EditMirror5Test_mirror_show b/system/t04_mirror/EditMirror5Test_mirror_show index 3efc0d220..c6dfb1fbf 100644 --- a/system/t04_mirror/EditMirror5Test_mirror_show +++ b/system/t04_mirror/EditMirror5Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror5 -Archive Root URL: http://archive.debian.org/debian-security/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ Distribution: stretch/updates Components: main Architectures: amd64, arm64, armel, armhf, i386 diff --git a/system/t04_mirror/EditMirror6Test_gold b/system/t04_mirror/EditMirror6Test_gold index 0b684ae2b..31243e5f0 100644 --- a/system/t04_mirror/EditMirror6Test_gold +++ b/system/t04_mirror/EditMirror6Test_gold @@ -1,3 +1,3 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Mirror [mirror6]: http://archive.debian.org/debian-archive/debian/ stretch successfully updated. +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Mirror [mirror6]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch successfully updated. diff --git a/system/t04_mirror/EditMirror6Test_mirror_show b/system/t04_mirror/EditMirror6Test_mirror_show index c39b95404..ac42dcfc0 100644 --- a/system/t04_mirror/EditMirror6Test_mirror_show +++ b/system/t04_mirror/EditMirror6Test_mirror_show @@ -1,5 +1,5 @@ Name: mirror6 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main Architectures: amd64, i386 diff --git a/system/t04_mirror/EditMirror7Test_gold b/system/t04_mirror/EditMirror7Test_gold index b7a4ed361..a5890061e 100644 --- a/system/t04_mirror/EditMirror7Test_gold +++ b/system/t04_mirror/EditMirror7Test_gold @@ -1,3 +1,3 @@ -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -ERROR: unable to edit: architecture x56 not available in repo [stretch]: http://archive.debian.org/debian-archive/debian/ stretch, use -force-architectures to override +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +ERROR: unable to edit: architecture x56 not available in repo [stretch]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch, use -force-architectures to override diff --git a/system/t04_mirror/ListMirror1Test_gold b/system/t04_mirror/ListMirror1Test_gold index 913a194ce..dff50d88a 100644 --- a/system/t04_mirror/ListMirror1Test_gold +++ b/system/t04_mirror/ListMirror1Test_gold @@ -1,7 +1,7 @@ List of mirrors: - * [mirror1]: http://archive.debian.org/debian-archive/debian/ stretch - * [mirror2]: http://archive.debian.org/debian-archive/debian/ stretch [src] - * [mirror3]: http://archive.debian.org/debian-archive/debian/ stretch - * [mirror4]: http://download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/ ./ + * [mirror1]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch + * [mirror2]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch [src] + * [mirror3]: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch + * [mirror4]: http://repo.aptly.info/system-tests/download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/ ./ To get more information about mirror, run `aptly mirror show `. diff --git a/system/t04_mirror/ListMirror6Test_gold b/system/t04_mirror/ListMirror6Test_gold index 734e8308d..bed19fa24 100644 --- a/system/t04_mirror/ListMirror6Test_gold +++ b/system/t04_mirror/ListMirror6Test_gold @@ -1,7 +1,7 @@ [ { "Name": "mirror1", - "ArchiveRoot": "http://archive.debian.org/debian-archive/debian/", + "ArchiveRoot": "http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/", "Distribution": "stretch", "Components": [ "main", @@ -46,7 +46,7 @@ }, { "Name": "mirror2", - "ArchiveRoot": "http://archive.debian.org/debian-archive/debian/", + "ArchiveRoot": "http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/", "Distribution": "stretch", "Components": [ "contrib" @@ -89,7 +89,7 @@ }, { "Name": "mirror3", - "ArchiveRoot": "http://archive.debian.org/debian-archive/debian/", + "ArchiveRoot": "http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/", "Distribution": "stretch", "Components": [ "non-free" @@ -123,7 +123,7 @@ }, { "Name": "mirror4", - "ArchiveRoot": "http://download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/", + "ArchiveRoot": "http://repo.aptly.info/system-tests/download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/", "Distribution": "./", "Components": null, "Architectures": null, diff --git a/system/t04_mirror/ShowMirror1Test_gold b/system/t04_mirror/ShowMirror1Test_gold index c755797a8..3acf9b5b7 100644 --- a/system/t04_mirror/ShowMirror1Test_gold +++ b/system/t04_mirror/ShowMirror1Test_gold @@ -1,5 +1,5 @@ Name: mirror1 -Archive Root URL: http://archive.debian.org/debian-archive/debian/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ Distribution: stretch Components: main, contrib, non-free Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x diff --git a/system/t04_mirror/ShowMirror4Test_gold b/system/t04_mirror/ShowMirror4Test_gold index c552a9215..48ff3286c 100644 --- a/system/t04_mirror/ShowMirror4Test_gold +++ b/system/t04_mirror/ShowMirror4Test_gold @@ -1,5 +1,5 @@ Name: mirror4 -Archive Root URL: http://archive.debian.org/debian-security/ +Archive Root URL: http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ Distribution: stretch/updates Components: main Architectures: amd64, arm64, armel, armhf, i386 diff --git a/system/t04_mirror/ShowMirror5Test_gold b/system/t04_mirror/ShowMirror5Test_gold index 6836dd4c4..d8ba1780c 100644 --- a/system/t04_mirror/ShowMirror5Test_gold +++ b/system/t04_mirror/ShowMirror5Test_gold @@ -1,7 +1,6 @@ { - "UUID": "82ca6517-ab0b-4be9-81bd-e884a07167f2", "Name": "mirror1", - "ArchiveRoot": "http://archive.debian.org/debian-archive/debian/", + "ArchiveRoot": "http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/", "Distribution": "stretch", "Components": [ "main", diff --git a/system/t04_mirror/ShowMirror8Test_gold b/system/t04_mirror/ShowMirror8Test_gold index a951895ee..9d3f70c5d 100644 --- a/system/t04_mirror/ShowMirror8Test_gold +++ b/system/t04_mirror/ShowMirror8Test_gold @@ -1,7 +1,6 @@ { - "UUID": "548dbdb6-75d6-42ac-80de-d6aff8012f83", "Name": "mirror4", - "ArchiveRoot": "http://archive.debian.org/debian-security/", + "ArchiveRoot": "http://repo.aptly.info/system-tests/archive.debian.org/debian-security/", "Distribution": "stretch/updates", "Components": [ "main" @@ -18,7 +17,7 @@ "Architectures": "amd64 arm64 armel armhf i386", "Codename": "stretch", "Components": "updates/main updates/contrib updates/non-free", - "Date": "Wed, 26 Jan 2022 10:02:07 UTC", + "Date": "anytime", "Description": " Debian 9 Security Updates\n", "Label": "Debian-Security", "Origin": "Debian", diff --git a/system/t04_mirror/UpdateMirror10Test_gold b/system/t04_mirror/UpdateMirror10Test_gold index 231a7ee91..575827ac0 100644 --- a/system/t04_mirror/UpdateMirror10Test_gold +++ b/system/t04_mirror/UpdateMirror10Test_gold @@ -2,41 +2,39 @@ Applying filter... Building download queue... -Download queue: 13 items (39.78 MiB) +Download queue: 11 items (39.66 MiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb... Mirror `flat-src` has been successfully updated. -Packages filtered: 145 -> 13. -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2 -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb +Packages filtered: 110 -> 11. +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2 +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb +gpgv: using RSA key 7BA040A510E4E66ED3743EC1B8F25A8A73EACF41 gpgv: Good signature from "Johannes Ranke " -gpgv: RSA key ID 73EACF41 +gpgv: Signature made Thu Nov 2 07:43:52 2023 UTC +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror11Test_gold b/system/t04_mirror/UpdateMirror11Test_gold index 735d70855..a2a7919e1 100644 --- a/system/t04_mirror/UpdateMirror11Test_gold +++ b/system/t04_mirror/UpdateMirror11Test_gold @@ -22,11 +22,17 @@ Success downloading https://snapshot.debian.org/archive/debian/20220201T025006Z/ Success downloading https://snapshot.debian.org/archive/debian/20220201T025006Z/pool/main/s/sed/sed_4.4-1_i386.deb Success downloading https://snapshot.debian.org/archive/debian/20220201T025006Z/pool/main/s/sensible-utils/sensible-utils_0.0.9+deb9u1_all.deb Success downloading https://snapshot.debian.org/archive/debian/20220201T025006Z/pool/main/s/sysvinit/sysvinit-utils_2.88dsf-59.9_i386.deb +gpgv: issuer "debian-release@lists.debian.org" +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 +gpgv: using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 +gpgv: using RSA key 16E90B3FDF65EDE3AA7F323C04EE7237B7D453EC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) " gpgv: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) " gpgv: Good signature from "Debian Archive Automatic Signing Key (9/stretch) " gpgv: Good signature from "Debian Stable Release Key (9/stretch) " -gpgv: RSA key ID B7D453EC -gpgv: RSA key ID 22F3D138 -gpgv: RSA key ID 1A7B6500 -gpgv: RSA key ID 386FA1D9 \ No newline at end of file +gpgv: Signature made Sat Aug 14 07:43:24 2021 UTC +gpgv: Signature made Sat Aug 14 07:43:25 2021 UTC +gpgv: Signature made Sat Aug 14 08:26:43 2021 UTC +gpgv: Signature made Sat Aug 14 08:46:19 2021 UTC +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror12Test_gold b/system/t04_mirror/UpdateMirror12Test_gold index 9d5e82a6c..86d4a1778 100644 --- a/system/t04_mirror/UpdateMirror12Test_gold +++ b/system/t04_mirror/UpdateMirror12Test_gold @@ -4,77 +4,83 @@ Applying filter... Building download queue... Download queue: 20 items (11.93 MiB) Downloading & parsing package files... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-amd64/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-amd64/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-i386/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-amd64/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-i386/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-amd64/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-i386/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_amd64.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_i386.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_amd64.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_i386.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-l10n_2.1.18-8~deb9u4_all.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg2_2.1.18-8~deb9u4_all.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_amd64.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_i386.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_amd64.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_i386.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_amd64.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_i386.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_amd64.udeb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_i386.udeb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-win32_2.1.18-8~deb9u4_all.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv2_2.1.18-8~deb9u4_all.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_amd64.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_i386.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_amd64.deb... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_i386.deb... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-amd64/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-amd64/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-i386/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-amd64/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-i386/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-amd64/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-i386/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_amd64.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_i386.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_amd64.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_i386.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-l10n_2.1.18-8~deb9u4_all.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg2_2.1.18-8~deb9u4_all.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_amd64.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_i386.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_amd64.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_i386.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_amd64.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_i386.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_amd64.udeb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_i386.udeb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-win32_2.1.18-8~deb9u4_all.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv2_2.1.18-8~deb9u4_all.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_amd64.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_i386.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_amd64.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_i386.deb... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... Mirror `stretch` has been successfully updated. Packages filtered: 78248 -> 20. -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-amd64/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-amd64/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-i386/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-amd64/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-i386/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-amd64/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-i386/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_amd64.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_i386.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_amd64.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_i386.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-l10n_2.1.18-8~deb9u4_all.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg2_2.1.18-8~deb9u4_all.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_amd64.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_i386.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_amd64.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_i386.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_amd64.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_i386.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_amd64.udeb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_i386.udeb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-win32_2.1.18-8~deb9u4_all.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv2_2.1.18-8~deb9u4_all.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_amd64.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_i386.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_amd64.deb -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_i386.deb +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-amd64/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-amd64/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/debian-installer/binary-i386/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-amd64/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-i386/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-amd64/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/debian-installer/binary-i386/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_amd64.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_i386.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_amd64.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_i386.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg-l10n_2.1.18-8~deb9u4_all.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg2_2.1.18-8~deb9u4_all.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_amd64.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_i386.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_amd64.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_i386.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_amd64.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_i386.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_amd64.udeb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_i386.udeb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv-win32_2.1.18-8~deb9u4_all.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv2_2.1.18-8~deb9u4_all.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_amd64.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_i386.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_amd64.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_i386.deb +gpgv: issuer "debian-release@lists.debian.org" +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 +gpgv: using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 +gpgv: using RSA key 16E90B3FDF65EDE3AA7F323C04EE7237B7D453EC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) " gpgv: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) " gpgv: Good signature from "Debian Archive Automatic Signing Key (9/stretch) " gpgv: Good signature from "Debian Stable Release Key (9/stretch) " -gpgv: RSA key ID B7D453EC -gpgv: RSA key ID 22F3D138 -gpgv: RSA key ID 1A7B6500 -gpgv: RSA key ID 386FA1D9 +gpgv: Signature made Sat Aug 14 07:43:24 2021 UTC +gpgv: Signature made Sat Aug 14 07:43:25 2021 UTC +gpgv: Signature made Sat Aug 14 08:26:43 2021 UTC +gpgv: Signature made Sat Aug 14 08:46:19 2021 UTC +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror13Test_gold b/system/t04_mirror/UpdateMirror13Test_gold index 4f6c6a66e..230f3ba8f 100644 --- a/system/t04_mirror/UpdateMirror13Test_gold +++ b/system/t04_mirror/UpdateMirror13Test_gold @@ -3,114 +3,114 @@ Building download queue... Download queue: 52 items (19.79 MiB) Downloading & parsing package files... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb... Mirror `varnish` has been successfully updated. -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2 -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2 -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb \ No newline at end of file +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror14Test_gold b/system/t04_mirror/UpdateMirror14Test_gold index 2c66db838..0064233a2 100644 --- a/system/t04_mirror/UpdateMirror14Test_gold +++ b/system/t04_mirror/UpdateMirror14Test_gold @@ -3,10 +3,10 @@ Building download queue... Download queue: 0 items (0 B) Downloading & parsing package files... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2... Mirror `varnish` has been successfully updated. -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2 -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2 \ No newline at end of file +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2 \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror17Test_gold b/system/t04_mirror/UpdateMirror17Test_gold index 93d6e76aa..454534e54 100644 --- a/system/t04_mirror/UpdateMirror17Test_gold +++ b/system/t04_mirror/UpdateMirror17Test_gold @@ -4,9 +4,9 @@ Applying filter... Building download queue... Download queue: 0 items (0 B) Downloading & parsing package files... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz... Mirror `stretch` has been successfully updated. Packages filtered: 50604 -> 1. -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror18Test_gold b/system/t04_mirror/UpdateMirror18Test_gold index c66c5910d..e9f55f378 100644 --- a/system/t04_mirror/UpdateMirror18Test_gold +++ b/system/t04_mirror/UpdateMirror18Test_gold @@ -4,11 +4,11 @@ Applying filter... Building download queue... Download queue: 1 items (3.35 KiB) Downloading & parsing package files... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb... Mirror `stretch` has been successfully updated. Packages filtered: 50604 -> 1. -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-i386/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror19Test_gold b/system/t04_mirror/UpdateMirror19Test_gold index b4c1abc74..d12d3ffd8 100644 --- a/system/t04_mirror/UpdateMirror19Test_gold +++ b/system/t04_mirror/UpdateMirror19Test_gold @@ -1,16 +1,18 @@ -Downloading https://packages.pagerduty.com/pdagent/deb/InRelease... -Error downloading https://packages.pagerduty.com/pdagent/deb/InRelease: HTTP code 404 while fetching https://packages.pagerduty.com/pdagent/deb/InRelease retrying... -Retrying 0 https://packages.pagerduty.com/pdagent/deb/InRelease... -Giving up on https://packages.pagerduty.com/pdagent/deb/InRelease... -Downloading https://packages.pagerduty.com/pdagent/deb/Release... -Success downloading https://packages.pagerduty.com/pdagent/deb/Release -Downloading https://packages.pagerduty.com/pdagent/deb/Release.gpg... -Success downloading https://packages.pagerduty.com/pdagent/deb/Release.gpg -gpgv: RSA key ID F8253540 +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease... +Error downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease... +Giving up on http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease... +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release... +Success downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release.gpg +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Tue Jun 30 15:56:03 2020 UTC +gpgv: using RSA key AE0396CFF8253540 gpgv: Good signature from "Package Maintainer (PagerDuty, Inc.) " Downloading & parsing package files... -Downloading https://packages.pagerduty.com/pdagent/deb/Packages.gz... -Success downloading https://packages.pagerduty.com/pdagent/deb/Packages.gz +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Packages.gz... +Success downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Packages.gz Building download queue... Download queue: 23 items (3.46 MiB) diff --git a/system/t04_mirror/UpdateMirror1Test_gold b/system/t04_mirror/UpdateMirror1Test_gold index 4f6c6a66e..230f3ba8f 100644 --- a/system/t04_mirror/UpdateMirror1Test_gold +++ b/system/t04_mirror/UpdateMirror1Test_gold @@ -3,114 +3,114 @@ Building download queue... Download queue: 52 items (19.79 MiB) Downloading & parsing package files... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb... -Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb... Mirror `varnish` has been successfully updated. -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2 -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2 -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb -Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb \ No newline at end of file +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb +Success downloading http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror20Test_gold b/system/t04_mirror/UpdateMirror20Test_gold index 6a4e35fee..b122080e8 100644 --- a/system/t04_mirror/UpdateMirror20Test_gold +++ b/system/t04_mirror/UpdateMirror20Test_gold @@ -2,17 +2,17 @@ Applying filter... Building download queue... -Download queue: 2 items (173.09 KiB) +Download queue: 2 items (173.67 KiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_i386.deb... Mirror `flat` has been successfully updated. -Packages filtered: 121 -> 2. -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_i386.deb +Packages filtered: 89 -> 2. +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_i386.deb openpgp: Good signature from "Johannes Ranke " -openpgp: RSA key ID B8F25A8A73EACF41 +openpgp: RSA key ID B8F25A8A73EACF41 \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror21Test_gold b/system/t04_mirror/UpdateMirror21Test_gold index f74816a91..6ef582fe7 100644 --- a/system/t04_mirror/UpdateMirror21Test_gold +++ b/system/t04_mirror/UpdateMirror21Test_gold @@ -1,16 +1,16 @@ -Downloading https://packages.pagerduty.com/pdagent/deb/InRelease... -Error downloading https://packages.pagerduty.com/pdagent/deb/InRelease: HTTP code 404 while fetching https://packages.pagerduty.com/pdagent/deb/InRelease retrying... -Retrying 0 https://packages.pagerduty.com/pdagent/deb/InRelease... -Giving up on https://packages.pagerduty.com/pdagent/deb/InRelease... -Downloading https://packages.pagerduty.com/pdagent/deb/Release... -Success downloading https://packages.pagerduty.com/pdagent/deb/Release -Downloading https://packages.pagerduty.com/pdagent/deb/Release.gpg... -Success downloading https://packages.pagerduty.com/pdagent/deb/Release.gpg +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease... +Error downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease... +Giving up on http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/InRelease... +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release... +Success downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Release.gpg openpgp: RSA key ID AE0396CFF8253540 openpgp: Good signature from "Package Maintainer (PagerDuty, Inc.) " Downloading & parsing package files... -Downloading https://packages.pagerduty.com/pdagent/deb/Packages.gz... -Success downloading https://packages.pagerduty.com/pdagent/deb/Packages.gz +Downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Packages.gz... +Success downloading http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent/deb/Packages.gz Building download queue... Download queue: 23 items (3.46 MiB) diff --git a/system/t04_mirror/UpdateMirror22Test_gold b/system/t04_mirror/UpdateMirror22Test_gold index 0674cd3ff..156143a31 100644 --- a/system/t04_mirror/UpdateMirror22Test_gold +++ b/system/t04_mirror/UpdateMirror22Test_gold @@ -1,10 +1,10 @@ -Downloading https://nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/InRelease... -Success downloading https://nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/InRelease +Downloading http://repo.aptly.info/system-tests/nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/InRelease... +Success downloading http://repo.aptly.info/system-tests/nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/InRelease openpgp: RSA key ID DDCAE044F796ECB0 openpgp: Good signature from "NVIDIA CORPORATION (Open Source Projects) " Downloading & parsing package files... -Downloading https://nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/Packages.xz... -Success downloading https://nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/Packages.xz +Downloading http://repo.aptly.info/system-tests/nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/Packages.xz... +Success downloading http://repo.aptly.info/system-tests/nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64/Packages.xz Applying filter... Building download queue... diff --git a/system/t04_mirror/UpdateMirror23Test_gold b/system/t04_mirror/UpdateMirror23Test_gold index bccb69f05..18cce31ec 100644 --- a/system/t04_mirror/UpdateMirror23Test_gold +++ b/system/t04_mirror/UpdateMirror23Test_gold @@ -4,47 +4,53 @@ Applying filter... Building download queue... Download queue: 8 items (20.93 MiB) Downloading & parsing package files... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-s390x/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST.udebs... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MD5SUMS... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/SHA256SUMS... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/debian.exec... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/initrd.debian... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/kernel.debian... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/parmfile.debian... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/udeb.list... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-s390x/Packages.gz... -Downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... -Error downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS: HTTP code 404 while fetching http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS retrying... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Giving up on http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-s390x/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST.udebs... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MD5SUMS... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/SHA256SUMS... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/debian.exec... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/initrd.debian... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/kernel.debian... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/parmfile.debian... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/udeb.list... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-s390x/Packages.gz... +Downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease retrying... +Error downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS: HTTP code 404 while fetching http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS retrying... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Giving up on http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS... Mirror `stretch` has been successfully updated. Packages filtered: 49256 -> 1. -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/InRelease... -Retrying 0 http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS... -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/binary-s390x/Packages.gz -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST.udebs -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MD5SUMS -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/SHA256SUMS -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/debian.exec -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/initrd.debian -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/kernel.debian -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/parmfile.debian -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/udeb.list -Success downloading http://archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-s390x/Packages.gz +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/InRelease... +Retrying 0 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS... +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/Release.gpg +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/binary-s390x/Packages.gz +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST.udebs +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/MD5SUMS +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/SHA256SUMS +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/debian.exec +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/initrd.debian +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/kernel.debian +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/generic/parmfile.debian +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/main/installer-s390x/current/images/udeb.list +Success downloading http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/dists/stretch/non-free/binary-s390x/Packages.gz +gpgv: issuer "debian-release@lists.debian.org" +gpgv: using RSA key 0146DC6D4A0B2914BDED34DB648ACFD622F3D138 +gpgv: using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 +gpgv: using RSA key 16E90B3FDF65EDE3AA7F323C04EE7237B7D453EC +gpgv: using RSA key A7236886F3CCCAAD148A27F80E98404D386FA1D9 gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) " gpgv: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) " gpgv: Good signature from "Debian Archive Automatic Signing Key (9/stretch) " gpgv: Good signature from "Debian Stable Release Key (9/stretch) " -gpgv: RSA key ID B7D453EC -gpgv: RSA key ID 22F3D138 -gpgv: RSA key ID 1A7B6500 -gpgv: RSA key ID 386FA1D9 +gpgv: Signature made Sat Aug 14 07:43:24 2021 UTC +gpgv: Signature made Sat Aug 14 07:43:25 2021 UTC +gpgv: Signature made Sat Aug 14 08:26:43 2021 UTC +gpgv: Signature made Sat Aug 14 08:46:19 2021 UTC +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror24Test_gold b/system/t04_mirror/UpdateMirror24Test_gold index 34c99295e..bcc51a9e7 100644 --- a/system/t04_mirror/UpdateMirror24Test_gold +++ b/system/t04_mirror/UpdateMirror24Test_gold @@ -4,107 +4,113 @@ Applying filter... Building download queue... Download queue: 37 items (166.14 MiB) Downloading & parsing package files... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/Release... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/Release.gpg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/binary-amd64/Packages.bz2... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST.udebs... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS.gpg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/debian-cd_info.tar.gz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/initrd.gz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/vmlinuz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/xen/xm-debian.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/boot.img.gz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/initrd.gz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/vmlinuz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/boot.img.gz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/mini.iso... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/netboot.tar.gz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/adtxt.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/exithelp.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f1.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f10.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f2.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f3.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f4.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f5.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f6.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f7.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f8.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f9.txt... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/menu.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/prompt.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/rqtxt.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/splash.png... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/stdmenu.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/syslinux.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/txt.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/vesamenu.c32... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/initrd.gz... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/linux... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/pxelinux.0... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/xen/xm-debian.cfg... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/udeb.list... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/binary-amd64/Packages.bz2... -Downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS... -Error downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease: HTTP code 404 while fetching http://us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease retrying... -Error downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS: HTTP code 404 while fetching http://us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS retrying... -Giving up on http://us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease... -Giving up on http://us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/Release... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/Release.gpg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/binary-amd64/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST.udebs... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS.gpg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/debian-cd_info.tar.gz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/initrd.gz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/vmlinuz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/xen/xm-debian.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/boot.img.gz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/initrd.gz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/vmlinuz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/boot.img.gz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/mini.iso... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/netboot.tar.gz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/adtxt.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/exithelp.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f1.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f10.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f2.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f3.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f4.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f5.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f6.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f7.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f8.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f9.txt... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/menu.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/prompt.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/rqtxt.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/splash.png... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/stdmenu.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/syslinux.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/txt.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/vesamenu.c32... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/initrd.gz... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/linux... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/pxelinux.0... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/xen/xm-debian.cfg... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/udeb.list... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/binary-amd64/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS... +Error downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease retrying... +Error downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS: HTTP code 404 while fetching http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS retrying... +Giving up on http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease... +Giving up on http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS... Mirror `trusty` has been successfully updated. Packages filtered: 8616 -> 1. -Retrying 0 http://us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease... -Retrying 0 http://us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS... -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/Release -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/Release.gpg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/binary-amd64/Packages.bz2 -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST.udebs -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS.gpg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/debian-cd_info.tar.gz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/initrd.gz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/vmlinuz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/xen/xm-debian.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/boot.img.gz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/initrd.gz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/vmlinuz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/boot.img.gz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/mini.iso -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/netboot.tar.gz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/adtxt.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/exithelp.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f1.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f10.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f2.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f3.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f4.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f5.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f6.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f7.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f8.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f9.txt -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/menu.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/prompt.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/rqtxt.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/splash.png -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/stdmenu.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/syslinux.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/txt.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/vesamenu.c32 -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/initrd.gz -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/linux -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/pxelinux.0 -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/xen/xm-debian.cfg -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/udeb.list -Success downloading http://us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/binary-amd64/Packages.bz2 +Retrying 0 http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/InRelease... +Retrying 0 http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/installer-amd64/current/images/SHA256SUMS... +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/Release +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/Release.gpg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/binary-amd64/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/MANIFEST.udebs +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/SHA256SUMS.gpg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/debian-cd_info.tar.gz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/initrd.gz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/vmlinuz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/cdrom/xen/xm-debian.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/boot.img.gz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/initrd.gz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/hd-media/vmlinuz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/boot.img.gz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/mini.iso +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/netboot.tar.gz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/adtxt.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/exithelp.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f1.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f10.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f2.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f3.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f4.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f5.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f6.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f7.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f8.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/f9.txt +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/menu.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/prompt.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/rqtxt.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/splash.png +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/stdmenu.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/syslinux.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/txt.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/boot-screens/vesamenu.c32 +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/initrd.gz +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/linux +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/pxelinux.0 +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/netboot/xen/xm-debian.cfg +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/main/installer-amd64/current/images/udeb.list +Success downloading http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/dists/trusty/restricted/binary-amd64/Packages.bz2 +gpgv: using DSA key 40976EAF437D05B5 +gpgv: using DSA key 40976EAF437D05B5 +gpgv: using RSA key 3B4FE6ACC0B21F32 +gpgv: using RSA key 3B4FE6ACC0B21F32 gpgv: Good signature from "Ubuntu Archive Automatic Signing Key (2012) " gpgv: Good signature from "Ubuntu Archive Automatic Signing Key (2012) " gpgv: Good signature from "Ubuntu Archive Automatic Signing Key " gpgv: Good signature from "Ubuntu Archive Automatic Signing Key " -gpgv: DSA key ID 437D05B5 -gpgv: RSA key ID C0B21F32 -gpgv: DSA key ID 437D05B5 -gpgv: RSA key ID C0B21F32 \ No newline at end of file +gpgv: Signature made Thu May 8 14:20:33 2014 UTC +gpgv: Signature made Thu May 8 14:20:33 2014 UTC +gpgv: Signature made Tue Apr 15 22:05:21 2014 UTC +gpgv: Signature made Tue Apr 15 22:05:21 2014 UTC +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror7Test_gold b/system/t04_mirror/UpdateMirror7Test_gold index 748b6b8c5..b111a4381 100644 --- a/system/t04_mirror/UpdateMirror7Test_gold +++ b/system/t04_mirror/UpdateMirror7Test_gold @@ -1,254 +1,192 @@ Building download queue... -Download queue: 121 items (318.63 MiB) +Download queue: 89 items (158.97 MiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb... Mirror `flat` has been successfully updated. -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb +gpgv: using RSA key 7BA040A510E4E66ED3743EC1B8F25A8A73EACF41 gpgv: Good signature from "Johannes Ranke " -gpgv: RSA key ID 73EACF41 +gpgv: Signature made Thu Nov 2 07:43:52 2023 UTC +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror8Test_gold b/system/t04_mirror/UpdateMirror8Test_gold index a299fe9d2..5956ae213 100644 --- a/system/t04_mirror/UpdateMirror8Test_gold +++ b/system/t04_mirror/UpdateMirror8Test_gold @@ -1,22 +1,24 @@ -Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... -Error downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease: HTTP code 404 while fetching http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease retrying... -Retrying 0 http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... -Giving up on http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... -Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release... -Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release -Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg... -Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg -gpgv: RSA key ID 3B1F56C0 +Downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... +Error downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease: HTTP code 404 while fetching http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease retrying... +Retrying 0 http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... +Giving up on http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... +Downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release... +Success downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release +Downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg... +Success downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' +gpgv: Signature made Mon Oct 22 13:19:50 2012 UTC +gpgv: using RSA key A5279A973B1F56C0 gpgv: Good signature from "Launchpad sim" Downloading & parsing package files... -Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-amd64/Packages.bz2... -Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-amd64/Packages.bz2 -Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-armel/Packages.bz2... -Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-armel/Packages.bz2 -Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-i386/Packages.bz2... -Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-i386/Packages.bz2 -Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-powerpc/Packages.bz2... -Success downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-powerpc/Packages.bz2 +Downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-amd64/Packages.bz2... +Success downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-amd64/Packages.bz2 +Downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-armel/Packages.bz2... +Success downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-armel/Packages.bz2 +Downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-i386/Packages.bz2... +Success downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-i386/Packages.bz2 +Downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-powerpc/Packages.bz2... +Success downloading http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-powerpc/Packages.bz2 Building download queue... Download queue: 0 items (0 B) diff --git a/system/t04_mirror/UpdateMirror9Test_gold b/system/t04_mirror/UpdateMirror9Test_gold index a5b9ef835..5282531af 100644 --- a/system/t04_mirror/UpdateMirror9Test_gold +++ b/system/t04_mirror/UpdateMirror9Test_gold @@ -1,400 +1,318 @@ Building download queue... -Download queue: 193 items (438.68 MiB) +Download queue: 151 items (213.34 MiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.3-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.3-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.3.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.84-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.84-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.84.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-20-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-20-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-20.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.20-45-3~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.20-45-3~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.20-45.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.8-42-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.8-42-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.8-42.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.162-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.162-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.162.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.2.3-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.0-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.1-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.5-3-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.5-3-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.5-3.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.19-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.19-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.19.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.10-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.10-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.10.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-3-1~bullseyecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-3-1~bullseyecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-3.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.4-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.4-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.4.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.85-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.85-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.85.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-22-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-22-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-22.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.22-5-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.22-5-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.22-5.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.9-0-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.9-0-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.9-0.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.163-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.163-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.163.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.2-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.6-1.1-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.6-1.1-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.6-1.1.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.21-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.21-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.21.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12.orig.tar.gz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-7-1~bullseyecran.0.debian.tar.xz... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-7-1~bullseyecran.0.dsc... +Downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-7.orig.tar.gz... Mirror `flat-src` has been successfully updated. -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2 -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.3-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.3-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.3.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.84-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.84-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.84.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-20-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-20-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-20.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.20-45-3~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.20-45-3~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.20-45.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.17.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.8-42-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.8-42-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.8-42.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.162-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.162-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.162.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.10-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.10-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.2.3.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.0.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.1.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-21-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-21.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.84-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.84-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-20-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-20-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.20-45-3~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.20-45-3~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.17-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.17-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-58.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-58.3.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.8-42-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.8-42-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.162-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.162-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-18.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.19-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.19-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-16-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-16.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.2.3-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.0-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.1-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.2.3-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.0-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.1-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.5-3-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.5-3-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.5-3.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.19-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.19-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.19.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.10-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.10-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.10.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12.orig.tar.gz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-3-1~bullseyecran.0.debian.tar.xz -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-3-1~bullseyecran.0.dsc -Success downloading https://cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-3.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/InRelease +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Packages.bz2 +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/Sources.bz2 +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/boot_1.3-28.1.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.4-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.4-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/cluster_2.1.4.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/codetools_0.2-19.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.85-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.85-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/foreign_0.8.85.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-22-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-22-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/kernsmooth_2.23-22.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.22-5-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.22-5-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/lattice_0.22-5.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18-2~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/littler_0.3.18.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.9-0-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.9-0-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/mgcv_1.9-0.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.163-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.163-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/nlme_3.1.163.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2-dbgsym_3.5.12-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/python3-rpy2_3.5.12-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core-dbgsym_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-core_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-dev_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base-html_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-base_4.3.2.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-boot_1.3-28.1-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class-dbgsym_7.3-22-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-class_7.3-22.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster-dbgsym_2.1.4-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-cluster_2.1.4-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-coda_0.19-4.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-codetools_0.2-19-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign-dbgsym_0.8.85-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-foreign_0.8.85-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth-dbgsym_2.23-22-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-kernsmooth_2.23-22-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice-dbgsym_0.22-5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-lattice_0.22-5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler-dbgsym_0.3.18-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-littler_0.3.18-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass-dbgsym_7.3-60-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mass_7.3-60.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix-dbgsym_1.6-1.1-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-matrix_1.6-1.1-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv-dbgsym_1.9-0-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-mgcv_1.9-0-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme-dbgsym_3.1.163-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nlme_3.1.163-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet-dbgsym_7.3-19-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19-2~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-nnet_7.3-19.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart-dbgsym_4.1.21-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-rpart_4.1.21-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial-dbgsym_7.3-17-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-spatial_7.3-17.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival-dbgsym_3.5-7-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-cran-survival_3.5-7-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-html_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-info_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-doc-pdf_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib-dbgsym_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-mathlib_4.3.2-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/r-recommended_4.3.2-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-data_0.7.5-1~bullseyecran.0_all.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward-dbgsym_0.7.5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_amd64.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5-1~bullseyecran.0_i386.deb +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rkward_0.7.5.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.6-1.1-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.6-1.1-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rmatrix_1.6-1.1.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.21-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.21-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpart_4.1.21.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/rpy2_3.5.12.orig.tar.gz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-7-1~bullseyecran.0.debian.tar.xz +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-7-1~bullseyecran.0.dsc +Success downloading http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian/bullseye-cran40/survival_3.5-7.orig.tar.gz +gpgv: using RSA key 7BA040A510E4E66ED3743EC1B8F25A8A73EACF41 gpgv: Good signature from "Johannes Ranke " -gpgv: RSA key ID 73EACF41 +gpgv: Signature made Thu Nov 2 07:43:52 2023 UTC +gpgv: can't allocate lock for '/home/runner/.gnupg/aptlytest.gpg' \ No newline at end of file diff --git a/system/t04_mirror/create.py b/system/t04_mirror/create.py index 4f39a5a5c..3572700fd 100644 --- a/system/t04_mirror/create.py +++ b/system/t04_mirror/create.py @@ -1,4 +1,5 @@ import re +import os from lib import BaseTest @@ -7,7 +8,7 @@ class CreateMirror1Test(BaseTest): """ create mirror: all architectures + all components """ - runCmd = "aptly mirror create --ignore-signatures mirror1 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly mirror create --ignore-signatures mirror1 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" def check(self): self.check_output() @@ -18,7 +19,7 @@ class CreateMirror2Test(BaseTest): """ create mirror: all architectures and 1 component """ - runCmd = "aptly mirror create --ignore-signatures mirror2 http://archive.debian.org/debian-archive/debian/ stretch main" + runCmd = "aptly mirror create --ignore-signatures mirror2 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main" def check(self): self.check_output() @@ -29,7 +30,7 @@ class CreateMirror3Test(BaseTest): """ create mirror: some architectures and 2 components """ - runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror3 http://archive.debian.org/debian-archive/debian/ stretch main contrib" + runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror3 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main contrib" def check(self): self.check_output() @@ -42,7 +43,7 @@ class CreateMirror4Test(BaseTest): """ expectedCode = 1 - runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror4 http://archive.debian.org/debian-archive/debian/ stretch life" + runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror4 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch life" class CreateMirror5Test(BaseTest): @@ -51,7 +52,7 @@ class CreateMirror5Test(BaseTest): """ expectedCode = 1 - runCmd = "aptly -architectures=i386,nano68 mirror create --ignore-signatures mirror5 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly -architectures=i386,nano68 mirror create --ignore-signatures mirror5 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" class CreateMirror6Test(BaseTest): @@ -59,17 +60,17 @@ class CreateMirror6Test(BaseTest): create mirror: missing release """ expectedCode = 1 - requiresGPG1 = True + requiresGPG2 = True configOverride = {"max-tries": 1} - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror6 http://archive.debian.org/debian-archive/debian/ suslik" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror6 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ suslik" class CreateMirror7Test(BaseTest): """ create mirror: architectures fixed via config file """ - runCmd = "aptly mirror create --ignore-signatures mirror7 http://archive.debian.org/debian-archive/debian/ stretch main contrib" + runCmd = "aptly mirror create --ignore-signatures mirror7 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main contrib" configOverride = {"architectures": ["i386", "amd64"]} def check(self): @@ -82,9 +83,9 @@ class CreateMirror8Test(BaseTest): create mirror: already exists """ fixtureCmds = [ - "aptly mirror create --ignore-signatures mirror8 http://archive.debian.org/debian-archive/debian/ stretch main contrib" + "aptly mirror create --ignore-signatures mirror8 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main contrib" ] - runCmd = "aptly mirror create --ignore-signatures mirror8 http://archive.debian.org/debian-archive/debian/ stretch main contrib" + runCmd = "aptly mirror create --ignore-signatures mirror8 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main contrib" expectedCode = 1 @@ -92,9 +93,9 @@ class CreateMirror9Test(BaseTest): """ create mirror: repo with InRelease verification """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://archive.debian.org/debian-archive/debian/ stretch-backports" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch-backports" fixtureGpg = True - requiresGPG1 = True + requiresGPG2 = True def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using|Warning: using insecure memory!\n', '', s) @@ -112,7 +113,7 @@ class CreateMirror10Test(BaseTest): """ create mirror: repo with InRelease verification, failure """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://archive.debian.org/debian-archive/debian/ stretch-backports" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch-backports" fixtureGpg = False gold_processor = BaseTest.expand_environ expectedCode = 1 @@ -126,7 +127,7 @@ class CreateMirror11Test(BaseTest): create mirror: repo with Release + Release.gpg verification """ configOverride = {"max-tries": 1} - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" fixtureGpg = True def outputMatchPrepare(self, s): @@ -142,7 +143,7 @@ class CreateMirror12Test(BaseTest): create mirror: repo with Release+Release.gpg verification, failure """ configOverride = {"max-tries": 1} - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" fixtureGpg = False gold_processor = BaseTest.expand_environ expectedCode = 1 @@ -155,7 +156,7 @@ class CreateMirror13Test(BaseTest): """ create mirror: skip verification using config file """ - runCmd = "aptly mirror create mirror13 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly mirror create mirror13 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" configOverride = {"gpgDisableVerify": True} def check(self): @@ -167,7 +168,7 @@ class CreateMirror14Test(BaseTest): """ create mirror: flat repository """ - runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 https://cloud.r-project.org/bin/linux/debian bullseye-cran40/" + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian bullseye-cran40/" fixtureGpg = True def outputMatchPrepare(self, s): @@ -186,7 +187,7 @@ class CreateMirror15Test(BaseTest): """ create mirror: flat repository + components """ - runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 https://cloud.r-project.org/bin/linux/debian bullseye-cran40/ main" + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian bullseye-cran40/ main" expectedCode = 1 @@ -196,14 +197,14 @@ class CreateMirror16Test(BaseTest): """ expectedCode = 1 - runCmd = "aptly -architectures=source mirror create -ignore-signatures mirror16 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly -architectures=source mirror create -ignore-signatures mirror16 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" class CreateMirror17Test(BaseTest): """ create mirror: mirror with sources enabled """ - runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-sources mirror17 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-sources mirror17 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" def check(self): self.check_output() @@ -237,7 +238,7 @@ class CreateMirror19Test(BaseTest): """ fixtureGpg = True - runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror19 http://archive.debian.org/debian-security/ stretch/updates main" + runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror19 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main" def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) @@ -258,7 +259,7 @@ class CreateMirror20Test(BaseTest): fixtureGpg = True configOverride = {"max-tries": 1} - runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror20 http://archive.debian.org/debian-security/ stretch/updates main" + runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror20 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main" environmentOverride = {"HTTP_PROXY": "127.0.0.1:3137"} expectedCode = 1 @@ -270,8 +271,8 @@ def outputMatchPrepare(self, s): ).replace( 'proxyconnect tcp', 'http: error connecting to proxy http://127.0.0.1:3137' ).replace( - 'Get http://archive.debian.org/debian-security/dists/stretch/updates/Release:', - 'Get "http://archive.debian.org/debian-security/dists/stretch/updates/Release":' + 'Get http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release:', + 'Get "http://repo.aptly.info/system-tests/archive.debian.org/debian-security/dists/stretch/updates/Release":' ) @@ -280,7 +281,7 @@ class CreateMirror21Test(BaseTest): create mirror: flat repository in subdir """ configOverride = {"max-tries": 1} - runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror21 http://pkg.jenkins-ci.org/debian-stable binary/" + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror21 http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable binary/" fixtureGpg = True def outputMatchPrepare(self, s): @@ -302,7 +303,7 @@ class CreateMirror22Test(BaseTest): """ create mirror: mirror with filter """ - runCmd = "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror22 http://archive.debian.org/debian-security/ stretch/updates main" + runCmd = "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror22 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main" def check(self): def removeDates(s): @@ -317,7 +318,7 @@ class CreateMirror23Test(BaseTest): """ create mirror: mirror with wrong filter """ - runCmd = "aptly mirror create -ignore-signatures -filter='nginx | ' mirror23 http://archive.debian.org/debian-security/ stretch/updates main" + runCmd = "aptly mirror create -ignore-signatures -filter='nginx | ' mirror23 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main" expectedCode = 1 @@ -325,7 +326,7 @@ class CreateMirror24Test(BaseTest): """ create mirror: disable config value with option """ - runCmd = "aptly mirror create -ignore-signatures=false -keyring=aptlytest.gpg mirror24 http://archive.debian.org/debian-security/ stretch/updates main" + runCmd = "aptly mirror create -ignore-signatures=false -keyring=aptlytest.gpg mirror24 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main" fixtureGpg = True def outputMatchPrepare(self, s): @@ -340,7 +341,7 @@ class CreateMirror25Test(BaseTest): """ create mirror: mirror with udebs enabled """ - runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-udebs mirror25 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-udebs mirror25 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" def check(self): self.check_output() @@ -351,7 +352,7 @@ class CreateMirror26Test(BaseTest): """ create mirror: flat mirror with udebs """ - runCmd = "aptly mirror create -keyring=aptlytest.gpg -with-udebs mirror26 http://pkg.jenkins-ci.org/debian-stable binary/" + runCmd = "aptly mirror create -keyring=aptlytest.gpg -with-udebs mirror26 http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable binary/" fixtureGpg = True expectedCode = 1 @@ -374,19 +375,24 @@ class CreateMirror29Test(BaseTest): """ create mirror: repo with InRelease verification (internal GPG implementation) """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://archive.debian.org/debian-archive/debian/ stretch-backports" + fixtureCmds = ["gpg --no-default-keyring --keyring aptlytest.gpg --export-options export-minimal --export -o " + os.path.join( + os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg")] + runCmd = "aptly mirror create --keyring=aptlytest-gpg1.gpg mirror9 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch-backports" configOverride = {"gpgProvider": "internal"} fixtureGpg = True def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) + def teardown(self): + self.run_cmd(["rm", "-f", os.path.join(os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg")]) + class CreateMirror30Test(BaseTest): """ create mirror: repo with InRelease verification, failure (internal GPG implementation) """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" configOverride = {"gpgProvider": "internal", "max-tries": 1} gold_processor = BaseTest.expand_environ fixtureGpg = False @@ -400,20 +406,25 @@ class CreateMirror31Test(BaseTest): """ create mirror: repo with Release + Release.gpg verification (internal GPG implementation) """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://archive.debian.org/debian-archive/debian/ stretch" + fixtureCmds = ["gpg --no-default-keyring --keyring aptlytest.gpg --export-options export-minimal --export -o " + os.path.join( + os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg")] + runCmd = "aptly mirror create --keyring=aptlytest-gpg1.gpg mirror11 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" configOverride = {"gpgProvider": "internal", "max-tries": 1} fixtureGpg = True def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) + def teardown(self): + self.run_cmd(["rm", "-f", os.path.join(os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg")]) + class CreateMirror32Test(BaseTest): """ create mirror: repo with Release + Release.gpg verification (gpg2) """ configOverride = {"max-tries": 1} - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror32 http://archive.debian.org/debian-archive/debian/ stretch" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror32 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch" fixtureGpg = True requiresGPG2 = True diff --git a/system/t04_mirror/drop.py b/system/t04_mirror/drop.py index 397224131..99248a822 100644 --- a/system/t04_mirror/drop.py +++ b/system/t04_mirror/drop.py @@ -6,7 +6,7 @@ class DropMirror1Test(BaseTest): drop mirror: regular list """ fixtureCmds = [ - "aptly mirror create --ignore-signatures mirror1 http://archive.debian.org/debian-archive/debian/ stretch", + "aptly mirror create --ignore-signatures mirror1 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch", ] runCmd = "aptly mirror drop mirror1" diff --git a/system/t04_mirror/edit.py b/system/t04_mirror/edit.py index 0b6f6d7d2..7981c26dd 100644 --- a/system/t04_mirror/edit.py +++ b/system/t04_mirror/edit.py @@ -49,7 +49,7 @@ class EditMirror5Test(BaseTest): edit mirror: remove filter """ fixtureCmds = [ - "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror5 http://archive.debian.org/debian-security/ stretch/updates main", + "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror5 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main", ] runCmd = "aptly mirror edit -filter= mirror5" @@ -66,7 +66,7 @@ class EditMirror6Test(BaseTest): edit mirror: change architectures """ fixtureCmds = [ - "aptly mirror create -ignore-signatures -architectures=amd64 mirror6 http://archive.debian.org/debian-archive/debian stretch main" + "aptly mirror create -ignore-signatures -architectures=amd64 mirror6 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian stretch main" ] runCmd = "aptly mirror edit -ignore-signatures -architectures=amd64,i386 mirror6" @@ -80,7 +80,7 @@ class EditMirror7Test(BaseTest): edit mirror: change architectures to missing archs """ fixtureCmds = [ - "aptly mirror create -ignore-signatures -architectures=amd64 stretch http://archive.debian.org/debian-archive/debian stretch main" + "aptly mirror create -ignore-signatures -architectures=amd64 stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian stretch main" ] runCmd = "aptly mirror edit -ignore-signatures -architectures=amd64,x56 stretch" expectedCode = 1 @@ -102,7 +102,7 @@ class EditMirror9Test(BaseTest): """ edit mirror: flat mirror with udebs """ - fixtureCmds = ["aptly mirror create -keyring=aptlytest.gpg mirror9 http://pkg.jenkins-ci.org/debian-stable binary/"] + fixtureCmds = ["aptly mirror create -keyring=aptlytest.gpg mirror9 http://repo.aptly.info/system-tests/pkg.jenkins.io/debian-stable binary/"] fixtureGpg = True runCmd = "aptly mirror edit -with-udebs mirror9" expectedCode = 1 @@ -113,5 +113,5 @@ class EditMirror10Test(BaseTest): edit mirror: change archive url """ requiresFTP = True - fixtureCmds = ["aptly mirror create -ignore-signatures mirror10 ftp://ftp.ru.debian.org/debian stretch main"] - runCmd = "aptly mirror edit -ignore-signatures -archive-url ftp://ftp.ch.debian.org/debian mirror10" + fixtureCmds = ["aptly mirror create -ignore-signatures mirror10 http://repo.aptly.info/system-tests/ftp.ru.debian.org/debian bookworm main"] + runCmd = "aptly mirror edit -ignore-signatures -archive-url http://repo.aptly.info/system-tests/ftp.ch.debian.org/debian mirror10" diff --git a/system/t04_mirror/list.py b/system/t04_mirror/list.py index 03ef48397..2422b3c00 100644 --- a/system/t04_mirror/list.py +++ b/system/t04_mirror/list.py @@ -8,10 +8,10 @@ class ListMirror1Test(BaseTest): list mirrors: regular list """ fixtureCmds = [ - "aptly mirror create --ignore-signatures mirror1 http://archive.debian.org/debian-archive/debian/ stretch", - "aptly mirror create -with-sources --ignore-signatures mirror2 http://archive.debian.org/debian-archive/debian/ stretch contrib", - "aptly -architectures=i386 mirror create --ignore-signatures mirror3 http://archive.debian.org/debian-archive/debian/ stretch non-free", - "aptly mirror create -ignore-signatures mirror4 http://download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/ ./", + "aptly mirror create --ignore-signatures mirror1 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch", + "aptly mirror create -with-sources --ignore-signatures mirror2 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch contrib", + "aptly -architectures=i386 mirror create --ignore-signatures mirror3 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch non-free", + "aptly mirror create -ignore-signatures mirror4 http://repo.aptly.info/system-tests/download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/ ./", ] runCmd = "aptly mirror list" @@ -50,10 +50,10 @@ class ListMirror6Test(BaseTest): list mirrors: regular list """ fixtureCmds = [ - "aptly mirror create --ignore-signatures mirror1 http://archive.debian.org/debian-archive/debian/ stretch", - "aptly mirror create -with-sources --ignore-signatures mirror2 http://archive.debian.org/debian-archive/debian/ stretch contrib", - "aptly -architectures=i386 mirror create --ignore-signatures mirror3 http://archive.debian.org/debian-archive/debian/ stretch non-free", - "aptly mirror create -ignore-signatures mirror4 http://download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/ ./", + "aptly mirror create --ignore-signatures mirror1 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch", + "aptly mirror create -with-sources --ignore-signatures mirror2 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch contrib", + "aptly -architectures=i386 mirror create --ignore-signatures mirror3 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch non-free", + "aptly mirror create -ignore-signatures mirror4 http://repo.aptly.info/system-tests/download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/ ./", ] runCmd = "aptly mirror list -json" diff --git a/system/t04_mirror/show.py b/system/t04_mirror/show.py index 2f5d07f40..98e7cbb20 100644 --- a/system/t04_mirror/show.py +++ b/system/t04_mirror/show.py @@ -7,7 +7,7 @@ class ShowMirror1Test(BaseTest): """ show mirror: regular mirror """ - fixtureCmds = ["aptly mirror create --ignore-signatures mirror1 http://archive.debian.org/debian-archive/debian/ stretch"] + fixtureCmds = ["aptly mirror create --ignore-signatures mirror1 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch"] runCmd = "aptly mirror show mirror1" @@ -35,7 +35,7 @@ class ShowMirror4Test(BaseTest): show mirror: mirror with filter """ fixtureCmds = [ - "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' -filter-with-deps=true mirror4 http://archive.debian.org/debian-security/ stretch/updates main" + "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' -filter-with-deps=true mirror4 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main" ] runCmd = "aptly mirror show mirror4" @@ -47,7 +47,7 @@ class ShowMirror5Test(BaseTest): """ show mirror: regular mirror """ - fixtureCmds = ["aptly mirror create --ignore-signatures mirror1 http://archive.debian.org/debian-archive/debian/ stretch"] + fixtureCmds = ["aptly mirror create --ignore-signatures mirror1 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch"] runCmd = "aptly mirror show -json mirror1" def outputMatchPrepare(_, s): @@ -75,7 +75,7 @@ class ShowMirror8Test(BaseTest): show mirror: mirror with filter """ fixtureCmds = [ - "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' -filter-with-deps=true mirror4 http://archive.debian.org/debian-security/ stretch/updates main" + "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' -filter-with-deps=true mirror4 http://repo.aptly.info/system-tests/archive.debian.org/debian-security/ stretch/updates main" ] runCmd = "aptly mirror show -json mirror4" diff --git a/system/t04_mirror/update.py b/system/t04_mirror/update.py index b419fde28..460c073a7 100644 --- a/system/t04_mirror/update.py +++ b/system/t04_mirror/update.py @@ -22,7 +22,7 @@ class UpdateMirror1Test(BaseTest): sortOutput = True longTest = False fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create --ignore-signatures varnish https://packagecloud.io/varnishcache/varnish30/debian/ wheezy main", + "aptly -architectures=i386,amd64 mirror create --ignore-signatures varnish http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/ wheezy main", ] runCmd = "aptly mirror update --ignore-signatures varnish" outputMatchPrepare = filterOutRedirects @@ -115,7 +115,7 @@ class UpdateMirror7Test(BaseTest): sortOutput = True fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg -architectures=amd64 flat https://cloud.r-project.org/bin/linux/debian bullseye-cran40/", + "aptly mirror create --keyring=aptlytest.gpg -architectures=amd64 flat http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian bullseye-cran40/", ] runCmd = "aptly mirror update --keyring=aptlytest.gpg flat" outputMatchPrepare = filterOutSignature @@ -130,7 +130,7 @@ class UpdateMirror8Test(BaseTest): fixtureGpg = True fixturePool = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg gnuplot-maverick-src http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick", + "aptly mirror create --keyring=aptlytest.gpg gnuplot-maverick-src http://repo.aptly.info/system-tests/ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick", ] runCmd = "aptly mirror update --keyring=aptlytest.gpg gnuplot-maverick-src" outputMatchPrepare = filterOutSignature @@ -143,7 +143,7 @@ class UpdateMirror9Test(BaseTest): sortOutput = True fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg -with-sources flat-src https://cloud.r-project.org/bin/linux/debian bullseye-cran40/", + "aptly mirror create --keyring=aptlytest.gpg -with-sources flat-src http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian bullseye-cran40/", ] runCmd = "aptly mirror update --keyring=aptlytest.gpg flat-src" outputMatchPrepare = filterOutSignature @@ -156,7 +156,7 @@ class UpdateMirror10Test(BaseTest): sortOutput = True fixtureGpg = True fixtureCmds = [ - "aptly mirror create -keyring=aptlytest.gpg -with-sources -filter='!(Name (% r-*)), !($$PackageType (source))' flat-src https://cloud.r-project.org/bin/linux/debian bullseye-cran40/", + "aptly mirror create -keyring=aptlytest.gpg -with-sources -filter='!(Name (% r-*)), !($$PackageType (source))' flat-src http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian bullseye-cran40/", ] runCmd = "aptly mirror update --keyring=aptlytest.gpg flat-src" outputMatchPrepare = filterOutSignature @@ -188,7 +188,7 @@ class UpdateMirror12Test(BaseTest): longTest = False fixtureGpg = True fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://archive.debian.org/debian-archive/debian/ stretch main non-free", + "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main non-free", ] runCmd = "aptly mirror update -keyring=aptlytest.gpg stretch" outputMatchPrepare = filterOutSignature @@ -201,7 +201,7 @@ class UpdateMirror13Test(BaseTest): sortOutput = True longTest = False fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create --ignore-signatures varnish https://packagecloud.io/varnishcache/varnish30/debian/ wheezy main", + "aptly -architectures=i386,amd64 mirror create --ignore-signatures varnish http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/ wheezy main", ] runCmd = "aptly mirror update --ignore-signatures --skip-existing-packages varnish" outputMatchPrepare = filterOutRedirects @@ -214,7 +214,7 @@ class UpdateMirror14Test(BaseTest): sortOutput = True longTest = False fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create --ignore-signatures varnish https://packagecloud.io/varnishcache/varnish30/debian/ wheezy main", + "aptly -architectures=i386,amd64 mirror create --ignore-signatures varnish http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/ wheezy main", "aptly mirror update --ignore-signatures --skip-existing-packages varnish" ] runCmd = "aptly mirror update --ignore-signatures --skip-existing-packages varnish" @@ -282,7 +282,7 @@ class UpdateMirror17Test(BaseTest): sortOutput = True longTest = False fixtureCmds = [ - "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev stretch http://archive.debian.org/debian-archive/debian stretch main", + "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian stretch main", ] runCmd = "aptly mirror update -ignore-signatures stretch" @@ -309,7 +309,7 @@ class UpdateMirror18Test(BaseTest): sortOutput = True longTest = False fixtureCmds = [ - "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev stretch http://archive.debian.org/debian-archive/debian stretch main", + "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian stretch main", ] runCmd = "aptly mirror update -ignore-signatures stretch" configOverride = {'skipLegacyPool': True} @@ -338,7 +338,7 @@ class UpdateMirror19Test(BaseTest): longTest = False fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg pagerduty https://packages.pagerduty.com/pdagent deb/" + "aptly mirror create --keyring=aptlytest.gpg pagerduty http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent deb/" ] runCmd = "aptly mirror update --keyring=aptlytest.gpg pagerduty" outputMatchPrepare = filterOutSignature @@ -353,13 +353,18 @@ class UpdateMirror20Test(BaseTest): """ sortOutput = True fixtureGpg = True + configOverride = {"gpgProvider": "internal"} fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg -architectures=amd64 --filter='r-cran-class' flat https://cloud.r-project.org/bin/linux/debian bullseye-cran40/", + "gpg --no-default-keyring --keyring aptlytest.gpg --export-options export-minimal --export -o " + os.path.join( + os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg"), + "aptly mirror create --keyring=aptlytest-gpg1.gpg -architectures=amd64 --filter='r-cran-class' flat http://repo.aptly.info/system-tests/cloud.r-project.org/bin/linux/debian bullseye-cran40/", ] - configOverride = {"gpgProvider": "internal"} - runCmd = "aptly mirror update --keyring=aptlytest.gpg flat" + runCmd = "aptly mirror update --keyring=aptlytest-gpg1.gpg flat" outputMatchPrepare = filterOutSignature + def teardown(self): + self.run_cmd(["rm", "-f", os.path.join(os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg")]) + class UpdateMirror21Test(BaseTest): """ @@ -369,14 +374,19 @@ class UpdateMirror21Test(BaseTest): configOverride = {"gpgProvider": "internal", "max-tries": 1} fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg pagerduty https://packages.pagerduty.com/pdagent deb/" + "gpg --no-default-keyring --keyring aptlytest.gpg --export-options export-minimal --export -o " + os.path.join( + os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg"), + "aptly mirror create --keyring=aptlytest-gpg1.gpg pagerduty http://repo.aptly.info/system-tests/packages.pagerduty.com/pdagent deb/" ] - runCmd = "aptly mirror update --keyring=aptlytest.gpg pagerduty" + runCmd = "aptly mirror update --keyring=aptlytest-gpg1.gpg pagerduty" outputMatchPrepare = filterOutSignature def output_processor(self, output): return "\n".join(line for line in self.ensure_utf8(output).split("\n") if ".deb" not in line) + def teardown(self): + self.run_cmd(["rm", "-f", os.path.join(os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg")]) + class UpdateMirror22Test(BaseTest): """ @@ -385,13 +395,18 @@ class UpdateMirror22Test(BaseTest): configOverride = {"gpgProvider": "internal"} fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg --filter=nomatch libnvidia-container https://nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64 ./" + "gpg --no-default-keyring --keyring aptlytest.gpg --export-options export-minimal --export -o " + os.path.join( + os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg"), + "aptly mirror create --keyring=aptlytest-gpg1.gpg --filter=nomatch libnvidia-container http://repo.aptly.info/system-tests/nvidia.github.io/libnvidia-container/stable/ubuntu16.04/amd64 ./" ] - runCmd = "aptly mirror update --keyring=aptlytest.gpg libnvidia-container" + runCmd = "aptly mirror update --keyring=aptlytest-gpg1.gpg libnvidia-container" def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using|Packages filtered: .* -> 0.', '', s) + def teardown(self): + self.run_cmd(["rm", "-f", os.path.join(os.environ["HOME"], ".gnupg/aptlytest-gpg1.gpg")]) + class UpdateMirror23Test(BaseTest): """ @@ -402,7 +417,7 @@ class UpdateMirror23Test(BaseTest): longTest = False fixtureGpg = True fixtureCmds = [ - "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://archive.debian.org/debian-archive/debian/ stretch main non-free", + "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main non-free", ] runCmd = "aptly mirror update -keyring=aptlytest.gpg stretch" outputMatchPrepare = filterOutSignature @@ -417,7 +432,7 @@ class UpdateMirror24Test(BaseTest): longTest = False fixtureGpg = True fixtureCmds = [ - "aptly -architectures=amd64 mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer trusty http://us.archive.ubuntu.com/ubuntu/ trusty main restricted", + "aptly -architectures=amd64 mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer trusty http://repo.aptly.info/system-tests/us.archive.ubuntu.com/ubuntu/ trusty main restricted", ] runCmd = "aptly mirror update -keyring=aptlytest.gpg trusty" outputMatchPrepare = filterOutSignature diff --git a/system/t06_publish/snapshot.py b/system/t06_publish/snapshot.py index d03d5f170..562215f7f 100644 --- a/system/t06_publish/snapshot.py +++ b/system/t06_publish/snapshot.py @@ -983,7 +983,7 @@ class PublishSnapshot35Test(BaseTest): configOverride = {"max-tries": 1} fixtureGpg = True fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://archive.debian.org/debian-archive/debian/ stretch main non-free", + "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main non-free", "aptly mirror update -keyring=aptlytest.gpg stretch", "aptly snapshot create stretch from mirror stretch", ] @@ -1140,7 +1140,7 @@ class PublishSnapshot37Test(BaseTest): configOverride = {"max-tries": 1} fixtureGpg = True fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://archive.debian.org/debian-archive/debian/ stretch main non-free", + "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main non-free", "aptly mirror update -keyring=aptlytest.gpg stretch", "aptly mirror update -keyring=aptlytest.gpg stretch", "aptly snapshot create stretch from mirror stretch", @@ -1156,7 +1156,7 @@ class PublishSnapshot38Test(BaseTest): configOverride = {"max-tries": 1} fixtureGpg = True fixtureCmds = [ - "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://archive.debian.org/debian-archive/debian/ stretch main", + "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch main", "aptly mirror update -keyring=aptlytest.gpg stretch", "aptly snapshot create stretch from mirror stretch", ] diff --git a/system/t09_repo/IncludeRepo13Test_gold b/system/t09_repo/IncludeRepo13Test_gold index 3a0480763..410ff1e2e 100644 --- a/system/t09_repo/IncludeRepo13Test_gold +++ b/system/t09_repo/IncludeRepo13Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " Loading repository unstable for changes file hardlink_0.2.1_amd64.changes... [!] changes file skipped due to uploaders config: hardlink_0.2.1_amd64.changes, keys []pgp.Key{"21DBB89C16DB3E6D"}: denied as no rule matches diff --git a/system/t09_repo/IncludeRepo14Test_gold b/system/t09_repo/IncludeRepo14Test_gold index 58285bb6e..13bad7916 100644 --- a/system/t09_repo/IncludeRepo14Test_gold +++ b/system/t09_repo/IncludeRepo14Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " Loading repository unstable for changes file hardlink_0.2.1_amd64.changes... [+] hardlink_0.2.1_source added diff --git a/system/t09_repo/IncludeRepo18Test_gold b/system/t09_repo/IncludeRepo18Test_gold index 58285bb6e..13bad7916 100644 --- a/system/t09_repo/IncludeRepo18Test_gold +++ b/system/t09_repo/IncludeRepo18Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " Loading repository unstable for changes file hardlink_0.2.1_amd64.changes... [+] hardlink_0.2.1_source added diff --git a/system/t09_repo/IncludeRepo19Test_gold b/system/t09_repo/IncludeRepo19Test_gold index 3a0480763..410ff1e2e 100644 --- a/system/t09_repo/IncludeRepo19Test_gold +++ b/system/t09_repo/IncludeRepo19Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " Loading repository unstable for changes file hardlink_0.2.1_amd64.changes... [!] changes file skipped due to uploaders config: hardlink_0.2.1_amd64.changes, keys []pgp.Key{"21DBB89C16DB3E6D"}: denied as no rule matches diff --git a/system/t09_repo/IncludeRepo1Test_gold b/system/t09_repo/IncludeRepo1Test_gold index 456eb0b57..13bad7916 100644 --- a/system/t09_repo/IncludeRepo1Test_gold +++ b/system/t09_repo/IncludeRepo1Test_gold @@ -1,4 +1,5 @@ -gpgv: Signature made Sun Mar 15 20:36:44 2015 MSK using DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " Loading repository unstable for changes file hardlink_0.2.1_amd64.changes... [+] hardlink_0.2.1_source added diff --git a/system/t09_repo/IncludeRepo2Test_gold b/system/t09_repo/IncludeRepo2Test_gold index a9f191f28..f4399d732 100644 --- a/system/t09_repo/IncludeRepo2Test_gold +++ b/system/t09_repo/IncludeRepo2Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " Loading repository my-unstable for changes file hardlink_0.2.1_amd64.changes... [+] hardlink_0.2.1_source added diff --git a/system/t09_repo/IncludeRepo5Test_gold b/system/t09_repo/IncludeRepo5Test_gold index 58285bb6e..13bad7916 100644 --- a/system/t09_repo/IncludeRepo5Test_gold +++ b/system/t09_repo/IncludeRepo5Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " Loading repository unstable for changes file hardlink_0.2.1_amd64.changes... [+] hardlink_0.2.1_source added diff --git a/system/t09_repo/IncludeRepo6Test_gold b/system/t09_repo/IncludeRepo6Test_gold index 9c02bfa63..162a20907 100644 --- a/system/t09_repo/IncludeRepo6Test_gold +++ b/system/t09_repo/IncludeRepo6Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " [!] unable to process file hardlink_0.2.1_amd64.changes: open /01/hardlink_0.2.1.tar.gz: no such file or directory [!] Some files were skipped due to errors: diff --git a/system/t09_repo/IncludeRepo7Test_gold b/system/t09_repo/IncludeRepo7Test_gold index 2215c9ddc..a1af07213 100644 --- a/system/t09_repo/IncludeRepo7Test_gold +++ b/system/t09_repo/IncludeRepo7Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: Good signature from "Aptly Tester (don't use it) " [!] unable to process file hardlink_0.2.1_amd64.changes: checksum mismatch MD5: expected 4efce26825af5842f43961096dd890b3 != obtained 7515e9279fc32d0c89db965f4dfdec8c [!] Some files were skipped due to errors: diff --git a/system/t09_repo/IncludeRepo8Test_gold b/system/t09_repo/IncludeRepo8Test_gold index 1f1e09492..042c53e32 100644 --- a/system/t09_repo/IncludeRepo8Test_gold +++ b/system/t09_repo/IncludeRepo8Test_gold @@ -1,4 +1,5 @@ -gpgv: DSA key ID 16DB3E6D +gpgv: Signature made Sun Mar 15 17:36:44 2015 UTC +gpgv: using DSA key 21DBB89C16DB3E6D gpgv: BAD signature from "Aptly Tester (don't use it) " [!] unable to process file hardlink_0.2.1_amd64.changes: verification of clearsigned file failed: exit status 1 [!] Some files were skipped due to errors: diff --git a/system/t09_repo/cmdimport.py b/system/t09_repo/cmdimport.py index 82694ecfd..e23510dbd 100644 --- a/system/t09_repo/cmdimport.py +++ b/system/t09_repo/cmdimport.py @@ -83,7 +83,7 @@ class ImportRepo6Test(BaseTest): """ fixtureCmds = [ "aptly repo create -comment=Cool -distribution=squeeze repo1", - "aptly mirror create --ignore-signatures mirror1 http://archive.debian.org/debian-archive/debian/ stretch", + "aptly mirror create --ignore-signatures mirror1 http://repo.aptly.info/system-tests/archive.debian.org/debian-archive/debian/ stretch", ] runCmd = "aptly repo import mirror1 repo1 nginx" expectedCode = 1 diff --git a/system/t12_api/mirrors.py b/system/t12_api/mirrors.py index e803264ee..30a42c301 100644 --- a/system/t12_api/mirrors.py +++ b/system/t12_api/mirrors.py @@ -9,7 +9,7 @@ class MirrorsAPITestCreateShow(APITest): def check(self): mirror_name = self.random_name() mirror_desc = {'Name': mirror_name, - 'ArchiveURL': 'http://security.debian.org/debian-security/', + 'ArchiveURL': 'http://repo.aptly.info/system-tests/security.debian.org/debian-security/', 'Architectures': ['amd64'], 'Components': ['main'], 'Distribution': 'buster/updates'} @@ -27,7 +27,7 @@ def check(self): resp = self.get("/api/mirrors/" + mirror_name) self.check_equal(resp.status_code, 200) self.check_subset({'Name': mirror_name, - 'ArchiveRoot': 'http://security.debian.org/debian-security/', + 'ArchiveRoot': 'http://repo.aptly.info/system-tests/security.debian.org/debian-security/', 'Architectures': ['amd64'], 'Components': ['main'], 'Distribution': 'buster/updates'}, resp.json()) @@ -43,8 +43,10 @@ class MirrorsAPITestCreateUpdate(APITest): def check(self): mirror_name = self.random_name() mirror_desc = {'Name': mirror_name, - 'ArchiveURL': 'https://packagecloud.io/varnishcache/varnish30/debian/', + 'ArchiveURL': 'http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/', 'Distribution': 'wheezy', + 'Keyrings': ["aptlytest.gpg"], + 'Architectures': ["amd64"], 'Components': ['main']} mirror_desc['IgnoreSignatures'] = True @@ -56,9 +58,12 @@ def check(self): mirror_desc["Name"] = self.random_name() resp = self.put_task("/api/mirrors/" + mirror_name, json=mirror_desc) - self.check_equal(resp.json()["State"], TASK_SUCCEEDED) - + self.check_equal(resp.status_code, 200) _id = resp.json()['ID'] + if resp.json()["State"] != TASK_SUCCEEDED: + resp = self.get("/api/tasks/" + str(_id) + "/output") + raise Exception("task failed: " + str(resp.json())) + resp = self.get("/api/tasks/" + str(_id) + "/detail") self.check_equal(resp.status_code, 200) self.check_equal(resp.json()['RemainingDownloadSize'], 0) @@ -67,7 +72,7 @@ def check(self): resp = self.get("/api/mirrors/" + mirror_desc["Name"]) self.check_equal(resp.status_code, 200) self.check_subset({'Name': mirror_desc["Name"], - 'ArchiveRoot': 'https://packagecloud.io/varnishcache/varnish30/debian/', + 'ArchiveRoot': 'http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/', 'Distribution': 'wheezy'}, resp.json()) resp = self.get("/api/mirrors/" + mirror_desc["Name"] + "/packages") @@ -81,7 +86,7 @@ class MirrorsAPITestCreateDelete(APITest): def check(self): mirror_name = self.random_name() mirror_desc = {'Name': mirror_name, - 'ArchiveURL': 'https://packagecloud.io/varnishcache/varnish30/debian/', + 'ArchiveURL': 'http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/', 'IgnoreSignatures': True, 'Distribution': 'wheezy', 'Components': ['main']} @@ -104,7 +109,7 @@ def check(self): mirror_name = self.random_name() mirror_desc = {'Name': mirror_name, - 'ArchiveURL': 'https://packagecloud.io/varnishcache/varnish30/debian/', + 'ArchiveURL': 'http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/', 'IgnoreSignatures': True, 'Distribution': 'wheezy', 'Components': ['main']} diff --git a/system/t12_api/tasks.py b/system/t12_api/tasks.py index f4c074a56..5291689cc 100644 --- a/system/t12_api/tasks.py +++ b/system/t12_api/tasks.py @@ -10,8 +10,9 @@ class TaskAPITestParallelTasks(APITest): def _create_mirror(self, dist): mirror_name = self.random_name() mirror_desc = {'Name': mirror_name, - 'ArchiveURL': 'https://packagecloud.io/varnishcache/varnish30/debian/', + 'ArchiveURL': 'http://repo.aptly.info/system-tests/packagecloud.io/varnishcache/varnish30/debian/', 'Distribution': dist, + 'Architectures': ["amd64", "i386"], 'Components': ['main']} mirror_desc['IgnoreSignatures'] = True resp = self.post("/api/mirrors", json=mirror_desc) @@ -76,7 +77,7 @@ def _publish(self, source_kind, name): def check(self): publish_task_ids = [] mirror_task_list = [] - for mirror_dist in ['squeeze', 'jessie']: + for mirror_dist in ['squeeze', 'wheezy']: mirror_task_id, mirror_name = self._create_mirror(mirror_dist) mirror_task_list.append((mirror_task_id, mirror_name)) repo_task_id, repo_name = self._create_repo()