Skip to content

Commit aa36e40

Browse files
author
Christoph Lutz
committed
better errorhandling in case of KeyErrors in .suites-files
1 parent 09b519a commit aa36e40

31 files changed

+66
-8
lines changed

apt_repos/__init__.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -219,15 +219,19 @@ def getSuites(selectors=None):
219219
count+=1
220220
tags = suiteDesc.get("Tags", [])
221221

222-
parts = suiteDesc["Suite"].split(":", 1)
223-
if len(parts) == 1:
224-
repo, suiteName = ("", parts[0])
225-
else:
226-
repo, suiteName = parts
222+
try:
223+
parts = suiteDesc["Suite"].split(":", 1)
224+
if len(parts) == 1:
225+
repo, suiteName = ("", parts[0])
226+
else:
227+
repo, suiteName = parts
227228

228-
if (repo == srepo or srepo == "" or srepo in tags) and \
229-
(suiteName == ssuiteName or ssuiteName == ""):
230-
selected.add(RepoSuite(basedir, __cacheDir, suiteDesc, count))
229+
if (repo == srepo or srepo == "" or srepo in tags) and \
230+
(suiteName == ssuiteName or ssuiteName == ""):
231+
selected.add(RepoSuite(basedir, __cacheDir, suiteDesc, count))
232+
except KeyError as e:
233+
logger.warning("Missing key {} --> Skipping suite-entry: {}".format(e, suiteDesc))
234+
continue
231235

232236
for repoDesc, basedir, unused_filename in __prepareConfig(reposData):
233237
repo = None

test/cliTestDsc1.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying sources lists for 2 suites.1.2
34
http://de.archive.ubuntu.com/ubuntu/pool/universe/r/reprepro/reprepro_4.17.0-1.dsc

test/cliTestDsc2.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
34
updating (use --no-update to skip) and querying sources lists for 5 suites.1.2.3.4.5
45
http://de.archive.ubuntu.com/ubuntu/pool/universe/r/reprepro/reprepro_5.1.1-1.dsc

test/cliTestDsc3.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
34
updating (use --no-update to skip) and querying sources lists for 5 suites.1.2.3.4.5

test/cliTestDsc4.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
34
updating (use --no-update to skip) and querying sources lists for 5 suites.1.2.3.4.5

test/cliTestDsc5.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
34
updating (use --no-update to skip) and querying sources lists for 5 suites.1.2.3.4.5
45
http://de.archive.ubuntu.com/ubuntu/pool/universe/r/reprepro/reprepro_5.1.1-1.dsc

test/cliTestDsc6.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying sources lists for 2 suites.1.2
34
http://security.ubuntu.com/ubuntu/pool/main/g/git/git_2.7.4-0ubuntu1.4.dsc
45
http://de.archive.ubuntu.com/ubuntu/pool/main/g/git/git_2.7.4-0ubuntu1.dsc

test/cliTestDsc7.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying sources lists for 2 suites.1.2
34
http://security.ubuntu.com/ubuntu/pool/main/g/git/git_2.7.4-0ubuntu1.4.dsc
45
http://de.archive.ubuntu.com/ubuntu/pool/universe/r/reprepro/reprepro_4.17.0-1.dsc

test/cliTestDsc8.ref

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
3+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
24
updating (use --no-update to skip) and querying sources lists for 2 suites.1.2
35
http://security.ubuntu.com/ubuntu/pool/main/g/git/git_1.9.1-1ubuntu0.8.dsc
46
http://de.archive.ubuntu.com/ubuntu/pool/universe/r/reprepro/reprepro_4.17.0-1.dsc

test/cliTestLs1.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34
Package | Version | Suite | Arch | Section | Source
45
======== | ======== | ============= | ===== | ============== | ========

test/cliTestLs2.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34
Results for Arch 'amd64' | Results for Arch 'i386'
45

test/cliTestLs3.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34

45
ERROR: We got not exactly 2 differentiators for Diff-Field 'Arch'. We found: 'all'. Use -di a^... to ignore results for one of these values.

test/cliTestLs4.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34

45
ERROR: We got not exactly 2 differentiators for Diff-Field 'Arch'. We found: 'all', 'amd64', 'i386'. Use -di a^... to ignore results for one of these values.

test/cliTestLs5.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34
Results for Arch 'amd64' | Results for Arch 'i386'
45

test/cliTestLs6.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
34
updating (use --no-update to skip) and querying packages lists for 1 suites.1
45
Package | Version | Suite | Arch | Section | Source

test/cliTestShow1.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34

45
Suite: ubuntu:xenial

test/cliTestShow2.ref

+2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
34
WARNING[apt_repos.RepositoryScanner]: Could not resolve suite trusty of repository http://wirzelprimpft.de/unresolvable_repository/
45
INFO[apt_repos.Repository]: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)
56
WARNING[apt_repos.RepositoryScanner]: Could not resolve suite trusty of repository file:///tmp/onDisk/
7+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
68
INFO[apt_repos.Repository]: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
79
WARNING[apt_repos.RepositoryScanner]: Could not resolve suite xenial of repository http://wirzelprimpft.de/unresolvable_repository/
810
INFO[apt_repos.Repository]: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)

test/cliTestShow3.ref

+2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
34
WARNING[apt_repos.RepositoryScanner]: Could not resolve suite trusty of repository http://wirzelprimpft.de/unresolvable_repository/
45
INFO[apt_repos.Repository]: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)
56
WARNING[apt_repos.RepositoryScanner]: Could not resolve suite trusty of repository file:///tmp/onDisk/
7+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
68
INFO[apt_repos.Repository]: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
79
WARNING[apt_repos.RepositoryScanner]: Could not resolve suite xenial of repository http://wirzelprimpft.de/unresolvable_repository/
810
INFO[apt_repos.Repository]: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)

test/cliTestSource1.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34
Source | Version | Suite | Arch | Section
45
====== | ================== | ====================== | ======= | =======

test/cliTestSource2.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34
Source | Version | Suite | Arch | Section | File-Url
45
====== | ================== | ====================== | ======= | ======= | ==========================================================================

test/cliTestSource3.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
updating (use --no-update to skip) and querying packages lists for 2 suites.1.2
34
Source Version Suite Arch Section File-Url
45

test/cliTestSuites1.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
34
WARNING[apt_repos.RepositoryScanner]: Could not resolve repository http://wirzelprimpft.de/unresolvable_repository/
45
INFO[apt_repos.Repository]: Scanning Repository 'Main Debian Repository' (http://deb.debian.org/debian/)

test/cliTestSuites2.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
34
WARNING[apt_repos.RepositoryScanner]: Could not resolve repository http://wirzelprimpft.de/unresolvable_repository/
45
INFO[apt_repos.Repository]: Scanning Repository 'Main Debian Repository' (http://deb.debian.org/debian/)

test/cliTestSuites3.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
34
WARNING[apt_repos.RepositoryScanner]: Could not resolve suite trusty of repository http://wirzelprimpft.de/unresolvable_repository/
45
INFO[apt_repos.Repository]: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)

test/cliTestSuites4.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO[apt_repos]: Using basedir '.'
2+
WARNING[apt_repos]: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO[apt_repos.Repository]: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
34
# ubuntu:de-bionic
45
deb http://de.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse

test/test.suites

+3
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@
2929
"DebSrc" : true,
3030
"Architectures" : [ "i386", "amd64" ],
3131
"TrustedGPG" : "./trusted.gpg"
32+
},
33+
{
34+
"InvalidSuiteEntry" : "with missing keys"
3235
}
3336
]

test/testGetSourcesFiles.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO apt_repos: Using basedir '.'
2+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
<testfolder>/.apt-repos_cache/ubuntu:trusty/var/lib/apt/lists/de.archive.ubuntu.com_ubuntu_dists_trusty_main_source_Sources
34
<testfolder>/.apt-repos_cache/ubuntu:trusty/var/lib/apt/lists/de.archive.ubuntu.com_ubuntu_dists_trusty_multiverse_source_Sources
45
<testfolder>/.apt-repos_cache/ubuntu:trusty/var/lib/apt/lists/de.archive.ubuntu.com_ubuntu_dists_trusty_restricted_source_Sources

test/testQueryPackages.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
INFO apt_repos: Using basedir '.'
2+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
QueryResult(BINARY_PACKAGE_NAME:'git', VERSION:'1:1.9.1-1', SUITE:'ubuntu:trusty', ARCHITECTURE:'amd64', SECTION:'vcs', SOURCE_PACKAGE_NAME:'git', FILENAME:'http://de.archive.ubuntu.com/ubuntu/pool/main/g/git/git_1.9.1-1_amd64.deb', BASE_URL:'http://de.archive.ubuntu.com/ubuntu/')
34
QueryResult(BINARY_PACKAGE_NAME:'git', VERSION:'1:1.9.1-1', SUITE:'ubuntu:trusty', ARCHITECTURE:'i386', SECTION:'vcs', SOURCE_PACKAGE_NAME:'git', FILENAME:'http://de.archive.ubuntu.com/ubuntu/pool/main/g/git/git_1.9.1-1_i386.deb', BASE_URL:'http://de.archive.ubuntu.com/ubuntu/')

test/testQuerySources.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
INFO apt_repos: Using basedir '.'
2+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
QueryResult(SOURCE_PACKAGE_NAME:'git', VERSION:'1:1.9.1-1', SUITE:'ubuntu:trusty', ARCHITECTURE:'all,any', SECTION:'vcs', FILENAME:'http://de.archive.ubuntu.com/ubuntu/pool/main/g/git/git_1.9.1-1.dsc', BASE_URL:'http://de.archive.ubuntu.com/ubuntu/')

test/testSuiteProperties.ref

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
INFO apt_repos: Using basedir '.'
2+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
INFO apt_repos.Repository: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
34
WARNING apt_repos.RepositoryScanner: Could not resolve repository http://wirzelprimpft.de/unresolvable_repository/
45
INFO apt_repos.Repository: Scanning Repository 'Main Debian Repository' (http://deb.debian.org/debian/)

test/testSuiteSelectors.ref

+20
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
INFO apt_repos: Using basedir '.'
2+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
23
Selected suites for selectors: None
34
ubuntu:xenial
45
ubuntu:xenial-security
56

7+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
68
INFO apt_repos.Repository: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
79
WARNING apt_repos.RepositoryScanner: Could not resolve repository http://wirzelprimpft.de/unresolvable_repository/
810
INFO apt_repos.Repository: Scanning Repository 'Main Debian Repository' (http://deb.debian.org/debian/)
@@ -19,23 +21,28 @@ debian:stretch-backports
1921
debian:stretch-updates
2022
ubuntu:de-bionic
2123

24+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
2225
Selected suites for selectors: default:
2326
ubuntu:xenial
2427
ubuntu:xenial-security
2528

29+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
2630
Selected suites for selectors: ubuntu:xenial
2731
ubuntu:xenial
2832

33+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
2934
INFO apt_repos.Repository: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
3035
WARNING apt_repos.RepositoryScanner: Could not resolve suite xenial of repository http://wirzelprimpft.de/unresolvable_repository/
3136
INFO apt_repos.Repository: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)
3237
WARNING apt_repos.RepositoryScanner: Could not resolve suite xenial of repository file:///tmp/onDisk/
3338
Selected suites for selectors: xenial
3439
ubuntu:xenial
3540

41+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
3642
Selected suites for selectors: ub:trusty
3743
--NO-SUITES--
3844

45+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
3946
INFO apt_repos.Repository: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
4047
Selected suites for selectors: ubuntu:
4148
ubuntu:trusty
@@ -44,22 +51,28 @@ ubuntu:xenial
4451
ubuntu:xenial-security
4552
ubuntu:de-bionic
4653

54+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
4755
Selected suites for selectors: u:
4856
--NO-SUITES--
4957

58+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
5059
Selected suites for selectors: u:trusty
5160
--NO-SUITES--
5261

62+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
63+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
5364
Selected suites for selectors: ubuntu:trusty-security, ubuntu:xenial-security
5465
ubuntu:trusty-security
5566
ubuntu:xenial-security
5667

68+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
5769
INFO apt_repos.Repository: Scanning Repository 'Main Debian Repository' (http://deb.debian.org/debian/)
5870
Selected suites for selectors: debian:
5971
debian:stretch
6072
debian:stretch-backports
6173
debian:stretch-updates
6274

75+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
6376
INFO apt_repos.Repository: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
6477
Selected suites for selectors: ubuntu:
6578
ubuntu:trusty
@@ -68,33 +81,40 @@ ubuntu:xenial
6881
ubuntu:xenial-security
6982
ubuntu:de-bionic
7083

84+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
7185
INFO apt_repos.Repository: Scanning Repository 'German Main Ubuntu Repository' (http://de.archive.ubuntu.com/ubuntu/)
7286
Selected suites for selectors: ubuntu:de-bionic
7387
ubuntu:de-bionic
7488

89+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
7590
Selected suites for selectors: ubuntu:nonexistent
7691
--NO-SUITES--
7792

93+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
7894
INFO apt_repos.Repository: Scanning Repository 'Main Debian Repository' (http://deb.debian.org/debian/)
7995
Selected suites for selectors: stable:
8096
debian:stretch
8197
debian:stretch-backports
8298
debian:stretch-updates
8399

100+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
84101
INFO apt_repos.Repository: Scanning Repository http://wirzelprimpft.de/unresolvable_repository/
85102
WARNING apt_repos.RepositoryScanner: Could not resolve suite test of repository http://wirzelprimpft.de/unresolvable_repository/
86103
INFO apt_repos.Repository: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)
87104
WARNING apt_repos.RepositoryScanner: Could not resolve suite test of repository file:///tmp/onDisk/
88105
Selected suites for selectors: test
89106
--NO-SUITES--
90107

108+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
91109
INFO apt_repos.Repository: Scanning Repository 'Main Debian Repository' (http://deb.debian.org/debian/)
92110
Selected suites for selectors: stable:stretch
93111
debian:stretch
94112

113+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
95114
Selected suites for selectors: stable:nonexistent
96115
--NO-SUITES--
97116

117+
WARNING apt_repos: Missing key 'Suite' --> Skipping suite-entry: {'InvalidSuiteEntry': 'with missing keys'}
98118
INFO apt_repos.Repository: Scanning Repository 'Test Dummy File Url' (file:///tmp/onDisk/)
99119
WARNING apt_repos.RepositoryScanner: Could not resolve repository file:///tmp/onDisk/
100120
Selected suites for selectors: testscan:

0 commit comments

Comments
 (0)