SHA256
1
0
forked from pool/httpie
httpie/httpie.spec
Marcus Meissner 8c271e237f Accepting request 827634 from home:dirkmueller:branches:network:utilities
- update to 2.2.0:
  * Added support for custom content types for uploaded files (`#668`_).
  * Added support for ``$XDG_CONFIG_HOME`` (`#920`_).
  * Added support for ``Set-Cookie``-triggered cookie expiration (`#853`_).
  * Added ``--format-options`` to allow disabling sorting, etc. (`#128`_)
  * Added ``--sorted`` and ``--unsorted`` shortcuts for (un)setting all sorting-related ``--format-options``. (`#128`_)
  * Added ``--ciphers`` to allow configuring OpenSSL ciphers (`#870`_).
  * Added ``netrc`` support for auth plugins. Enabled for ``--auth-type=basic``
    and ``digest``, 3rd parties may opt in (`#718`_, `#719`_, `#852`_, `#934`_).
  * Fixed built-in plugins-related circular imports (`#925`_).

OBS-URL: https://build.opensuse.org/request/show/827634
OBS-URL: https://build.opensuse.org/package/show/network:utilities/httpie?expand=0&rev=15
2020-08-20 15:50:01 +00:00

94 lines
2.8 KiB
RPMSpec

#
# spec file for package httpie
#
# Copyright (c) 2020 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/
#
%define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: httpie
Version: 2.2.0
Release: 0
Summary: CLI, cURL-like tool for humans
License: BSD-3-Clause
Group: Productivity/Networking/Web/Utilities
URL: https://httpie.org/
Source: https://github.com/jakubroztocil/httpie/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source1: http.1
Patch0: httpie-adjust-requirements.patch
BuildRequires: %{python_module Pygments >= 2.1.3}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module pytest-httpbin}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests >= 2.18.4}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Pygments >= 2.1.3
Requires: python-requests >= 2.18.4
Suggests: python-argparse >= 1.2.1
Suggests: python-colorama >= 0.2.4
Provides: httpie
BuildArch: noarch
Requires(post): update-alternatives
Requires(postun): update-alternatives
%python_subpackages
%description
HTTPie consists of a single "http" command designed for debugging and
interaction with HTTP servers, RESTful APIs, and web services.
It allows for issuing arbitrary HTTP requests and displays colorized
responses.
%prep
%setup -q
%patch0 -p1
#drop shebang
sed -i -e '/^#!\//, 1d' httpie/__main__.py
%build
export LC_CTYPE=en_US.UTF-8
%python_build
%install
export LC_CTYPE=en_US.UTF-8
%python_install
%python_clone -a %{buildroot}%{_bindir}/http
%python_clone -a %{buildroot}%{_bindir}/https
%python_expand %fdupes %{buildroot}%{$python_sitelib}
install -D -m 0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/http.1
%check
export LC_CTYPE=en_US.UTF-8
%pytest
%post
%python_install_alternative http https
%postun
%python_uninstall_alternative http https
%files %{python_files}
%doc AUTHORS.rst CHANGELOG.rst README.rst
%license LICENSE
%python_alternative %{_bindir}/http
%python_alternative %{_bindir}/https
%{python_sitelib}/*
%{_mandir}/man1/http.1%{?ext_man}
%changelog