commit a4f29c05ed6af338b336e17d9c40a24f69dcd04fae90756c5ec14479948e33b1 Author: Nico Krapp Date: Wed Aug 6 16:16:23 2025 +0000 - Update to 2.1.0 * Set the request property in the returned Response object - Adjust upstream source name in spec file OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests-file?expand=0&rev=18 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/python-requests-file.changes b/python-requests-file.changes new file mode 100644 index 0000000..a5a04c4 --- /dev/null +++ b/python-requests-file.changes @@ -0,0 +1,76 @@ +------------------------------------------------------------------- +Tue Aug 5 12:15:21 UTC 2025 - John Paul Adrian Glaubitz + +- Update to 2.1.0 + * Set the request property in the returned Response object +- Adjust upstream source name in spec file + +------------------------------------------------------------------- +Fri Mar 22 05:37:11 UTC 2024 - Steve Kowalik + +- Update to 2.0.0: + * Correct a typo in requests_file.py + * Remove dependency on six + * Move metadata to pyproject.toml + + Remove support for Python 2 + + Remove support for raw distutils + * Correct homepage link in pyproject.toml + * Fix black formatting +- Switch to pyproject macros. + +------------------------------------------------------------------- +Sat Jul 1 09:12:10 UTC 2023 - ecsos + +- Add %{?sle15_python_module_pythons} + +------------------------------------------------------------------- +Fri Jun 16 06:55:06 UTC 2023 - Steve Kowalik + +- Add missing six BuildRequires. +- Stop using greedy globs in %files. + +------------------------------------------------------------------- +Thu Jun 3 12:11:33 UTC 2021 - pgajdos@suse.com + +- %check: use %pyunittest rpm macro + +------------------------------------------------------------------- +Mon Aug 3 10:42:35 UTC 2020 - Marketa Calabkova + +- update to 1.5.1 + * Fix python 2.7 compatibility + * Rename test file for pytest + * Add tests via github actions + * Format code with black + * Add set_content_length flag to disable on demand setting Content-Length + +------------------------------------------------------------------- +Tue Dec 4 12:53:43 UTC 2018 - Matej Cepl + +- Remove superfluous devel dependency for noarch package + +------------------------------------------------------------------- +Sat Jan 6 05:26:44 UTC 2018 - arun@gmx.de + +- specfile: + * update copyright year + +- update to version 1.4.3: + * Skip the permissions test when running as root + * Handle missing locale in tests + +------------------------------------------------------------------- +Thu May 11 01:28:32 UTC 2017 - toddrme2178@gmail.com + +- Implement single-spec version. +- Fix source URL. +- Update to version 1.4.2 + * Set the response URL to the request URL +- Update to version 1.4.1 + * Add a wheel distribution + +------------------------------------------------------------------- +Tue Feb 2 19:17:40 UTC 2016 - toddrme2178@gmail.com + +- Initial version + diff --git a/python-requests-file.spec b/python-requests-file.spec new file mode 100644 index 0000000..9b26e37 --- /dev/null +++ b/python-requests-file.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-requests-file +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%{?sle15_python_module_pythons} +Name: python-requests-file +Version: 2.1.0 +Release: 0 +Summary: File transport adapter for Requests +License: Apache-2.0 +URL: https://github.com/dashea/requests-file +Source: https://files.pythonhosted.org/packages/source/r/requests_file/requests_file-%{version}.tar.gz +BuildRequires: %{python_module pip} +BuildRequires: %{python_module requests} +BuildRequires: %{python_module setuptools_scm} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-requests +BuildArch: noarch +%python_subpackages + +%description +Requests-File is a transport adapter for use with the Requests Python +library to allow local filesystem access via file:// URLs. + +%prep +%setup -q -n requests_file-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pyunittest discover -v tests + +%files %{python_files} +%license LICENSE +%doc README.rst +%{python_sitelib}/requests_file.py +%pycache_only %{python_sitelib}/__pycache__/requests_file.*.py* +%{python_sitelib}/requests_file-%{version}.dist-info + +%changelog diff --git a/requests-file-2.0.0.tar.gz b/requests-file-2.0.0.tar.gz new file mode 100644 index 0000000..a9c49e3 --- /dev/null +++ b/requests-file-2.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c5931629c558fda566cacc10cfe2cd502433e628f568c34c80d96a0cc95972 +size 6863 diff --git a/requests_file-2.1.0.tar.gz b/requests_file-2.1.0.tar.gz new file mode 100644 index 0000000..3c7f21b --- /dev/null +++ b/requests_file-2.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f549a3f3b0699415ac04d167e9cb39bccfb730cb832b4d20be3d9867356e658 +size 6891