From c59c7204921731c0b8b77596abbf6be123c8ef79 Mon Sep 17 00:00:00 2001 From: Honza Horak Date: Mon, 15 May 2023 21:46:10 +0200 Subject: [PATCH] Replace whole repo with latest content from branch stream-19.2-rhel-8.8.0 Content corresponds with RHEL dist-git commit a348e6b --- .fmf/version | 1 - .gitignore | 1 - gating.yaml | 6 ------ plans/basic.fmf | 7 ------- sources | 2 +- tests/main.fmf | 22 ---------------------- 6 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 .fmf/version delete mode 100644 gating.yaml delete mode 100644 plans/basic.fmf delete mode 100644 tests/main.fmf diff --git a/.fmf/version b/.fmf/version deleted file mode 100644 index d00491f..0000000 --- a/.fmf/version +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/.gitignore b/.gitignore index 31b6822..b5b468a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -SOURCES/packaging-19.2.tar.gz /packaging-19.2.tar.gz diff --git a/gating.yaml b/gating.yaml deleted file mode 100644 index 648918d..0000000 --- a/gating.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- !Policy -product_versions: - - rhel-9 -decision_context: osci_compose_gate -rules: - - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/plans/basic.fmf b/plans/basic.fmf deleted file mode 100644 index 19553de..0000000 --- a/plans/basic.fmf +++ /dev/null @@ -1,7 +0,0 @@ -summary: python-packaging tests -description: - Basic python-packaging tests -discover: - how: fmf -execute: - how: tmt diff --git a/sources b/sources index ac84ca1..79e8d1e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (packaging-19.2.tar.gz) = af7312a85292f577d3e6e57154f10fb380bbdee749344ba4b226a09f22bf5ca664ed63c62cd5b4dea0be5eb5cff5c17ad04415aab8c925fa90dcae2e1c6dee5a +867ce70984dc7b89bbbc3cac2a72b171 packaging-19.2.tar.gz diff --git a/tests/main.fmf b/tests/main.fmf deleted file mode 100644 index b36a14c..0000000 --- a/tests/main.fmf +++ /dev/null @@ -1,22 +0,0 @@ -summary: Tests for python-packaging - -require: - - python3 - - python3-packaging - -# Currently there is no easy way to see the versions of installed packages. -# Let's list them to make sure we're testing against the correct package set. -/display-installed-packages: - test: | - rpm -qa | sort - -/smoke: - test: | - set -eux - python3 -c 'import packaging' - python3 -c 'from packaging import version; version.Version("2.5.1rc2")' - python3 -c 'from packaging import specifiers; specifiers.SpecifierSet("~=1.0")' - python3 -c 'from packaging import markers; markers.Marker("python_version>'"'"'2'"'"'")' - python3 -c 'from packaging import requirements; requirements.Requirement('"'"'name[foo]>=2,<3; python_version>"2.0"'"'"')' - python3 -c 'from packaging import tags; tags.Tag("py39", "none", "any")' - python3 -c 'from packaging.utils import canonicalize_name; canonicalize_name("Django_foobar")'