From 1125252c22e1ccc70ff38c2f5d2375987da4be5a Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:26:35 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.3.0-1mamba;Mon Nov 22 2021] --- README.md | 2 ++ python-pyjwt.spec | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 python-pyjwt.spec diff --git a/README.md b/README.md index 999c54d..35f3f52 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pyjwt +JSON Web Token implementation in Python. + diff --git a/python-pyjwt.spec b/python-pyjwt.spec new file mode 100644 index 0000000..7392244 --- /dev/null +++ b/python-pyjwt.spec @@ -0,0 +1,52 @@ +%define pkgname %(echo %name | cut -d- -f2-) +Name: python-pyjwt +Version: 2.3.0 +Release: 1mamba +Summary: JSON Web Token implementation in Python +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/jpadilla/pyjwt +Source: https://pypi.debian.net/PyJWT/PyJWT-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython3-devel +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%define py_requires_append \ +Provides: python-jwt%{?pyappend:-%pyappend} \ +Obsoletes: python-jwt%{?pyappend:-%pyappend} < 2.3.0 +%pyver_package +%endif + +%prep +%setup -q -n PyJWT-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{python_inc} \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +%dir %{python_sitearch}/PyJWT-%{version}-py*.egg-info +%{python_sitearch}/PyJWT-%{version}-py*.egg-info/* +%doc LICENSE + +%changelog +* Mon Nov 22 2021 Silvan Calarco 2.3.0-1mamba +- package created using the webbuild interface