From 290b7f5d31ad3465dda3422be5cd0302f895400ac6dc6f3c331cf08d7d8be6e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Wed, 11 Jun 2025 12:55:10 +0000 Subject: [PATCH 1/2] - Convert to pip-based build OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests-download?expand=0&rev=8 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + LICENSE | 21 +++++++++++ python-requests-download.changes | 24 +++++++++++++ python-requests-download.spec | 60 ++++++++++++++++++++++++++++++++ requests_download-0.1.2.tar.gz | 3 ++ 6 files changed, 132 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 python-requests-download.changes create mode 100644 python-requests-download.spec create mode 100644 requests_download-0.1.2.tar.gz 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/LICENSE b/LICENSE new file mode 100644 index 0000000..db5fd95 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Thomas Kluyver + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/python-requests-download.changes b/python-requests-download.changes new file mode 100644 index 0000000..4a4b1b0 --- /dev/null +++ b/python-requests-download.changes @@ -0,0 +1,24 @@ +------------------------------------------------------------------- +Wed Jun 11 12:53:23 UTC 2025 - Markéta Machová + +- Convert to pip-based build + +------------------------------------------------------------------- +Sun Jul 2 11:13:04 UTC 2023 - ecsos + +- Add %{?sle15_python_module_pythons} + +------------------------------------------------------------------- +Sat Aug 24 06:00:31 UTC 2019 - Jan Engelhardt + +- Use noun phrase in descriptions. + +------------------------------------------------------------------- +Mon Aug 12 14:34:38 UTC 2019 - Tomáš Chvátal + +- Format with spec-cleaner + +------------------------------------------------------------------- +Fri Aug 9 02:48:25 AM UTC 2019 - John Vandenberg + +- Initial spec for v0.1.2 diff --git a/python-requests-download.spec b/python-requests-download.spec new file mode 100644 index 0000000..404f4db --- /dev/null +++ b/python-requests-download.spec @@ -0,0 +1,60 @@ +# +# spec file for package python-requests-download +# +# Copyright (c) 2025 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-download +Version: 0.1.2 +Release: 0 +Summary: Python module to download and save files using python-requests +License: MIT +Group: Development/Languages/Python +URL: https://www.github.com/takluyver/requests_download +Source: https://files.pythonhosted.org/packages/source/r/requests_download/requests_download-%{version}.tar.gz +Source1: https://raw.githubusercontent.com/takluyver/requests_download/master/LICENSE +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-progressbar +Requires: python-requests +BuildArch: noarch +%python_subpackages + +%description +This module downloads files using requests and saves them to a target path. + +%prep +%setup -q -n requests_download-%{version} +cp %{SOURCE1} . + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/requests_download.py +%{python_sitelib}/requests[-_]download-%{version}*-info +%pycache_only %{python_sitelib}/__pycache__/requests_download* + +%changelog diff --git a/requests_download-0.1.2.tar.gz b/requests_download-0.1.2.tar.gz new file mode 100644 index 0000000..d2d58b7 --- /dev/null +++ b/requests_download-0.1.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d895a6ca51ea51aa42bab864bddaee31b5601c7e7e1ade4c27b0eb6695d846 +size 2898 From 400a7c370a6783afc9fea90ec846141a0b54c3a9e3dca38b7a2e06d80c56561c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Wed, 11 Jun 2025 12:59:29 +0000 Subject: [PATCH 2/2] fix build deps OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests-download?expand=0&rev=9 --- python-requests-download.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-requests-download.spec b/python-requests-download.spec index 404f4db..239eaf3 100644 --- a/python-requests-download.spec +++ b/python-requests-download.spec @@ -26,8 +26,8 @@ Group: Development/Languages/Python URL: https://www.github.com/takluyver/requests_download Source: https://files.pythonhosted.org/packages/source/r/requests_download/requests_download-%{version}.tar.gz Source1: https://raw.githubusercontent.com/takluyver/requests_download/master/LICENSE +BuildRequires: %{python_module flit} BuildRequires: %{python_module pip} -BuildRequires: %{python_module setuptools} BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros