Fix system tests

This commit is contained in:
Lorenzo Bolla
2021-09-21 18:52:43 +02:00
parent ff51c46915
commit 787cc8e3ee
51 changed files with 607 additions and 66 deletions
+2 -4
View File
@@ -224,10 +224,8 @@ func (context *AptlyContext) newDownloader(progress aptly.Progress) aptly.Downlo
maxTries := context.config().DownloadRetries + 1 maxTries := context.config().DownloadRetries + 1
maxTriesFlag := context.flags.Lookup("max-tries") maxTriesFlag := context.flags.Lookup("max-tries")
if maxTriesFlag != nil { if maxTriesFlag != nil {
maxTriesFlagValue := maxTriesFlag.Value.Get().(int) // If flag is defined prefer it to global setting
if maxTriesFlagValue > maxTries { maxTries = maxTriesFlag.Value.Get().(int)
maxTries = maxTriesFlagValue
}
} }
return http.NewDownloader(downloadLimit*1024, maxTries, progress) return http.NewDownloader(downloadLimit*1024, maxTries, progress)
} }
+1
View File
@@ -174,6 +174,7 @@ func (downloader *downloaderImpl) DownloadWithChecksum(ctx context.Context, url
if downloader.progress != nil { if downloader.progress != nil {
downloader.progress.Printf("Downloading %s...\n", url) downloader.progress.Printf("Downloading %s...\n", url)
defer downloader.progress.Flush()
} }
req, err := downloader.newRequest(ctx, "GET", url) req, err := downloader.newRequest(ctx, "GET", url)
+9
View File
@@ -47,7 +47,14 @@ class APITest(BaseTest):
kwargs["headers"]["Content-Type"] = "application/json" kwargs["headers"]["Content-Type"] = "application/json"
return requests.post("http://%s%s" % (self.base_url, uri), *args, **kwargs) return requests.post("http://%s%s" % (self.base_url, uri), *args, **kwargs)
def _ensure_async(self, kwargs):
# Make sure we run this as an async task
params = kwargs.get('params', {})
params.setdefault('_async', True)
kwargs['params'] = params
def post_task(self, uri, *args, **kwargs): def post_task(self, uri, *args, **kwargs):
self._ensure_async(kwargs)
resp = self.post(uri, *args, **kwargs) resp = self.post(uri, *args, **kwargs)
if resp.status_code != 202: if resp.status_code != 202:
return resp return resp
@@ -67,6 +74,7 @@ class APITest(BaseTest):
return requests.put("http://%s%s" % (self.base_url, uri), *args, **kwargs) return requests.put("http://%s%s" % (self.base_url, uri), *args, **kwargs)
def put_task(self, uri, *args, **kwargs): def put_task(self, uri, *args, **kwargs):
self._ensure_async(kwargs)
resp = self.put(uri, *args, **kwargs) resp = self.put(uri, *args, **kwargs)
if resp.status_code != 202: if resp.status_code != 202:
return resp return resp
@@ -86,6 +94,7 @@ class APITest(BaseTest):
return requests.delete("http://%s%s" % (self.base_url, uri), *args, **kwargs) return requests.delete("http://%s%s" % (self.base_url, uri), *args, **kwargs)
def delete_task(self, uri, *args, **kwargs): def delete_task(self, uri, *args, **kwargs):
self._ensure_async(kwargs)
resp = self.delete(uri, *args, **kwargs) resp = self.delete(uri, *args, **kwargs)
if resp.status_code != 202: if resp.status_code != 202:
return resp return resp
+32 -2
View File
@@ -78,11 +78,31 @@ class GPGFinder(object):
return None return None
class DotFinder(object):
"""
dot binary discovery.
"""
def __init__(self):
self.dot = self.find_dot(["dot"])
def find_dot(self, executables):
for executable in executables:
try:
subprocess.check_output([executable])
return executable
except Exception:
pass
return None
class BaseTest(object): class BaseTest(object):
""" """
Base class for all tests. Base class for all tests.
""" """
skipTest = False
longTest = False longTest = False
fixturePool = False fixturePool = False
fixturePoolCopy = False fixturePoolCopy = False
@@ -92,6 +112,7 @@ class BaseTest(object):
requiresFTP = False requiresFTP = False
requiresGPG1 = False requiresGPG1 = False
requiresGPG2 = False requiresGPG2 = False
requiresDot = False
expectedCode = 0 expectedCode = 0
configFile = { configFile = {
@@ -128,11 +149,15 @@ class BaseTest(object):
captureResults = False captureResults = False
gpgFinder = GPGFinder() gpgFinder = GPGFinder()
dotFinder = DotFinder()
def test(self): def test(self):
self.prepare() self.prepare()
self.run() try:
self.check() self.run()
self.check()
finally:
self.teardown()
def prepare_remove_all(self): def prepare_remove_all(self):
if os.path.exists(os.path.join(os.environ["HOME"], ".aptly")): if os.path.exists(os.path.join(os.environ["HOME"], ".aptly")):
@@ -165,6 +190,8 @@ class BaseTest(object):
return False return False
if self.requiresGPG2 and self.gpgFinder.gpg2 is None: if self.requiresGPG2 and self.gpgFinder.gpg2 is None:
return False return False
if self.requiresDot and self.dotFinder.dot is None:
return False
return True return True
@@ -368,6 +395,9 @@ class BaseTest(object):
self.prepare_default_config() self.prepare_default_config()
self.prepare_fixture() self.prepare_fixture()
def teardown(self):
pass
def start_webserver(self, directory): def start_webserver(self, directory):
FileHTTPServerRequestHandler.rootPath = directory FileHTTPServerRequestHandler.rootPath = directory
self.webserver = ThreadedTCPServer( self.webserver = ThreadedTCPServer(
+25 -6
View File
@@ -5,9 +5,11 @@ import importlib
import os import os
import inspect import inspect
import fnmatch import fnmatch
import re
import sys import sys
import traceback import traceback
import random import random
import subprocess
from lib import BaseTest from lib import BaseTest
from s3_lib import S3Test from s3_lib import S3Test
@@ -22,9 +24,14 @@ except ImportError:
return s return s
def natural_key(string_):
"""See https://blog.codinghorror.com/sorting-for-humans-natural-sort-order/"""
return [int(s) if s.isdigit() else s for s in re.split(r'(\d+)', string_)]
def walk_modules(package): def walk_modules(package):
yield importlib.import_module(package) yield importlib.import_module(package)
for name in glob.glob(package + "/*.py"): for name in sorted(glob.glob(package + "/*.py"), key=natural_key):
name = os.path.splitext(os.path.basename(name))[0] name = os.path.splitext(os.path.basename(name))[0]
if name == "__init__": if name == "__init__":
continue continue
@@ -37,14 +44,14 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non
Run system test. Run system test.
""" """
if not tests: if not tests:
tests = glob.glob("t*_*") tests = sorted(glob.glob("t*_*"), key=natural_key)
fails = [] fails = []
numTests = numFailed = numSkipped = 0 numTests = numFailed = numSkipped = 0
lastBase = None lastBase = None
for test in tests: for test in tests:
for testModule in walk_modules(test): for testModule in walk_modules(test):
for name in dir(testModule): for name in sorted(dir(testModule), key=natural_key):
o = getattr(testModule, name) o = getattr(testModule, name)
if not (inspect.isclass(o) and issubclass(o, BaseTest) and o is not BaseTest and if not (inspect.isclass(o) and issubclass(o, BaseTest) and o is not BaseTest and
@@ -72,9 +79,13 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non
sys.stdout.flush() sys.stdout.flush()
t = o() t = o()
if t.longTest and not include_long_tests or not t.fixture_available(): if t.longTest and not include_long_tests or not t.fixture_available() or t.skipTest:
numSkipped += 1 numSkipped += 1
sys.stdout.write(colored("SKIP\n", color="yellow")) msg = 'SKIP'
if t.skipTest and t.skipTest is not True:
# If we have a reason to skip, print it
msg += ': ' + t.skipTest
sys.stdout.write(colored(msg + "\n", color="yellow"))
continue continue
numTests += 1 numTests += 1
@@ -82,7 +93,7 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non
try: try:
t.captureResults = capture_results t.captureResults = capture_results
t.test() t.test()
except BaseException: except Exception:
numFailed += 1 numFailed += 1
typ, val, tb = sys.exc_info() typ, val, tb = sys.exc_info()
fails.append((test, t, typ, val, tb, testModule)) fails.append((test, t, typ, val, tb, testModule))
@@ -120,6 +131,14 @@ if __name__ == "__main__":
except BaseException, e: except BaseException, e:
print "Failed to capture current version: ", e print "Failed to capture current version: ", e
output = subprocess.check_output(['gpg', '--version'])
if not output.startswith('gpg (GnuPG) 1'):
raise RuntimeError('Tests require gpg v1')
output = subprocess.check_output(['gpgv', '--version'])
if not output.startswith('gpgv (GnuPG) 1'):
raise RuntimeError('Tests require gpgv v1')
os.chdir(os.path.realpath(os.path.dirname(sys.argv[0]))) os.chdir(os.path.realpath(os.path.dirname(sys.argv[0])))
random.seed() random.seed()
include_long_tests = False include_long_tests = False
+2 -1
View File
@@ -21,5 +21,6 @@
"FileSystemPublishEndpoints": {}, "FileSystemPublishEndpoints": {},
"S3PublishEndpoints": {}, "S3PublishEndpoints": {},
"SwiftPublishEndpoints": {}, "SwiftPublishEndpoints": {},
"AzurePublishEndpoints": {} "AzurePublishEndpoints": {},
"AsyncAPI": false
} }
+3 -2
View File
@@ -21,5 +21,6 @@
"FileSystemPublishEndpoints": {}, "FileSystemPublishEndpoints": {},
"S3PublishEndpoints": {}, "S3PublishEndpoints": {},
"SwiftPublishEndpoints": {}, "SwiftPublishEndpoints": {},
"AzurePublishEndpoints": {} "AzurePublishEndpoints": {},
} "AsyncAPI": false
}
@@ -1,11 +1,14 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/InRelease... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/InRelease...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/InRelease
gpgv: RSA key ID 22F3D138 gpgv: RSA key ID 22F3D138
gpgv: RSA key ID 386FA1D9 gpgv: RSA key ID 386FA1D9
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/Release
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/Release.gpg... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/Release.gpg...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/Release.gpg
gpgv: RSA key ID 22F3D138 gpgv: RSA key ID 22F3D138
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror13]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added. Mirror [mirror13]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added.
You can run 'aptly mirror update mirror13' to download repository contents. You can run 'aptly mirror update mirror13' to download repository contents.
@@ -1,4 +1,5 @@
Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease... Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease...
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease
gpgv: RSA key ID 115C3D8A gpgv: RSA key ID 115C3D8A
gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>" gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>"
gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>" gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>"
@@ -1,2 +1,3 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
ERROR: unable to fetch mirror: architecture source not available in repo [mirror16]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-architectures to override ERROR: unable to fetch mirror: architecture source not available in repo [mirror16]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-architectures to override
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror17]: http://cdn-fastly.deb.debian.org/debian/ stretch [src] successfully added. Mirror [mirror17]: http://cdn-fastly.deb.debian.org/debian/ stretch [src] successfully added.
You can run 'aptly mirror update mirror17' to download repository contents. You can run 'aptly mirror update mirror17' to download repository contents.
@@ -1,4 +1,5 @@
Downloading http://security.debian.org/dists/stretch/updates/InRelease... Downloading http://security.debian.org/dists/stretch/updates/InRelease...
Success downloading http://security.debian.org/dists/stretch/updates/InRelease
gpgv: RSA key ID 331F7F50 gpgv: RSA key ID 331F7F50
gpgv: Good signature from "Debian Security Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org>" gpgv: Good signature from "Debian Security Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org>"
gpgv: RSA key ID E562B32A gpgv: RSA key ID E562B32A
+1
View File
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror1]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added. Mirror [mirror1]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added.
You can run 'aptly mirror update mirror1' to download repository contents. You can run 'aptly mirror update mirror1' to download repository contents.
@@ -1,4 +1,5 @@
Downloading http://security.debian.org/dists/stretch/updates/Release... Downloading http://security.debian.org/dists/stretch/updates/Release...
Success downloading http://security.debian.org/dists/stretch/updates/Release
Mirror [mirror22]: http://security.debian.org/ stretch/updates successfully added. Mirror [mirror22]: http://security.debian.org/ stretch/updates successfully added.
You can run 'aptly mirror update mirror22' to download repository contents. You can run 'aptly mirror update mirror22' to download repository contents.
@@ -1,4 +1,5 @@
Downloading http://security.debian.org/dists/stretch/updates/InRelease... Downloading http://security.debian.org/dists/stretch/updates/InRelease...
Success downloading http://security.debian.org/dists/stretch/updates/InRelease
gpgv: RSA key ID 331F7F50 gpgv: RSA key ID 331F7F50
gpgv: Good signature from "Debian Security Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org>" gpgv: Good signature from "Debian Security Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org>"
gpgv: RSA key ID E562B32A gpgv: RSA key ID E562B32A
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror25]: http://cdn-fastly.deb.debian.org/debian/ stretch [udeb] successfully added. Mirror [mirror25]: http://cdn-fastly.deb.debian.org/debian/ stretch [udeb] successfully added.
You can run 'aptly mirror update mirror25' to download repository contents. You can run 'aptly mirror update mirror25' to download repository contents.
@@ -1,5 +1,6 @@
Downloading http://linux.dell.com/repo/community/ubuntu/dists/wheezy/Release... Downloading http://linux.dell.com/repo/community/ubuntu/dists/wheezy/Release...
Following redirect to https://linux.dell.com/repo/community/ubuntu/dists/wheezy/Release... Following redirect to https://linux.dell.com/repo/community/ubuntu/dists/wheezy/Release...
Success downloading http://linux.dell.com/repo/community/ubuntu/dists/wheezy/Release
Mirror [mirror27]: http://linux.dell.com/repo/community/ubuntu/ wheezy successfully added. Mirror [mirror27]: http://linux.dell.com/repo/community/ubuntu/ wheezy successfully added.
You can run 'aptly mirror update mirror27' to download repository contents. You can run 'aptly mirror update mirror27' to download repository contents.
@@ -3,6 +3,7 @@ openpgp: RSA key ID 648ACFD622F3D138
openpgp: Good signature from "Debian Archive Automatic Signing Key (10/buster) <ftpmaster@debian.org>" openpgp: Good signature from "Debian Archive Automatic Signing Key (10/buster) <ftpmaster@debian.org>"
openpgp: RSA key ID 0E98404D386FA1D9 openpgp: RSA key ID 0E98404D386FA1D9
openpgp: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) <ftpmaster@debian.org>" openpgp: Good signature from "Debian Archive Automatic Signing Key (11/bullseye) <ftpmaster@debian.org>"
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/InRelease
Mirror [mirror9]: http://cdn-fastly.deb.debian.org/debian/ stretch-backports successfully added. Mirror [mirror9]: http://cdn-fastly.deb.debian.org/debian/ stretch-backports successfully added.
You can run 'aptly mirror update mirror9' to download repository contents. You can run 'aptly mirror update mirror9' to download repository contents.
+1
View File
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror2]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added. Mirror [mirror2]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added.
You can run 'aptly mirror update mirror2' to download repository contents. You can run 'aptly mirror update mirror2' to download repository contents.
+1
View File
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror3]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added. Mirror [mirror3]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added.
You can run 'aptly mirror update mirror3' to download repository contents. You can run 'aptly mirror update mirror3' to download repository contents.
+1
View File
@@ -1,2 +1,3 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
ERROR: unable to fetch mirror: component life not available in repo [mirror4]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-components to override ERROR: unable to fetch mirror: component life not available in repo [mirror4]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-components to override
+1
View File
@@ -1,2 +1,3 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
ERROR: unable to fetch mirror: architecture nano68 not available in repo [mirror5]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-architectures to override ERROR: unable to fetch mirror: architecture nano68 not available in repo [mirror5]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-architectures to override
+1
View File
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror7]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added. Mirror [mirror7]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully added.
You can run 'aptly mirror update mirror7' to download repository contents. You can run 'aptly mirror update mirror7' to download repository contents.
+1
View File
@@ -1,2 +1,3 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
ERROR: unable to add mirror: mirror with name mirror8 already exists ERROR: unable to add mirror: mirror with name mirror8 already exists
+1
View File
@@ -1,4 +1,5 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/InRelease... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/InRelease...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch-backports/InRelease
gpgv: RSA key ID 22F3D138 gpgv: RSA key ID 22F3D138
gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) <ftpmaster@debian.org>" gpgv: Good signature from "Debian Archive Automatic Signing Key (10/buster) <ftpmaster@debian.org>"
gpgv: RSA key ID 386FA1D9 gpgv: RSA key ID 386FA1D9
+1
View File
@@ -1,2 +1,3 @@
Downloading ftp://ftp.ch.debian.org/debian/dists/stretch/Release... Downloading ftp://ftp.ch.debian.org/debian/dists/stretch/Release...
Success downloading ftp://ftp.ch.debian.org/debian/dists/stretch/Release
Mirror [mirror10]: ftp://ftp.ch.debian.org/debian/ stretch successfully updated. Mirror [mirror10]: ftp://ftp.ch.debian.org/debian/ stretch successfully updated.
+1
View File
@@ -1,2 +1,3 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Mirror [mirror6]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully updated. Mirror [mirror6]: http://cdn-fastly.deb.debian.org/debian/ stretch successfully updated.
+1
View File
@@ -1,2 +1,3 @@
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
ERROR: unable to edit: architecture x56 not available in repo [stretch]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-architectures to override ERROR: unable to edit: architecture x56 not available in repo [stretch]: http://cdn-fastly.deb.debian.org/debian/ stretch, use -force-architectures to override
+12
View File
@@ -18,6 +18,18 @@ Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.
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-1~jessiecran.0_i386.deb...
Mirror `flat-src` has been successfully updated. Mirror `flat-src` has been successfully updated.
Packages filtered: 107 -> 9. Packages filtered: 107 -> 9.
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Sources.bz2
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/pkg-r-autopkgtest_20180403~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-data_0.6.5-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_i386.deb
gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>" gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>"
gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>" gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>"
gpgv: RSA key ID 115C3D8A gpgv: RSA key ID 115C3D8A
+56 -1
View File
@@ -58,4 +58,59 @@ Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/ma
Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb... Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb...
Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb... Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb...
Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb... Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb...
Mirror `varnish` has been successfully updated. Mirror `varnish` has been successfully updated.
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb
+4 -1
View File
@@ -6,4 +6,7 @@ Downloading & parsing package files...
Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release... Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release...
Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2... Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2...
Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2... Downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2...
Mirror `varnish` has been successfully updated. Mirror `varnish` has been successfully updated.
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2
+3 -1
View File
@@ -7,4 +7,6 @@ Downloading & parsing package files...
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/main/binary-i386/Packages.gz... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/main/binary-i386/Packages.gz...
Mirror `stretch` has been successfully updated. Mirror `stretch` has been successfully updated.
Packages filtered: 50604 -> 1. Packages filtered: 50604 -> 1.
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/main/binary-i386/Packages.gz
+4 -1
View File
@@ -8,4 +8,7 @@ Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release...
Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/main/binary-i386/Packages.gz... Downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/main/binary-i386/Packages.gz...
Downloading http://cdn-fastly.deb.debian.org/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb... Downloading http://cdn-fastly.deb.debian.org/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb...
Mirror `stretch` has been successfully updated. Mirror `stretch` has been successfully updated.
Packages filtered: 50604 -> 1. Packages filtered: 50604 -> 1.
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/Release
Success downloading http://cdn-fastly.deb.debian.org/debian/dists/stretch/main/binary-i386/Packages.gz
Success downloading http://cdn-fastly.deb.debian.org/debian/pool/main/b/boost-defaults/libboost-program-options-dev_1.62.0.1_i386.deb
+56 -1
View File
@@ -58,4 +58,59 @@ Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/ma
Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb... Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb...
Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb... Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb...
Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb... Downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb...
Mirror `varnish` has been successfully updated. Mirror `varnish` has been successfully updated.
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/Release
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-amd64/Packages.bz2
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/dists/wheezy/main/binary-i386/Packages.bz2
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.4-1%29/libvarnishapi1_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.5-1%29/libvarnishapi1_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi-dev_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.6-1%29/libvarnishapi1_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi-dev_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish%20%283.0.7-1%29/libvarnishapi1_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/libv/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-dbg_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish-doc_3.0.4-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.4-1%29/varnish_3.0.4-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-dbg_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish-doc_3.0.5-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.5-1%29/varnish_3.0.5-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-dbg_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish-doc_3.0.6-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.6-1%29/varnish_3.0.6-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-dbg_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish-doc_3.0.7-1~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish%20%283.0.7-1%29/varnish_3.0.7-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%281.16.0%29/varnish-agent_1.16.0~wheezy_all.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.0%29/varnish-agent_2.2.0~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1%29/varnish-agent_2.2.1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%282.2.1+nmu1%29/varnish-agent_2.2.1+nmu1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.0%29/varnish-agent_3.0.0~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish-agent%20%283.0.1%29/varnish-agent_3.0.1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb
Success downloading https://packagecloud.io/varnishcache/varnish30/debian/pool/wheezy/main/v/varnish/varnish_3.0.3-1~wheezy_i386.deb
@@ -13,5 +13,11 @@ Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cl
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-1~jessiecran.0_i386.deb...
Mirror `flat` has been successfully updated. Mirror `flat` has been successfully updated.
Packages filtered: 78 -> 4. Packages filtered: 78 -> 4.
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_i386.deb
openpgp: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>" openpgp: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>"
openpgp: RSA key ID FCAE2A0E115C3D8A openpgp: RSA key ID FCAE2A0E115C3D8A
@@ -1,8 +1,10 @@
Downloading https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64/InRelease... Downloading https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64/InRelease...
openpgp: RSA key ID DDCAE044F796ECB0 openpgp: RSA key ID DDCAE044F796ECB0
openpgp: Good signature from "NVIDIA CORPORATION (Open Source Projects) <cudatools@nvidia.com>" openpgp: Good signature from "NVIDIA CORPORATION (Open Source Projects) <cudatools@nvidia.com>"
Success downloading https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64/InRelease
Downloading & parsing package files... Downloading & parsing package files...
Downloading https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64/Packages.xz... Downloading https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64/Packages.xz...
Success downloading https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64/Packages.xz
Applying filter... Applying filter...
Building download queue... Building download queue...
+4
View File
@@ -1,4 +1,8 @@
Downloading ${url}dists/hardy/Release... Downloading ${url}dists/hardy/Release...
Success downloading ${url}dists/hardy/Release
Downloading & parsing package files... Downloading & parsing package files...
Downloading ${url}dists/hardy/main/binary-amd64/Packages... Downloading ${url}dists/hardy/main/binary-amd64/Packages...
Error downloading ${url}dists/hardy/main/binary-amd64/Packages: ${url}dists/hardy/main/binary-amd64/Packages: sha256 hash mismatch "494414ded24da13c451b13b424928821351c78fce49f93d9e1b55f102790c206" != "8a21688ae769f2b4ffcaa366409f679d" retrying...
Retrying 0 ${url}dists/hardy/main/binary-amd64/Packages...
Giving up on ${url}dists/hardy/main/binary-amd64/Packages...
ERROR: unable to update: ${url}dists/hardy/main/binary-amd64/Packages: sha256 hash mismatch "494414ded24da13c451b13b424928821351c78fce49f93d9e1b55f102790c206" != "8a21688ae769f2b4ffcaa366409f679d" ERROR: unable to update: ${url}dists/hardy/main/binary-amd64/Packages: sha256 hash mismatch "494414ded24da13c451b13b424928821351c78fce49f93d9e1b55f102790c206" != "8a21688ae769f2b4ffcaa366409f679d"
+11
View File
@@ -1,8 +1,19 @@
Downloading ${url}dists/hardy/Release... Downloading ${url}dists/hardy/Release...
Success downloading ${url}dists/hardy/Release
Downloading & parsing package files... Downloading & parsing package files...
Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2... Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2...
Error downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2: HTTP code 404 while fetching ${url}dists/hardy/main/binary-amd64/Packages.bz2 retrying...
Retrying 0 ${url}dists/hardy/main/binary-amd64/Packages.bz2...
Giving up on ${url}dists/hardy/main/binary-amd64/Packages.bz2...
Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz... Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz...
Error downloading ${url}dists/hardy/main/binary-amd64/Packages.gz: HTTP code 404 while fetching ${url}dists/hardy/main/binary-amd64/Packages.gz retrying...
Retrying 0 ${url}dists/hardy/main/binary-amd64/Packages.gz...
Giving up on ${url}dists/hardy/main/binary-amd64/Packages.gz...
Downloading ${url}dists/hardy/main/binary-amd64/Packages.xz... Downloading ${url}dists/hardy/main/binary-amd64/Packages.xz...
Error downloading ${url}dists/hardy/main/binary-amd64/Packages.xz: HTTP code 404 while fetching ${url}dists/hardy/main/binary-amd64/Packages.xz retrying...
Retrying 0 ${url}dists/hardy/main/binary-amd64/Packages.xz...
Giving up on ${url}dists/hardy/main/binary-amd64/Packages.xz...
Downloading ${url}dists/hardy/main/binary-amd64/Packages... Downloading ${url}dists/hardy/main/binary-amd64/Packages...
WARNING: ${url}dists/hardy/main/binary-amd64/Packages: sha256 hash mismatch "494414ded24da13c451b13b424928821351c78fce49f93d9e1b55f102790c206" != "8a21688ae769f2b4ffcaa366409f679d" WARNING: ${url}dists/hardy/main/binary-amd64/Packages: sha256 hash mismatch "494414ded24da13c451b13b424928821351c78fce49f93d9e1b55f102790c206" != "8a21688ae769f2b4ffcaa366409f679d"
Success downloading ${url}dists/hardy/main/binary-amd64/Packages
ERROR: unable to update: malformed stanza syntax ERROR: unable to update: malformed stanza syntax
+5
View File
@@ -1,8 +1,13 @@
Downloading ${url}dists/hardy/Release... Downloading ${url}dists/hardy/Release...
Success downloading ${url}dists/hardy/Release
Downloading & parsing package files... Downloading & parsing package files...
Downloading ${url}dists/hardy/main/binary-amd64/Packages... Downloading ${url}dists/hardy/main/binary-amd64/Packages...
Success downloading ${url}dists/hardy/main/binary-amd64/Packages
Building download queue... Building download queue...
Download queue: 1 items (30 B) Download queue: 1 items (30 B)
Downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb... Downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb...
Error downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: sha1 hash mismatch "8d3a014000038725d6daf8771b42a0784253688f" != "66b27417d37e024c46526c2f6d358a754fc552f3" retrying...
Retrying 0 ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb...
Giving up on ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb...
ERROR: unable to update: download errors: ERROR: unable to update: download errors:
${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: sha1 hash mismatch "8d3a014000038725d6daf8771b42a0784253688f" != "66b27417d37e024c46526c2f6d358a754fc552f3" ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: sha1 hash mismatch "8d3a014000038725d6daf8771b42a0784253688f" != "66b27417d37e024c46526c2f6d358a754fc552f3"
+12
View File
@@ -1,12 +1,24 @@
Downloading ${url}dists/hardy/Release... Downloading ${url}dists/hardy/Release...
Success downloading ${url}dists/hardy/Release
Downloading & parsing package files... Downloading & parsing package files...
Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2... Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2...
Error downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2: HTTP code 404 while fetching ${url}dists/hardy/main/binary-amd64/Packages.bz2 retrying...
Retrying 0 ${url}dists/hardy/main/binary-amd64/Packages.bz2...
Giving up on ${url}dists/hardy/main/binary-amd64/Packages.bz2...
Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz... Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz...
Error downloading ${url}dists/hardy/main/binary-amd64/Packages.gz: HTTP code 404 while fetching ${url}dists/hardy/main/binary-amd64/Packages.gz retrying...
Retrying 0 ${url}dists/hardy/main/binary-amd64/Packages.gz...
Giving up on ${url}dists/hardy/main/binary-amd64/Packages.gz...
Downloading ${url}dists/hardy/main/binary-amd64/Packages.xz... Downloading ${url}dists/hardy/main/binary-amd64/Packages.xz...
Error downloading ${url}dists/hardy/main/binary-amd64/Packages.xz: HTTP code 404 while fetching ${url}dists/hardy/main/binary-amd64/Packages.xz retrying...
Retrying 0 ${url}dists/hardy/main/binary-amd64/Packages.xz...
Giving up on ${url}dists/hardy/main/binary-amd64/Packages.xz...
Downloading ${url}dists/hardy/main/binary-amd64/Packages... Downloading ${url}dists/hardy/main/binary-amd64/Packages...
Success downloading ${url}dists/hardy/main/binary-amd64/Packages
Building download queue... Building download queue...
Download queue: 1 items (30 B) Download queue: 1 items (30 B)
Downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb... Downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb...
WARNING: ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: sha1 hash mismatch "8d3a014000038725d6daf8771b42a0784253688f" != "66b27417d37e024c46526c2f6d358a754fc552f3" WARNING: ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: sha1 hash mismatch "8d3a014000038725d6daf8771b42a0784253688f" != "66b27417d37e024c46526c2f6d358a754fc552f3"
Success downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb
Mirror `failure` has been successfully updated. Mirror `failure` has been successfully updated.
+80
View File
@@ -84,6 +84,86 @@ Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-da
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_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-1~jessiecran.0_i386.deb...
Mirror `flat` has been successfully updated. Mirror `flat` has been successfully updated.
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/pkg-r-autopkgtest_20180403~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-boot_1.3-20-2~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-15-2~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-16-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.6-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-data_0.6.5-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_i386.deb
gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>" gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>"
gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>" gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>"
gpgv: RSA key ID 115C3D8A gpgv: RSA key ID 115C3D8A
+167
View File
@@ -171,6 +171,173 @@ Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_
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-1~jessiecran.0.dsc...
Downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_2.43-3.orig.tar.gz... 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. Mirror `flat-src` has been successfully updated.
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/InRelease
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Packages.bz2
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/Sources.bz2
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/boot_1.3-20-2~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/boot_1.3-20-2~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/boot_1.3-20.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/cluster_2.0.7-1-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/cluster_2.0.7-1-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/cluster_2.0.7-1.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-15-2~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-15-2~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-15.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-16-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-16-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/codetools_0.2-16.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/dh-r_20180403~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/foreign_0.8.71-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/foreign_0.8.71-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/foreign_0.8.71.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/kernsmooth_2.23-15-3~jessiecran.0.diff.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/kernsmooth_2.23-15-3~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/kernsmooth_2.23-15.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-35-1~jessiecran.0.diff.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-35-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-35.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-38-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-38-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/lattice_0.20-38.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.5.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/littler_0.3.6.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-26-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-26-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-26.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-27-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-27-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/mgcv_1.8-27.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/nlme_3.1.137-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/nlme_3.1.137-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/nlme_3.1.137.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/pkg-r-autopkgtest_20180403~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/python3-rpy2_2.9.5-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.2-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core-dbg_3.5.3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.2-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-core_3.5.3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-dev_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base-html_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.2.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-base_3.5.3.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-boot_1.3-20-2~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0.diff.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14-2~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-14.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-class_7.3-15.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-cluster_2.0.7-1-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1-2~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-coda_0.19-1.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-15-2~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-codetools_0.2-16-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-foreign_0.8.71-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-kernsmooth_2.23-15-3~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-35-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-lattice_0.20-38-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.5-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-littler_0.3.6-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mass_7.3-51.1.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-15-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-matrix_1.2-16-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-26-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-mgcv_1.8-27-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nlme_3.1.137-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0.diff.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12-2~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-nnet_7.3-12.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rodbc_1.3-15-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-rpart_4.1-13-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0.diff.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11-2~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-spatial_7.3-11.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-cran-survival_2.43-3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-html_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-info_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-doc-pdf_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.2-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-mathlib_3.5.3-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.2-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/r-recommended_3.5.3-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward-data_0.6.5-1~jessiecran.0_all.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_amd64.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5-1~jessiecran.0_i386.deb
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rkward_0.6.5.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-15-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-15-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-15.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-16-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-16-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rmatrix_1.2-16.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rodbc_1.3-15-1~jessiecran.0.diff.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rodbc_1.3-15-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rodbc_1.3-15.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpart_4.1-13-1~jessiecran.0.diff.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpart_4.1-13-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpart_4.1-13.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpy2_2.9.5-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpy2_2.9.5-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/rpy2_2.9.5.orig.tar.gz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_2.43-3-1~jessiecran.0.debian.tar.xz
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_2.43-3-1~jessiecran.0.dsc
Success downloading https://cloud.r-project.org/bin/linux/debian/jessie-cran35/survival_2.43-3.orig.tar.gz
gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>" gpgv: aka "Johannes Ranke <jranke@uni-bremen.de>"
gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>" gpgv: Good signature from "Johannes Ranke (Wissenschaftlicher Berater) <johannes.ranke@jrwb.de>"
gpgv: RSA key ID 115C3D8A gpgv: RSA key ID 115C3D8A
+8
View File
@@ -58,6 +58,7 @@ class CreateMirror6Test(BaseTest):
""" """
create mirror: missing release create mirror: missing release
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
expectedCode = 1 expectedCode = 1
requiresGPG1 = True requiresGPG1 = True
@@ -124,6 +125,7 @@ class CreateMirror11Test(BaseTest):
""" """
create mirror: repo with Release + Release.gpg verification create mirror: repo with Release + Release.gpg verification
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://cdn-fastly.deb.debian.org/debian/ stretch" runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://cdn-fastly.deb.debian.org/debian/ stretch"
fixtureGpg = True fixtureGpg = True
@@ -139,6 +141,7 @@ class CreateMirror12Test(BaseTest):
""" """
create mirror: repo with Release+Release.gpg verification, failure create mirror: repo with Release+Release.gpg verification, failure
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://cdn-fastly.deb.debian.org/debian/ stretch" runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://cdn-fastly.deb.debian.org/debian/ stretch"
fixtureGpg = False fixtureGpg = False
gold_processor = BaseTest.expand_environ gold_processor = BaseTest.expand_environ
@@ -211,6 +214,7 @@ class CreateMirror18Test(BaseTest):
""" """
create mirror: mirror with ppa URL create mirror: mirror with ppa URL
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
fixtureGpg = True fixtureGpg = True
configOverride = { configOverride = {
"ppaDistributorID": "ubuntu", "ppaDistributorID": "ubuntu",
@@ -251,6 +255,7 @@ class CreateMirror20Test(BaseTest):
""" """
create mirror: using failing HTTP_PROXY create mirror: using failing HTTP_PROXY
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
fixtureGpg = True fixtureGpg = True
runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror20 http://security.debian.org/ stretch/updates main" runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror20 http://security.debian.org/ stretch/updates main"
@@ -274,6 +279,7 @@ class CreateMirror21Test(BaseTest):
""" """
create mirror: flat repository in subdir create mirror: flat repository in subdir
""" """
skipTest = "Requesting obsolete file - InRelease"
runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror21 http://pkg.jenkins-ci.org/debian-stable binary/" runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror21 http://pkg.jenkins-ci.org/debian-stable binary/"
fixtureGpg = True fixtureGpg = True
@@ -377,6 +383,7 @@ class CreateMirror30Test(BaseTest):
""" """
create mirror: repo with InRelease verification, failure (internal GPG implementation) create mirror: repo with InRelease verification, failure (internal GPG implementation)
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://cdn-fastly.deb.debian.org/debian/ stretch" runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://cdn-fastly.deb.debian.org/debian/ stretch"
configOverride = {"gpgProvider": "internal"} configOverride = {"gpgProvider": "internal"}
gold_processor = BaseTest.expand_environ gold_processor = BaseTest.expand_environ
@@ -391,6 +398,7 @@ class CreateMirror31Test(BaseTest):
""" """
create mirror: repo with Release + Release.gpg verification (internal GPG implementation) create mirror: repo with Release + Release.gpg verification (internal GPG implementation)
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://cdn-fastly.deb.debian.org/debian/ stretch" runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://cdn-fastly.deb.debian.org/debian/ stretch"
configOverride = {"gpgProvider": "internal"} configOverride = {"gpgProvider": "internal"}
fixtureGpg = True fixtureGpg = True
+62 -41
View File
@@ -45,6 +45,9 @@ class UpdateMirror3Test(BaseTest):
"aptly mirror create --ignore-signatures failure ${url} hardy main", "aptly mirror create --ignore-signatures failure ${url} hardy main",
] ]
fixtureWebServer = "test_release" fixtureWebServer = "test_release"
configOverride = {
"downloadRetries": 0,
}
runCmd = "aptly mirror update --ignore-signatures failure" runCmd = "aptly mirror update --ignore-signatures failure"
expectedCode = 1 expectedCode = 1
@@ -60,6 +63,9 @@ class UpdateMirror4Test(BaseTest):
"aptly mirror create --ignore-signatures failure ${url} hardy main", "aptly mirror create --ignore-signatures failure ${url} hardy main",
] ]
fixtureWebServer = "test_release" fixtureWebServer = "test_release"
configOverride = {
"downloadRetries": 0,
}
runCmd = "aptly mirror update -ignore-checksums --ignore-signatures failure" runCmd = "aptly mirror update -ignore-checksums --ignore-signatures failure"
expectedCode = 1 expectedCode = 1
@@ -75,6 +81,9 @@ class UpdateMirror5Test(BaseTest):
"aptly mirror create --ignore-signatures failure ${url} hardy main", "aptly mirror create --ignore-signatures failure ${url} hardy main",
] ]
fixtureWebServer = "test_release2" fixtureWebServer = "test_release2"
configOverride = {
"downloadRetries": 0,
}
runCmd = "aptly mirror update --ignore-signatures failure" runCmd = "aptly mirror update --ignore-signatures failure"
expectedCode = 1 expectedCode = 1
@@ -90,6 +99,10 @@ class UpdateMirror6Test(BaseTest):
"aptly mirror create --ignore-signatures failure ${url} hardy main", "aptly mirror create --ignore-signatures failure ${url} hardy main",
] ]
fixtureWebServer = "test_release2" fixtureWebServer = "test_release2"
configOverride = {
"downloadRetries": 0,
}
runCmd = "aptly mirror update -ignore-checksums --ignore-signatures failure" runCmd = "aptly mirror update -ignore-checksums --ignore-signatures failure"
def gold_processor(self, gold): def gold_processor(self, gold):
@@ -115,6 +128,8 @@ class UpdateMirror8Test(BaseTest):
""" """
update mirrors: with sources (already in pool) update mirrors: with sources (already in pool)
""" """
skipTest = "Requesting obsolete file - maverick/InRelease"
fixtureGpg = True fixtureGpg = True
fixturePool = True fixturePool = True
fixtureCmds = [ fixtureCmds = [
@@ -158,6 +173,7 @@ class UpdateMirror11Test(BaseTest):
""" """
update mirrors: update over FTP update mirrors: update over FTP
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
longTest = False longTest = False
fixtureGpg = True fixtureGpg = True
requiresFTP = True requiresFTP = True
@@ -175,6 +191,7 @@ class UpdateMirror12Test(BaseTest):
""" """
update mirrors: update with udebs update mirrors: update with udebs
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
longTest = False longTest = False
fixtureGpg = True fixtureGpg = True
fixtureCmds = [ fixtureCmds = [
@@ -218,57 +235,57 @@ class UpdateMirror14Test(BaseTest):
return "\n".join(sorted(output.split("\n"))) return "\n".join(sorted(output.split("\n")))
# # disabled because https://dl.bintray.com/smira/deb/ seems to be missing class UpdateMirror15Test(BaseTest):
# """
# class UpdateMirror15Test(BaseTest): update mirrors: update for mirror without MD5 checksums
# """ """
# update mirrors: update for mirror without MD5 checksums skipTest = "Using deprecated service - bintray"
# """ longTest = False
# longTest = False fixtureCmds = [
# fixtureCmds = [ "aptly mirror create --ignore-signatures bintray https://dl.bintray.com/smira/deb/ ./",
# "aptly mirror create --ignore-signatures bintray https://dl.bintray.com/smira/deb/ ./", ]
# ] runCmd = "aptly mirror update --ignore-signatures bintray"
# runCmd = "aptly mirror update --ignore-signatures bintray"
# def output_processor(self, output): def output_processor(self, output):
# return "\n".join(sorted(output.split("\n"))) return "\n".join(sorted(output.split("\n")))
# def check(self): def check(self):
# super(UpdateMirror15Test, self).check() super(UpdateMirror15Test, self).check()
# # check pool # check pool
# self.check_exists( self.check_exists(
# 'pool/c7/6b/4bd12fd92e4dfe1b55b18a67a669_libboost-program-options-dev_1.49.0.1_i386.deb') 'pool/c7/6b/4bd12fd92e4dfe1b55b18a67a669_libboost-program-options-dev_1.49.0.1_i386.deb')
# class UpdateMirror16Test(BaseTest): class UpdateMirror16Test(BaseTest):
# """ """
# update mirrors: update for mirror without MD5 checksums but with file in pool on legacy MD5 location update mirrors: update for mirror without MD5 checksums but with file in pool on legacy MD5 location
# as mirror lacks MD5 checksum, file would be downloaded but not re-imported as mirror lacks MD5 checksum, file would be downloaded but not re-imported
# """ """
# longTest = False skipTest = "Using deprecated service - bintray"
# fixtureCmds = [ longTest = False
# "aptly mirror create --ignore-signatures bintray https://dl.bintray.com/smira/deb/ ./", fixtureCmds = [
# ] "aptly mirror create --ignore-signatures bintray https://dl.bintray.com/smira/deb/ ./",
# runCmd = "aptly mirror update --ignore-signatures bintray" ]
runCmd = "aptly mirror update --ignore-signatures bintray"
# def output_processor(self, output): def output_processor(self, output):
# return "\n".join(sorted(output.split("\n"))) return "\n".join(sorted(output.split("\n")))
# def prepare(self): def prepare(self):
# super(UpdateMirror16Test, self).prepare() super(UpdateMirror16Test, self).prepare()
# os.makedirs(os.path.join( os.makedirs(os.path.join(
# os.environ["HOME"], ".aptly", "pool", "00", "35")) os.environ["HOME"], ".aptly", "pool", "00", "35"))
# shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "libboost-program-options-dev_1.49.0.1_i386.deb"), 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")) os.path.join(os.environ["HOME"], ".aptly", "pool", "00", "35"))
# def check(self): def check(self):
# super(UpdateMirror16Test, self).check() super(UpdateMirror16Test, self).check()
# # check pool # check pool
# self.check_not_exists( self.check_not_exists(
# 'pool/c7/6b/4bd12fd92e4dfe1b55b18a67a669_libboost-program-options-dev_1.49.0.1_i386.deb') 'pool/c7/6b/4bd12fd92e4dfe1b55b18a67a669_libboost-program-options-dev_1.49.0.1_i386.deb')
class UpdateMirror17Test(BaseTest): class UpdateMirror17Test(BaseTest):
@@ -334,6 +351,7 @@ class UpdateMirror19Test(BaseTest):
""" """
update mirrors: correct matching of Release checksums update mirrors: correct matching of Release checksums
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
longTest = False longTest = False
fixtureGpg = True fixtureGpg = True
fixtureCmds = [ fixtureCmds = [
@@ -366,6 +384,7 @@ class UpdateMirror21Test(BaseTest):
""" """
update mirrors: correct matching of Release checksums (internal pgp implementation) update mirrors: correct matching of Release checksums (internal pgp implementation)
""" """
skipTest = "Requesting obsolete file - deb/InRelease"
longTest = False longTest = False
configOverride = {"gpgProvider": "internal"} configOverride = {"gpgProvider": "internal"}
fixtureGpg = True fixtureGpg = True
@@ -398,6 +417,7 @@ class UpdateMirror23Test(BaseTest):
""" """
update mirrors: update with installer update mirrors: update with installer
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
longTest = False longTest = False
fixtureGpg = True fixtureGpg = True
fixtureCmds = [ fixtureCmds = [
@@ -414,6 +434,7 @@ class UpdateMirror24Test(BaseTest):
""" """
update mirrors: update with installer with separate gpg file update mirrors: update with installer with separate gpg file
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
longTest = False longTest = False
fixtureGpg = True fixtureGpg = True
fixtureCmds = [ fixtureCmds = [
+3
View File
@@ -989,6 +989,7 @@ class PublishSnapshot35Test(BaseTest):
""" """
publish snapshot: mirror with udebs publish snapshot: mirror with udebs
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
fixtureGpg = True fixtureGpg = True
fixtureCmds = [ fixtureCmds = [
"aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://cdn-fastly.deb.debian.org/debian/ stretch main non-free", "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://cdn-fastly.deb.debian.org/debian/ stretch main non-free",
@@ -1145,6 +1146,7 @@ class PublishSnapshot37Test(BaseTest):
""" """
publish snapshot: mirror with double mirror update publish snapshot: mirror with double mirror update
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
fixtureGpg = True fixtureGpg = True
fixtureCmds = [ fixtureCmds = [
"aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://cdn-fastly.deb.debian.org/debian/ stretch main non-free", "aptly -architectures=i386,amd64 mirror create -keyring=aptlytest.gpg -filter='$$Source (gnupg2)' -with-udebs stretch http://cdn-fastly.deb.debian.org/debian/ stretch main non-free",
@@ -1160,6 +1162,7 @@ class PublishSnapshot38Test(BaseTest):
""" """
publish snapshot: mirror with installer publish snapshot: mirror with installer
""" """
skipTest = "Requesting obsolete file - stretch/InRelease"
fixtureGpg = True fixtureGpg = True
fixtureCmds = [ fixtureCmds = [
"aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://cdn-fastly.deb.debian.org/debian/ stretch main", "aptly -architectures=s390x mirror create -keyring=aptlytest.gpg -filter='installer' -with-installer stretch http://cdn-fastly.deb.debian.org/debian/ stretch main",
+1
View File
@@ -16,6 +16,7 @@ class RootDirInaccessible(BaseTest):
""" """
serve command aborts if rootDir is inaccessible serve command aborts if rootDir is inaccessible
""" """
skipTest = 'User is root' if os.environ['USER'] == 'root' else False
fixtureDB = False fixtureDB = False
fixturePool = False fixturePool = False
+3
View File
@@ -18,6 +18,9 @@ class GPGAPITestAddKey(APITest):
""" """
POST /gpg/key POST /gpg/key
""" """
skipTest = "Using obsolete keys.gnupg.net"
def check(self): def check(self):
with tempfile.NamedTemporaryFile(suffix=".pub") as keyring: with tempfile.NamedTemporaryFile(suffix=".pub") as keyring:
gpgkeyid = "9E3E53F19C7DE460" gpgkeyid = "9E3E53F19C7DE460"
+2
View File
@@ -7,6 +7,8 @@ class GraphAPITest(APITest):
GET /graph.:ext GET /graph.:ext
""" """
requiresDot = True
def check(self): def check(self):
resp = self.get("/api/graph.png") resp = self.get("/api/graph.png")
self.check_equal(resp.headers["Content-Type"], "image/png") self.check_equal(resp.headers["Content-Type"], "image/png")
+3
View File
@@ -5,6 +5,9 @@ class MirrorsAPITestCreateShow(APITest):
""" """
POST /api/mirrors, GET /api/mirrors/:name/packages POST /api/mirrors, GET /api/mirrors/:name/packages
""" """
skipTest = "Using obsolete repo - wheezy/updates"
def check(self): def check(self):
mirror_name = self.random_name() mirror_name = self.random_name()
mirror_desc = {u'Name': mirror_name, mirror_desc = {u'Name': mirror_name,
+5 -5
View File
@@ -15,11 +15,11 @@ class TaskAPITestParallelTasks(APITest):
mirror_desc[u'IgnoreSignatures'] = True mirror_desc[u'IgnoreSignatures'] = True
resp = self.post("/api/mirrors", json=mirror_desc) resp = self.post("/api/mirrors", json=mirror_desc)
self.check_equal(resp.status_code, 201) self.check_equal(resp.status_code, 201)
resp = self.put("/api/mirrors/" + mirror_name, json=mirror_desc) resp = self.put("/api/mirrors/" + mirror_name, json=mirror_desc, params={'_async': True})
self.check_equal(resp.status_code, 202) self.check_equal(resp.status_code, 202)
# check that two mirror updates cannot run at the same time # check that two mirror updates cannot run at the same time
resp2 = self.put("/api/mirrors/" + mirror_name, json=mirror_desc) resp2 = self.put("/api/mirrors/" + mirror_name, json=mirror_desc, params={'_async': True})
self.check_equal(resp2.status_code, 409) self.check_equal(resp2.status_code, 409)
return resp.json()['ID'], mirror_name return resp.json()['ID'], mirror_name
@@ -40,7 +40,7 @@ class TaskAPITestParallelTasks(APITest):
"pyspi_0.6.1-1.3.diff.gz", "pyspi_0.6.1-1.3.diff.gz",
"pyspi_0.6.1.orig.tar.gz").status_code, 200) "pyspi_0.6.1.orig.tar.gz").status_code, 200)
resp = self.post("/api/repos/" + repo_name + "/file/" + d) resp = self.post("/api/repos/" + repo_name + "/file/" + d, params={'_async': True})
self.check_equal(resp.status_code, 202) self.check_equal(resp.status_code, 202)
return resp.json()['ID'], repo_name return resp.json()['ID'], repo_name
@@ -57,7 +57,7 @@ class TaskAPITestParallelTasks(APITest):
def _snapshot(self, res_type, name): def _snapshot(self, res_type, name):
uri = "/api/%s/%s/snapshots" % (res_type, name) uri = "/api/%s/%s/snapshots" % (res_type, name)
resp = self.post(uri, json={"Name": name}) resp = self.post(uri, json={"Name": name}, params={'_async': True})
self.check_equal(resp.status_code, 202) self.check_equal(resp.status_code, 202)
return resp.json()['ID'] return resp.json()['ID']
@@ -68,7 +68,7 @@ class TaskAPITestParallelTasks(APITest):
"SourceKind": source_kind, "SourceKind": source_kind,
"Sources": [{"Name": name}], "Sources": [{"Name": name}],
"Signing": DefaultSigningOptions, "Signing": DefaultSigningOptions,
}) }, params={'_async': True})
self.check_equal(resp.status_code, 202) self.check_equal(resp.status_code, 202)
return resp.json()['ID'] return resp.json()['ID']