15
0

- update to 0.6.13:

* Rephrase setup failure notices for clarity.
  * Improve seekable conformance of internal file-like
    wrappers.
  * Minor maintainability and test improvements.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-acefile?expand=0&rev=8
This commit is contained in:
2024-11-19 12:04:24 +00:00
committed by Git OBS Bridge
commit aedaa75f4d
6 changed files with 129 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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
acefile-0.6.12.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e02c1eac068d2db14c7fbda526d7648c8921ace8cc30b9e5228241cde82cdeaa
size 49840

3
acefile-0.6.13.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:42274f3d412728682fc1b2c8448b464ae315282f5023b5a765cd61218c1c9039
size 54595

30
python-acefile.changes Normal file
View File

@@ -0,0 +1,30 @@
-------------------------------------------------------------------
Tue Nov 19 12:04:15 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.6.13:
* Rephrase setup failure notices for clarity.
* Improve seekable conformance of internal file-like
wrappers.
* Minor maintainability and test improvements.
-------------------------------------------------------------------
Wed May 27 09:35:56 UTC 2020 - Petr Gajdos <pgajdos@suse.com>
- %python3_only -> %python_alternative
-------------------------------------------------------------------
Fri Jun 7 11:38:05 UTC 2019 - pgajdos@suse.com
- require setup-tools
- call spec-cleaner
- note there are no upstream testsuite
-------------------------------------------------------------------
Wed Apr 10 08:04:43 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Use noun phrase in summary.
-------------------------------------------------------------------
Sun Apr 7 03:27:24 PM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Initial spec for v0.6.12

69
python-acefile.spec Normal file
View File

@@ -0,0 +1,69 @@
#
# spec file for package python-acefile
#
# Copyright (c) 2024 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/
#
%define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-acefile
Version: 0.6.13
Release: 0
Summary: ACE 1.0 and 2.0 archive reader/extractor in pure Python
License: BSD-2-Clause
Group: Development/Languages/Python
URL: https://www.roe.ch/acefile
Source: https://files.pythonhosted.org/packages/source/a/acefile/acefile-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-setuptools
Requires(post): update-alternatives
Requires(postun): update-alternatives
%python_subpackages
%description
Read/test/extract ACE 1.0 and 2.0 archives in pure python.
%prep
%setup -q -n acefile-%{version}
sed -i '1 {/^#!/d}' acefile.py
%build
export CFLAGS="%{optflags}"
%python_build
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/acefile-unace
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%post
%python_install_alternative acefile-unace
%postun
%python_uninstall_alternative acefile-unace
%files %{python_files}
%doc NEWS.md README.md
%license LICENSE.md
%python_alternative %{_bindir}/acefile-unace
%{python_sitearch}/*
%check
# no testsuite found
%changelog