123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- Summary: Python HTTP for Humans
- Name: python-requests
- Version: 2.23.0
- Release: 1%{?_dist_release}
- License: ASLv2
- Group: Development/Languages
- URL: https://pypi.python.org/pypi/requests
- Source0: https://pypi.python.org/packages/source/r/requests/requests-%{version}.tar.gz
- Patch0: patch-requests-certs.py-to-use-the-system-CA-bundle.patch
- Patch2: Remove-tests-that-use-the-tarpit.patch
- Patch3: requests-2.12.4-tests_nonet.patch
- Patch4: Don-t-inject-pyopenssl-into-urllib3.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- Requires: python
- Requires: python-urllib3
- Requires: python-chardet
- Requires: python-idna
- BuildRequires: python-devel
- BuildRequires: python-rpm-macros
- BuildRequires: python-setuptools
- BuildRequires: python3-devel
- BuildRequires: python3-rpm-macros
- BuildRequires: python3-setuptools
- BuildArch: noarch
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: iwaim
- %description
- Requests is an Apache2 Licensed HTTP library, written in Python, for human beings.
- %package -n python3-requests
- Summary: Python HTTP for Humans
- Group: Development/Languages
- Requires: python3
- Requires: python3-urllib3
- Requires: python3-chardet
- Requires: python3-idna
- %description -n python3-requests
- Requests is an Apache2 Licensed HTTP library, written in Python, for human beings.
- %prep
- %autosetup -p1 -n requests-%{version}
- rm -rf requests/cacert.pem
- sed -i '/#!\/usr\/.*python/d' requests/certs.py
- %build
- %py_build
- %py3_build
- %install
- rm -rf $RPM_BUILD_ROOT
- %py_install
- %py3_install
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %license LICENSE
- %doc README* HISTORY*
- %{python_sitelib}/requests
- %{python_sitelib}/requests-%{version}-py*.egg-info
- %files -n python3-requests
- %defattr(-,root,root,-)
- %license LICENSE
- %doc README* HISTORY*
- %{python3_sitelib}/requests
- %{python3_sitelib}/requests-%{version}-py*.egg-info
- %changelog
- * Wed Apr 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.23.0-1
- - new upstream release.
- - updated patches.
- * Wed Nov 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.20.1-2
- - fixed R:.
- - imported Patch0-4 from rawhide.
- * Wed Nov 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.20.1-1
- - new upstream release.
- - add python2 support.
- * Tue Jun 28 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.5.1-2
- - rebuild with python3-3.5.2
- * Sun Mar 22 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 2.5.1-1
- - Initial build.
|