Sync from SUSE:SLFO:Main python-extras revision 135146904bbb9f3102956c7ae8178efc

This commit is contained in:
Adrian Schröter 2024-05-03 20:37:17 +02:00
commit 85329468ed
5 changed files with 193 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

3
_multibuild Normal file
View File

@ -0,0 +1,3 @@
<multibuild>
<package>test</package>
</multibuild>

BIN
extras-1.0.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

85
python-extras.changes Normal file
View File

@ -0,0 +1,85 @@
-------------------------------------------------------------------
Fri Apr 21 12:24:52 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Thu Apr 13 22:41:10 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Make calling of %{sle15modernpython} optional.
-------------------------------------------------------------------
Wed Jun 10 09:07:14 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- replace nose
- enable testing by default with multibuild
-------------------------------------------------------------------
Mon Oct 14 13:37:36 UTC 2019 - Matej Cepl <mcepl@suse.com>
- Replace %fdupes -s with plain %fdupes; hardlinks are better.
-------------------------------------------------------------------
Wed Dec 5 01:04:11 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
- Trim bias from descriptions.
-------------------------------------------------------------------
Tue Dec 4 12:47:50 UTC 2018 - Matej Cepl <mcepl@suse.com>
- Remove superfluous devel dependency for noarch package
-------------------------------------------------------------------
Sat Apr 1 11:09:27 UTC 2017 - aloisio@gmx.com
- Converted to single-spec
-------------------------------------------------------------------
Wed Aug 31 07:57:56 UTC 2016 - aplanas@suse.com
- User https schema for Source URL
-------------------------------------------------------------------
Tue Aug 30 12:53:11 UTC 2016 - tbechtold@suse.com
- Use pypi.io as Source url
-------------------------------------------------------------------
Tue Aug 30 11:47:56 UTC 2016 - tbechtold@suse.com
update to version 1.0.0
* Add trove classifiers specifying Python 3 support.
* Release 1.0.0.
* Add a tox.ini for testing with.
* Add a .travis.yml.
* Handle import cycles.
* Support universal wheels
-------------------------------------------------------------------
Fri Mar 7 11:01:35 UTC 2014 - speilicke@suse.com
- Add 'tests' build conditional
-------------------------------------------------------------------
Mon Nov 25 13:49:08 UTC 2013 - speilicke@suse.com
- Drop nose buildrequires, use testtools directly
-------------------------------------------------------------------
Mon Apr 29 11:49:58 UTC 2013 - dmueller@suse.com
- update to 0.0.3:
* Fix support with older testtools
-------------------------------------------------------------------
Mon Jan 14 13:24:03 UTC 2013 - saschpe@suse.de
- Run testsuite
- Add documentation
- Use SPDX style license (MIT)
-------------------------------------------------------------------
Mon Jan 14 12:41:11 UTC 2013 - dmueller@suse.com
- Initial package (0.0.2)

79
python-extras.spec Normal file
View File

@ -0,0 +1,79 @@
#
# spec file
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
# A build cycle exists between python-extras and python-testtools.
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
%{?sle15_python_module_pythons}
Name: python-extras%{psuffix}
Version: 1.0.0
Release: 0
Summary: Extra bits for Python
License: MIT
URL: https://github.com/testing-cabal/extras
Source: https://files.pythonhosted.org/packages/source/e/extras/extras-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# Break cycle
#!BuildIgnore: python-extras
BuildArch: noarch
# Test requirements:
%if %{with test}
BuildRequires: %{python_module testtools}
%endif
%python_subpackages
%description
extras is a set of extensions to the Python standard library, originally
written to make the code within testtools cleaner, but now split out for
general use outside of a testing context.
%prep
%setup -q -n extras-%{version}
%build
%python_build
%install
%if !%{with test}
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
%python_exec -m unittest discover
%endif
%if !%{with test}
%files %{python_files}
%license LICENSE
%doc NEWS README.rst
%{python_sitelib}/extras
%{python_sitelib}/extras-%{version}-py%{python_version}.egg-info/
%endif
%changelog