Accepting request 1197528 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1197528 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pybeam?expand=0&rev=18
This commit is contained in:
commit
afc0b000f0
BIN
pybeam-0.7.tar.gz
(Stored with Git LFS)
BIN
pybeam-0.7.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
pybeam-0.8.tar.gz
Normal file
3
pybeam-0.8.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:15c6e52e36e8d98dd9c07309ae3229190217cc4620faae0036e3ac1117baacb4
|
||||||
|
size 10964
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 29 12:06:21 UTC 2024 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- version update to 0.8
|
||||||
|
* Use pyproject.toml and drop outdated Python support
|
||||||
|
* Drop outdated Python versions from GitHub Actions
|
||||||
|
* Initial support for gzip compressed BEAM files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 5 15:33:34 UTC 2020 - Matwey Kornilov <matwey.kornilov@gmail.com>
|
Thu Nov 5 15:33:34 UTC 2020 - Matwey Kornilov <matwey.kornilov@gmail.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python
|
# spec file for package python-pybeam
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,7 +16,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
%global flavor @BUILD_FLAVOR@%{nil}
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
%if "%{flavor}" == "test"
|
%if "%{flavor}" == "test"
|
||||||
%define psuffix -test
|
%define psuffix -test
|
||||||
@ -26,24 +25,25 @@
|
|||||||
%bcond_with test
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
Name: python-pybeam%{?psuffix}
|
Name: python-pybeam%{?psuffix}
|
||||||
Version: 0.7
|
Version: 0.8
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module to parse Erlang BEAM files
|
Summary: Python module to parse Erlang BEAM files
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/matwey/pybeam
|
URL: https://github.com/matwey/pybeam
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/pybeam/pybeam-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/pybeam/pybeam-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-construct < 2.11
|
Requires: python-construct < 2.11
|
||||||
Requires: python-construct >= 2.9
|
Requires: python-construct >= 2.9
|
||||||
Requires: python-six >= 1.4.0
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: %{python_module construct < 2.11}
|
BuildRequires: %{python_module construct < 2.11}
|
||||||
BuildRequires: %{python_module construct >= 2.9}
|
BuildRequires: %{python_module construct >= 2.9}
|
||||||
BuildRequires: %{python_module six}
|
BuildRequires: %{python_module pybeam}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
%endif
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@ -62,28 +62,29 @@ imports, exports, atoms, as well as compile info and attribute
|
|||||||
chunks in pretty python format.
|
chunks in pretty python format.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n pybeam-%{version}
|
%autosetup -p1 -n pybeam-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if %{without test}
|
%if %{without test}
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if %{without test}
|
%if %{without test}
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
%python_exec -m unittest discover
|
%pytest
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{without test}
|
%if %{without test}
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/pybeam
|
||||||
|
%{python_sitelib}/pybeam-*-info
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user