diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 00000000..eea44730 --- /dev/null +++ b/.golangci.yml @@ -0,0 +1,22 @@ +run: + tests: false + + +linters: + enable-all: false + disable-all: true + enable: + - govet + - golint + - gofmt + - deadcode + - goimports + - misspell + - ineffassign + - staticcheck + - varcheck + - structcheck + - maligned + - vetshadow + - goconst + - interfacer diff --git a/.travis.yml b/.travis.yml index d2f673f5..8c6ad7c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,11 +26,11 @@ matrix: env: RUN_LONG_TESTS=no fast_finish: true include: - - go: 1.9.x - env: RUN_LONG_TESTS=no - go: 1.10.x - env: RUN_LONG_TESTS=yes + env: RUN_LONG_TESTS=no - go: 1.11.x + env: RUN_LONG_TESTS=yes + - go: 1.12.x env: - RUN_LONG_TESTS=yes - DEPLOY_BINARIES=yes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 72bc7878..6a52e9f6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -80,7 +80,7 @@ If you're new to Go, follow [getting started guide](https://golang.org/doc/insta initial setup. With Go 1.8+, default `$GOPATH` is `$HOME/go`, so rest of this document assumes that. Usually `$GOPATH/bin` is appended to your `$PATH` to make it easier to run built binaries, but you might choose -to prepend it or to skip this test if you're security conscious. +to prepend it or to skip this test if you're security conscious. ### Forking and Cloning @@ -184,9 +184,8 @@ Style checks could be run with: make check -aptly is using [gometalinter](https://github.com/alecthomas/gometalinter) to run style checks on Go code. Configuration -for the linter could be found in [linter.json](linter.json) file. Running linters might take considerable amount of time -unfortunately, but usually warning reported by linters hint at real code issues. +aptly is using [golangci-lint](https://github.com/golangci/golangci-lint) to run style checks on Go code. Configuration +for the linter could be found in [.golangci.yml](.golangci.yml) file. Python code (system tests) are linted with [flake8 tool](https://pypi.python.org/pypi/flake8). diff --git a/Makefile b/Makefile index 7d3702d8..632a3782 100644 --- a/Makefile +++ b/Makefile @@ -11,13 +11,10 @@ TESTS?= BINPATH?=$(GOPATH)/bin RUN_LONG_TESTS?=yes -GO_1_10_AND_HIGHER=$(shell (printf '%s\n' go1.10 $(GOVERSION) | sort -cV >/dev/null 2>&1) && echo "yes") - all: test bench check system-test prepare: - go get -u github.com/alecthomas/gometalinter - gometalinter --install + curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.17.1 dev: go get -u github.com/golang/dep/... @@ -25,11 +22,7 @@ dev: check: system/env ifeq ($(RUN_LONG_TESTS), yes) - if [ -x travis_wait ]; then \ - travis_wait gometalinter --config=linter.json ./...; \ - else \ - gometalinter --config=linter.json ./...; \ - fi + golangci-lint run . system/env/bin/activate && flake8 --max-line-length=200 --exclude=system/env/ system/ endif @@ -51,14 +44,10 @@ ifeq ($(RUN_LONG_TESTS), yes) endif test: -ifeq ($(GO_1_10_AND_HIGHER), yes) go test -v ./... -gocheck.v=true -race -coverprofile=coverage.txt -covermode=atomic -else - go test -v `go list ./... | grep -v vendor/` -gocheck.v=true -endif bench: - go test -v ./deb -run=nothing -bench=. -benchmem + go test -v ./deb -run=nothing -bench=. -benchmem mem.png: mem.dat mem.gp gnuplot mem.gp diff --git a/README.rst b/README.rst index f7bfdf49..e575cbca 100644 --- a/README.rst +++ b/README.rst @@ -64,7 +64,7 @@ If you would like to use nightly builds (unstable), please use following reposit Binary executables (depends almost only on libc) are available for download from `Bintray `_. -If you have Go environment set up, you can build aptly from source by running (go 1.9+ required):: +If you have Go environment set up, you can build aptly from source by running (go 1.10+ required):: mkdir -p $GOPATH/src/github.com/aptly-dev/aptly git clone https://github.com/aptly-dev/aptly $GOPATH/src/github.com/aptly-dev/aptly diff --git a/api/publish.go b/api/publish.go index 3de3f294..2d3e3918 100644 --- a/api/publish.go +++ b/api/publish.go @@ -300,7 +300,7 @@ func apiPublishUpdateSwitch(c *gin.Context) { } snapshot, err2 := snapshotCollection.ByName(snapshotInfo.Name) - if err != nil { + if err2 != nil { c.AbortWithError(404, err2) return } diff --git a/deb/deb.go b/deb/deb.go index 169e3c43..b0ff3fe3 100644 --- a/deb/deb.go +++ b/deb/deb.go @@ -11,7 +11,7 @@ import ( "strings" "github.com/h2non/filetype/matchers" - "github.com/mkrautz/goar" + ar "github.com/mkrautz/goar" "github.com/pkg/errors" "github.com/aptly-dev/aptly/pgp" diff --git a/deb/format.go b/deb/format.go index b2d3bb46..47ea776e 100644 --- a/deb/format.go +++ b/deb/format.go @@ -134,7 +134,9 @@ func isMultilineField(field string, isRelease bool) bool { return false } -// Write single field from Stanza to writer +// Write single field from Stanza to writer. +// +//nolint: interfacer func writeField(w *bufio.Writer, field, value string, isRelease bool) (err error) { if !isMultilineField(field, isRelease) { _, err = w.WriteString(field + ": " + value + "\n") diff --git a/linter.json b/linter.json deleted file mode 100644 index 50fcbd87..00000000 --- a/linter.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "DisableAll": true, - "Enable": [ - "vet", - "golint", - "gofmt", - "deadcode", - "goimports", - "misspell", - "ineffassign", - "staticcheck", - "varcheck", - "structcheck", - "maligned", - "vetshadow", - "goconst", - "interfacer" - ], - "Deadline": "20m", - "Vendor": true, - "VendoredLinters": true, - "Concurrency": 1 -} diff --git a/s3/public.go b/s3/public.go index 440642d7..a3e85a99 100644 --- a/s3/public.go +++ b/s3/public.go @@ -17,7 +17,7 @@ import ( "github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/service/s3" "github.com/pkg/errors" - "github.com/smira/go-aws-auth" + awsauth "github.com/smira/go-aws-auth" ) const errCodeNotFound = "NotFound" diff --git a/system/files/debian-archive-keyring.gpg b/system/files/debian-archive-keyring.gpg index 7359335b..8def5950 100644 Binary files a/system/files/debian-archive-keyring.gpg and b/system/files/debian-archive-keyring.gpg differ diff --git a/system/files/flat.key b/system/files/flat.key index 23b7dd21..e6d6d224 100644 Binary files a/system/files/flat.key and b/system/files/flat.key differ diff --git a/system/files/libboost-program-options-dev_1.62.0.1_i386.deb b/system/files/libboost-program-options-dev_1.62.0.1_i386.deb new file mode 100644 index 00000000..86a71030 Binary files /dev/null and b/system/files/libboost-program-options-dev_1.62.0.1_i386.deb differ diff --git a/system/t04_mirror/CreateMirror10Test_gold b/system/t04_mirror/CreateMirror10Test_gold index c124a0ac..d92c7baa 100644 --- a/system/t04_mirror/CreateMirror10Test_gold +++ b/system/t04_mirror/CreateMirror10Test_gold @@ -1,10 +1,10 @@ -Downloading http://mirror.yandex.ru/debian-backports/dists/squeeze-backports/InRelease... -gpgv: keyblock resource `${HOME}/.gnupg/aptlytest.gpg': file open error -gpgv: RSA key ID 46925553 -gpgv: Can't check signature: public key not found -Downloading http://mirror.yandex.ru/debian-backports/dists/squeeze-backports/Release... -Downloading http://mirror.yandex.ru/debian-backports/dists/squeeze-backports/Release.gpg... -gpgv: keyblock resource `${HOME}/.gnupg/aptlytest.gpg': file open error -gpgv: RSA key ID 46925553 -gpgv: Can't check signature: public key not found +Downloading http://mirror.yandex.ru/debian/dists/stretch-backports/InRelease... + +gpgv: RSA key ID 2B90D010 + +Downloading http://mirror.yandex.ru/debian/dists/stretch-backports/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch-backports/Release.gpg... + +gpgv: RSA key ID 2B90D010 + 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 a3ba733d..536c40ef 100644 --- a/system/t04_mirror/CreateMirror11Test_gold +++ b/system/t04_mirror/CreateMirror11Test_gold @@ -1,12 +1,12 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/InRelease... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release.gpg... +Downloading http://mirror.yandex.ru/debian/dists/stretch/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release.gpg... gpgv: RSA key ID 46925553 gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " gpgv: RSA key ID 2B90D010 gpgv: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -gpgv: RSA key ID 65FFB764 -gpgv: Good signature from "Wheezy Stable Release Key " +gpgv: RSA key ID 1A7B6500 +gpgv: Good signature from "Debian Stable Release Key (9/stretch) " -Mirror [mirror11]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror11]: http://mirror.yandex.ru/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 c8081bad..8dd99164 100644 --- a/system/t04_mirror/CreateMirror11Test_mirror_show +++ b/system/t04_mirror/CreateMirror11Test_mirror_show @@ -1,20 +1,22 @@ Name: mirror11 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib, non-free -Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror12Test_gold b/system/t04_mirror/CreateMirror12Test_gold index 6ed4553f..8c1a328c 100644 --- a/system/t04_mirror/CreateMirror12Test_gold +++ b/system/t04_mirror/CreateMirror12Test_gold @@ -1,11 +1,11 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/InRelease... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release.gpg... +Downloading http://mirror.yandex.ru/debian/dists/stretch/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release.gpg... gpgv: RSA key ID 46925553 gpgv: RSA key ID 2B90D010 -gpgv: RSA key ID 65FFB764 +gpgv: RSA key ID 1A7B6500 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 89457d8b..794f6001 100644 --- a/system/t04_mirror/CreateMirror13Test_gold +++ b/system/t04_mirror/CreateMirror13Test_gold @@ -1,4 +1,4 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... -Mirror [mirror13]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror13]: http://mirror.yandex.ru/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 d91e9a7a..73209894 100644 --- a/system/t04_mirror/CreateMirror13Test_mirror_show +++ b/system/t04_mirror/CreateMirror13Test_mirror_show @@ -1,20 +1,22 @@ Name: mirror13 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib, non-free -Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror14Test_gold b/system/t04_mirror/CreateMirror14Test_gold index c9bb8bba..5d2cf0d4 100644 --- a/system/t04_mirror/CreateMirror14Test_gold +++ b/system/t04_mirror/CreateMirror14Test_gold @@ -1,8 +1,7 @@ -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release.gpg... -gpgv: DSA key ID 381BA480 -gpgv: Good signature from "Johannes Ranke (CRAN Debian archive) " +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease... +gpgv: RSA key ID 115C3D8A +gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) " +gpgv: aka "Johannes Ranke " -Mirror [mirror14]: https://cloud.r-project.org/bin/linux/debian/ ./jessie-cran3/ successfully added. +Mirror [mirror14]: https://cloud.r-project.org/bin/linux/debian/ ./jessie-cran35/ 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 0a5dac32..3309f75d 100644 --- a/system/t04_mirror/CreateMirror14Test_mirror_show +++ b/system/t04_mirror/CreateMirror14Test_mirror_show @@ -1,6 +1,6 @@ Name: mirror14 Archive Root URL: https://cloud.r-project.org/bin/linux/debian/ -Distribution: ./jessie-cran3/ +Distribution: ./jessie-cran35/ Components: Architectures: Download Sources: no @@ -9,9 +9,8 @@ Last update: never Information from release file: Architectures: i386 amd64 armel all -Codename: jessie-cran3 +Codename: jessie-cran35 Components: main -Date: Sun, 12 Mar 2017 23:23:14 UTC Label: CRAN Backports Origin: CRAN -Suite: jessie-cran3 +Suite: jessie-cran35 diff --git a/system/t04_mirror/CreateMirror16Test_gold b/system/t04_mirror/CreateMirror16Test_gold index 86efa5f2..f5aeae3e 100644 --- a/system/t04_mirror/CreateMirror16Test_gold +++ b/system/t04_mirror/CreateMirror16Test_gold @@ -1,2 +1,2 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -ERROR: unable to fetch mirror: architecture source not available in repo [mirror16]: http://mirror.yandex.ru/debian/ wheezy, use -force-architectures to override +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +ERROR: unable to fetch mirror: architecture source not available in repo [mirror16]: http://mirror.yandex.ru/debian/ stretch, use -force-architectures to override diff --git a/system/t04_mirror/CreateMirror17Test_gold b/system/t04_mirror/CreateMirror17Test_gold index 2aae26c6..c192043e 100644 --- a/system/t04_mirror/CreateMirror17Test_gold +++ b/system/t04_mirror/CreateMirror17Test_gold @@ -1,4 +1,4 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... -Mirror [mirror17]: http://mirror.yandex.ru/debian/ wheezy [src] successfully added. +Mirror [mirror17]: http://mirror.yandex.ru/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 f1d42987..627c53b9 100644 --- a/system/t04_mirror/CreateMirror17Test_mirror_show +++ b/system/t04_mirror/CreateMirror17Test_mirror_show @@ -1,6 +1,6 @@ Name: mirror17 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib, non-free Architectures: i386 Download Sources: yes @@ -8,13 +8,15 @@ Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror19Test_gold b/system/t04_mirror/CreateMirror19Test_gold index e43ad41c..6e0454fe 100644 --- a/system/t04_mirror/CreateMirror19Test_gold +++ b/system/t04_mirror/CreateMirror19Test_gold @@ -1,8 +1,6 @@ -Downloading http://security.debian.org/dists/wheezy/updates/InRelease... +Downloading http://security.debian.org/dists/stretch/updates/InRelease... gpgv: RSA key ID C857C906 gpgv: Good signature from "Debian Security Archive Automatic Signing Key (8/jessie) " -gpgv: RSA key ID 46925553 -gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " -Mirror [mirror19]: http://security.debian.org/ wheezy/updates [src] successfully added. +Mirror [mirror19]: http://security.debian.org/ 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 1f30d822..6498b71b 100644 --- a/system/t04_mirror/CreateMirror19Test_mirror_show +++ b/system/t04_mirror/CreateMirror19Test_mirror_show @@ -1,6 +1,6 @@ Name: mirror19 Archive Root URL: http://security.debian.org/ -Distribution: wheezy/updates +Distribution: stretch/updates Components: main Architectures: i386 Download Sources: yes @@ -8,12 +8,13 @@ Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Codename: stretch Components: updates/main updates/contrib updates/non-free -Description: Long Term Support for Debian 7 +Description: Debian 9 Security Updates Label: Debian-Security Origin: Debian -Suite: oldoldstable -Version: 7.0 +Suite: stable +Version: 9 diff --git a/system/t04_mirror/CreateMirror1Test_gold b/system/t04_mirror/CreateMirror1Test_gold index 45014b8a..a512163b 100644 --- a/system/t04_mirror/CreateMirror1Test_gold +++ b/system/t04_mirror/CreateMirror1Test_gold @@ -1,4 +1,4 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... -Mirror [mirror1]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror1]: http://mirror.yandex.ru/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 9234b079..5b382194 100644 --- a/system/t04_mirror/CreateMirror1Test_mirror_show +++ b/system/t04_mirror/CreateMirror1Test_mirror_show @@ -1,20 +1,22 @@ Name: mirror1 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib, non-free -Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror20Test_gold b/system/t04_mirror/CreateMirror20Test_gold index 053cfec4..8db3c3de 100644 --- a/system/t04_mirror/CreateMirror20Test_gold +++ b/system/t04_mirror/CreateMirror20Test_gold @@ -1,3 +1,3 @@ -Downloading http://security.debian.org/dists/wheezy/updates/InRelease... -Downloading http://security.debian.org/dists/wheezy/updates/Release... -ERROR: unable to fetch mirror: http://security.debian.org/dists/wheezy/updates/Release: Get http://security.debian.org/dists/wheezy/updates/Release: http: error connecting to proxy http://127.0.0.1:3137: dial tcp 127.0.0.1:3137: connection refused +Downloading http://security.debian.org/dists/stretch/updates/InRelease... +Downloading http://security.debian.org/dists/stretch/updates/Release... +ERROR: unable to fetch mirror: http://security.debian.org/dists/stretch/updates/Release: Get http://security.debian.org/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/CreateMirror22Test_gold b/system/t04_mirror/CreateMirror22Test_gold index baa0c00a..1bbe150d 100644 --- a/system/t04_mirror/CreateMirror22Test_gold +++ b/system/t04_mirror/CreateMirror22Test_gold @@ -1,4 +1,4 @@ -Downloading http://security.debian.org/dists/wheezy/updates/Release... +Downloading http://security.debian.org/dists/stretch/updates/Release... -Mirror [mirror22]: http://security.debian.org/ wheezy/updates successfully added. +Mirror [mirror22]: http://security.debian.org/ 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 cade92ff..f202c915 100644 --- a/system/t04_mirror/CreateMirror22Test_mirror_show +++ b/system/t04_mirror/CreateMirror22Test_mirror_show @@ -1,8 +1,8 @@ Name: mirror22 Archive Root URL: http://security.debian.org/ -Distribution: wheezy/updates +Distribution: stretch/updates Components: main -Architectures: amd64, armel, armhf, i386 +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Filter: nginx | Priority (required) @@ -10,12 +10,13 @@ Filter With Deps: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Codename: stretch Components: updates/main updates/contrib updates/non-free -Description: Long Term Support for Debian 7 +Description: Debian 9 Security Updates Label: Debian-Security Origin: Debian -Suite: oldoldstable -Version: 7.0 +Suite: stable +Version: 9 diff --git a/system/t04_mirror/CreateMirror24Test_gold b/system/t04_mirror/CreateMirror24Test_gold index abd444fa..b4e99b86 100644 --- a/system/t04_mirror/CreateMirror24Test_gold +++ b/system/t04_mirror/CreateMirror24Test_gold @@ -1,8 +1,6 @@ -Downloading http://security.debian.org/dists/wheezy/updates/InRelease... +Downloading http://security.debian.org/dists/stretch/updates/InRelease... gpgv: RSA key ID C857C906 gpgv: Good signature from "Debian Security Archive Automatic Signing Key (8/jessie) " -gpgv: RSA key ID 46925553 -gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " -Mirror [mirror24]: http://security.debian.org/ wheezy/updates successfully added. +Mirror [mirror24]: http://security.debian.org/ 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 6eab7a88..4909b5e4 100644 --- a/system/t04_mirror/CreateMirror25Test_gold +++ b/system/t04_mirror/CreateMirror25Test_gold @@ -1,4 +1,4 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... -Mirror [mirror25]: http://mirror.yandex.ru/debian/ wheezy [udeb] successfully added. +Mirror [mirror25]: http://mirror.yandex.ru/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 bece2370..5b9c6e3b 100644 --- a/system/t04_mirror/CreateMirror25Test_mirror_show +++ b/system/t04_mirror/CreateMirror25Test_mirror_show @@ -1,6 +1,6 @@ Name: mirror25 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib, non-free Architectures: i386 Download Sources: no @@ -8,13 +8,15 @@ Download .udebs: yes Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror29Test_gold b/system/t04_mirror/CreateMirror29Test_gold index a1553963..43146c3a 100644 --- a/system/t04_mirror/CreateMirror29Test_gold +++ b/system/t04_mirror/CreateMirror29Test_gold @@ -1,8 +1,6 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy-backports/InRelease... -openpgp: RSA key ID 8B48AD6246925553 -openpgp: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " +Downloading http://mirror.yandex.ru/debian/dists/stretch-backports/InRelease... openpgp: RSA key ID 7638D0442B90D010 openpgp: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -Mirror [mirror9]: http://mirror.yandex.ru/debian/ wheezy-backports successfully added. +Mirror [mirror9]: http://mirror.yandex.ru/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 06fc35c5..c2ed4446 100644 --- a/system/t04_mirror/CreateMirror2Test_gold +++ b/system/t04_mirror/CreateMirror2Test_gold @@ -1,4 +1,4 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... -Mirror [mirror2]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror2]: http://mirror.yandex.ru/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 1db78329..bf954ffa 100644 --- a/system/t04_mirror/CreateMirror2Test_mirror_show +++ b/system/t04_mirror/CreateMirror2Test_mirror_show @@ -1,20 +1,22 @@ Name: mirror2 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main -Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror31Test_gold b/system/t04_mirror/CreateMirror31Test_gold index 5168b9a2..9beabb9f 100644 --- a/system/t04_mirror/CreateMirror31Test_gold +++ b/system/t04_mirror/CreateMirror31Test_gold @@ -1,10 +1,10 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/InRelease... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release.gpg... +Downloading http://mirror.yandex.ru/debian/dists/stretch/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release.gpg... openpgp: RSA key ID 8B48AD6246925553 openpgp: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " openpgp: RSA key ID 7638D0442B90D010 openpgp: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -Mirror [mirror11]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror11]: http://mirror.yandex.ru/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 05b86ffc..feab0146 100644 --- a/system/t04_mirror/CreateMirror32Test_gold +++ b/system/t04_mirror/CreateMirror32Test_gold @@ -1,9 +1,9 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/InRelease... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release.gpg... +Downloading http://mirror.yandex.ru/debian/dists/stretch/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release.gpg... gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " gpgv: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -gpgv: Good signature from "Wheezy Stable Release Key " +gpgv: Good signature from "Debian Stable Release Key (9/stretch) " -Mirror [mirror32]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror32]: http://mirror.yandex.ru/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 5cf000ce..bd028d8f 100644 --- a/system/t04_mirror/CreateMirror32Test_mirror_show +++ b/system/t04_mirror/CreateMirror32Test_mirror_show @@ -1,20 +1,22 @@ Name: mirror32 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib, non-free -Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror3Test_gold b/system/t04_mirror/CreateMirror3Test_gold index 0a189bb6..68d303e1 100644 --- a/system/t04_mirror/CreateMirror3Test_gold +++ b/system/t04_mirror/CreateMirror3Test_gold @@ -1,4 +1,4 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... -Mirror [mirror3]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror3]: http://mirror.yandex.ru/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 4af9bd7c..c31328dd 100644 --- a/system/t04_mirror/CreateMirror3Test_mirror_show +++ b/system/t04_mirror/CreateMirror3Test_mirror_show @@ -1,6 +1,6 @@ Name: mirror3 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib Architectures: i386, amd64 Download Sources: no @@ -8,13 +8,15 @@ Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror4Test_gold b/system/t04_mirror/CreateMirror4Test_gold index 346ba83b..fb504f5f 100644 --- a/system/t04_mirror/CreateMirror4Test_gold +++ b/system/t04_mirror/CreateMirror4Test_gold @@ -1,2 +1,2 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -ERROR: unable to fetch mirror: component life not available in repo [mirror4]: http://mirror.yandex.ru/debian/ wheezy, use -force-components to override +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +ERROR: unable to fetch mirror: component life not available in repo [mirror4]: http://mirror.yandex.ru/debian/ stretch, use -force-components to override diff --git a/system/t04_mirror/CreateMirror5Test_gold b/system/t04_mirror/CreateMirror5Test_gold index 88c67feb..8cf78c21 100644 --- a/system/t04_mirror/CreateMirror5Test_gold +++ b/system/t04_mirror/CreateMirror5Test_gold @@ -1,2 +1,2 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -ERROR: unable to fetch mirror: architecture nano68 not available in repo [mirror5]: http://mirror.yandex.ru/debian/ wheezy, use -force-architectures to override +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +ERROR: unable to fetch mirror: architecture nano68 not available in repo [mirror5]: http://mirror.yandex.ru/debian/ stretch, use -force-architectures to override diff --git a/system/t04_mirror/CreateMirror7Test_gold b/system/t04_mirror/CreateMirror7Test_gold index 192d8274..b92d5dc0 100644 --- a/system/t04_mirror/CreateMirror7Test_gold +++ b/system/t04_mirror/CreateMirror7Test_gold @@ -1,4 +1,4 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... -Mirror [mirror7]: http://mirror.yandex.ru/debian/ wheezy successfully added. +Mirror [mirror7]: http://mirror.yandex.ru/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 d2b2014c..74d2c7fa 100644 --- a/system/t04_mirror/CreateMirror7Test_mirror_show +++ b/system/t04_mirror/CreateMirror7Test_mirror_show @@ -1,6 +1,6 @@ Name: mirror7 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib Architectures: i386, amd64 Download Sources: no @@ -8,13 +8,15 @@ Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/CreateMirror8Test_gold b/system/t04_mirror/CreateMirror8Test_gold index e76510ce..4232e0f8 100644 --- a/system/t04_mirror/CreateMirror8Test_gold +++ b/system/t04_mirror/CreateMirror8Test_gold @@ -1,2 +1,2 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +Downloading http://mirror.yandex.ru/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 44e4eac1..b6e4569d 100644 --- a/system/t04_mirror/CreateMirror9Test_gold +++ b/system/t04_mirror/CreateMirror9Test_gold @@ -1,8 +1,6 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy-backports/InRelease... -gpgv: RSA key ID 46925553 -gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " +Downloading http://mirror.yandex.ru/debian/dists/stretch-backports/InRelease... gpgv: RSA key ID 2B90D010 gpgv: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -Mirror [mirror9]: http://mirror.yandex.ru/debian/ wheezy-backports successfully added. +Mirror [mirror9]: http://mirror.yandex.ru/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 8515ec98..ea2d520c 100644 --- a/system/t04_mirror/CreateMirror9Test_mirror_show +++ b/system/t04_mirror/CreateMirror9Test_mirror_show @@ -1,21 +1,21 @@ Name: mirror9 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy-backports +Distribution: stretch-backports Components: main, contrib, non-free -Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x ButAutomaticUpgrades: yes -Codename: wheezy-backports +Codename: stretch-backports Components: main contrib non-free -Description: Backports for the Wheezy Distribution +Description: Backports for the Stretch distribution Label: Debian Backports NotAutomatic: yes Origin: Debian Backports -Suite: wheezy-backports -Version: +Suite: stretch-backports diff --git a/system/t04_mirror/EditMirror10Test_gold b/system/t04_mirror/EditMirror10Test_gold index c07bfdb2..32091131 100644 --- a/system/t04_mirror/EditMirror10Test_gold +++ b/system/t04_mirror/EditMirror10Test_gold @@ -1,2 +1,2 @@ -Downloading ftp://ftp.ch.debian.org/debian/dists/wheezy/Release... -Mirror [mirror10]: ftp://ftp.ch.debian.org/debian/ wheezy successfully updated. +Downloading ftp://ftp.ch.debian.org/debian/dists/stretch/Release... +Mirror [mirror10]: ftp://ftp.ch.debian.org/debian/ stretch successfully updated. diff --git a/system/t04_mirror/EditMirror5Test_gold b/system/t04_mirror/EditMirror5Test_gold index f793a626..7b872740 100644 --- a/system/t04_mirror/EditMirror5Test_gold +++ b/system/t04_mirror/EditMirror5Test_gold @@ -1 +1 @@ -Mirror [mirror5]: http://security.debian.org/ wheezy/updates successfully updated. +Mirror [mirror5]: http://security.debian.org/ stretch/updates successfully updated. diff --git a/system/t04_mirror/EditMirror5Test_mirror_show b/system/t04_mirror/EditMirror5Test_mirror_show index c952ee3e..7daad990 100644 --- a/system/t04_mirror/EditMirror5Test_mirror_show +++ b/system/t04_mirror/EditMirror5Test_mirror_show @@ -1,19 +1,20 @@ Name: mirror5 Archive Root URL: http://security.debian.org/ -Distribution: wheezy/updates +Distribution: stretch/updates Components: main -Architectures: amd64, armel, armhf, i386 +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Codename: stretch Components: updates/main updates/contrib updates/non-free -Description: Long Term Support for Debian 7 +Description: Debian 9 Security Updates Label: Debian-Security Origin: Debian -Suite: oldoldstable -Version: 7.0 +Suite: stable +Version: 9 diff --git a/system/t04_mirror/EditMirror6Test_gold b/system/t04_mirror/EditMirror6Test_gold index 2a8ac06c..4bd26ea3 100644 --- a/system/t04_mirror/EditMirror6Test_gold +++ b/system/t04_mirror/EditMirror6Test_gold @@ -1,2 +1,2 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy successfully updated. +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Mirror [mirror6]: http://mirror.yandex.ru/debian/ stretch successfully updated. diff --git a/system/t04_mirror/EditMirror6Test_mirror_show b/system/t04_mirror/EditMirror6Test_mirror_show index a325dfe1..a6f9d533 100644 --- a/system/t04_mirror/EditMirror6Test_mirror_show +++ b/system/t04_mirror/EditMirror6Test_mirror_show @@ -1,20 +1,21 @@ -Name: wheezy-main +Name: mirror6 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main -Architectures: amd64, s390 +Architectures: amd64, i386 Download Sources: no Download .udebs: no -Number of packages: 56121 Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/EditMirror7Test_gold b/system/t04_mirror/EditMirror7Test_gold index c1d37c39..6d7c88b1 100644 --- a/system/t04_mirror/EditMirror7Test_gold +++ b/system/t04_mirror/EditMirror7Test_gold @@ -1,2 +1,2 @@ -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -ERROR: unable to edit: architecture x56 not available in repo [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy, use -force-architectures to override +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +ERROR: unable to edit: architecture x56 not available in repo [stretch]: http://mirror.yandex.ru/debian/ stretch, use -force-architectures to override diff --git a/system/t04_mirror/ListMirror1Test_gold b/system/t04_mirror/ListMirror1Test_gold index 01c62f61..6eaa6dd3 100644 --- a/system/t04_mirror/ListMirror1Test_gold +++ b/system/t04_mirror/ListMirror1Test_gold @@ -1,7 +1,7 @@ List of mirrors: - * [mirror1]: http://mirror.yandex.ru/debian/ wheezy - * [mirror2]: http://mirror.yandex.ru/debian/ wheezy [src] - * [mirror3]: http://mirror.yandex.ru/debian/ wheezy - * [mirror4]: http://download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_7.0/ ./ + * [mirror1]: http://mirror.yandex.ru/debian/ stretch + * [mirror2]: http://mirror.yandex.ru/debian/ stretch [src] + * [mirror3]: http://mirror.yandex.ru/debian/ stretch + * [mirror4]: http://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/ShowMirror1Test_gold b/system/t04_mirror/ShowMirror1Test_gold index 9234b079..5b382194 100644 --- a/system/t04_mirror/ShowMirror1Test_gold +++ b/system/t04_mirror/ShowMirror1Test_gold @@ -1,20 +1,22 @@ Name: mirror1 Archive Root URL: http://mirror.yandex.ru/debian/ -Distribution: wheezy +Distribution: stretch Components: main, contrib, non-free -Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Last update: never Information from release file: -Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Changelogs: http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog +Codename: stretch Components: main contrib non-free -Date: Sat, 17 Jun 2017 08:55:32 UTC -Description: Debian 7.11 Released 04 June 2016 +Date: Sat, 27 Apr 2019 09:29:22 UTC +Description: Debian 9.9 Released 27 April 2019 Label: Debian Origin: Debian -Suite: oldoldstable -Version: 7.11 +Suite: stable +Version: 9.9 diff --git a/system/t04_mirror/ShowMirror4Test_gold b/system/t04_mirror/ShowMirror4Test_gold index e8b14605..695252b6 100644 --- a/system/t04_mirror/ShowMirror4Test_gold +++ b/system/t04_mirror/ShowMirror4Test_gold @@ -1,8 +1,8 @@ Name: mirror4 Archive Root URL: http://security.debian.org/ -Distribution: wheezy/updates +Distribution: stretch/updates Components: main -Architectures: amd64, armel, armhf, i386 +Architectures: amd64, arm64, armel, armhf, i386, mips, mips64el, mipsel, ppc64el, s390x Download Sources: no Download .udebs: no Filter: nginx | Priority (required) @@ -10,12 +10,13 @@ Filter With Deps: yes Last update: never Information from release file: -Architectures: amd64 armel armhf i386 -Codename: wheezy +Acquire-By-Hash: yes +Architectures: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x +Codename: stretch Components: updates/main updates/contrib updates/non-free -Description: Long Term Support for Debian 7 +Description: Debian 9 Security Updates Label: Debian-Security Origin: Debian -Suite: oldoldstable -Version: 7.0 +Suite: stable +Version: 9 diff --git a/system/t04_mirror/UpdateMirror10Test_gold b/system/t04_mirror/UpdateMirror10Test_gold index 735b2692..d1c488fd 100644 --- a/system/t04_mirror/UpdateMirror10Test_gold +++ b/system/t04_mirror/UpdateMirror10Test_gold @@ -2,29 +2,22 @@ Applying filter... Building download queue... -Download queue: 15 items (8.56 MiB) +Download queue: 9 items (3.50 MiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release.gpg... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Sources.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/littler_0.3.2-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy-doc_1.0.3-30~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward-data_0.6.5-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Sources.bz2... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/pkg-r-autopkgtest_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-data_0.6.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_i386.deb... Mirror `flat-src` has been successfully updated. -Packages filtered: 110 -> 15. -gpgv: Good signature from "Johannes Ranke (CRAN Debian archive) " -gpgv: DSA key ID 381BA480 \ No newline at end of file +Packages filtered: 107 -> 9. +gpgv: aka "Johannes Ranke " +gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) " +gpgv: RSA key ID 115C3D8A \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror11Test_gold b/system/t04_mirror/UpdateMirror11Test_gold index c5182f79..677f0bd5 100644 --- a/system/t04_mirror/UpdateMirror11Test_gold +++ b/system/t04_mirror/UpdateMirror11Test_gold @@ -2,22 +2,20 @@ Applying filter... Building download queue... -Download queue: 5 items (0.54 MiB) +Download queue: 3 items (354.29 KiB) Downloading & parsing package files... -Downloading ftp://ftp.ru.debian.org/debian/dists/wheezy/InRelease... -Downloading ftp://ftp.ru.debian.org/debian/dists/wheezy/Release... -Downloading ftp://ftp.ru.debian.org/debian/dists/wheezy/Release.gpg... -Downloading ftp://ftp.ru.debian.org/debian/dists/wheezy/main/binary-i386/Packages.bz2... -Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sed/sed_4.2.1-10_i386.deb... -Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sensible-utils/sensible-utils_0.0.7_all.deb... -Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sysvinit/sysv-rc_2.88dsf-41+deb7u1_all.deb... -Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sysvinit/sysvinit-utils_2.88dsf-41+deb7u1_i386.deb... -Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sysvinit/sysvinit_2.88dsf-41+deb7u1_i386.deb... -Mirror `wheezy-main` has been successfully updated. -Packages filtered: 36024 -> 5. +Downloading ftp://ftp.ru.debian.org/debian/dists/stretch/InRelease... +Downloading ftp://ftp.ru.debian.org/debian/dists/stretch/Release... +Downloading ftp://ftp.ru.debian.org/debian/dists/stretch/Release.gpg... +Downloading ftp://ftp.ru.debian.org/debian/dists/stretch/main/binary-i386/Packages.gz... +Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sed/sed_4.4-1_i386.deb... +Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sensible-utils/sensible-utils_0.0.9+deb9u1_all.deb... +Downloading ftp://ftp.ru.debian.org/debian/pool/main/s/sysvinit/sysvinit-utils_2.88dsf-59.9_i386.deb... +Mirror `stretch-main` has been successfully updated. +Packages filtered: 50621 -> 3. gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " gpgv: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -gpgv: Good signature from "Wheezy Stable Release Key " +gpgv: Good signature from "Debian Stable Release Key (9/stretch) " gpgv: RSA key ID 2B90D010 gpgv: RSA key ID 46925553 -gpgv: RSA key ID 65FFB764 \ No newline at end of file +gpgv: RSA key ID 1A7B6500 \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror12Test_gold b/system/t04_mirror/UpdateMirror12Test_gold index 5397ed14..94a0e2ee 100644 --- a/system/t04_mirror/UpdateMirror12Test_gold +++ b/system/t04_mirror/UpdateMirror12Test_gold @@ -2,35 +2,44 @@ Applying filter... Building download queue... -Download queue: 11 items (5.76 MiB) +Download queue: 20 items (11.93 MiB) Downloading & parsing package files... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/InRelease... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release.gpg... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/binary-amd64/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/binary-i386/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/debian-installer/binary-amd64/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/debian-installer/binary-i386/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/non-free/binary-amd64/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/non-free/binary-i386/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/non-free/debian-installer/binary-amd64/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/non-free/debian-installer/binary-i386/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gnupg-curl_1.4.12-7+deb7u7_amd64.deb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gnupg-curl_1.4.12-7+deb7u7_i386.deb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gnupg-udeb_1.4.12-7+deb7u7_amd64.udeb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gnupg-udeb_1.4.12-7+deb7u7_i386.udeb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gnupg_1.4.12-7+deb7u7_amd64.deb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gnupg_1.4.12-7+deb7u7_i386.deb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gpgv-udeb_1.4.12-7+deb7u7_amd64.udeb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gpgv-udeb_1.4.12-7+deb7u7_i386.udeb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gpgv-win32_1.4.12-7+deb7u7_all.deb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gpgv_1.4.12-7+deb7u7_amd64.deb... -Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg/gpgv_1.4.12-7+deb7u7_i386.deb... -Mirror `wheezy` has been successfully updated. -Packages filtered: 57415 -> 11. +Downloading http://mirror.yandex.ru/debian/dists/stretch/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release.gpg... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/binary-amd64/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/binary-i386/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/debian-installer/binary-amd64/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/debian-installer/binary-i386/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/non-free/binary-amd64/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/non-free/binary-i386/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/non-free/debian-installer/binary-amd64/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/non-free/debian-installer/binary-i386/Packages.gz... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_amd64.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_i386.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_amd64.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_i386.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gnupg-l10n_2.1.18-8~deb9u4_all.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gnupg2_2.1.18-8~deb9u4_all.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_amd64.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_i386.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_amd64.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_i386.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_amd64.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_i386.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_amd64.udeb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_i386.udeb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv-win32_2.1.18-8~deb9u4_all.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv2_2.1.18-8~deb9u4_all.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_amd64.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_i386.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_amd64.deb... +Downloading http://mirror.yandex.ru/debian/pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_i386.deb... +Mirror `stretch` has been successfully updated. +Packages filtered: 78253 -> 20. gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " gpgv: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -gpgv: Good signature from "Wheezy Stable Release Key " +gpgv: Good signature from "Debian Stable Release Key (9/stretch) " gpgv: RSA key ID 2B90D010 gpgv: RSA key ID 46925553 -gpgv: RSA key ID 65FFB764 \ No newline at end of file +gpgv: RSA key ID 1A7B6500 \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror17Test_gold b/system/t04_mirror/UpdateMirror17Test_gold index cf10e132..680de5bf 100644 --- a/system/t04_mirror/UpdateMirror17Test_gold +++ b/system/t04_mirror/UpdateMirror17Test_gold @@ -4,7 +4,7 @@ Applying filter... Building download queue... Download queue: 0 items (0 B) Downloading & parsing package files... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/binary-i386/Packages.bz2... -Mirror `wheezy` has been successfully updated. -Packages filtered: 36024 -> 1. \ No newline at end of file +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/binary-i386/Packages.gz... +Mirror `stretch` has been successfully updated. +Packages filtered: 50621 -> 1. \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror18Test_gold b/system/t04_mirror/UpdateMirror18Test_gold index b086dc47..f95782c4 100644 --- a/system/t04_mirror/UpdateMirror18Test_gold +++ b/system/t04_mirror/UpdateMirror18Test_gold @@ -2,10 +2,10 @@ Applying filter... Building download queue... -Download queue: 1 items (2.67 KiB) +Download queue: 1 items (3.35 KiB) Downloading & parsing package files... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/binary-i386/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb... -Mirror `wheezy` has been successfully updated. -Packages filtered: 36024 -> 1. \ No newline at end of file +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/binary-i386/Packages.gz... +Downloading http://mirror.yandex.ru/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb... +Mirror `stretch` has been successfully updated. +Packages filtered: 50621 -> 1. \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror20Test_gold b/system/t04_mirror/UpdateMirror20Test_gold index f2e112cc..ff129bc0 100644 --- a/system/t04_mirror/UpdateMirror20Test_gold +++ b/system/t04_mirror/UpdateMirror20Test_gold @@ -1,96 +1,89 @@ + aka "Johannes Ranke (Wissenschaftlicher Berater) " Building download queue... -Download queue: 84 items (138.29 MiB) +Download queue: 78 items (200.63 MiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release.gpg... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/littler_0.3.2-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy-doc_1.0.3-30~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-dev_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-html_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-boot_1.3-18-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-boot_1.3-18-2~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-coda_0.18-1-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-codetools_0.2-14-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-codetools_0.2-15-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-html_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-info_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-pdf_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-recommended_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward-data_0.6.5-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/pkg-r-autopkgtest_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-boot_1.3-20-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-15-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-16-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.6-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-data_0.6.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_i386.deb... Mirror `flat` has been successfully updated. -openpgp: Good signature from "Johannes Ranke (CRAN Debian archive) " -openpgp: DSA key ID 06F90DE5381BA480 \ No newline at end of file +openpgp: Good signature from "Johannes Ranke " +openpgp: RSA key ID FCAE2A0E115C3D8A \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror23Test_gold b/system/t04_mirror/UpdateMirror23Test_gold index 845f82da..743624af 100644 --- a/system/t04_mirror/UpdateMirror23Test_gold +++ b/system/t04_mirror/UpdateMirror23Test_gold @@ -2,32 +2,28 @@ Applying filter... Building download queue... -Download queue: 12 items (25.14 MiB) +Download queue: 8 items (20.92 MiB) Downloading & parsing package files... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/InRelease... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release.gpg... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/binary-s390x/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/MANIFEST... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/MANIFEST.udebs... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/MD5SUMS... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/SHA256SUMS... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/generic/debian.exec... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/generic/initrd.debian... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/generic/kernel.debian... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/generic/parmfile.debian... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/tape/initrd.debian... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/tape/kernel.debian-nolabel... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/tape/kernel.debian... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/tape/parmfile.debian... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/main/installer-s390x/current/images/udeb.list... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/non-free/binary-s390x/Packages.bz2... -Downloading http://mirror.yandex.ru/debian/dists/wheezy/non-free/installer-s390x/current/images/SHA256SUMS... -Mirror `wheezy` has been successfully updated. -Packages filtered: 35003 -> 1. +Downloading http://mirror.yandex.ru/debian/dists/stretch/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release... +Downloading http://mirror.yandex.ru/debian/dists/stretch/Release.gpg... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/binary-s390x/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/MANIFEST.udebs... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/MD5SUMS... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/SHA256SUMS... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/generic/debian.exec... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/generic/initrd.debian... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/generic/kernel.debian... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/generic/parmfile.debian... +Downloading http://mirror.yandex.ru/debian/dists/stretch/main/installer-s390x/current/images/udeb.list... +Downloading http://mirror.yandex.ru/debian/dists/stretch/non-free/binary-s390x/Packages.gz... +Downloading http://mirror.yandex.ru/debian/dists/stretch/non-free/installer-s390x/current/images/SHA256SUMS... +Mirror `stretch` has been successfully updated. +Packages filtered: 49279 -> 1. gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " gpgv: Good signature from "Debian Archive Automatic Signing Key (8/jessie) " -gpgv: Good signature from "Wheezy Stable Release Key " +gpgv: Good signature from "Debian Stable Release Key (9/stretch) " gpgv: RSA key ID 2B90D010 gpgv: RSA key ID 46925553 -gpgv: RSA key ID 65FFB764 \ No newline at end of file +gpgv: RSA key ID 1A7B6500 \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror7Test_gold b/system/t04_mirror/UpdateMirror7Test_gold index 420a23e2..5688e905 100644 --- a/system/t04_mirror/UpdateMirror7Test_gold +++ b/system/t04_mirror/UpdateMirror7Test_gold @@ -1,96 +1,89 @@ Building download queue... -Download queue: 84 items (138.29 MiB) +Download queue: 78 items (200.63 MiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release.gpg... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/littler_0.3.2-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy-doc_1.0.3-30~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-dev_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-html_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-boot_1.3-18-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-boot_1.3-18-2~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-coda_0.18-1-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-codetools_0.2-14-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-codetools_0.2-15-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-html_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-info_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-pdf_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-recommended_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward-data_0.6.5-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/pkg-r-autopkgtest_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-boot_1.3-20-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-15-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-16-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.6-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-data_0.6.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_i386.deb... Mirror `flat` has been successfully updated. -gpgv: Good signature from "Johannes Ranke (CRAN Debian archive) " -gpgv: DSA key ID 381BA480 \ No newline at end of file +gpgv: aka "Johannes Ranke " +gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) " +gpgv: RSA key ID 115C3D8A \ No newline at end of file diff --git a/system/t04_mirror/UpdateMirror9Test_gold b/system/t04_mirror/UpdateMirror9Test_gold index f40a672d..81f9d49b 100644 --- a/system/t04_mirror/UpdateMirror9Test_gold +++ b/system/t04_mirror/UpdateMirror9Test_gold @@ -1,173 +1,176 @@ Building download queue... -Download queue: 160 items (184.38 MiB) +Download queue: 164 items (278.49 MiB) Downloading & parsing package files... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/InRelease... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Packages.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Release.gpg... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/Sources.bz2... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/boot_1.3-18-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/boot_1.3-18-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/boot_1.3-18-2~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/boot_1.3-18-2~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/boot_1.3-18.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/cluster_2.0.5-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/cluster_2.0.5-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/cluster_2.0.5.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/codetools_0.2-15-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/codetools_0.2-15-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/codetools_0.2-15.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/foreign_0.8.67-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/foreign_0.8.67-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/foreign_0.8.67.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/jags_4.0.0.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/kernsmooth_2.23-15-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/kernsmooth_2.23-15-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/kernsmooth_2.23-15-2~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/kernsmooth_2.23-15-2~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/kernsmooth_2.23-15.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/lattice_0.20-34-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/lattice_0.20-34-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/lattice_0.20-34.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/littler_0.3.2-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/littler_0.3.2-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/littler_0.3.2-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/littler_0.3.2.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/mgcv_1.8-16-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/mgcv_1.8-16-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/mgcv_1.8-16.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/nlme_3.1.131-2~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/nlme_3.1.131-2~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/nlme_3.1.131.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy-doc_1.0.3-30~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy2_2.5.6-1~jessiecran.3.2.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/python-rpy_1.0.3-30~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core-dbg_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-core_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-dev_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base-html_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base_3.3.3-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base_3.3.3-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-base_3.3.3.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-boot_1.3-18-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-boot_1.3-18-2~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-class_7.3-14.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-cluster_2.0.5-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-coda_0.18-1-1~jessiecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-coda_0.18-1-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-coda_0.18-1-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-coda_0.18-1.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-codetools_0.2-14-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-codetools_0.2-15-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-foreign_0.8.67-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-kernsmooth_2.23-15-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-lattice_0.20-34-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-littler_0.3.2-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mass_7.3-45.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-matrix_1.2-8-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-mgcv_1.8-16-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nlme_3.1.131-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-nnet_7.3-12.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rjags_4-6.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rodbc_1.3-14-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-rpart_4.1-10-2~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-spatial_7.3-11.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-cran-survival_2.40-1-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-html_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-info_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-doc-pdf_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-mathlib_3.3.3-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/r-recommended_3.3.3-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward-data_0.6.5-1~jessiecran.0_all.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0.debian.tar.xz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_amd64.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_armel.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5-1~jessiecran.0_i386.deb... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rkward_0.6.5.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rmatrix_1.2-8-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rmatrix_1.2-8-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rmatrix_1.2-8.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rodbc_1.3-14-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rodbc_1.3-14-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rodbc_1.3-14.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpart_4.1-10-2~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpart_4.1-10-2~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpart_4.1-10.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpy2_2.5.6-1~jessiecran.3.2.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpy2_2.5.6-1~jessiecran.3.2.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpy2_2.5.6.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpy_1.0.3-30~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpy_1.0.3-30~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/rpy_1.0.3.orig.tar.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/survival_2.40-1-1~jessiecran.0.diff.gz... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/survival_2.40-1-1~jessiecran.0.dsc... -Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran3/survival_2.40-1.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Sources.bz2... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/boot_1.3-20-2~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/boot_1.3-20-2~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/boot_1.3-20.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/cluster_2.0.7-1-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/cluster_2.0.7-1-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/cluster_2.0.7-1.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-15-2~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-15-2~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-15.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-16-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-16-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-16.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/foreign_0.8.71-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/foreign_0.8.71-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/foreign_0.8.71.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/kernsmooth_2.23-15-3~jessiecran.0.diff.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/kernsmooth_2.23-15-3~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/kernsmooth_2.23-15.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-35-1~jessiecran.0.diff.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-35-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-35.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-38-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-38-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-38.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-26-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-26-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-26.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-27-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-27-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-27.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/nlme_3.1.137-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/nlme_3.1.137-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/nlme_3.1.137.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/pkg-r-autopkgtest_20180403~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-boot_1.3-20-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0.diff.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-15-2~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-16-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.6-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0.diff.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0.diff.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.2-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.3-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-data_0.6.5-1~jessiecran.0_all.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_amd64.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_i386.deb... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-15-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-15-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-15.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-16-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-16-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-16.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rodbc_1.3-15-1~jessiecran.0.diff.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rodbc_1.3-15-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rodbc_1.3-15.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpart_4.1-13-1~jessiecran.0.diff.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpart_4.1-13-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpart_4.1-13.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpy2_2.9.5-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpy2_2.9.5-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpy2_2.9.5.orig.tar.gz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_2.43-3-1~jessiecran.0.debian.tar.xz... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_2.43-3-1~jessiecran.0.dsc... +Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_2.43-3.orig.tar.gz... Mirror `flat-src` has been successfully updated. -gpgv: Good signature from "Johannes Ranke (CRAN Debian archive) " -gpgv: DSA key ID 381BA480 \ No newline at end of file +gpgv: aka "Johannes Ranke " +gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) " +gpgv: RSA key ID 115C3D8A \ No newline at end of file diff --git a/system/t04_mirror/create.py b/system/t04_mirror/create.py index c2bb042e..3d6c5321 100644 --- a/system/t04_mirror/create.py +++ b/system/t04_mirror/create.py @@ -7,7 +7,7 @@ class CreateMirror1Test(BaseTest): """ create mirror: all architectures + all components """ - runCmd = "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ stretch" def check(self): self.check_output() @@ -18,7 +18,7 @@ class CreateMirror2Test(BaseTest): """ create mirror: all architectures and 1 component """ - runCmd = "aptly mirror create --ignore-signatures mirror2 http://mirror.yandex.ru/debian/ wheezy main" + runCmd = "aptly mirror create --ignore-signatures mirror2 http://mirror.yandex.ru/debian/ stretch main" def check(self): self.check_output() @@ -29,7 +29,7 @@ class CreateMirror3Test(BaseTest): """ create mirror: some architectures and 2 components """ - runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror3 http://mirror.yandex.ru/debian/ wheezy main contrib" + runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror3 http://mirror.yandex.ru/debian/ stretch main contrib" def check(self): self.check_output() @@ -42,7 +42,7 @@ class CreateMirror4Test(BaseTest): """ expectedCode = 1 - runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror4 http://mirror.yandex.ru/debian/ wheezy life" + runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror4 http://mirror.yandex.ru/debian/ stretch life" class CreateMirror5Test(BaseTest): @@ -51,7 +51,7 @@ class CreateMirror5Test(BaseTest): """ expectedCode = 1 - runCmd = "aptly -architectures=i386,nano68 mirror create --ignore-signatures mirror5 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly -architectures=i386,nano68 mirror create --ignore-signatures mirror5 http://mirror.yandex.ru/debian/ stretch" class CreateMirror6Test(BaseTest): @@ -68,7 +68,7 @@ class CreateMirror7Test(BaseTest): """ create mirror: architectures fixed via config file """ - runCmd = "aptly mirror create --ignore-signatures mirror7 http://mirror.yandex.ru/debian/ wheezy main contrib" + runCmd = "aptly mirror create --ignore-signatures mirror7 http://mirror.yandex.ru/debian/ stretch main contrib" configOverride = {"architectures": ["i386", "amd64"]} def check(self): @@ -81,9 +81,9 @@ class CreateMirror8Test(BaseTest): create mirror: already exists """ fixtureCmds = [ - "aptly mirror create --ignore-signatures mirror8 http://mirror.yandex.ru/debian/ wheezy main contrib" + "aptly mirror create --ignore-signatures mirror8 http://mirror.yandex.ru/debian/ stretch main contrib" ] - runCmd = "aptly mirror create --ignore-signatures mirror8 http://mirror.yandex.ru/debian/ wheezy main contrib" + runCmd = "aptly mirror create --ignore-signatures mirror8 http://mirror.yandex.ru/debian/ stretch main contrib" expectedCode = 1 @@ -91,11 +91,11 @@ class CreateMirror9Test(BaseTest): """ create mirror: repo with InRelease verification """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://mirror.yandex.ru/debian/ wheezy-backports" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://mirror.yandex.ru/debian/ stretch-backports" fixtureGpg = True requiresGPG1 = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using|Warning: using insecure memory!\n', '', s) def check(self): @@ -110,12 +110,12 @@ class CreateMirror10Test(BaseTest): """ create mirror: repo with InRelease verification, failure """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://mirror.yandex.ru/debian-backports/ squeeze-backports" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://mirror.yandex.ru/debian/ stretch-backports" fixtureGpg = False gold_processor = BaseTest.expand_environ expectedCode = 1 - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using|gpgv: keyblock resource .*$|gpgv: Can\'t check signature: .*$', '', s, flags=re.MULTILINE) @@ -123,10 +123,10 @@ class CreateMirror11Test(BaseTest): """ create mirror: repo with Release + Release.gpg verification """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://mirror.yandex.ru/debian/ stretch" fixtureGpg = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) def check(self): @@ -138,12 +138,12 @@ class CreateMirror12Test(BaseTest): """ create mirror: repo with Release+Release.gpg verification, failure """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://mirror.yandex.ru/debian/ stretch" fixtureGpg = False gold_processor = BaseTest.expand_environ expectedCode = 1 - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using|gpgv: keyblock resource .*$|gpgv: Can\'t check signature: .*$', '', s, flags=re.MULTILINE) @@ -151,7 +151,7 @@ class CreateMirror13Test(BaseTest): """ create mirror: skip verification using config file """ - runCmd = "aptly mirror create mirror13 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly mirror create mirror13 http://mirror.yandex.ru/debian/ stretch" configOverride = {"gpgDisableVerify": True} def check(self): @@ -163,10 +163,10 @@ class CreateMirror14Test(BaseTest): """ create mirror: flat repository """ - runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 https://cloud.r-project.org/bin/linux/debian jessie-cran3/" + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 https://cloud.r-project.org/bin/linux/debian jessie-cran35/" fixtureGpg = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) def check(self): @@ -181,7 +181,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 jessie-cran3/ main" + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 https://cloud.r-project.org/bin/linux/debian jessie-cran35/ main" expectedCode = 1 @@ -191,14 +191,14 @@ class CreateMirror16Test(BaseTest): """ expectedCode = 1 - runCmd = "aptly -architectures=source mirror create -ignore-signatures mirror16 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly -architectures=source mirror create -ignore-signatures mirror16 http://mirror.yandex.ru/debian/ stretch" class CreateMirror17Test(BaseTest): """ create mirror: mirror with sources enabled """ - runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-sources mirror17 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-sources mirror17 http://mirror.yandex.ru/debian/ stretch" def check(self): self.check_output() @@ -217,7 +217,7 @@ class CreateMirror18Test(BaseTest): runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror18 ppa:gladky-anton/gnuplot" - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) def check(self): @@ -231,9 +231,9 @@ class CreateMirror19Test(BaseTest): """ fixtureGpg = True - runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror19 http://security.debian.org/ wheezy/updates main" + runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror19 http://security.debian.org/ stretch/updates main" - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) def check(self): @@ -250,11 +250,11 @@ class CreateMirror20Test(BaseTest): """ fixtureGpg = True - runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror20 http://security.debian.org/ wheezy/updates main" + runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror20 http://security.debian.org/ stretch/updates main" environmentOverride = {"HTTP_PROXY": "127.0.0.1:3137"} expectedCode = 1 - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return s.replace('getsockopt: ', '').replace('connect: ', ''). \ replace('proxyconnect tcp', 'http: error connecting to proxy http://127.0.0.1:3137') @@ -266,7 +266,7 @@ class CreateMirror21Test(BaseTest): runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror21 http://pkg.jenkins-ci.org/debian-stable binary/" fixtureGpg = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) def check(self): @@ -284,7 +284,7 @@ class CreateMirror22Test(BaseTest): """ create mirror: mirror with filter """ - runCmd = "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror22 http://security.debian.org/ wheezy/updates main" + runCmd = "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror22 http://security.debian.org/ stretch/updates main" def check(self): def removeDates(s): @@ -298,7 +298,7 @@ class CreateMirror23Test(BaseTest): """ create mirror: mirror with wrong filter """ - runCmd = "aptly mirror create -ignore-signatures -filter='nginx | ' mirror23 http://security.debian.org/ wheezy/updates main" + runCmd = "aptly mirror create -ignore-signatures -filter='nginx | ' mirror23 http://security.debian.org/ stretch/updates main" expectedCode = 1 @@ -306,10 +306,10 @@ class CreateMirror24Test(BaseTest): """ create mirror: disable config value with option """ - runCmd = "aptly mirror create -ignore-signatures=false -keyring=aptlytest.gpg mirror24 http://security.debian.org/ wheezy/updates main" + runCmd = "aptly mirror create -ignore-signatures=false -keyring=aptlytest.gpg mirror24 http://security.debian.org/ stretch/updates main" fixtureGpg = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) configOverride = { @@ -321,7 +321,7 @@ class CreateMirror25Test(BaseTest): """ create mirror: mirror with udebs enabled """ - runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-udebs mirror25 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-udebs mirror25 http://mirror.yandex.ru/debian/ stretch" def check(self): self.check_output() @@ -366,11 +366,11 @@ class CreateMirror29Test(BaseTest): """ create mirror: repo with InRelease verification (internal GPG implementation) """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://mirror.yandex.ru/debian/ wheezy-backports" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://mirror.yandex.ru/debian/ stretch-backports" configOverride = {"gpgProvider": "internal"} fixtureGpg = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) @@ -384,7 +384,7 @@ class CreateMirror30Test(BaseTest): fixtureGpg = False expectedCode = 1 - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) @@ -392,11 +392,11 @@ class CreateMirror31Test(BaseTest): """ create mirror: repo with Release + Release.gpg verification (internal GPG implementation) """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://mirror.yandex.ru/debian/ stretch" configOverride = {"gpgProvider": "internal"} fixtureGpg = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using', '', s) @@ -404,11 +404,11 @@ class CreateMirror32Test(BaseTest): """ create mirror: repo with Release + Release.gpg verification (gpg2) """ - runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror32 http://mirror.yandex.ru/debian/ wheezy" + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror32 http://mirror.yandex.ru/debian/ stretch" fixtureGpg = True requiresGPG2 = True - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return \ re.sub(r'([A-F0-9]{8})[A-F0-9]{8}', r'\1', re.sub(r'^gpgv: (Signature made .+|.+using RSA key.+)\n', '', s, flags=re.MULTILINE)) diff --git a/system/t04_mirror/drop.py b/system/t04_mirror/drop.py index 17313612..953059d0 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://mirror.yandex.ru/debian/ wheezy", + "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ stretch", ] runCmd = "aptly mirror drop mirror1" diff --git a/system/t04_mirror/edit.py b/system/t04_mirror/edit.py index 7c1862e5..4a27506c 100644 --- a/system/t04_mirror/edit.py +++ b/system/t04_mirror/edit.py @@ -48,7 +48,7 @@ class EditMirror5Test(BaseTest): edit mirror: remove filter """ fixtureCmds = [ - "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror5 http://security.debian.org/ wheezy/updates main", + "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' mirror5 http://security.debian.org/ stretch/updates main", ] runCmd = "aptly mirror edit -filter= mirror5" @@ -64,20 +64,24 @@ class EditMirror6Test(BaseTest): """ edit mirror: change architectures """ - fixtureDB = True - runCmd = "aptly mirror edit -ignore-signatures -architectures=amd64,s390 wheezy-main" + fixtureCmds = [ + "aptly mirror create -ignore-signatures -architectures=amd64 mirror6 http://mirror.yandex.ru/debian stretch main" + ] + runCmd = "aptly mirror edit -ignore-signatures -architectures=amd64,i386 mirror6" def check(self): self.check_output() - self.check_cmd_output("aptly mirror show wheezy-main", "mirror_show", match_prepare=lambda s: re.sub(r"Last update: [0-9:+A-Za-z -]+\n", "", s)) + self.check_cmd_output("aptly mirror show mirror6", "mirror_show", match_prepare=lambda s: re.sub(r"Last update: [0-9:+A-Za-z -]+\n", "", s)) class EditMirror7Test(BaseTest): """ edit mirror: change architectures to missing archs """ - fixtureDB = True - runCmd = "aptly mirror edit -ignore-signatures -architectures=amd64,x56 wheezy-main" + fixtureCmds = [ + "aptly mirror create -ignore-signatures -architectures=amd64 stretch http://mirror.yandex.ru/debian stretch main" + ] + runCmd = "aptly mirror edit -ignore-signatures -architectures=amd64,x56 stretch" expectedCode = 1 @@ -108,5 +112,5 @@ class EditMirror10Test(BaseTest): edit mirror: change archive url """ requiresFTP = True - fixtureCmds = ["aptly mirror create -ignore-signatures mirror10 ftp://ftp.ru.debian.org/debian wheezy main"] + 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" diff --git a/system/t04_mirror/list.py b/system/t04_mirror/list.py index 2c4b7d30..0e8e529f 100644 --- a/system/t04_mirror/list.py +++ b/system/t04_mirror/list.py @@ -6,10 +6,10 @@ class ListMirror1Test(BaseTest): list mirrors: regular list """ fixtureCmds = [ - "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy", - "aptly mirror create -with-sources --ignore-signatures mirror2 http://mirror.yandex.ru/debian/ wheezy contrib", - "aptly -architectures=i386 mirror create --ignore-signatures mirror3 http://mirror.yandex.ru/debian/ wheezy non-free", - "aptly mirror create -ignore-signatures mirror4 http://download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_7.0/ ./", + "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ stretch", + "aptly mirror create -with-sources --ignore-signatures mirror2 http://mirror.yandex.ru/debian/ stretch contrib", + "aptly -architectures=i386 mirror create --ignore-signatures mirror3 http://mirror.yandex.ru/debian/ stretch non-free", + "aptly mirror create -ignore-signatures mirror4 http://download.opensuse.org/repositories/Apache:/MirrorBrain/Debian_9.0/ ./", ] runCmd = "aptly mirror list" diff --git a/system/t04_mirror/show.py b/system/t04_mirror/show.py index cd721ced..e6407ea6 100644 --- a/system/t04_mirror/show.py +++ b/system/t04_mirror/show.py @@ -6,7 +6,7 @@ class ShowMirror1Test(BaseTest): """ show mirror: regular mirror """ - fixtureCmds = ["aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy"] + fixtureCmds = ["aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ stretch"] runCmd = "aptly mirror show mirror1" @@ -25,7 +25,7 @@ class ShowMirror3Test(BaseTest): fixtureDB = True runCmd = "aptly mirror show --with-packages wheezy-contrib" - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r"Last update: [0-9:+A-Za-z -]+\n", "", s) @@ -34,9 +34,9 @@ class ShowMirror4Test(BaseTest): show mirror: mirror with filter """ fixtureCmds = [ - "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' -filter-with-deps=true mirror4 http://security.debian.org/ wheezy/updates main" + "aptly mirror create -ignore-signatures -filter='nginx | Priority (required)' -filter-with-deps=true mirror4 http://security.debian.org/ stretch/updates main" ] runCmd = "aptly mirror show mirror4" - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r"(Date|Valid-Until): [,0-9:+A-Za-z -]+\n", "", s) diff --git a/system/t04_mirror/update.py b/system/t04_mirror/update.py index bba29284..ef4c2669 100644 --- a/system/t04_mirror/update.py +++ b/system/t04_mirror/update.py @@ -97,7 +97,7 @@ class UpdateMirror7Test(BaseTest): """ fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg -architectures=amd64 flat https://cloud.r-project.org/bin/linux/debian jessie-cran3/", + "aptly mirror create --keyring=aptlytest.gpg -architectures=amd64 flat https://cloud.r-project.org/bin/linux/debian jessie-cran35/", ] runCmd = "aptly mirror update --keyring=aptlytest.gpg flat" outputMatchPrepare = filterOutSignature @@ -125,7 +125,7 @@ class UpdateMirror9Test(BaseTest): """ fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg -with-sources flat-src https://cloud.r-project.org/bin/linux/debian jessie-cran3/", + "aptly mirror create --keyring=aptlytest.gpg -with-sources flat-src https://cloud.r-project.org/bin/linux/debian jessie-cran35/", ] runCmd = "aptly mirror update --keyring=aptlytest.gpg flat-src" outputMatchPrepare = filterOutSignature @@ -140,7 +140,7 @@ class UpdateMirror10Test(BaseTest): """ 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 jessie-cran3/", + "aptly mirror create -keyring=aptlytest.gpg -with-sources -filter='!(Name (% r-*)), !($$PackageType (source))' flat-src https://cloud.r-project.org/bin/linux/debian jessie-cran35/", ] runCmd = "aptly mirror update --keyring=aptlytest.gpg flat-src" outputMatchPrepare = filterOutSignature @@ -157,10 +157,10 @@ class UpdateMirror11Test(BaseTest): fixtureGpg = True requiresFTP = True fixtureCmds = [ - "aptly mirror create -keyring=aptlytest.gpg -filter='Priority (required), Name (% s*)' -architectures=i386 wheezy-main ftp://ftp.ru.debian.org/debian/ wheezy main", + "aptly mirror create -keyring=aptlytest.gpg -filter='Priority (required), Name (% s*)' -architectures=i386 stretch-main ftp://ftp.ru.debian.org/debian/ stretch main", ] outputMatchPrepare = filterOutSignature - runCmd = "aptly mirror update -keyring=aptlytest.gpg wheezy-main" + runCmd = "aptly mirror update -keyring=aptlytest.gpg stretch-main" def output_processor(self, output): return "\n".join(sorted(output.split("\n"))) @@ -173,9 +173,9 @@ class UpdateMirror12Test(BaseTest): longTest = False fixtureGpg = True fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg)' -with-udebs wheezy http://mirror.yandex.ru/debian/ wheezy main non-free", + "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://mirror.yandex.ru/debian/ stretch main non-free", ] - runCmd = "aptly mirror update -keyring=aptlytest.gpg wheezy" + runCmd = "aptly mirror update -keyring=aptlytest.gpg stretch" outputMatchPrepare = filterOutSignature def output_processor(self, output): @@ -265,9 +265,9 @@ class UpdateMirror17Test(BaseTest): """ longTest = False fixtureCmds = [ - "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev wheezy http://mirror.yandex.ru/debian wheezy main", + "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev stretch http://mirror.yandex.ru/debian stretch main", ] - runCmd = "aptly mirror update -ignore-signatures wheezy" + runCmd = "aptly mirror update -ignore-signatures stretch" def output_processor(self, output): return "\n".join(sorted(output.split("\n"))) @@ -275,15 +275,15 @@ class UpdateMirror17Test(BaseTest): def prepare(self): super(UpdateMirror17Test, self).prepare() - os.makedirs(os.path.join(os.environ["HOME"], ".aptly", "pool", "00", "35")) + os.makedirs(os.path.join(os.environ["HOME"], ".aptly", "pool", "e0", "bb")) - shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "libboost-program-options-dev_1.49.0.1_i386.deb"), - os.path.join(os.environ["HOME"], ".aptly", "pool", "00", "35")) + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "libboost-program-options-dev_1.62.0.1_i386.deb"), + os.path.join(os.environ["HOME"], ".aptly", "pool", "e0", "bb")) def check(self): super(UpdateMirror17Test, self).check() # check pool - self.check_not_exists('pool/c7/6b/4bd12fd92e4dfe1b55b18a67a669_libboost-program-options-dev_1.49.0.1_i386.deb') + self.check_not_exists('pool/db/a2/f225645a2a8bd8378e2f64bd1faa_libboost-program-options-dev_1.62.0.1_i386.deb') class UpdateMirror18Test(BaseTest): @@ -292,9 +292,9 @@ class UpdateMirror18Test(BaseTest): """ longTest = False fixtureCmds = [ - "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev wheezy http://mirror.yandex.ru/debian wheezy main", + "aptly mirror create -ignore-signatures -architectures=i386 -filter=libboost-program-options-dev stretch http://mirror.yandex.ru/debian stretch main", ] - runCmd = "aptly mirror update -ignore-signatures wheezy" + runCmd = "aptly mirror update -ignore-signatures stretch" configOverride = {'skipLegacyPool': True} def output_processor(self, output): @@ -303,15 +303,15 @@ class UpdateMirror18Test(BaseTest): def prepare(self): super(UpdateMirror18Test, self).prepare() - os.makedirs(os.path.join(os.environ["HOME"], ".aptly", "pool", "00", "35")) + os.makedirs(os.path.join(os.environ["HOME"], ".aptly", "pool", "e0", "bb")) - shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "libboost-program-options-dev_1.49.0.1_i386.deb"), - os.path.join(os.environ["HOME"], ".aptly", "pool", "00", "35")) + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "libboost-program-options-dev_1.62.0.1_i386.deb"), + os.path.join(os.environ["HOME"], ".aptly", "pool", "e0", "bb")) def check(self): super(UpdateMirror18Test, self).check() # check pool - self.check_exists('pool/c7/6b/4bd12fd92e4dfe1b55b18a67a669_libboost-program-options-dev_1.49.0.1_i386.deb') + self.check_exists('pool/db/a2/f225645a2a8bd8378e2f64bd1faa_libboost-program-options-dev_1.62.0.1_i386.deb') class UpdateMirror19Test(BaseTest): @@ -336,7 +336,7 @@ class UpdateMirror20Test(BaseTest): """ fixtureGpg = True fixtureCmds = [ - "aptly mirror create --keyring=aptlytest.gpg -architectures=amd64 flat https://cloud.r-project.org/bin/linux/debian jessie-cran3/", + "aptly mirror create --keyring=aptlytest.gpg -architectures=amd64 flat https://cloud.r-project.org/bin/linux/debian jessie-cran35/", ] configOverride = {"gpgProvider": "internal"} runCmd = "aptly mirror update --keyring=aptlytest.gpg flat" @@ -374,7 +374,7 @@ class UpdateMirror22Test(BaseTest): ] runCmd = "aptly mirror update --keyring=aptlytest.gpg libnvidia-container" - def outputMatchPrepare(_, s): + def outputMatchPrepare(self, s): return re.sub(r'Signature made .* using|Packages filtered: .* -> 0.', '', s) @@ -385,9 +385,9 @@ class UpdateMirror23Test(BaseTest): longTest = False fixtureGpg = True fixtureCmds = [ - "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer wheezy http://mirror.yandex.ru/debian/ wheezy main non-free", + "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://mirror.yandex.ru/debian/ stretch main non-free", ] - runCmd = "aptly mirror update -keyring=aptlytest.gpg wheezy" + runCmd = "aptly mirror update -keyring=aptlytest.gpg stretch" outputMatchPrepare = filterOutSignature def output_processor(self, output): diff --git a/system/t05_snapshot/CreateSnapshot6Test_snapshot_show b/system/t05_snapshot/CreateSnapshot6Test_snapshot_show index 4407e0a7..3e81a5a3 100644 --- a/system/t05_snapshot/CreateSnapshot6Test_snapshot_show +++ b/system/t05_snapshot/CreateSnapshot6Test_snapshot_show @@ -1,9 +1,10 @@ Name: snap6 Description: Snapshot from local repo [local-repo] -Number of packages: 3 +Number of packages: 4 Sources: local-repo [local] Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t06_publish/PublishRepo1Test_binary b/system/t06_publish/PublishRepo1Test_binary index 1fd182e4..d65c4639 100644 --- a/system/t06_publish/PublishRepo1Test_binary +++ b/system/t06_publish/PublishRepo1Test_binary @@ -1,27 +1,54 @@ + (name, value) pairs from the user, via conventional methods such as + (name, value) pairs from the user, via conventional methods such as + . + . . . Boost version (currently 1.49). + Boost version (currently 1.62). + Library to let program developers obtain program options, that is Library to let program developers obtain program options, that is This package forms part of the Boost C++ Libraries collection. + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default This package is a dependency package, which depends on Debian's default command line and config file. + command line and config file. +Architecture: i386 Architecture: i386 Depends: libboost-program-options1.49-dev +Depends: libboost-program-options1.62-dev +Description: program options library for C++ (default version) Description: program options library for C++ (default version) Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb Homepage: http://www.boost.org/libs/program_options/ +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 10 Installed-Size: 26 MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +MD5sum: e0bb923f6ae623e44ca763a361e99b8f Maintainer: Debian Boost Team +Maintainer: Debian Boost Team +Multi-Arch: same +Package: libboost-program-options-dev Package: libboost-program-options-dev Priority: optional +Priority: optional SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA1: 37460558b22fa42e2eaf713f171b9f9f557489f3 SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +SHA256: dba2f225645a2a8bd8378e2f64bd1faa7d24a90c4555538b4a83f71a0d0d25ac +SHA512: 606b761b90cee0860d07468f0d0bce89166f3b45491c53e65123590a13dbf04f0bc0b73b298d21bebcc4eea61f804da882f12ee15043eba2cd9192acbebf465e SHA512: d7302241373da972aa9b9e71d2fd769b31a38f71182aa71bc0d69d090d452c69bb74b8612c002ccf8a89c279ced84ac27177c8b92d20f00023b3d268e6cec69c Section: libdevel +Section: libdevel Size: 2738 +Size: 3428 Source: boost-defaults -Version: 1.49.0.1 \ No newline at end of file +Source: boost-defaults +Version: 1.49.0.1 +Version: 1.62.0.1 \ No newline at end of file diff --git a/system/t06_publish/PublishSnapshot17Test_binary b/system/t06_publish/PublishSnapshot17Test_binary index 1fd182e4..d65c4639 100644 --- a/system/t06_publish/PublishSnapshot17Test_binary +++ b/system/t06_publish/PublishSnapshot17Test_binary @@ -1,27 +1,54 @@ + (name, value) pairs from the user, via conventional methods such as + (name, value) pairs from the user, via conventional methods such as + . + . . . Boost version (currently 1.49). + Boost version (currently 1.62). + Library to let program developers obtain program options, that is Library to let program developers obtain program options, that is This package forms part of the Boost C++ Libraries collection. + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default This package is a dependency package, which depends on Debian's default command line and config file. + command line and config file. +Architecture: i386 Architecture: i386 Depends: libboost-program-options1.49-dev +Depends: libboost-program-options1.62-dev +Description: program options library for C++ (default version) Description: program options library for C++ (default version) Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb Homepage: http://www.boost.org/libs/program_options/ +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 10 Installed-Size: 26 MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +MD5sum: e0bb923f6ae623e44ca763a361e99b8f Maintainer: Debian Boost Team +Maintainer: Debian Boost Team +Multi-Arch: same +Package: libboost-program-options-dev Package: libboost-program-options-dev Priority: optional +Priority: optional SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA1: 37460558b22fa42e2eaf713f171b9f9f557489f3 SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +SHA256: dba2f225645a2a8bd8378e2f64bd1faa7d24a90c4555538b4a83f71a0d0d25ac +SHA512: 606b761b90cee0860d07468f0d0bce89166f3b45491c53e65123590a13dbf04f0bc0b73b298d21bebcc4eea61f804da882f12ee15043eba2cd9192acbebf465e SHA512: d7302241373da972aa9b9e71d2fd769b31a38f71182aa71bc0d69d090d452c69bb74b8612c002ccf8a89c279ced84ac27177c8b92d20f00023b3d268e6cec69c Section: libdevel +Section: libdevel Size: 2738 +Size: 3428 Source: boost-defaults -Version: 1.49.0.1 \ No newline at end of file +Source: boost-defaults +Version: 1.49.0.1 +Version: 1.62.0.1 \ No newline at end of file diff --git a/system/t06_publish/PublishSnapshot35Test_gold b/system/t06_publish/PublishSnapshot35Test_gold index 0365afcb..ee7b2bb0 100644 --- a/system/t06_publish/PublishSnapshot35Test_gold +++ b/system/t06_publish/PublishSnapshot35Test_gold @@ -4,10 +4,10 @@ Finalizing metadata files... Signing file 'Release' with gpg, please enter your passphrase when prompted: Clearsigning file 'Release' with gpg, please enter your passphrase when prompted: -Snapshot wheezy has been successfully published. +Snapshot stretch has been successfully published. Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. Now you can add following line to apt sources: - deb http://your-server/ wheezy main + deb http://your-server/ stretch main Don't forget to add your GPG key to apt with apt-key. You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/system/t06_publish/PublishSnapshot35Test_packages_amd64 b/system/t06_publish/PublishSnapshot35Test_packages_amd64 index 7301d557..67c951ea 100644 --- a/system/t06_publish/PublishSnapshot35Test_packages_amd64 +++ b/system/t06_publish/PublishSnapshot35Test_packages_amd64 @@ -3,83 +3,244 @@ + + + + + + + +Architecture: all +Architecture: all +Architecture: all Architecture: all Architecture: amd64 Architecture: amd64 Architecture: amd64 -Depends: libbz2-1.0, libc6 (>= 2.4), libreadline6 (>= 6.0), libusb-0.1-4 (>= 2:0.1.12), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info, gpgv -Depends: libbz2-1.0, libc6 (>= 2.4), zlib1g (>= 1:1.1.4) -Depends: libc6 (>= 2.4), libcurl3-gnutls (>= 7.16.2), libldap-2.4-2 (>= 2.4.7), gnupg -Description-Md5: 19709c7fc27595437225fd34d295b347 +Architecture: amd64 +Architecture: amd64 +Architecture: amd64 +Architecture: amd64 +Breaks: debsig-verify (<< 0.15), dirmngr (<< 2.1.18-8~deb9u4), gnupg2 (<< 2.1.11-7+exp1), libgnupg-interface-perl (<< 0.52-3), libgnupg-perl (<= 0.19-1), libmail-gnupg-perl (<= 0.22-1), monkeysphere (<< 0.38~), php-crypt-gpg (<= 1.4.1-1), python-apt (<= 1.1.0~beta4), python-gnupg (<< 0.3.8-3), python3-apt (<= 1.1.0~beta4) +Breaks: gnupg (<< 2.1.14-2~), gnupg2 (<< 2.1.14-2~) +Breaks: gnupg2 (<< 2.0.21-2), gpgv2 (<< 2.1.11-7+exp1), python-debian (<< 0.1.29) +Breaks: gnupg2 (<< 2.1.10-2) +Breaks: gnupg2 (<< 2.1.10-2) +Depends: adduser, lsb-base (>= 3.2-13), libassuan0 (>= 2.4.0), libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgnutls30 (>= 3.5.6), libgpg-error0 (>= 1.21), libksba8 (>= 1.3.4), libldap-2.4-2 (>= 2.4.7), libnpth0 (>= 0.90) +Depends: gnupg (>= 2.1.18-8~deb9u4) +Depends: gnupg-agent (= 2.1.18-8~deb9u4), libassuan0 (>= 2.0.1), libbz2-1.0, libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), libksba8 (>= 1.3.4), libreadline7 (>= 6.0), libsqlite3-0 (>= 3.7.15), zlib1g (>= 1:1.1.4) +Depends: gnupg-agent (= 2.1.18-8~deb9u4), libassuan0 (>= 2.0.1), libc6 (>= 2.14), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), libksba8 (>= 1.3.4), libreadline7 (>= 6.0) +Depends: gnupg-agent (= 2.1.18-8~deb9u4), libassuan0 (>= 2.2.0), libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), libksba8 (>= 1.3.4), libnpth0 (>= 0.90), libusb-1.0-0 (>= 2:1.0.9) +Depends: gpgv (>= 2.1.18-8~deb9u4) +Depends: libbz2-1.0, libc6 (>= 2.14), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), zlib1g (>= 1:1.1.4) +Depends: pinentry-curses | pinentry, libassuan0 (>= 2.3.0), libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.25), libnpth0 (>= 0.90), libreadline7 (>= 6.0) Description-Md5: 3f8767984a5f4b323de309446d07435d -Description-Md5: 55306a4e1e1fd63e577767c1b9f5161c -Description-Md5: 8bbdb812806fb623e26b7b93f549c74b +Description-Md5: 4ea8f4f4d6a0a387a4a3aeba3e6cc888 +Description-Md5: 7fad035451f503be001479931e85b925 +Description-Md5: 842ffff693d698ec180bc5b9b7ce7ffa +Description-Md5: 89b483348e055462163fcb51eb9f4d69 +Description-Md5: 8f75eade9d1c231674b0f42baf637938 +Description-Md5: b00f9e73860378b7bce07e0ad3dd2e88 +Description-Md5: d09741caa0bbe13153a4e4c54325393d +Description-Md5: e0a75e34d2b98be880e3fca6a5088ca5 +Description-Md5: e6cd72adf0d5f886dd5a174557278b63 +Description-Md5: f3169025ef42efce30c47d3dda21ff8a +Description: GNU privacy guard - S/MIME version Description: GNU privacy guard - a free PGP replacement -Description: GNU privacy guard - a free PGP replacement (cURL) +Description: GNU privacy guard - a free PGP replacement (dummy transitional package) +Description: GNU privacy guard - cryptographic agent +Description: GNU privacy guard - localization files +Description: GNU privacy guard - network certificate management service Description: GNU privacy guard - signature verification tool +Description: GNU privacy guard - signature verification tool (dummy transitional package) Description: GNU privacy guard - signature verification tool (win32 build) -Filename: pool/main/g/gnupg/gnupg-curl_1.4.12-7+deb7u7_amd64.deb -Filename: pool/main/g/gnupg/gnupg_1.4.12-7+deb7u7_amd64.deb -Filename: pool/main/g/gnupg/gpgv-win32_1.4.12-7+deb7u7_all.deb -Filename: pool/main/g/gnupg/gpgv_1.4.12-7+deb7u7_amd64.deb -Homepage: http://www.gnupg.org -Homepage: http://www.gnupg.org -Homepage: http://www.gnupg.org -Homepage: http://www.gnupg.org -Installed-Size: 130 -Installed-Size: 1480 -Installed-Size: 438 -Installed-Size: 4962 -MD5sum: 17916456c6e84c434205bad15e98e902 -MD5sum: 56699ccfefc9bb6c39325d746363c018 -MD5sum: 5f15f3ac2f586b95ab21c3f83fd1bf35 -MD5sum: 91a07e1a42703f0ce59c4a1de60e961d -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers +Description: GNU privacy guard - smart card support +Description: minimal signature verification tool (static build) +Enhances: gnupg +Enhances: gnupg, gpgsm, squid +Enhances: gnupg-agent +Filename: pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_amd64.deb +Filename: pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_amd64.deb +Filename: pool/main/g/gnupg2/gnupg-l10n_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gnupg2_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_amd64.deb +Filename: pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_amd64.deb +Filename: pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_amd64.deb +Filename: pool/main/g/gnupg2/gpgv-win32_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gpgv2_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_amd64.deb +Filename: pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_amd64.deb +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Installed-Size: 1088 +Installed-Size: 1300 +Installed-Size: 1362 +Installed-Size: 2093 +Installed-Size: 2625 +Installed-Size: 309 +Installed-Size: 309 +Installed-Size: 4257 +Installed-Size: 721 +Installed-Size: 740 +Installed-Size: 795 +MD5sum: 193e30e603474bf8077c581ec60f076d +MD5sum: 2be2941f19e9b24186e46f942b9c692a +MD5sum: 3112b2d2e7a9b2ca6d5da595233b45e4 +MD5sum: 397ad47d4296fcc69e3858fd0ec9cac8 +MD5sum: 54d9563b5640dd47570713f2bfe60176 +MD5sum: 559919711bff1dba5d38b3519147c30b +MD5sum: 687eb75d57f9d77179376fd0fda977a3 +MD5sum: 75f6c65ee2ded9ea48dda540bec43e5f +MD5sum: 766fbe76bddbc65d3c6ddbda14003039 +MD5sum: 7f5ba2298e8729616fd4aaecf800c00a +MD5sum: f43699320d439e28e6d72781d41673b5 +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers Multi-Arch: foreign Multi-Arch: foreign Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Package: dirmngr Package: gnupg -Package: gnupg-curl +Package: gnupg-agent +Package: gnupg-l10n +Package: gnupg2 +Package: gpgsm Package: gpgv +Package: gpgv-static Package: gpgv-win32 +Package: gpgv2 +Package: scdaemon +Priority: extra +Priority: extra Priority: extra Priority: important Priority: important Priority: optional -Recommends: libldap-2.4-2 (>= 2.4.7), gnupg-curl -SHA1: 8dae53bc42d1f35054ce35124da8b92f6097f1c2 -SHA1: bc5c60462be7702988e083cf68c7f8edfcb962a5 -SHA1: c03f15e5ee0fba0b77a51e063db87708aee0e422 -SHA1: df8a0ef18df0fb86167128ac6c31d6709c2f9c6b -SHA256: 27760f636f6dbfe387dfbede1131fe7a0dd5fd3b0ab562213193ffa7cfcadfb5 -SHA256: 2920249908a8297f85006def6a55fb99abfcc8466cac2b9f28d01ce8315df065 -SHA256: 8361f45f51a7e70e3367e5b2df59fa8defc8648a76afa4159da3f249460f5b33 -SHA256: b626c3320c0ba2c41c5214bf8175c713f3713cc393e9361a977dc0202c197875 -SHA512: 7223dbbf4a847c48f040c3b7dd1e9f3b45b1a837794aa8368456cc2d522a21180751755a6ea0d919f8cb4b092d742e525e138c6ea9185aedea55bc1d85475e76 -SHA512: ad84c2798fd91f94782f08f371007e62fe933bcd079041874e3e54d6e91a66f953a8b8da2d563e88d800fd9819353362f0e700701ddcf5b44f490123e57f8b38 -SHA512: adda521ac2837bba7bf4e4a6a633f79187dff5ec3806d1bbe97544ac0a00024a41583f70434362755ef33aa788f79c7dc1a0bdb3daaf9a0465d1b90600ba30ee -SHA512: bd1d7374808541d85fdb965c91b1ac2d0a98580cfac524d2bbdd6021fa6689a54ce7effd9c899237300b2c4966a824c7ed4aa6a4f6c4cb869a7163702960d68c +Priority: optional +Priority: optional +Priority: optional +Priority: optional +Priority: optional +Provides: gpg +Provides: gpg-agent +Recommends: debian-archive-keyring, debootstrap +Recommends: dirmngr (= 2.1.18-8~deb9u4) +Recommends: dirmngr (= 2.1.18-8~deb9u4), gnupg-l10n (= 2.1.18-8~deb9u4) +Recommends: gnupg (= 2.1.18-8~deb9u4) +Recommends: gnupg (= 2.1.18-8~deb9u4) | gpgsm +Replaces: gnupg (<< 2.1.14-2~), gnupg2 (<< 2.1.14-2~) +Replaces: gnupg2 (<< 2.0.21-2), gpgv2 (<< 2.1.11-7+exp1) +Replaces: gnupg2 (<< 2.1.10-2) +Replaces: gnupg2 (<< 2.1.10-2) +Replaces: gnupg2 (<< 2.1.11-7+exp1) +SHA1: 1021b11c9747e6ccaba19f000bba17492e3c10a1 +SHA1: 1f3c3f21f58b7ce82cad8fdd1f280c3bb3c93a39 +SHA1: 271b69766af814d4d1c211659123190a7f548cdb +SHA1: 29516b0e1fa0169017d98bc166b25f69a5b22946 +SHA1: 3fb61cff1c5129891a914a4c22480c7d17cea4a0 +SHA1: 58ad4dab4b0a76cfe3ca9a71d16cdc5f1724d2e8 +SHA1: 66b2190dd517ea152476adc996c7c4e0e2330cd5 +SHA1: 7f1129f9482d9235e830833eef736ee96d09d791 +SHA1: b2018bdcae49accd4539b35a41bf011d96ad6487 +SHA1: deb109c6e61d1d37b1f74d025bb3f19121d72dd9 +SHA1: e30efc7ffa9469d743de0d430092a0fe1f001e43 +SHA256: 16e247a1267007801a6078910fcf20304b4607e27786f16acd17a619ed4bfd04 +SHA256: 1a45dc09d331c977851a04cec65d86fa185122434b229784b2d5d504c57eea30 +SHA256: 49eb82dc52424fe856571a868bff2405f3d6ab622c22ef049af86bd2e4fb717a +SHA256: 6f95efd8d4d87177dab2004c29a269d4d7bd73dc8141f588ef8cc88d9b6ffbf4 +SHA256: 8b7ea7b25a99c88430c6ccf9fae4ad8178612efb18a9390a3126d6a462d5c1b7 +SHA256: a5654f8d0287a96f1d1d8e0830440d0114dbe875ef1565992b194dc702d054f1 +SHA256: bda2a271d27507977f68ed93d87bb20b8c7927a8eecd2e7ae6249ba0658d9cba +SHA256: cb435c5e5f194a8ebb8ed89d99ac2c130a33b4dd6d8778eba756d020fda3779f +SHA256: cdbc00062711b3d0fe08e6a13c5000da9bf0ee2c92a03759975fd5bdc3883694 +SHA256: d07cf18ffc4a3fd0cc99b1d5722752efc44bc2985423311588b8adb5c957a6c2 +SHA256: ff57b1637ae335c53836007a2ba49a22e6a61a06af52aac3503fb214d0736710 +SHA512: 2038a1c840d56e8330f94cdce827de1e01018ba7c2b39c5a5d560aca3513069e19b52fcad48dd98a86b4d751fa3b1fe0736e262f7edb1c90f1060f2f2ca1b715 +SHA512: 243d287b17c8e9536a70d97794b8977a484beaf622f48ac88bbf4c7491255387bc8abcf335ee31e85e4c911961761482763ef35734c9e2263398e11c444b20f3 +SHA512: 521414bc11c60b6e93bb4111221a921e89b6ed3a3072188cfa26325d27db6eb1b733739e15d5fd0e8d4f80e1665ed4cede1c087d900b336cef5299b751c64481 +SHA512: 5cfd1a52df1a1d1cdec1de9919a0aee9ab2940eef81939c0bcf2eb5bfdb0cf4467139e04156b408ee3a359bbf9baea4f75aa9b5315c05eb5b7e6c85c6c03bf57 +SHA512: 61addd38aa6c0843a0b1d8a4698e88b690ff1b5acb035c0d7b449a28496b8d9226aeff16eab0826044d783c4988d36f594f543511966567d97f9ecee58ff5624 +SHA512: 95fd31e0079252c83441148a17e113c3cdafbaf41cc09059d1462a9c6122aa3a284f07936b2a8090b807a0e5e4068dd6bb4f6f6b582d85427152fa837c26157d +SHA512: a4a3149338bd134e525e8ba66be72acf326b407d46d0cc79653d8b5c26ace63c0225e1572cb498984917cc82e53c0a1fe1b7d72d43fb927b36849f75d69ee644 +SHA512: a77a012b5fa1fc3b990004f9007d2e7270bb44d8969d05af6fa41cfd27b07f3638ea023d6a88c0a8d226a3fd014c28f2682dc448c8e166d79c01ecc6d5e9318a +SHA512: b429c3e87b7e07f2399e44a9972babb0126a41e8ff56e29ec0465931787e6b20cb8c3d6dfec85b7c88f80604f8c91cb00c320c79a46e76b7353f99981a7809c5 +SHA512: cfb7cec4ff5d2ee447dc11712dcfd672a10324513cd5e58adff3159024d3cc48130c9257a9023742722d88747305b91b08fbbe260b7cacb8d0af31cff661cc22 +SHA512: f077b15446aa7201eea023fc3085288b3e4eb4960bb378dfe1bd30b014419351dcb6037a7c758110e91bd71a720ce23ba3c7204019fe09f51c36bc08d83d42f7 Section: utils Section: utils Section: utils Section: utils -Size: 1956126 -Size: 228244 -Size: 617064 -Size: 64308 -Source: gnupg -Source: gnupg -Source: gnupg +Section: utils +Section: utils +Section: utils +Section: utils +Section: utils +Section: utils +Section: utils +Size: 1128104 +Size: 1143412 +Size: 299380 +Size: 299456 +Size: 477196 +Size: 480726 +Size: 502734 +Size: 554118 +Size: 596766 +Size: 738932 +Size: 893032 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Suggests: dbus-user-session, libpam-systemd, pinentry-gnome3, scdaemon +Suggests: dbus-user-session, libpam-systemd, pinentry-gnome3, tor Suggests: gnupg -Suggests: gnupg-doc, xloadimage | imagemagick | eog, libpcsclite1 +Suggests: parcimonie, xloadimage Suggests: wine -Tag: implemented-in::c, interface::commandline, network::client, protocol::http, role::plugin, role::program, scope::utility, security::authentication, security::cryptography, suite::gnu, use::checking, works-with::file, works-with::text +Tag: implemented-in::c, interface::commandline, network::client, role::program, security::cryptography, suite::gnu, works-with::pim Tag: implemented-in::c, interface::commandline, role::program, scope::utility, security::authentication, security::cryptography, security::privacy, suite::gnu, use::checking, works-with::file, works-with::text Tag: implemented-in::c, interface::commandline, role::program, scope::utility, security::cryptography, suite::gnu, use::checking -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 \ No newline at end of file +Tag: interface::commandline, role::program, scope::utility, security::cryptography, suite::gnu +Tag: interface::commandline, role::program, scope::utility, security::cryptography, suite::gnu, use::converting +Tag: interface::daemon, network::server, protocol::ldap, role::program, security::cryptography, use::downloading, works-with::db +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 \ No newline at end of file diff --git a/system/t06_publish/PublishSnapshot35Test_packages_i386 b/system/t06_publish/PublishSnapshot35Test_packages_i386 index dfad9799..e25c044e 100644 --- a/system/t06_publish/PublishSnapshot35Test_packages_i386 +++ b/system/t06_publish/PublishSnapshot35Test_packages_i386 @@ -3,83 +3,244 @@ + + + + + + + +Architecture: all +Architecture: all +Architecture: all Architecture: all Architecture: i386 Architecture: i386 Architecture: i386 -Depends: libbz2-1.0, libc6 (>= 2.4), libreadline6 (>= 6.0), libusb-0.1-4 (>= 2:0.1.12), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info, gpgv -Depends: libbz2-1.0, libc6 (>= 2.4), zlib1g (>= 1:1.1.4) -Depends: libc6 (>= 2.4), libcurl3-gnutls (>= 7.16.2), libldap-2.4-2 (>= 2.4.7), gnupg -Description-Md5: 19709c7fc27595437225fd34d295b347 +Architecture: i386 +Architecture: i386 +Architecture: i386 +Architecture: i386 +Breaks: debsig-verify (<< 0.15), dirmngr (<< 2.1.18-8~deb9u4), gnupg2 (<< 2.1.11-7+exp1), libgnupg-interface-perl (<< 0.52-3), libgnupg-perl (<= 0.19-1), libmail-gnupg-perl (<= 0.22-1), monkeysphere (<< 0.38~), php-crypt-gpg (<= 1.4.1-1), python-apt (<= 1.1.0~beta4), python-gnupg (<< 0.3.8-3), python3-apt (<= 1.1.0~beta4) +Breaks: gnupg (<< 2.1.14-2~), gnupg2 (<< 2.1.14-2~) +Breaks: gnupg2 (<< 2.0.21-2), gpgv2 (<< 2.1.11-7+exp1), python-debian (<< 0.1.29) +Breaks: gnupg2 (<< 2.1.10-2) +Breaks: gnupg2 (<< 2.1.10-2) +Depends: adduser, lsb-base (>= 3.2-13), libassuan0 (>= 2.4.0), libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgnutls30 (>= 3.5.6), libgpg-error0 (>= 1.21), libksba8 (>= 1.3.4), libldap-2.4-2 (>= 2.4.7), libnpth0 (>= 0.90) +Depends: gnupg (>= 2.1.18-8~deb9u4) +Depends: gnupg-agent (= 2.1.18-8~deb9u4), libassuan0 (>= 2.0.1), libbz2-1.0, libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), libksba8 (>= 1.3.4), libreadline7 (>= 6.0), libsqlite3-0 (>= 3.7.15), zlib1g (>= 1:1.1.4) +Depends: gnupg-agent (= 2.1.18-8~deb9u4), libassuan0 (>= 2.0.1), libc6 (>= 2.7), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), libksba8 (>= 1.3.4), libreadline7 (>= 6.0) +Depends: gnupg-agent (= 2.1.18-8~deb9u4), libassuan0 (>= 2.2.0), libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), libksba8 (>= 1.3.4), libnpth0 (>= 0.90), libusb-1.0-0 (>= 2:1.0.9) +Depends: gpgv (>= 2.1.18-8~deb9u4) +Depends: libbz2-1.0, libc6 (>= 2.7), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.14), zlib1g (>= 1:1.1.4) +Depends: pinentry-curses | pinentry, libassuan0 (>= 2.3.0), libc6 (>= 2.15), libgcrypt20 (>= 1.7.0), libgpg-error0 (>= 1.25), libnpth0 (>= 0.90), libreadline7 (>= 6.0) Description-Md5: 3f8767984a5f4b323de309446d07435d -Description-Md5: 55306a4e1e1fd63e577767c1b9f5161c -Description-Md5: 8bbdb812806fb623e26b7b93f549c74b +Description-Md5: 4ea8f4f4d6a0a387a4a3aeba3e6cc888 +Description-Md5: 7fad035451f503be001479931e85b925 +Description-Md5: 842ffff693d698ec180bc5b9b7ce7ffa +Description-Md5: 89b483348e055462163fcb51eb9f4d69 +Description-Md5: 8f75eade9d1c231674b0f42baf637938 +Description-Md5: b00f9e73860378b7bce07e0ad3dd2e88 +Description-Md5: d09741caa0bbe13153a4e4c54325393d +Description-Md5: e0a75e34d2b98be880e3fca6a5088ca5 +Description-Md5: e6cd72adf0d5f886dd5a174557278b63 +Description-Md5: f3169025ef42efce30c47d3dda21ff8a +Description: GNU privacy guard - S/MIME version Description: GNU privacy guard - a free PGP replacement -Description: GNU privacy guard - a free PGP replacement (cURL) +Description: GNU privacy guard - a free PGP replacement (dummy transitional package) +Description: GNU privacy guard - cryptographic agent +Description: GNU privacy guard - localization files +Description: GNU privacy guard - network certificate management service Description: GNU privacy guard - signature verification tool +Description: GNU privacy guard - signature verification tool (dummy transitional package) Description: GNU privacy guard - signature verification tool (win32 build) -Filename: pool/main/g/gnupg/gnupg-curl_1.4.12-7+deb7u7_i386.deb -Filename: pool/main/g/gnupg/gnupg_1.4.12-7+deb7u7_i386.deb -Filename: pool/main/g/gnupg/gpgv-win32_1.4.12-7+deb7u7_all.deb -Filename: pool/main/g/gnupg/gpgv_1.4.12-7+deb7u7_i386.deb -Homepage: http://www.gnupg.org -Homepage: http://www.gnupg.org -Homepage: http://www.gnupg.org -Homepage: http://www.gnupg.org -Installed-Size: 1480 -Installed-Size: 401 -Installed-Size: 4613 -Installed-Size: 89 -MD5sum: 5f15f3ac2f586b95ab21c3f83fd1bf35 -MD5sum: 7619869434ee598ba4b1e3de3a48b7a6 -MD5sum: b7456c472a331b1e905712328d25da27 -MD5sum: f892c96687ced1c2adfd8f00d9ca6f5a -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers +Description: GNU privacy guard - smart card support +Description: minimal signature verification tool (static build) +Enhances: gnupg +Enhances: gnupg, gpgsm, squid +Enhances: gnupg-agent +Filename: pool/main/g/gnupg2/dirmngr_2.1.18-8~deb9u4_i386.deb +Filename: pool/main/g/gnupg2/gnupg-agent_2.1.18-8~deb9u4_i386.deb +Filename: pool/main/g/gnupg2/gnupg-l10n_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gnupg2_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gnupg_2.1.18-8~deb9u4_i386.deb +Filename: pool/main/g/gnupg2/gpgsm_2.1.18-8~deb9u4_i386.deb +Filename: pool/main/g/gnupg2/gpgv-static_2.1.18-8~deb9u4_i386.deb +Filename: pool/main/g/gnupg2/gpgv-win32_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gpgv2_2.1.18-8~deb9u4_all.deb +Filename: pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_i386.deb +Filename: pool/main/g/gnupg2/scdaemon_2.1.18-8~deb9u4_i386.deb +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Homepage: https://www.gnupg.org/ +Installed-Size: 1164 +Installed-Size: 1300 +Installed-Size: 1459 +Installed-Size: 2278 +Installed-Size: 2415 +Installed-Size: 309 +Installed-Size: 309 +Installed-Size: 4257 +Installed-Size: 787 +Installed-Size: 792 +Installed-Size: 859 +MD5sum: 193e30e603474bf8077c581ec60f076d +MD5sum: 2a8ed409177a3513d87847211e546a23 +MD5sum: 3112b2d2e7a9b2ca6d5da595233b45e4 +MD5sum: 559919711bff1dba5d38b3519147c30b +MD5sum: 715efa2f46e000a16e1f6f50ed59caf3 +MD5sum: 766fbe76bddbc65d3c6ddbda14003039 +MD5sum: 81e122fbf98ddc9375fd1ac7c6a7832f +MD5sum: a995b9ae089cc7845886ce13e42e8bb7 +MD5sum: ab145cc5660a14f12334121dc3ef76f4 +MD5sum: d9074abf593c6de3bc52430cf0bd50d8 +MD5sum: e41a1a2a1bb112787e34f7af20d845ed +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers +Maintainer: Debian GnuPG Maintainers Multi-Arch: foreign Multi-Arch: foreign Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Multi-Arch: foreign +Package: dirmngr Package: gnupg -Package: gnupg-curl +Package: gnupg-agent +Package: gnupg-l10n +Package: gnupg2 +Package: gpgsm Package: gpgv +Package: gpgv-static Package: gpgv-win32 +Package: gpgv2 +Package: scdaemon +Priority: extra +Priority: extra Priority: extra Priority: important Priority: important Priority: optional -Recommends: libldap-2.4-2 (>= 2.4.7), gnupg-curl -SHA1: 31e0942b2511a2c73723271163efc0eb29d056ff -SHA1: 72c9a6c444d8a6e8ec57f2b778c631946def9d1a -SHA1: 9889f1717f36e00b6143aed530bd3d0c54c116fd -SHA1: df8a0ef18df0fb86167128ac6c31d6709c2f9c6b -SHA256: 27760f636f6dbfe387dfbede1131fe7a0dd5fd3b0ab562213193ffa7cfcadfb5 -SHA256: 6898801e3f3c97a30bef1ee50381479b69360a28807fb63fcce4abef4da1aec7 -SHA256: b852d7681ea328bd8b45140973624781e65d0363961d92bcc2ab0bbf1cc6ed52 -SHA256: cff40c87faea248c77de7d9fc50fcbc80631cd1bc8cec2b1033e0db452e08ea6 -SHA512: 6e2f3b4add560a19154717ad4dea1af9e07ef251403c85c87ef5b30e3f8639d74ab8bb1a27b7e4d3346a66f0c9180c70435557caa4e6eded9bd9010f3f5d7123 -SHA512: adda521ac2837bba7bf4e4a6a633f79187dff5ec3806d1bbe97544ac0a00024a41583f70434362755ef33aa788f79c7dc1a0bdb3daaf9a0465d1b90600ba30ee -SHA512: e1c69691ceb3afb10ad8287e34ef4af75046f99e8aa51d5f15c1e8ac904377ac44023aed1bd7572ebc64c68aca9f99dbd485e13952f6b65e41cf47598af5e03f -SHA512: e6277d5e08210fc7258fc239d1715657a4bd9a4c3c190e41a0b3e4d101bd3abfd7b5c87ed8111a1f3efec239b27938a42cd25a582a6f9d93fdb28fc9684cf14c +Priority: optional +Priority: optional +Priority: optional +Priority: optional +Priority: optional +Provides: gpg +Provides: gpg-agent +Recommends: debian-archive-keyring, debootstrap +Recommends: dirmngr (= 2.1.18-8~deb9u4) +Recommends: dirmngr (= 2.1.18-8~deb9u4), gnupg-l10n (= 2.1.18-8~deb9u4) +Recommends: gnupg (= 2.1.18-8~deb9u4) +Recommends: gnupg (= 2.1.18-8~deb9u4) | gpgsm +Replaces: gnupg (<< 2.1.14-2~), gnupg2 (<< 2.1.14-2~) +Replaces: gnupg2 (<< 2.0.21-2), gpgv2 (<< 2.1.11-7+exp1) +Replaces: gnupg2 (<< 2.1.10-2) +Replaces: gnupg2 (<< 2.1.10-2) +Replaces: gnupg2 (<< 2.1.11-7+exp1) +SHA1: 04201af8fb7d5161c8b00260d282dfe4c2871977 +SHA1: 097d04443da99f24e6ecd05b1b16c4340c1e0768 +SHA1: 1021b11c9747e6ccaba19f000bba17492e3c10a1 +SHA1: 1f3c3f21f58b7ce82cad8fdd1f280c3bb3c93a39 +SHA1: 4698afbd44e1f6c0534728cbc735c5d6b57fa272 +SHA1: 4831c1d722732dd71cf52c9dd690ff7ff5a00e06 +SHA1: 7f1129f9482d9235e830833eef736ee96d09d791 +SHA1: 8747fd9b76206634a2e7f3f83973c35698fb9f21 +SHA1: deb109c6e61d1d37b1f74d025bb3f19121d72dd9 +SHA1: e60d9d4883c340c6cbe250eebdee4dd450419bec +SHA1: f8d56cf53e5b72212d154af0ad3a173f91db6dfa +SHA256: 16e247a1267007801a6078910fcf20304b4607e27786f16acd17a619ed4bfd04 +SHA256: 1b004d4e6c16ba2d66d224dfa31c99df6f660298e68c713066d3f4b6a946b310 +SHA256: 1c7b8057981f13630d4266ebbb64cb76645e51b5a9d95e7ecf74d6a1097a2122 +SHA256: 36240327d6161e8bb17ee175f4fdd4743f851f17695d882f7a18341d9c9fda2b +SHA256: 3c3d588a50b856c52c8fce01bf7547e43a67e786329354e27327715b49958d8a +SHA256: 54701b363b17d165a69c3dca30c3edf4f0a6489b8b7e18e652b4d315164df6b7 +SHA256: 6f95efd8d4d87177dab2004c29a269d4d7bd73dc8141f588ef8cc88d9b6ffbf4 +SHA256: 8b7ea7b25a99c88430c6ccf9fae4ad8178612efb18a9390a3126d6a462d5c1b7 +SHA256: bda2a271d27507977f68ed93d87bb20b8c7927a8eecd2e7ae6249ba0658d9cba +SHA256: bfd41d3ef52914c407acc6aa1351aa8ea002bfe3fa37ed95dd80135078b7d811 +SHA256: e07d25e76de61ea86425e8bbee44860af83df42ca6b2e02db3cec41af52edfb3 +SHA512: 5797786d8cfc852d32e7fc9bd1cea7147e346512fb62357ba3c6cdb9dfd06538b365ccf40aab56ceac9102573894b145b58ca40cfe60e74b542412f7d703e283 +SHA512: 61addd38aa6c0843a0b1d8a4698e88b690ff1b5acb035c0d7b449a28496b8d9226aeff16eab0826044d783c4988d36f594f543511966567d97f9ecee58ff5624 +SHA512: 6573fc00bab150f9f2a37033b463c98df5273c038928ea548686973b901dcb7edf1fc7579f938c4bb0e4d34fd1bed43ff2e64ac38869c94645aa9692c6dc50c7 +SHA512: 7224149ad8d4145487ba297da501e70a95fbcbf1c7cee4db8999da86e31dc34af8b9c6b7b4acce89504225d3096439f22a4442b7431d2a44a5040decdd5cfa90 +SHA512: 924caf29c19f0ca20c62ad5bdb331c07791e4a63969afe48424d36025804d2136ef7c7864c9f358c22d9f80bba00a3184fe7711799ae358159405c0c0f0adaac +SHA512: 95fd31e0079252c83441148a17e113c3cdafbaf41cc09059d1462a9c6122aa3a284f07936b2a8090b807a0e5e4068dd6bb4f6f6b582d85427152fa837c26157d +SHA512: aacedbf56dfc029f4ba82587ba34f77ff131ad42d3b01fbf84589e173d904bc4e6897ea198821b6fdb8927527bbc2dea53fbccc5be973908c9bd837a84dbd530 +SHA512: b429c3e87b7e07f2399e44a9972babb0126a41e8ff56e29ec0465931787e6b20cb8c3d6dfec85b7c88f80604f8c91cb00c320c79a46e76b7353f99981a7809c5 +SHA512: d86889a5b527fb03ad558736f6baf53697e7e9dc7de60e92bf46312e0a169f0b353ca5ffa98ac244193bc084a9293b989d6c77be5b0fb550a9a31e342594f69a +SHA512: f077b15446aa7201eea023fc3085288b3e4eb4960bb378dfe1bd30b014419351dcb6037a7c758110e91bd71a720ce23ba3c7204019fe09f51c36bc08d83d42f7 +SHA512: f660d9b547d965c416d518dfdf9fa5b107576431b8f5ebc2d689cc75ee0769d57536d201a55c93bd84e0b37209cbd0723d0328c2e98952c9ac80b28904637736 Section: utils Section: utils Section: utils Section: utils -Size: 1938694 -Size: 221686 -Size: 617064 -Size: 63192 -Source: gnupg -Source: gnupg -Source: gnupg +Section: utils +Section: utils +Section: utils +Section: utils +Section: utils +Section: utils +Section: utils +Size: 1137222 +Size: 1174722 +Size: 299380 +Size: 299456 +Size: 491502 +Size: 499700 +Size: 522488 +Size: 576192 +Size: 622058 +Size: 738932 +Size: 893032 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Source: gnupg2 +Suggests: dbus-user-session, libpam-systemd, pinentry-gnome3, scdaemon +Suggests: dbus-user-session, libpam-systemd, pinentry-gnome3, tor Suggests: gnupg -Suggests: gnupg-doc, xloadimage | imagemagick | eog, libpcsclite1 +Suggests: parcimonie, xloadimage Suggests: wine -Tag: implemented-in::c, interface::commandline, network::client, protocol::http, role::plugin, role::program, scope::utility, security::authentication, security::cryptography, suite::gnu, use::checking, works-with::file, works-with::text +Tag: implemented-in::c, interface::commandline, network::client, role::program, security::cryptography, suite::gnu, works-with::pim Tag: implemented-in::c, interface::commandline, role::program, scope::utility, security::authentication, security::cryptography, security::privacy, suite::gnu, use::checking, works-with::file, works-with::text Tag: implemented-in::c, interface::commandline, role::program, scope::utility, security::cryptography, suite::gnu, use::checking -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 \ No newline at end of file +Tag: interface::commandline, role::program, scope::utility, security::cryptography, suite::gnu +Tag: interface::commandline, role::program, scope::utility, security::cryptography, suite::gnu, use::converting +Tag: interface::daemon, network::server, protocol::ldap, role::program, security::cryptography, use::downloading, works-with::db +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 +Version: 2.1.18-8~deb9u4 \ No newline at end of file diff --git a/system/t06_publish/PublishSnapshot35Test_packages_udeb_amd64 b/system/t06_publish/PublishSnapshot35Test_packages_udeb_amd64 index 0475445c..055c4cb3 100644 --- a/system/t06_publish/PublishSnapshot35Test_packages_udeb_amd64 +++ b/system/t06_publish/PublishSnapshot35Test_packages_udeb_amd64 @@ -1,37 +1,19 @@ - Architecture: amd64 -Architecture: amd64 -Depends: libc6-udeb (>= 2.13), libusb-0.1-udeb, zlib1g-udeb (>= 1:1.2.3.3.dfsg-1) -Depends: libc6-udeb (>= 2.13), zlib1g-udeb (>= 1:1.2.3.3.dfsg-1) -Description-Md5: 0d5b74cda45e2a6526c6943d2cd0c362 +Depends: libc6-udeb (>= 2.24), libgcrypt20-udeb (>= 1.7.0-0), libgpg-error0-udeb (>= 1.26), zlib1g-udeb (>= 1:1.2.3.3.dfsg-1) Description-Md5: c52656f4cc79fd4b089086b9173d2923 -Description: GNU privacy guard - a free PGP replacement Description: minimal signature verification tool -Filename: pool/main/g/gnupg/gnupg-udeb_1.4.12-7+deb7u7_amd64.udeb -Filename: pool/main/g/gnupg/gpgv-udeb_1.4.12-7+deb7u7_amd64.udeb -Installed-Size: 301 -Installed-Size: 833 -MD5sum: 2fda838d1101cc202ddd087c8c98b635 -MD5sum: 6d90567115ee873d4ce6c87991cfaed0 -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers -Package: gnupg-udeb +Filename: pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_amd64.udeb +Installed-Size: 411 +MD5sum: 1e9ef857867061a4f989a27167d17f85 +Maintainer: Debian GnuPG Maintainers Package: gpgv-udeb Priority: extra -Priority: extra -SHA1: 5d32171182e956f8277d44378b1623bbeae23110 -SHA1: dbe121bae44db6eb6108311f41997c4ede1178b2 -SHA256: 4abcb1191d8a3e58d88fb56084f9d784255ba68c767babc3c2819b7a1a689b78 -SHA256: dd7230f9d025c47e8c94e4101e2970e94aed50ec0c65801f9c7cd0a03d6723e1 -SHA512: 520ff1cc4053499609c87329d9458560817c5638bd6871ba3b0598c3cb95420859601aa09728998d8227a4ab29930f4d0474660e26921829641b7bed2751ec5e -SHA512: a0d5e55d8e183f19111cf3067fa8d434a263bad5bafce39fedaeb3ef7fd97577fef852e4f2bb5e04e27b2a0b79d3e707ff12af5b54879f33f124cdf1626a3dea +SHA1: 027038384a4ff7b5384db238aecd91348e522953 +SHA256: 805a332ace274081fbc9aab49403af59864e958343dc70a28af6793d9146dfdc +SHA512: 81a4ead2ff7227163f77158d032fec45fd0a8e20579182cedf461d5032c8b28da6ddcf87fb83a9b93b355073104c84fea23c52b33e21ba95f2f5adf490af0785 Section: debian-installer -Section: debian-installer -Size: 130734 -Size: 354018 -Source: gnupg -Source: gnupg -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 \ No newline at end of file +Size: 178766 +Source: gnupg2 +Version: 2.1.18-8~deb9u4 \ No newline at end of file diff --git a/system/t06_publish/PublishSnapshot35Test_packages_udeb_i386 b/system/t06_publish/PublishSnapshot35Test_packages_udeb_i386 index b17b5dac..719d217a 100644 --- a/system/t06_publish/PublishSnapshot35Test_packages_udeb_i386 +++ b/system/t06_publish/PublishSnapshot35Test_packages_udeb_i386 @@ -1,37 +1,19 @@ - Architecture: i386 -Architecture: i386 -Depends: libc6-udeb (>= 2.13), libusb-0.1-udeb, zlib1g-udeb (>= 1:1.2.3.3.dfsg-1) -Depends: libc6-udeb (>= 2.13), zlib1g-udeb (>= 1:1.2.3.3.dfsg-1) -Description-Md5: 0d5b74cda45e2a6526c6943d2cd0c362 +Depends: libc6-udeb (>= 2.24), libgcrypt20-udeb (>= 1.7.0-0), libgpg-error0-udeb (>= 1.26), zlib1g-udeb (>= 1:1.2.3.3.dfsg-1) Description-Md5: c52656f4cc79fd4b089086b9173d2923 -Description: GNU privacy guard - a free PGP replacement Description: minimal signature verification tool -Filename: pool/main/g/gnupg/gnupg-udeb_1.4.12-7+deb7u7_i386.udeb -Filename: pool/main/g/gnupg/gpgv-udeb_1.4.12-7+deb7u7_i386.udeb -Installed-Size: 275 -Installed-Size: 783 -MD5sum: 1abee98b231ab5b25dd7976ab61247cf -MD5sum: e12304db5e3c3401e64ad5967a5c9064 -Maintainer: Debian GnuPG-Maintainers -Maintainer: Debian GnuPG-Maintainers -Package: gnupg-udeb +Filename: pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_i386.udeb +Installed-Size: 482 +MD5sum: e2f9e15f0d93f6075c829353ac50487f +Maintainer: Debian GnuPG Maintainers Package: gpgv-udeb Priority: extra -Priority: extra -SHA1: e64cb327e89ba41ba6aaeca7e9e69cf18479ed40 -SHA1: f6937084ae96b269131a08bb365619e704f91d21 -SHA256: 7d86005e0f2a7bdeff3204ccb0e50d6d06b07011621acb56ad322480bd11494c -SHA256: 96eae21eb31fa79d196dfbec63594f62c39753aad59d02d69bf9495ad486ec01 -SHA512: 0de8d92708fbdd6c14b196124ff4fb8a047daf75b942eae24987a0707293578ca86b2de8d61aad72472e653e4536ec62b83bb60ee0a422f317212bd6159a1753 -SHA512: 5954d3f4d8960a2444f89192d05781087410f296a9d810a6bff2a7bc3955f952a3f063c47d575b0215dd60681d99c3e08852c9e3df027ad94ec448fc1749da57 +SHA1: f1078773f471d98b64d00cb5a508e344b40a9ba0 +SHA256: 0743b527c9348c22a3d6d89e99607479999f3ae6dd6b82a65f482e6ec5ec7ac9 +SHA512: 5a212fdba3ada1089dcef339b9e71edfa93c7667931f8a25926aa9cb6882f2b0de4ecc191143beba44a3250a8667639059af7f6bacc56e87ad1c1f99deed8bfe Section: debian-installer -Section: debian-installer -Size: 125582 -Size: 343860 -Source: gnupg -Source: gnupg -Version: 1.4.12-7+deb7u7 -Version: 1.4.12-7+deb7u7 \ No newline at end of file +Size: 198174 +Source: gnupg2 +Version: 2.1.18-8~deb9u4 \ No newline at end of file diff --git a/system/t06_publish/PublishSnapshot35Test_release b/system/t06_publish/PublishSnapshot35Test_release index b4b9e09d..2aff6404 100644 --- a/system/t06_publish/PublishSnapshot35Test_release +++ b/system/t06_publish/PublishSnapshot35Test_release @@ -1,7 +1,7 @@ Origin: Debian -Label: . wheezy -Suite: wheezy -Codename: wheezy +Label: . stretch +Suite: stretch +Codename: stretch Architectures: amd64 i386 Components: main Description: Generated by aptly diff --git a/system/t06_publish/PublishSnapshot35Test_release_udeb_i386 b/system/t06_publish/PublishSnapshot35Test_release_udeb_i386 index 31631541..c77df26e 100644 --- a/system/t06_publish/PublishSnapshot35Test_release_udeb_i386 +++ b/system/t06_publish/PublishSnapshot35Test_release_udeb_i386 @@ -1,5 +1,5 @@ Origin: Debian -Label: . wheezy -Archive: wheezy +Label: . stretch +Archive: stretch Architecture: i386 Component: main diff --git a/system/t06_publish/PublishSnapshot37Test_gold b/system/t06_publish/PublishSnapshot37Test_gold index 0365afcb..ee7b2bb0 100644 --- a/system/t06_publish/PublishSnapshot37Test_gold +++ b/system/t06_publish/PublishSnapshot37Test_gold @@ -4,10 +4,10 @@ Finalizing metadata files... Signing file 'Release' with gpg, please enter your passphrase when prompted: Clearsigning file 'Release' with gpg, please enter your passphrase when prompted: -Snapshot wheezy has been successfully published. +Snapshot stretch has been successfully published. Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. Now you can add following line to apt sources: - deb http://your-server/ wheezy main + deb http://your-server/ stretch main Don't forget to add your GPG key to apt with apt-key. You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/system/t06_publish/PublishSnapshot38Test_gold b/system/t06_publish/PublishSnapshot38Test_gold index 411e6424..8b9bb3cb 100644 --- a/system/t06_publish/PublishSnapshot38Test_gold +++ b/system/t06_publish/PublishSnapshot38Test_gold @@ -5,10 +5,10 @@ Signing file 'main_installer-s390x_current_images_SHA256SUMS' with gpg, please e Signing file 'Release' with gpg, please enter your passphrase when prompted: Clearsigning file 'Release' with gpg, please enter your passphrase when prompted: -Snapshot wheezy has been successfully published. +Snapshot stretch has been successfully published. Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. Now you can add following line to apt sources: - deb http://your-server/ wheezy main + deb http://your-server/ stretch main Don't forget to add your GPG key to apt with apt-key. You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/system/t06_publish/PublishSnapshot38Test_installer_s390x b/system/t06_publish/PublishSnapshot38Test_installer_s390x index dfbcaf29..16aed685 100644 --- a/system/t06_publish/PublishSnapshot38Test_installer_s390x +++ b/system/t06_publish/PublishSnapshot38Test_installer_s390x @@ -1,12 +1,9 @@ -a29b0c17f98afb5ebc5a65bd03411e430dd372223d931b2c2441604fd6942472 ./MD5SUMS -a5a8e9029fc31df4a892644524a28c7d31f12a012d72cf1ac5672178b982ecac ./udeb.list -d592bca155b709066bcd48070358e6a2dd4f401c09f594b37b15caaf9fc45d80 ./tape/parmfile.debian -5e4d45f22a87e36d21685043f85106a6380b3ae7fbdccff70097ccbf6757a287 ./tape/kernel.debian-nolabel -57afafa42e61248d96e9d26efb2db075a17f484c51445c6420a32220b05c1fb2 ./tape/initrd.debian -0ca15998b2156af0a2ecffc771f9a418b4918956049fac4250c01d163b143006 ./tape/kernel.debian -1a907f670fc825f70827608ec32bb8a194971d0e1126d1caf33de87fc27d0d08 ./MANIFEST.udebs -62ba2aaafac85c163c3cbf25ee52724a59b12d805382a0122080b6a86e229b0a ./MANIFEST -d592bca155b709066bcd48070358e6a2dd4f401c09f594b37b15caaf9fc45d80 ./generic/parmfile.debian + 48d2cbebbc8582f546232c1acf68b1b73125731441fda528f8d71795a60e14a4 ./generic/debian.exec -5194c4cfc1d527ce6aa45ced5a7f5102a3c85851ac8409c32b53c1004d0717da ./generic/kernel.debian -57afafa42e61248d96e9d26efb2db075a17f484c51445c6420a32220b05c1fb2 ./generic/initrd.debian +52617d903dad13420a083c0e10c09025069b5cadb2abb7c3490d4d9e4b8f3f99 ./MD5SUMS +5b0d469b830fd2b2a8d05750a4a86eb7fd94557b9ad543380787c77de3b4e556 ./MANIFEST +6b3cd6ca38df33883dbfdc84a8b7717ecf22ba8706d001c9aa64fee3e7b8d7f1 ./generic/kernel.debian +7c342435dcac0b57b369090f1b75f7924acdb2085e16fc42b8a8d354a6e61906 ./generic/initrd.debian +8e1180a974db09a6ee25274c4a04a5c10f7b17f802d02389f40cf4e38696c2ef ./MANIFEST.udebs +d592bca155b709066bcd48070358e6a2dd4f401c09f594b37b15caaf9fc45d80 ./generic/parmfile.debian +fadd64f1559848f869f83fbc088506ec4405f9a7f2c3bc05a72f730e0afa615d ./udeb.list \ No newline at end of file diff --git a/system/t06_publish/PublishSwitch8Test_binaryC b/system/t06_publish/PublishSwitch8Test_binaryC index d6b79d34..58239347 100644 --- a/system/t06_publish/PublishSwitch8Test_binaryC +++ b/system/t06_publish/PublishSwitch8Test_binaryC @@ -1,27 +1,54 @@ + (name, value) pairs from the user, via conventional methods such as + (name, value) pairs from the user, via conventional methods such as + . + . . . Boost version (currently 1.49). + Boost version (currently 1.62). + Library to let program developers obtain program options, that is Library to let program developers obtain program options, that is This package forms part of the Boost C++ Libraries collection. + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default This package is a dependency package, which depends on Debian's default command line and config file. + command line and config file. +Architecture: i386 Architecture: i386 Depends: libboost-program-options1.49-dev +Depends: libboost-program-options1.62-dev +Description: program options library for C++ (default version) Description: program options library for C++ (default version) Filename: pool/c/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Filename: pool/c/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb Homepage: http://www.boost.org/libs/program_options/ +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 10 Installed-Size: 26 MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +MD5sum: e0bb923f6ae623e44ca763a361e99b8f Maintainer: Debian Boost Team +Maintainer: Debian Boost Team +Multi-Arch: same +Package: libboost-program-options-dev Package: libboost-program-options-dev Priority: optional +Priority: optional SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA1: 37460558b22fa42e2eaf713f171b9f9f557489f3 SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +SHA256: dba2f225645a2a8bd8378e2f64bd1faa7d24a90c4555538b4a83f71a0d0d25ac +SHA512: 606b761b90cee0860d07468f0d0bce89166f3b45491c53e65123590a13dbf04f0bc0b73b298d21bebcc4eea61f804da882f12ee15043eba2cd9192acbebf465e SHA512: d7302241373da972aa9b9e71d2fd769b31a38f71182aa71bc0d69d090d452c69bb74b8612c002ccf8a89c279ced84ac27177c8b92d20f00023b3d268e6cec69c Section: libdevel +Section: libdevel Size: 2738 +Size: 3428 Source: boost-defaults -Version: 1.49.0.1 \ No newline at end of file +Source: boost-defaults +Version: 1.49.0.1 +Version: 1.62.0.1 \ No newline at end of file diff --git a/system/t06_publish/PublishUpdate12Test_binary b/system/t06_publish/PublishUpdate12Test_binary index 1fd182e4..d65c4639 100644 --- a/system/t06_publish/PublishUpdate12Test_binary +++ b/system/t06_publish/PublishUpdate12Test_binary @@ -1,27 +1,54 @@ + (name, value) pairs from the user, via conventional methods such as + (name, value) pairs from the user, via conventional methods such as + . + . . . Boost version (currently 1.49). + Boost version (currently 1.62). + Library to let program developers obtain program options, that is Library to let program developers obtain program options, that is This package forms part of the Boost C++ Libraries collection. + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default This package is a dependency package, which depends on Debian's default command line and config file. + command line and config file. +Architecture: i386 Architecture: i386 Depends: libboost-program-options1.49-dev +Depends: libboost-program-options1.62-dev +Description: program options library for C++ (default version) Description: program options library for C++ (default version) Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb Homepage: http://www.boost.org/libs/program_options/ +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 10 Installed-Size: 26 MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +MD5sum: e0bb923f6ae623e44ca763a361e99b8f Maintainer: Debian Boost Team +Maintainer: Debian Boost Team +Multi-Arch: same +Package: libboost-program-options-dev Package: libboost-program-options-dev Priority: optional +Priority: optional SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA1: 37460558b22fa42e2eaf713f171b9f9f557489f3 SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +SHA256: dba2f225645a2a8bd8378e2f64bd1faa7d24a90c4555538b4a83f71a0d0d25ac +SHA512: 606b761b90cee0860d07468f0d0bce89166f3b45491c53e65123590a13dbf04f0bc0b73b298d21bebcc4eea61f804da882f12ee15043eba2cd9192acbebf465e SHA512: d7302241373da972aa9b9e71d2fd769b31a38f71182aa71bc0d69d090d452c69bb74b8612c002ccf8a89c279ced84ac27177c8b92d20f00023b3d268e6cec69c Section: libdevel +Section: libdevel Size: 2738 +Size: 3428 Source: boost-defaults -Version: 1.49.0.1 \ No newline at end of file +Source: boost-defaults +Version: 1.49.0.1 +Version: 1.62.0.1 \ No newline at end of file diff --git a/system/t06_publish/PublishUpdate1Test_binary b/system/t06_publish/PublishUpdate1Test_binary index 1fd182e4..d65c4639 100644 --- a/system/t06_publish/PublishUpdate1Test_binary +++ b/system/t06_publish/PublishUpdate1Test_binary @@ -1,27 +1,54 @@ + (name, value) pairs from the user, via conventional methods such as + (name, value) pairs from the user, via conventional methods such as + . + . . . Boost version (currently 1.49). + Boost version (currently 1.62). + Library to let program developers obtain program options, that is Library to let program developers obtain program options, that is This package forms part of the Boost C++ Libraries collection. + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default This package is a dependency package, which depends on Debian's default command line and config file. + command line and config file. +Architecture: i386 Architecture: i386 Depends: libboost-program-options1.49-dev +Depends: libboost-program-options1.62-dev +Description: program options library for C++ (default version) Description: program options library for C++ (default version) Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb Homepage: http://www.boost.org/libs/program_options/ +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 10 Installed-Size: 26 MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +MD5sum: e0bb923f6ae623e44ca763a361e99b8f Maintainer: Debian Boost Team +Maintainer: Debian Boost Team +Multi-Arch: same +Package: libboost-program-options-dev Package: libboost-program-options-dev Priority: optional +Priority: optional SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA1: 37460558b22fa42e2eaf713f171b9f9f557489f3 SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +SHA256: dba2f225645a2a8bd8378e2f64bd1faa7d24a90c4555538b4a83f71a0d0d25ac +SHA512: 606b761b90cee0860d07468f0d0bce89166f3b45491c53e65123590a13dbf04f0bc0b73b298d21bebcc4eea61f804da882f12ee15043eba2cd9192acbebf465e SHA512: d7302241373da972aa9b9e71d2fd769b31a38f71182aa71bc0d69d090d452c69bb74b8612c002ccf8a89c279ced84ac27177c8b92d20f00023b3d268e6cec69c Section: libdevel +Section: libdevel Size: 2738 +Size: 3428 Source: boost-defaults -Version: 1.49.0.1 \ No newline at end of file +Source: boost-defaults +Version: 1.49.0.1 +Version: 1.62.0.1 \ No newline at end of file diff --git a/system/t06_publish/s3.py b/system/t06_publish/s3.py index 97be3387..c818023a 100644 --- a/system/t06_publish/s3.py +++ b/system/t06_publish/s3.py @@ -12,6 +12,7 @@ class S3Publish1Test(S3Test): fixtureCmds = [ "aptly repo create -distribution=maverick local-repo", "aptly repo add local-repo ${files}", + "aptly repo remove local-repo libboost-program-options-dev_1.62.0.1_i386", ] runCmd = "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec local-repo s3:test1:" @@ -48,6 +49,7 @@ class S3Publish2Test(S3Test): fixtureCmds = [ "aptly repo create -distribution=maverick local-repo", "aptly repo add local-repo ${files}/", + "aptly repo remove local-repo libboost-program-options-dev_1.62.0.1_i386", "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec local-repo s3:test1:", "aptly repo remove local-repo pyspi" ] @@ -166,6 +168,7 @@ class S3Publish6Test(S3Test): fixtureCmds = [ "aptly repo create -distribution=maverick local-repo", "aptly repo add local-repo ${files}/", + "aptly repo remove local-repo libboost-program-options-dev_1.62.0.1_i386", "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec local-repo s3:test1:", "aptly repo remove local-repo pyspi" ] diff --git a/system/t06_publish/snapshot.py b/system/t06_publish/snapshot.py index 788059eb..0e827e85 100644 --- a/system/t06_publish/snapshot.py +++ b/system/t06_publish/snapshot.py @@ -896,61 +896,61 @@ class PublishSnapshot35Test(BaseTest): """ fixtureGpg = True fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg)' -with-udebs wheezy http://mirror.yandex.ru/debian/ wheezy main non-free", - "aptly mirror update -keyring=aptlytest.gpg wheezy", - "aptly snapshot create wheezy from mirror wheezy", + "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://mirror.yandex.ru/debian/ stretch main non-free", + "aptly mirror update -keyring=aptlytest.gpg stretch", + "aptly snapshot create stretch from mirror stretch", ] - runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec wheezy" + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec stretch" gold_processor = BaseTest.expand_environ def check(self): super(PublishSnapshot35Test, self).check() - self.check_exists('public/dists/wheezy/InRelease') - self.check_exists('public/dists/wheezy/Release') - self.check_exists('public/dists/wheezy/Release.gpg') + self.check_exists('public/dists/stretch/InRelease') + self.check_exists('public/dists/stretch/Release') + self.check_exists('public/dists/stretch/Release.gpg') - self.check_exists('public/dists/wheezy/main/binary-i386/Release') - self.check_exists('public/dists/wheezy/main/binary-i386/Packages') - self.check_exists('public/dists/wheezy/main/binary-i386/Packages.gz') - self.check_exists('public/dists/wheezy/main/binary-i386/Packages.bz2') - self.check_exists('public/dists/wheezy/main/Contents-i386.gz') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-i386/Release') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-i386/Packages') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-i386/Packages.gz') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-i386/Packages.bz2') - self.check_exists('public/dists/wheezy/main/Contents-udeb-i386.gz') - self.check_exists('public/dists/wheezy/main/binary-amd64/Release') - self.check_exists('public/dists/wheezy/main/binary-amd64/Packages') - self.check_exists('public/dists/wheezy/main/binary-amd64/Packages.gz') - self.check_exists('public/dists/wheezy/main/binary-amd64/Packages.bz2') - self.check_exists('public/dists/wheezy/main/Contents-amd64.gz') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-amd64/Release') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-amd64/Packages') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-amd64/Packages.gz') - self.check_exists('public/dists/wheezy/main/debian-installer/binary-amd64/Packages.bz2') - self.check_exists('public/dists/wheezy/main/Contents-udeb-amd64.gz') - self.check_not_exists('public/dists/wheezy/main/source/Sources') - self.check_not_exists('public/dists/wheezy/main/source/Sources.gz') - self.check_not_exists('public/dists/wheezy/main/source/Sources.bz2') + self.check_exists('public/dists/stretch/main/binary-i386/Release') + self.check_exists('public/dists/stretch/main/binary-i386/Packages') + self.check_exists('public/dists/stretch/main/binary-i386/Packages.gz') + self.check_exists('public/dists/stretch/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/stretch/main/Contents-i386.gz') + self.check_exists('public/dists/stretch/main/debian-installer/binary-i386/Release') + self.check_exists('public/dists/stretch/main/debian-installer/binary-i386/Packages') + self.check_exists('public/dists/stretch/main/debian-installer/binary-i386/Packages.gz') + self.check_exists('public/dists/stretch/main/debian-installer/binary-i386/Packages.bz2') + self.check_exists('public/dists/stretch/main/Contents-udeb-i386.gz') + self.check_exists('public/dists/stretch/main/binary-amd64/Release') + self.check_exists('public/dists/stretch/main/binary-amd64/Packages') + self.check_exists('public/dists/stretch/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/stretch/main/binary-amd64/Packages.bz2') + self.check_exists('public/dists/stretch/main/Contents-amd64.gz') + self.check_exists('public/dists/stretch/main/debian-installer/binary-amd64/Release') + self.check_exists('public/dists/stretch/main/debian-installer/binary-amd64/Packages') + self.check_exists('public/dists/stretch/main/debian-installer/binary-amd64/Packages.gz') + self.check_exists('public/dists/stretch/main/debian-installer/binary-amd64/Packages.bz2') + self.check_exists('public/dists/stretch/main/Contents-udeb-amd64.gz') + self.check_not_exists('public/dists/stretch/main/source/Sources') + self.check_not_exists('public/dists/stretch/main/source/Sources.gz') + self.check_not_exists('public/dists/stretch/main/source/Sources.bz2') - self.check_exists('public/pool/main/g/gnupg/gpgv-udeb_1.4.12-7+deb7u7_amd64.udeb') - self.check_exists('public/pool/main/g/gnupg/gpgv-udeb_1.4.12-7+deb7u7_i386.udeb') - self.check_exists('public/pool/main/g/gnupg/gpgv_1.4.12-7+deb7u7_amd64.deb') - self.check_exists('public/pool/main/g/gnupg/gpgv_1.4.12-7+deb7u7_i386.deb') + self.check_exists('public/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_amd64.udeb') + self.check_exists('public/pool/main/g/gnupg2/gpgv-udeb_2.1.18-8~deb9u4_i386.udeb') + self.check_exists('public/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_amd64.deb') + self.check_exists('public/pool/main/g/gnupg2/gpgv_2.1.18-8~deb9u4_i386.deb') - self.check_file_contents('public/dists/wheezy/main/binary-i386/Packages', 'packages_i386', match_prepare=sorted_processor) - self.check_file_contents('public/dists/wheezy/main/debian-installer/binary-i386/Packages', 'packages_udeb_i386', match_prepare=sorted_processor) - self.check_file_contents('public/dists/wheezy/main/binary-amd64/Packages', 'packages_amd64', match_prepare=sorted_processor) - self.check_file_contents('public/dists/wheezy/main/debian-installer/binary-amd64/Packages', 'packages_udeb_amd64', match_prepare=sorted_processor) + self.check_file_contents('public/dists/stretch/main/binary-i386/Packages', 'packages_i386', match_prepare=sorted_processor) + self.check_file_contents('public/dists/stretch/main/debian-installer/binary-i386/Packages', 'packages_udeb_i386', match_prepare=sorted_processor) + self.check_file_contents('public/dists/stretch/main/binary-amd64/Packages', 'packages_amd64', match_prepare=sorted_processor) + self.check_file_contents('public/dists/stretch/main/debian-installer/binary-amd64/Packages', 'packages_udeb_amd64', match_prepare=sorted_processor) # verify contents except of sums - self.check_file_contents('public/dists/wheezy/Release', 'release', match_prepare=strip_processor) + self.check_file_contents('public/dists/stretch/Release', 'release', match_prepare=strip_processor) - self.check_file_contents('public/dists/wheezy/main/debian-installer/binary-i386/Release', 'release_udeb_i386', match_prepare=strip_processor) + self.check_file_contents('public/dists/stretch/main/debian-installer/binary-i386/Release', 'release_udeb_i386', match_prepare=strip_processor) # verify sums - release = self.read_file('public/dists/wheezy/Release').split("\n") + release = self.read_file('public/dists/stretch/Release').split("\n") release = [l for l in release if l.startswith(" ")] pathsSeen = set() for l in release: @@ -963,7 +963,7 @@ class PublishSnapshot35Test(BaseTest): fileSize = int(fileSize) - st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/wheezy/', path)) + st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/stretch/', path)) if fileSize != st.st_size: raise Exception("file size doesn't match for %s: %d != %d" % (path, fileSize, st.st_size)) @@ -976,7 +976,7 @@ class PublishSnapshot35Test(BaseTest): else: h = hashlib.sha512() - h.update(self.read_file(os.path.join('public/dists/wheezy', path))) + h.update(self.read_file(os.path.join('public/dists/stretch', path))) if h.hexdigest() != fileHash: raise Exception("file hash doesn't match for %s: %s != %s" % (path, fileHash, h.hexdigest())) @@ -1026,12 +1026,12 @@ class PublishSnapshot37Test(BaseTest): """ fixtureGpg = True fixtureCmds = [ - "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg)' -with-udebs wheezy http://mirror.yandex.ru/debian/ wheezy main non-free", - "aptly mirror update -keyring=aptlytest.gpg wheezy", - "aptly mirror update -keyring=aptlytest.gpg wheezy", - "aptly snapshot create wheezy from mirror wheezy", + "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://mirror.yandex.ru/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", ] - runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec wheezy" + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec stretch" gold_processor = BaseTest.expand_environ @@ -1041,18 +1041,18 @@ class PublishSnapshot38Test(BaseTest): """ fixtureGpg = True fixtureCmds = [ - "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer wheezy http://mirror.yandex.ru/debian/ wheezy main", - "aptly mirror update -keyring=aptlytest.gpg wheezy", - "aptly snapshot create wheezy from mirror wheezy", + "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://mirror.yandex.ru/debian/ stretch main", + "aptly mirror update -keyring=aptlytest.gpg stretch", + "aptly snapshot create stretch from mirror stretch", ] - runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec wheezy" + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec stretch" gold_processor = BaseTest.expand_environ def check(self): super(PublishSnapshot38Test, self).check() - self.check_exists('public/dists/wheezy/main/installer-s390x/current/images/SHA256SUMS') - self.check_exists('public/dists/wheezy/main/installer-s390x/current/images/SHA256SUMS.gpg') - self.check_exists('public/dists/wheezy/main/installer-s390x/current/images/generic/debian.exec') - self.check_exists('public/dists/wheezy/main/installer-s390x/current/images/MANIFEST') + self.check_exists('public/dists/stretch/main/installer-s390x/current/images/SHA256SUMS') + self.check_exists('public/dists/stretch/main/installer-s390x/current/images/SHA256SUMS.gpg') + self.check_exists('public/dists/stretch/main/installer-s390x/current/images/generic/debian.exec') + self.check_exists('public/dists/stretch/main/installer-s390x/current/images/MANIFEST') - self.check_file_contents('public/dists/wheezy/main/installer-s390x/current/images/SHA256SUMS', "installer_s390x", match_prepare=sorted_processor) + self.check_file_contents('public/dists/stretch/main/installer-s390x/current/images/SHA256SUMS', "installer_s390x", match_prepare=sorted_processor) diff --git a/system/t06_publish/swift.py b/system/t06_publish/swift.py index cdccaa0b..d8ba64f8 100644 --- a/system/t06_publish/swift.py +++ b/system/t06_publish/swift.py @@ -12,6 +12,7 @@ class SwiftPublish1Test(SwiftTest): fixtureCmds = [ "aptly repo create -distribution=maverick local-repo", "aptly repo add local-repo ${files}", + "aptly repo remove local-repo libboost-program-options-dev_1.62.0.1_i386", ] runCmd = "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec local-repo swift:test1:" @@ -48,6 +49,7 @@ class SwiftPublish2Test(SwiftTest): fixtureCmds = [ "aptly repo create -distribution=maverick local-repo", "aptly repo add local-repo ${files}/", + "aptly repo remove local-repo libboost-program-options-dev_1.62.0.1_i386", "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec local-repo swift:test1:", "aptly repo remove local-repo pyspi" ] diff --git a/system/t08_db/CleanupDB8Test_gold b/system/t08_db/CleanupDB8Test_gold index fc57cfb9..f769f203 100644 --- a/system/t08_db/CleanupDB8Test_gold +++ b/system/t08_db/CleanupDB8Test_gold @@ -1,8 +1,8 @@ Loading mirrors, local repos, snapshots and published repos... Loading list of all packages... -Deleting unreferenced packages (3)... +Deleting unreferenced packages (4)... Building list of files referenced by packages... Building list of files in package pool... -Deleting unreferenced files (5)... -Disk space freed: 37.04 KiB... +Deleting unreferenced files (6)... +Disk space freed: 40.39 KiB... Compacting database... diff --git a/system/t08_db/cleanup.py b/system/t08_db/cleanup.py index 1e27621a..c0633426 100644 --- a/system/t08_db/cleanup.py +++ b/system/t08_db/cleanup.py @@ -109,8 +109,8 @@ class CleanupDB9Test(BaseTest): runCmd = "aptly db cleanup" def check(self): - self.check_output() - self.check_cmd_output("aptly publish drop def", "publish_drop", match_prepare=self.expand_environ) + self.check_output() + self.check_cmd_output("aptly publish drop def", "publish_drop", match_prepare=self.expand_environ) class CleanupDB10Test(BaseTest): diff --git a/system/t09_repo/AddRepo10Test_repo_show b/system/t09_repo/AddRepo10Test_repo_show index fd358cfb..2711f437 100644 --- a/system/t09_repo/AddRepo10Test_repo_show +++ b/system/t09_repo/AddRepo10Test_repo_show @@ -2,8 +2,9 @@ Name: repo10 Comment: Repo10 Default Distribution: squeeze Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/AddRepo13Test_gold b/system/t09_repo/AddRepo13Test_gold index 89051da0..c3e90036 100644 --- a/system/t09_repo/AddRepo13Test_gold +++ b/system/t09_repo/AddRepo13Test_gold @@ -1,5 +1,6 @@ Loading packages... [+] libboost-program-options-dev_1.49.0.1_i386 added +[+] libboost-program-options-dev_1.62.0.1_i386 added [+] pyspi_0.6.1-1.4_source added [+] pyspi_0.6.1-1.3_source added [+] dmraid-udeb_1.0.0.rc16-4.1_amd64 added diff --git a/system/t09_repo/AddRepo13Test_repo_show b/system/t09_repo/AddRepo13Test_repo_show index 40d296bb..088eb4af 100644 --- a/system/t09_repo/AddRepo13Test_repo_show +++ b/system/t09_repo/AddRepo13Test_repo_show @@ -2,10 +2,11 @@ Name: repo13 Comment: Repo13 Default Distribution: squeeze Default Component: main -Number of packages: 5 +Number of packages: 6 Packages: dmraid-udeb_1.0.0.rc16-4.1_amd64 dmraid-udeb_1.0.0.rc16-4.1_i386 + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/AddRepo3Test_gold b/system/t09_repo/AddRepo3Test_gold index f52ec7eb..7ddaaa9f 100644 --- a/system/t09_repo/AddRepo3Test_gold +++ b/system/t09_repo/AddRepo3Test_gold @@ -1,4 +1,5 @@ Loading packages... [+] libboost-program-options-dev_1.49.0.1_i386 added +[+] libboost-program-options-dev_1.62.0.1_i386 added [+] pyspi_0.6.1-1.4_source added [+] pyspi_0.6.1-1.3_source added diff --git a/system/t09_repo/AddRepo3Test_repo_show b/system/t09_repo/AddRepo3Test_repo_show index aa4ff608..61615993 100644 --- a/system/t09_repo/AddRepo3Test_repo_show +++ b/system/t09_repo/AddRepo3Test_repo_show @@ -2,8 +2,9 @@ Name: repo3 Comment: Repo3 Default Distribution: squeeze Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/CopyRepo1Test_repo1_show b/system/t09_repo/CopyRepo1Test_repo1_show index 1defdfd8..52125737 100644 --- a/system/t09_repo/CopyRepo1Test_repo1_show +++ b/system/t09_repo/CopyRepo1Test_repo1_show @@ -2,8 +2,9 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/CopyRepo2Test_repo1_show b/system/t09_repo/CopyRepo2Test_repo1_show index 1defdfd8..52125737 100644 --- a/system/t09_repo/CopyRepo2Test_repo1_show +++ b/system/t09_repo/CopyRepo2Test_repo1_show @@ -2,8 +2,9 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/CopyRepo4Test_repo1_show b/system/t09_repo/CopyRepo4Test_repo1_show index 1defdfd8..52125737 100644 --- a/system/t09_repo/CopyRepo4Test_repo1_show +++ b/system/t09_repo/CopyRepo4Test_repo1_show @@ -2,8 +2,9 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/CreateRepo7Test_repo_show b/system/t09_repo/CreateRepo7Test_repo_show index bfd399d2..fa1e6cc8 100644 --- a/system/t09_repo/CreateRepo7Test_repo_show +++ b/system/t09_repo/CreateRepo7Test_repo_show @@ -2,8 +2,9 @@ Name: repo2 Comment: Default Distribution: Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/ImportRepo1Test_repo_show b/system/t09_repo/ImportRepo1Test_repo_show index 03187821..daf99d40 100644 --- a/system/t09_repo/ImportRepo1Test_repo_show +++ b/system/t09_repo/ImportRepo1Test_repo_show @@ -2,8 +2,9 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 5 +Number of packages: 6 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 nginx_1.2.1-2.2+wheezy2_all pyspi_0.6.1-1.4_source diff --git a/system/t09_repo/ImportRepo2Test_repo_show b/system/t09_repo/ImportRepo2Test_repo_show index 2bd93016..f8f9aba9 100644 --- a/system/t09_repo/ImportRepo2Test_repo_show +++ b/system/t09_repo/ImportRepo2Test_repo_show @@ -2,11 +2,12 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 20 +Number of packages: 21 Packages: dpkg_1.16.12_i386 gcc-4.7-base_4.7.2-5_amd64 gcc-4.7-base_4.7.2-5_i386 + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 libbz2-1.0_1.0.6-4_i386 libc-bin_2.13-38+deb7u1_amd64 diff --git a/system/t09_repo/IncludeRepo2Test_repo_show b/system/t09_repo/IncludeRepo2Test_repo_show index e1c56466..a0ced810 100644 --- a/system/t09_repo/IncludeRepo2Test_repo_show +++ b/system/t09_repo/IncludeRepo2Test_repo_show @@ -2,10 +2,11 @@ Name: my-unstable Comment: Default Distribution: Default Component: main -Number of packages: 5 +Number of packages: 6 Packages: hardlink_0.2.1_amd64 hardlink_0.2.1_source + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/MoveRepo1Test_repo1_show b/system/t09_repo/MoveRepo1Test_repo1_show index 4f96e299..27af93f6 100644 --- a/system/t09_repo/MoveRepo1Test_repo1_show +++ b/system/t09_repo/MoveRepo1Test_repo1_show @@ -2,6 +2,7 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 1 +Number of packages: 2 Packages: + libboost-program-options-dev_1.62.0.1_i386 pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/MoveRepo2Test_repo1_show b/system/t09_repo/MoveRepo2Test_repo1_show index 4f96e299..27af93f6 100644 --- a/system/t09_repo/MoveRepo2Test_repo1_show +++ b/system/t09_repo/MoveRepo2Test_repo1_show @@ -2,6 +2,7 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 1 +Number of packages: 2 Packages: + libboost-program-options-dev_1.62.0.1_i386 pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/MoveRepo4Test_repo1_show b/system/t09_repo/MoveRepo4Test_repo1_show index 1defdfd8..52125737 100644 --- a/system/t09_repo/MoveRepo4Test_repo1_show +++ b/system/t09_repo/MoveRepo4Test_repo1_show @@ -2,8 +2,9 @@ Name: repo1 Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/RemoveRepo1Test_repo_show b/system/t09_repo/RemoveRepo1Test_repo_show index 402c9357..67b37077 100644 --- a/system/t09_repo/RemoveRepo1Test_repo_show +++ b/system/t09_repo/RemoveRepo1Test_repo_show @@ -2,6 +2,7 @@ Name: local-repo Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 1 +Number of packages: 2 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 diff --git a/system/t09_repo/RemoveRepo2Test_repo_show b/system/t09_repo/RemoveRepo2Test_repo_show index f5d2f977..ad7ec470 100644 --- a/system/t09_repo/RemoveRepo2Test_repo_show +++ b/system/t09_repo/RemoveRepo2Test_repo_show @@ -2,6 +2,7 @@ Name: local-repo Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 1 +Number of packages: 2 Packages: + libboost-program-options-dev_1.62.0.1_i386 pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/RemoveRepo4Test_repo_show b/system/t09_repo/RemoveRepo4Test_repo_show index 43ea0804..3dce55fa 100644 --- a/system/t09_repo/RemoveRepo4Test_repo_show +++ b/system/t09_repo/RemoveRepo4Test_repo_show @@ -2,8 +2,9 @@ Name: local-repo Comment: Cool Default Distribution: squeeze Default Component: main -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/ShowRepo2Test_gold b/system/t09_repo/ShowRepo2Test_gold index 8aaac41e..3afdccd4 100644 --- a/system/t09_repo/ShowRepo2Test_gold +++ b/system/t09_repo/ShowRepo2Test_gold @@ -2,8 +2,9 @@ Name: repo2 Comment: Cool Default Distribution: wheezy Default Component: contrib -Number of packages: 3 +Number of packages: 4 Packages: + libboost-program-options-dev_1.62.0.1_i386 libboost-program-options-dev_1.49.0.1_i386 pyspi_0.6.1-1.4_source pyspi_0.6.1-1.3_source diff --git a/system/t09_repo/cmdimport.py b/system/t09_repo/cmdimport.py index da975fe0..b3019dd6 100644 --- a/system/t09_repo/cmdimport.py +++ b/system/t09_repo/cmdimport.py @@ -93,7 +93,7 @@ class ImportRepo6Test(BaseTest): """ fixtureCmds = [ "aptly repo create -comment=Cool -distribution=squeeze repo1", - "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy", + "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ stretch", ] runCmd = "aptly repo import mirror1 repo1 nginx" expectedCode = 1 diff --git a/system/t12_api/files.py b/system/t12_api/files.py index e978fbdf..f1b9d52e 100644 --- a/system/t12_api/files.py +++ b/system/t12_api/files.py @@ -91,9 +91,9 @@ class FilesAPITestSecurity(APITest): """ def check(self): - self.check_equal(self.delete("/api/files/.").status_code, 400) + self.check_equal(self.delete("/api/files/.").status_code, 404) self.check_equal(self.delete("/api/files").status_code, 404) self.check_equal(self.delete("/api/files/").status_code, 404) - self.check_equal(self.delete("/api/files/../.").status_code, 400) - self.check_equal(self.delete("/api/files/./..").status_code, 400) - self.check_equal(self.delete("/api/files/dir/..").status_code, 400) + self.check_equal(self.delete("/api/files/../.").status_code, 404) + self.check_equal(self.delete("/api/files/./..").status_code, 404) + self.check_equal(self.delete("/api/files/dir/..").status_code, 404) diff --git a/systemd/activation/listeners.go b/systemd/activation/listeners.go index fd5dfc70..37135050 100644 --- a/systemd/activation/listeners.go +++ b/systemd/activation/listeners.go @@ -47,7 +47,7 @@ func TLSListeners(unsetEnv bool, tlsConfig *tls.Config) ([]net.Listener, error) return nil, err } - if tlsConfig != nil && err == nil { + if tlsConfig != nil { for i, l := range listeners { // Activate TLS only for TCP sockets if l.Addr().Network() == "tcp" {