diff --git a/bitcoinlib-0.6.9.tar.gz b/bitcoinlib-0.6.10.tar.gz similarity index 36% rename from bitcoinlib-0.6.9.tar.gz rename to bitcoinlib-0.6.10.tar.gz index cc4bb881e7d1336a94c0b6e5dee699c6fe22a19c..53baf56d79f476445af3dc55a23068eeb2523a30 100644 Binary files a/bitcoinlib-0.6.9.tar.gz and b/bitcoinlib-0.6.10.tar.gz differ diff --git a/python-bitcoinlib.spec b/python-bitcoinlib.spec index 93ab24a1baa5ffd8e7ec30818da3212b1fec1c0e..91b8e034744c2cedab78fc98fc7d4219d419d2a6 100644 --- a/python-bitcoinlib.spec +++ b/python-bitcoinlib.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-bitcoinlib -Version: 0.6.9 +Version: 0.6.10 Release: 1 Summary: Bitcoin and Other cryptocurrency Library License: GPL-3.0-only URL: http://github.com/1200wd/bitcoinlib -Source0: https://files.pythonhosted.org/packages/bb/dd/ab543eedf5d0c30da5eb7bacb16f4416b33a180d347552fe5cb548914205/bitcoinlib-0.6.9.tar.gz +Source0: https://files.pythonhosted.org/packages/11/36/2b124a87fbdc32cdf999716d7266c4304702be1e1b7c58938d190cfc67fb/bitcoinlib-0.6.10.tar.gz BuildArch: noarch %description @@ -19,8 +19,10 @@ blockchain information. It does currently not parse the blockchain itself. %package -n python3-bitcoinlib Summary: Bitcoin and Other cryptocurrency Library Provides: python-bitcoinlib = %{version}-%{release} -BuildRequires: python3-devel -BuildRequires: python3-setuptools +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-wheel Requires: python3-sqlalchemy Requires: python3-pycryptodome Requires: python3-requests @@ -51,46 +53,49 @@ blockchain information. It does currently not parse the blockchain itself. %autosetup -n bitcoinlib-%{version} %build -%py3_build +%pyproject_build %install -%py3_install +%pyproject_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi -if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi -if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi -if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} -if [ -d usr/lib ]; then - find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst -fi +touch filelist.lst if [ -d usr/lib64 ]; then - find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/bin ]; then - find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/sbin ]; then - find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then - find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . mv %{buildroot}/doclist.lst . %files -n python3-bitcoinlib -f filelist.lst -%dir %{python3_sitelib}/* +%{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog +* Mon Nov 11 2024 liutao1 - 0.6.10-1 +- Update package to version 0.6.10 + Allow to encrypt private key fields in database + Include examples/documentation for field and full database encryption + Fixed various provider issues + Fixed unittests fee issues + Fixed secure bitcoind connection + * Thu Mar 16 2023 wubijie - 0.6.9-1 - Update package to version 0.6.9