Sync from SUSE:SLFO:Main python-base58 revision 9a6193e5e037f726b0d791fd26bee9d2

This commit is contained in:
Adrian Schröter 2024-05-03 20:12:14 +02:00
commit 6f114f8e23
4 changed files with 147 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

BIN
base58-2.1.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

52
python-base58.changes Normal file
View File

@ -0,0 +1,52 @@
-------------------------------------------------------------------
Wed Nov 3 10:05:51 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 2.1.1
* Use github actions (@keis)
* Escape illegal special characters in error message (@hukkin)
-------------------------------------------------------------------
Mon Aug 30 14:10:48 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 2.1.0
* Parametrise a few tests over alphabet (@keis)
* Made it handle any base with passing alphabet. (#63) (@tanupoo)
* Setup cfg (@keis)
* Add support to ppc64le (@gururajrkatti)
* Update README.md (@alloyxrp)
* New alias for XRP alphabet (@alloyxrp)
* Improve invalid character message (@keis)
* Autofix for similar letters (@keis)
* Add performance benchmarks using pytest-benchmark (@keis)
* Performance optimizations (@kolomenkin)
- Update BuildRequires from setup.cfg
-------------------------------------------------------------------
Thu Jul 23 02:06:04 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
- Switched back to PyPI source now it has needed files
- Update to v2.0.1
* Include license file in source distribution
* Typecheck tests now that hamcrest has typing
* Replace custom exception assert with hamcrest utils
-------------------------------------------------------------------
Wed May 27 09:36:25 UTC 2020 - Petr Gajdos <pgajdos@suse.com>
- %python3_only -> %python_alternative
-------------------------------------------------------------------
Fri Jan 24 09:52:54 UTC 2020 - d0p1 <contact@d0p1.eu>
- update to 2.0.0 (drop python 2 support)
-------------------------------------------------------------------
Wed Nov 20 14:54:57 UTC 2019 - d0p1 <contact@d0p1.eu>
- Fix test.
- Using source from github (because of missing files like COPYING in pypi package).
-------------------------------------------------------------------
Wed Nov 20 11:37:42 UTC 2019 - d0p1 <contact@d0p1.eu>
- Initial package.

69
python-base58.spec Normal file
View File

@ -0,0 +1,69 @@
#
# spec file for package python-base58
#
# Copyright (c) 2021 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-base58
Version: 2.1.1
Release: 0
Summary: Base58 and Base58Check implementation
License: MIT
Group: Development/Languages/Python
URL: https://github.com/keis/base58
Source: https://files.pythonhosted.org/packages/source/b/base58/base58-%{version}.tar.gz
BuildRequires: %{python_module PyHamcrest >= 2.0.2}
BuildRequires: %{python_module pytest >= 4.6}
BuildRequires: %{python_module pytest-benchmark}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires(post): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
%python_subpackages
%description
Base58 and Base58Check implementation compatible with what is used by the bitcoin network.
%prep
%setup -q -n base58-%{version}
%build
%python_build
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/base58
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%post
%python_install_alternative base58
%postun
%python_uninstall_alternative base58
%files %{python_files}
%doc README.md
%license COPYING
%python_alternative %{_bindir}/base58
%{python_sitelib}/*
%changelog