From 45b8f1132cf5834e3dcaaf46287dc454fd823783b0d81c1fe72c8b35eb7640f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 3 May 2024 22:22:09 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main python-pytest-env revision bff413ee7f2cc12728b8270630212e07 --- .gitattributes | 23 ++++++++++++++++ pytest_env-0.8.2.tar.gz | 3 +++ python-pytest-env.changes | 40 ++++++++++++++++++++++++++++ python-pytest-env.spec | 55 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 121 insertions(+) create mode 100644 .gitattributes create mode 100644 pytest_env-0.8.2.tar.gz create mode 100644 python-pytest-env.changes create mode 100644 python-pytest-env.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/pytest_env-0.8.2.tar.gz b/pytest_env-0.8.2.tar.gz new file mode 100644 index 0000000..3e87d95 --- /dev/null +++ b/pytest_env-0.8.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baed9b3b6bae77bd75b9238e0ed1ee6903a42806ae9d6aeffb8754cd5584d4ff +size 7419 diff --git a/python-pytest-env.changes b/python-pytest-env.changes new file mode 100644 index 0000000..6f8b835 --- /dev/null +++ b/python-pytest-env.changes @@ -0,0 +1,40 @@ +------------------------------------------------------------------- +Mon Jul 24 18:58:47 UTC 2023 - Dirk Müller + +- update to 0.8.2: + * Bump tools and deps + * Bump deps and tools + * Add 3.12 support + * Add ruff + +------------------------------------------------------------------- +Thu May 4 22:50:00 UTC 2023 - Dirk Müller + +- update to 0.8.1: + * Use hatchling and wheel + * Add R: prefix implementation and unit tests + * ADd mention of pyproject.toml in README.md +- use packaged LICENSE + +------------------------------------------------------------------- +Fri Apr 21 12:31:34 UTC 2023 - Dirk Müller + +- add sle15_python_module_pythons (jsc#PED-68) + +------------------------------------------------------------------- +Thu Feb 14 12:37:20 UTC 2019 - Tomáš Chvátal + +- Cleanup a bit +- Remove test condition, there are no tests even in upstream git + repository + +------------------------------------------------------------------- +Wed May 9 23:25:20 UTC 2018 - toddrme2178@gmail.com + +- Add license file +- Use license tag + +------------------------------------------------------------------- +Tue Nov 7 18:25:01 UTC 2017 - toddrme2178@gmail.com + +- initial version diff --git a/python-pytest-env.spec b/python-pytest-env.spec new file mode 100644 index 0000000..6567e78 --- /dev/null +++ b/python-pytest-env.spec @@ -0,0 +1,55 @@ +# +# spec file for package python-pytest-env +# +# Copyright (c) 2023 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%{?sle15_python_module_pythons} +Name: python-pytest-env +Version: 0.8.2 +Release: 0 +Summary: Pytest plugin to add environment variables +License: MIT +Group: Development/Languages/Python +URL: https://github.com/pytest-dev/pytest-env +Source: https://files.pythonhosted.org/packages/source/p/pytest-env/pytest_env-%{version}.tar.gz +BuildRequires: %{python_module hatch_vcs} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-pytest >= 2.6.0 +BuildArch: noarch +%python_subpackages + +%description +A py.test plugin that allows you to add environment variables. + +%prep +%setup -q -n pytest_env-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%license LICENSE +%{python_sitelib}/pytest_env +%{python_sitelib}/pytest_env-%{version}.dist-info + +%changelog