2013-08-13 09:27:19 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-random2
|
|
|
|
#
|
2023-04-21 15:38:11 +02:00
|
|
|
# Copyright (c) 2023 SUSE LLC
|
2013-08-13 09:27:19 +02:00
|
|
|
# Copyright (c) 2013 LISA GmbH, Bingen, Germany.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-10-14 16:40:34 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2013-08-13 09:27:19 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2017-06-29 10:43:20 +02:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2023-04-21 15:38:11 +02:00
|
|
|
%{?sle15_python_module_pythons}
|
2013-08-13 09:27:19 +02:00
|
|
|
Name: python-random2
|
|
|
|
Version: 1.0.1
|
|
|
|
Release: 0
|
|
|
|
Summary: A Session and Caching library with WSGI Middleware
|
2017-06-29 10:43:20 +02:00
|
|
|
License: Python-2.0
|
2019-10-14 16:40:34 +02:00
|
|
|
URL: https://pypi.python.org/pypi/random2
|
2017-06-29 10:43:20 +02:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/r/random2/random2-%{version}.zip
|
2021-04-17 10:36:22 +02:00
|
|
|
# PATCH-FIX-UPSTREAM -- python3.9.patch Origin: Debian
|
|
|
|
Patch0: python3.9.patch
|
2021-11-03 17:00:52 +01:00
|
|
|
BuildRequires: %{python_module pytest}
|
2017-06-29 10:43:20 +02:00
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2013-08-13 09:27:19 +02:00
|
|
|
BuildRequires: unzip
|
|
|
|
BuildArch: noarch
|
2017-06-29 10:43:20 +02:00
|
|
|
%python_subpackages
|
2013-08-13 09:27:19 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package provides a Python 3 ported version of Python 2.7's random module.
|
|
|
|
It has also been back-ported to work in Python 2.6.
|
|
|
|
|
|
|
|
In Python 3, the implementation of randrange() was changed, so that even with
|
|
|
|
the same seed you get different sequences in Python 2 and 3. Note that several
|
|
|
|
high-level functions such as randint() and choice() use randrange().
|
|
|
|
|
|
|
|
In my testing code I heavily rely on stable random generator results and it
|
|
|
|
makes porting code to Python 3 a lot harder, if all those tests have to be
|
|
|
|
adjusted. This package fixes that.
|
|
|
|
|
|
|
|
%prep
|
2021-04-17 10:36:22 +02:00
|
|
|
%autosetup -p1 -n random2-%{version}
|
2013-08-13 09:27:19 +02:00
|
|
|
|
|
|
|
%build
|
2017-06-29 10:43:20 +02:00
|
|
|
%python_build
|
2013-08-13 09:27:19 +02:00
|
|
|
|
|
|
|
%install
|
2017-06-29 10:43:20 +02:00
|
|
|
%python_install
|
2019-10-14 16:40:34 +02:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2013-08-13 09:27:19 +02:00
|
|
|
|
|
|
|
%check
|
2021-11-03 17:00:52 +01:00
|
|
|
# see tests.test_suite
|
|
|
|
classes='WichmannHill_TestBasicOps or MersenneTwister_TestBasicOps or TestDistributions or TestModule'
|
|
|
|
%pytest -k "$classes" src/tests.py
|
2013-08-13 09:27:19 +02:00
|
|
|
|
2017-06-29 10:43:20 +02:00
|
|
|
%files %{python_files}
|
2013-08-13 09:27:19 +02:00
|
|
|
%doc CHANGES.txt README.txt PKG-INFO
|
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
%changelog
|