Compare commits
50 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0cfa05858b | ||
|
|
0e5da8e293 | ||
|
|
9f0a77cc6b | ||
|
|
30d68123bc | ||
|
|
6526d2573c | ||
|
|
e682be4cf8 | ||
|
|
76bad0c2c8 | ||
|
|
16fddc3830 | ||
|
|
a54b47b89f | ||
|
|
23d99fa5d3 | ||
|
|
664d1f3496 | ||
|
|
366c64c8dd | ||
|
|
8f50592c20 | ||
|
|
48ac8dff08 | ||
|
|
62f5a85905 | ||
|
|
65a69345ad | ||
|
|
3de63c7e35 | ||
|
|
46f42093dd | ||
|
|
079b0aa3e6 | ||
|
|
0e6a48b211 | ||
|
|
cfd63a033d | ||
|
|
a21ab1df7a | ||
|
|
051e8f10ba | ||
|
|
9faeac24ea | ||
|
|
60605a52c7 | ||
|
|
be32eb41e1 | ||
|
|
51ded20462 | ||
|
|
31b75b9970 | ||
|
|
2bc6da9fe4 | ||
|
|
b4403baa60 | ||
|
|
4dee2acc06 | ||
|
|
8516ee3253 | ||
|
|
b6717c9853 | ||
|
|
3f8b346539 | ||
|
|
ec453db9ae | ||
|
|
3803cb4948 | ||
|
|
a663d4914d | ||
|
|
9c99243e12 | ||
|
|
c59becb3fe | ||
|
|
1772bee195 | ||
|
|
075b62936c | ||
|
|
1aa622739f | ||
|
|
e55a9f2ace | ||
|
|
b54ded19db | ||
|
|
e5e94c8e14 | ||
|
|
edec2ecb8a | ||
|
|
dab8cfd8bb | ||
|
|
9372640bfe | ||
|
|
e2636307e3 | ||
|
|
4b8a7ea9ce |
6 changed files with 204 additions and 93 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,2 +1,6 @@
|
||||||
/admesh-0.98.1.tar.gz
|
/admesh-0.98.1.tar.gz
|
||||||
/admesh-0.98.3.tar.gz
|
/admesh-0.98.3.tar.gz
|
||||||
|
/admesh-0.98.5.tar.gz
|
||||||
|
/admesh-0.98.7.tar.gz
|
||||||
|
/admesh-0.98.8.tar.gz
|
||||||
|
/admesh-0.98.9.tar.gz
|
||||||
|
|
|
||||||
39
17.patch
Normal file
39
17.patch
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
From 52a68f3d1dd3568dd399ec10b1e5029d0889397d Mon Sep 17 00:00:00 2001
|
||||||
|
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
||||||
|
Date: Tue, 27 May 2025 08:33:05 -0400
|
||||||
|
Subject: [PATCH] Drop pytest-runner and "setup.py test" support
|
||||||
|
|
||||||
|
---
|
||||||
|
setup.py | 4 ++--
|
||||||
|
tox.ini | 3 ++-
|
||||||
|
2 files changed, 4 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index 0f003dd..9476806 100755
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -19,8 +19,8 @@ def _autogen(*args, **kwargs):
|
||||||
|
author_email='miro@hroncok.cz',
|
||||||
|
url='https://github.com/admesh/python-admesh',
|
||||||
|
license='GPLv2+',
|
||||||
|
- setup_requires=['Cython>=0.22', 'pytest-runner'],
|
||||||
|
- tests_require=['pytest'],
|
||||||
|
+ setup_requires=['Cython>=0.22'],
|
||||||
|
+ extras_require={'test': ['pytest']},
|
||||||
|
packages=find_packages(),
|
||||||
|
cmdclass={'build_ext': _autogen},
|
||||||
|
ext_modules=[Extension("admesh", ["admesh.pyx"], libraries=["admesh"])],
|
||||||
|
diff --git a/tox.ini b/tox.ini
|
||||||
|
index b41f291..3e0e723 100644
|
||||||
|
--- a/tox.ini
|
||||||
|
+++ b/tox.ini
|
||||||
|
@@ -2,7 +2,8 @@
|
||||||
|
envlist = py37,py36,py35,py34,py27,pypy3,pypy
|
||||||
|
[testenv]
|
||||||
|
deps=Cython
|
||||||
|
-commands=python setup.py test
|
||||||
|
+extras=test
|
||||||
|
+commands=pytest
|
||||||
|
passenv =
|
||||||
|
CFLAGS
|
||||||
|
LDFLAGS
|
||||||
117
changelog
Normal file
117
changelog
Normal file
|
|
@ -0,0 +1,117 @@
|
||||||
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 0.98.9-16
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.98.9-13
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.98.9-10
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.98.9-7
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.98.9-5
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.9-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 25 2018 Miro Hrončok <mhroncok@redhat.com> - 0.98.9-1
|
||||||
|
- Update to 0.98.9
|
||||||
|
- Temporarily skip a test on ppc64
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.98.8-3
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Fri Mar 02 2018 Miro Hrončok <mhroncok@redhat.com> - 0.98.8-2
|
||||||
|
- Remove legacy Python subpackage
|
||||||
|
|
||||||
|
* Wed Feb 14 2018 Miro Hrončok <mhroncok@redhat.com> - 0.98.8-1
|
||||||
|
- Updated to new version 0.98.8 to fix FTBFS
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.7-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Apr 13 2017 Miro Hrončok <mhroncok@redhat.com> - 0.98.7-1
|
||||||
|
- Updated to new version 0.98.7
|
||||||
|
- Updated to the new naming scheme
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.5-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.98.5-4
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.98.5-3
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.98.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 08 2015 Miro Hrončok <mhroncok@redhat.com> - 0.98.5-1
|
||||||
|
- New version 0.98.5, fix FTBFS
|
||||||
|
|
||||||
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.98.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.98.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 25 2015 Miro Hrončok <mhroncok@redhat.com> - 0.98.3-1
|
||||||
|
- New version 0.98.3
|
||||||
|
|
||||||
|
* Wed Sep 03 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98.1-1
|
||||||
|
- New version
|
||||||
|
- Run tests, add BR pytest
|
||||||
|
|
||||||
|
* Wed Sep 03 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98-3
|
||||||
|
- Set correct executable permissions
|
||||||
|
- Typo in summary
|
||||||
|
|
||||||
|
* Thu Jul 31 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98-2
|
||||||
|
- Require setuptools.
|
||||||
|
|
||||||
|
* Tue Jul 29 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98-1
|
||||||
|
- Initial package.
|
||||||
|
|
@ -1,121 +1,67 @@
|
||||||
%global pypi_name admesh
|
Name: python-admesh
|
||||||
%global with_python3 1
|
Version: 0.98.9
|
||||||
|
Release: %autorelease
|
||||||
Name: python-%{pypi_name}
|
|
||||||
Version: 0.98.3
|
|
||||||
Release: 2%{?dist}
|
|
||||||
Summary: Python bindings for ADMesh, STL manipulation library
|
Summary: Python bindings for ADMesh, STL manipulation library
|
||||||
|
|
||||||
License: GPLv2+
|
License: GPL-2.0-or-later
|
||||||
URL: https://github.com/admesh/python-admesh
|
URL: https://github.com/admesh/python-admesh
|
||||||
Source0: https://pypi.python.org/packages/source/a/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/a/admesh/admesh-%{version}.tar.gz
|
||||||
|
|
||||||
|
# https://github.com/admesh/python-admesh/issues/15
|
||||||
|
Source1: %{url}/raw/v%{version}/test/utils.py
|
||||||
|
|
||||||
|
# Drop pytest-runner and "setup.py test" support
|
||||||
|
# https://github.com/admesh/python-admesh/pull/17
|
||||||
|
# https://fedoraproject.org/wiki/Changes/DeprecatePythonPytestRunner
|
||||||
|
Patch: %{url}/pull/17.patch
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
%if 0%{?fedora} >= 42 || 0%{?rhel} >= 11
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
BuildRequires: gcc
|
||||||
|
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python-setuptools
|
|
||||||
BuildRequires: pytest
|
|
||||||
BuildRequires: Cython
|
|
||||||
BuildRequires: admesh-devel >= 0.98
|
BuildRequires: admesh-devel >= 0.98
|
||||||
|
|
||||||
%if %{?with_python3}
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-pytest
|
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
BuildRequires: python3-Cython
|
|
||||||
%endif # if with_python3
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module provides bindings for the ADMesh library.
|
This module provides bindings for the ADMesh library.
|
||||||
It lets you manipulate 3D models in binary or ASCII STL
|
It lets you manipulate 3D models in binary or ASCII STL
|
||||||
format and partially repair them if necessary.
|
format and partially repair them if necessary.
|
||||||
|
|
||||||
|
%package -n python3-admesh
|
||||||
|
Summary: Python 3 bindings for ADMesh, STL manipulation library
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%description -n python3-admesh
|
||||||
%package -n python3-%{pypi_name}
|
|
||||||
Summary: Python 3 bindings for ADMesh, STL maipulation library
|
|
||||||
|
|
||||||
|
|
||||||
%description -n python3-%{pypi_name}
|
|
||||||
This module provides bindings for the ADMesh library.
|
This module provides bindings for the ADMesh library.
|
||||||
It lets you manipulate 3D models in binary or ASCII STL
|
It lets you manipulate 3D models in binary or ASCII STL
|
||||||
format and partially repair them if necessary.
|
format and partially repair them if necessary.
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pypi_name}-%{version}
|
%autosetup -n admesh-%{version} -p1
|
||||||
# Remove bundled egg-info
|
cp %{SOURCE1} test/
|
||||||
rm -rf %{pypi_name}.egg-info
|
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
rm -rf %{py3dir}
|
|
||||||
cp -a . %{py3dir}
|
|
||||||
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
|
|
||||||
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
|
%generate_buildrequires
|
||||||
|
%pyproject_buildrequires -x test
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__python2} setup.py build
|
%pyproject_wheel
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
pushd %{py3dir}
|
|
||||||
%{__python3} setup.py build
|
|
||||||
popd
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__python2} setup.py install --skip-build --root %{buildroot}
|
%pyproject_install
|
||||||
|
%pyproject_save_files -l admesh
|
||||||
%if 0%{?with_python3}
|
|
||||||
pushd %{py3dir}
|
|
||||||
%{__python3} setup.py install --skip-build --root %{buildroot}
|
|
||||||
popd
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
export PYTHONPATH=`echo build/lib.linux-*/`
|
%pyproject_check_import
|
||||||
py.test-%{python2_version} -v
|
%pytest -v
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%files -n python3-admesh -f %{pyproject_files}
|
||||||
pushd %{py3dir}
|
%doc README.rst
|
||||||
export PYTHONPATH=`echo build/lib.linux-*/`
|
|
||||||
py.test-%{python3_version} -v
|
|
||||||
popd
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc README.rst COPYING
|
|
||||||
%attr(0755,root,root) %{python2_sitearch}/%{pypi_name}.so
|
|
||||||
%{python2_sitearch}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%files -n python3-%{pypi_name}
|
|
||||||
%doc README.rst COPYING
|
|
||||||
%attr(0755,root,root) %{python3_sitearch}/%{pypi_name}.cpython-??m.so
|
|
||||||
%{python3_sitearch}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.98.3-2
|
%autochangelog
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 25 2015 Miro Hrončok <mhroncok@redhat.com> - 0.98.3-1
|
|
||||||
- New version 0.98.3
|
|
||||||
|
|
||||||
* Wed Sep 03 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98.1-1
|
|
||||||
- New version
|
|
||||||
- Run tests, add BR pytest
|
|
||||||
|
|
||||||
* Wed Sep 03 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98-3
|
|
||||||
- Set correct executable permissions
|
|
||||||
- Typo in summary
|
|
||||||
|
|
||||||
* Thu Jul 31 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98-2
|
|
||||||
- Require setuptools.
|
|
||||||
|
|
||||||
* Tue Jul 29 2014 Miro Hrončok <mhroncok@redhat.com> - 0.98-1
|
|
||||||
- Initial package.
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
8aafc56b9d36224ed58ccaa7b21bd285 admesh-0.98.3.tar.gz
|
SHA512 (admesh-0.98.9.tar.gz) = 8b9776af5f39d3d1365f62531b4981022467e4ff60c22e758800278ff3fbb155d5f80c5ee5515790328d226cb7b2cd5bf905f36871c2f95fbb07b6d563b4eb7f
|
||||||
|
|
|
||||||
5
utils.py
Normal file
5
utils.py
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
def asset(filename):
|
||||||
|
return os.path.join(os.path.dirname(__file__), filename)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue