diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-mastercard-oauth1-signer.spec | 79 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 81 insertions, 0 deletions
@@ -0,0 +1 @@ +/mastercard-oauth1-signer-1.6.1.tar.gz diff --git a/python-mastercard-oauth1-signer.spec b/python-mastercard-oauth1-signer.spec new file mode 100644 index 0000000..b0d8a56 --- /dev/null +++ b/python-mastercard-oauth1-signer.spec @@ -0,0 +1,79 @@ +%global _empty_manifest_terminate_build 0 +Name: python-mastercard-oauth1-signer +Version: 1.6.1 +Release: 1 +Summary: Mastercard OAuth1 Signer. +License: MIT +URL: https://github.com/Mastercard/oauth1-signer-python +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/83/cd/93a10cb4c6e5fb85112b329afd3d9d4bd1c47292da331af50b4da5a4baff/mastercard-oauth1-signer-1.6.1.tar.gz +BuildArch: noarch + +Requires: python3-requests +Requires: python3-pyOpenSSL +Requires: python3-urllib3 +Requires: python3-Deprecated + +%description +Python library for generating a Mastercard API compliant OAuth signature. + + +%package -n python3-mastercard-oauth1-signer +Summary: Mastercard OAuth1 Signer. +Provides: python-mastercard-oauth1-signer +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-mastercard-oauth1-signer +Python library for generating a Mastercard API compliant OAuth signature. + + +%package help +Summary: Development documents and examples for mastercard-oauth1-signer +Provides: python3-mastercard-oauth1-signer-doc +%description help +Python library for generating a Mastercard API compliant OAuth signature. + + +%prep +%autosetup -n mastercard-oauth1-signer-1.6.1 + +%build +%py3_build + +%install +%py3_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 +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + 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 +fi +if [ -d usr/sbin ]; then + 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 +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-mastercard-oauth1-signer -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 1.6.1-1 +- Package Spec generated @@ -0,0 +1 @@ +11133c76a3b2f0b66caa51521023af34 mastercard-oauth1-signer-1.6.1.tar.gz |
