commit 7263e92d6f2fb2066e074c134df5ac81c0953e15081b6e3b0c90e5050aee1947 Author: Daniel Garcia Date: Thu Dec 22 10:14:13 2022 +0000 Accepting request 1044057 from home:bnavigator:branches:devel:languages:python required by py7zr OBS-URL: https://build.opensuse.org/request/show/1044057 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pybcj?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/pybcj-1.0.1.tar.gz b/pybcj-1.0.1.tar.gz new file mode 100644 index 0000000..d6e7d53 --- /dev/null +++ b/pybcj-1.0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b682ed08caabfb7c042d4be083e28ddc692afb1deff5567111f8855071b75c3 +size 2110963 diff --git a/python-pybcj.changes b/python-pybcj.changes new file mode 100644 index 0000000..faa8263 --- /dev/null +++ b/python-pybcj.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Wed Dec 21 10:53:50 UTC 2022 - Ben Greiner + +- Initial specfile for v1.0.1 +- Required by py7zr diff --git a/python-pybcj.spec b/python-pybcj.spec new file mode 100644 index 0000000..6dcb388 --- /dev/null +++ b/python-pybcj.spec @@ -0,0 +1,74 @@ +# +# spec file for package python-pybcj +# +# Copyright (c) 2022 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 +Name: python-pybcj +Version: 1.0.1 +Release: 0 +Summary: A bcj filter library +License: LGPL-2.1-or-later +URL: https://codeberg.org/miurahr/pybcj +Source: https://files.pythonhosted.org/packages/source/p/pybcj/pybcj-%{version}.tar.gz +BuildRequires: %{python_module devel >= 3.6} +BuildRequires: %{python_module importlib_metadata if %python-base < 3.8} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools >= 58.0} +BuildRequires: %{python_module setuptools_scm >= 6.0.1} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: (python-importlib_metadata if python-base < 3.8) +# SECTION test +BuildRequires: %{python_module hypothesis} +BuildRequires: %{python_module pytest} +# /SECTION +%python_subpackages + +%description +In data compression, BCJ, short for Branch-Call-Jump, refers to a technique that +improves the compression of machine code of executable binaries by replacing +relative branch addresses with absolute ones. This allows a LZMA compressor to +identify duplicate targets and archive higher compression rate. + +BCJ is used in 7-zip compression utility as default filter for executable binaries. + +pybcj is a python bindings with BCJ implementation by C language. The C codes are +derived from p7zip, portable 7-zip implementation. pybcj support Intel/Amd +x86/x86_64, Arm/Arm64, ArmThumb, Sparc, PPC, and IA64. + +%prep +%setup -q -n pybcj-%{version} + +%build +export CFLAGS="%{optflags}" +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitearch} + +%check +%pytest_arch + +%files %{python_files} +%doc Changelog.rst README.rst +%license LICENSE +%{python_sitearch}/bcj +%{python_sitearch}/pybcj-%{version}.dist-info + +%changelog