summaryrefslogtreecommitdiff
path: root/python-requests-ftp.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-requests-ftp.spec')
-rw-r--r--python-requests-ftp.spec123
1 files changed, 123 insertions, 0 deletions
diff --git a/python-requests-ftp.spec b/python-requests-ftp.spec
new file mode 100644
index 0000000..9333004
--- /dev/null
+++ b/python-requests-ftp.spec
@@ -0,0 +1,123 @@
+%global _empty_manifest_terminate_build 0
+Name: python-requests-ftp
+Version: 0.3.1
+Release: 1
+Summary: FTP Transport Adapter for Requests.
+License: Apache 2.0
+URL: http://github.com/Lukasa/requests-ftp
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/3d/ca/14b2ad1e93b5195eeaf56b86b7ecfd5ea2d5754a68d17aeb1e5b9f95b3cf/requests-ftp-0.3.1.tar.gz
+BuildArch: noarch
+
+
+%description
+Requests-FTP is an implementation of a very stupid FTP transport adapter for
+use with the awesome `Requests`_ Python library.
+This library is *not* intended to be an example of Transport Adapters best
+practices. This library was cowboyed together in about 4 hours of total work,
+has no tests, and relies on a few ugly hacks. Instead, it is intended as both
+a starting point for future development and a useful example for how to
+implement transport adapters.
+Here's how you use it:
+ >>> import requests
+ >>> import requests_ftp
+ >>> requests_ftp.monkeypatch_session()
+ >>> s = requests.Session()
+ >>> resp = s.list('ftp://127.0.0.1/', auth=('Lukasa', 'notmypass'))
+ >>> resp.status_code
+ '226'
+ >>> print resp.content
+ >>> resp = s.stor('ftp://127.0.0.1/test.txt', auth=('Lukasa', 'notmypass'),
+ files={'file': open('report.txt', 'rb')})
+
+%package -n python3-requests-ftp
+Summary: FTP Transport Adapter for Requests.
+Provides: python-requests-ftp
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-requests-ftp
+Requests-FTP is an implementation of a very stupid FTP transport adapter for
+use with the awesome `Requests`_ Python library.
+This library is *not* intended to be an example of Transport Adapters best
+practices. This library was cowboyed together in about 4 hours of total work,
+has no tests, and relies on a few ugly hacks. Instead, it is intended as both
+a starting point for future development and a useful example for how to
+implement transport adapters.
+Here's how you use it:
+ >>> import requests
+ >>> import requests_ftp
+ >>> requests_ftp.monkeypatch_session()
+ >>> s = requests.Session()
+ >>> resp = s.list('ftp://127.0.0.1/', auth=('Lukasa', 'notmypass'))
+ >>> resp.status_code
+ '226'
+ >>> print resp.content
+ >>> resp = s.stor('ftp://127.0.0.1/test.txt', auth=('Lukasa', 'notmypass'),
+ files={'file': open('report.txt', 'rb')})
+
+%package help
+Summary: Development documents and examples for requests-ftp
+Provides: python3-requests-ftp-doc
+%description help
+Requests-FTP is an implementation of a very stupid FTP transport adapter for
+use with the awesome `Requests`_ Python library.
+This library is *not* intended to be an example of Transport Adapters best
+practices. This library was cowboyed together in about 4 hours of total work,
+has no tests, and relies on a few ugly hacks. Instead, it is intended as both
+a starting point for future development and a useful example for how to
+implement transport adapters.
+Here's how you use it:
+ >>> import requests
+ >>> import requests_ftp
+ >>> requests_ftp.monkeypatch_session()
+ >>> s = requests.Session()
+ >>> resp = s.list('ftp://127.0.0.1/', auth=('Lukasa', 'notmypass'))
+ >>> resp.status_code
+ '226'
+ >>> print resp.content
+ >>> resp = s.stor('ftp://127.0.0.1/test.txt', auth=('Lukasa', 'notmypass'),
+ files={'file': open('report.txt', 'rb')})
+
+%prep
+%autosetup -n requests-ftp-0.3.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-requests-ftp -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.1-1
+- Package Spec generated