Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package httpie for openSUSE:Factory checked in at 2023-05-23 14:54:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/httpie (Old) and /work/SRC/openSUSE:Factory/.httpie.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "httpie" Tue May 23 14:54:09 2023 rev:12 rq:1088403 version:3.2.2 Changes: -------- --- /work/SRC/openSUSE:Factory/httpie/httpie.changes 2022-04-26 21:42:42.924657369 +0200 +++ /work/SRC/openSUSE:Factory/.httpie.new.1533/httpie.changes 2023-05-23 14:54:39.534524135 +0200 @@ -1,0 +2,13 @@ +Sat May 20 06:14:41 UTC 2023 - Simon Vogl <simon.v...@gmx.net> + +- Update to version 3.2.2 + * Major version upgrade, expect API breakage + * Too many changes since 2.6.0 to list here, for a full changelog + please visit: + https://github.com/httpie/httpie/blob/master/CHANGELOG.md +- Disable more tests that fail in OBS +- Update dependencies +- Update fdupes deduplication +- Add bash and fish completion support + +------------------------------------------------------------------- Old: ---- httpie-2.6.0.tar.gz New: ---- httpie-3.2.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ httpie.spec ++++++ --- /var/tmp/diff_new_pack.DxwS1p/_old 2023-05-23 14:54:40.154527804 +0200 +++ /var/tmp/diff_new_pack.DxwS1p/_new 2023-05-23 14:54:40.162527851 +0200 @@ -1,7 +1,7 @@ # # spec file for package httpie # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: httpie -Version: 2.6.0 +Version: 3.2.2 Release: 0 Summary: CLI, cURL-like tool for humans License: BSD-3-Clause @@ -27,25 +27,45 @@ Source1: http.1 BuildRequires: fdupes BuildRequires: python-rpm-macros +BuildRequires: python3-Jinja2 +BuildRequires: python3-PySocks +BuildRequires: python3-PyYAML BuildRequires: python3-Pygments >= 2.5.2 +BuildRequires: python3-Werkzeug BuildRequires: python3-charset-normalizer >= 2.0.0 BuildRequires: python3-defusedxml >= 0.6.0 +BuildRequires: python3-flake8 +BuildRequires: python3-flake8-comprehensions +BuildRequires: python3-flake8-deprecated +BuildRequires: python3-multidict >= 4.7.0 +BuildRequires: python3-pip +BuildRequires: python3-pyOpenSSL BuildRequires: python3-pytest -BuildRequires: python3-pytest-httpbin +BuildRequires: python3-pytest-cov +BuildRequires: python3-pytest-httpbin >= 0.0.6 +BuildRequires: python3-pytest-lazy-fixture >= 0.0.6 +BuildRequires: python3-pytest-mock BuildRequires: python3-requests >= 2.22.0 BuildRequires: python3-requests-toolbelt >= 0.9.1 BuildRequires: python3-responses +BuildRequires: python3-rich >= 9.10.0 BuildRequires: python3-setuptools +BuildRequires: python3-twine +BuildRequires: python3-wheel +Requires: python3-PySocks Requires: python3-Pygments >= 2.5.2 Requires: python3-charset-normalizer >= 2.0.0 Requires: python3-defusedxml >= 0.6.0 +Requires: python3-multidict >= 4.7.0 +Requires: python3-pip Requires: python3-requests >= 2.22.0 Requires: python3-requests-toolbelt >= 0.9.1 -Requires: python3-responses -Provides: python3-httpie = 2.3.0 -Provides: python38-httpie = 2.3.0 +Requires: python3-rich >= 9.10.0 +Requires: python3-setuptools +Provides: python%{python_version}-httpie = 3.2.2 +Provides: python3-httpie = 3.2.2 +Obsoletes: python%{python_version}-httpie < 2.3.0 Obsoletes: python3-httpie < 2.3.0 -Obsoletes: python38-httpie < 2.3.0 BuildArch: noarch Requires(post): update-alternatives Requires(postun):update-alternatives @@ -69,21 +89,34 @@ %install export LC_CTYPE=en_US.UTF-8 %python3_install -%fdupes %{buildroot}%{$python_sitelib} +%fdupes %{buildroot}%{_prefix}/lib/python%{python_version}/site-packages install -D -m 0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/http.1 +mkdir -p %{buildroot}%{_datadir}/bash-completion/completions +# Install bash & fish completion, credit to Fedora for providing this: https://src.fedoraproject.org/rpms/httpie/blob/rawhide/f/httpie.spec +cp -a extras/httpie-completion.bash %{buildroot}%{_datadir}/bash-completion/completions/http +ln -s ./http %{buildroot}%{_datadir}/bash-completion/completions/https +mkdir -p %{buildroot}%{_datadir}/fish/vendor_completions.d/ +cp -a extras/httpie-completion.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/http.fish +ln -s ./http.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/https.fish %check export LC_CTYPE=en_US.UTF-8 # disable tests that fail on OBS with [Errno -3] Temporary failure in name resolution -#pytest --deselect=tests/test_uploads.py -pytest --deselect=tests/test_uploads.py tests -v +#pytest --deselect=tests/test_uploads.py --deselect=tests/test_plugins_cli.py +pytest --deselect=tests/test_uploads.py --deselect=tests/test_plugins_cli.py tests -v %files %doc AUTHORS.md CHANGELOG.md README.md %license LICENSE %{_bindir}/http %{_bindir}/https +%{_bindir}/%{name} %{python_sitelib}/httpie* %{_mandir}/man1/http.1%{?ext_man} +%{_mandir}/man1/https.1%{?ext_man} +%{_mandir}/man1/%{name}.1%{?ext_man} +# co-own the entire directory structures, again credit to Fedora: https://src.fedoraproject.org/rpms/httpie/blob/rawhide/f/httpie.spec +%{_datadir}/bash-completion/ +%{_datadir}/fish/ %changelog ++++++ httpie-2.6.0.tar.gz -> httpie-3.2.2.tar.gz ++++++ ++++ 20382 lines of diff (skipped)