You've already forked httpie-cli
							
							
				mirror of
				https://github.com/httpie/cli.git
				synced 2025-10-30 23:47:52 +02:00 
			
		
		
		
	Fix packit CI (#1219)
This commit is contained in:
		| @@ -3,7 +3,8 @@ | |||||||
| specfile_path: httpie.spec | specfile_path: httpie.spec | ||||||
| actions: | actions: | ||||||
|   # get the current Fedora Rawhide specfile: |   # get the current Fedora Rawhide specfile: | ||||||
|   post-upstream-clone: "wget https://src.fedoraproject.org/rpms/httpie/raw/rawhide/f/httpie.spec -O httpie.spec" |   # post-upstream-clone: "wget https://src.fedoraproject.org/rpms/httpie/raw/rawhide/f/httpie.spec -O httpie.spec" | ||||||
|  |   post-upstream-clone: "cp docs/packaging/linux-fedora/httpie.spec.txt httpie.spec" | ||||||
| jobs: | jobs: | ||||||
| - job: copr_build | - job: copr_build | ||||||
|   trigger: pull_request |   trigger: pull_request | ||||||
|   | |||||||
| @@ -56,6 +56,7 @@ export PYTHONPATH=%{buildroot}%{python3_sitelib} | |||||||
| mkdir -p %{buildroot}%{_mandir}/man1 | mkdir -p %{buildroot}%{_mandir}/man1 | ||||||
| help2man %{buildroot}%{_bindir}/http > %{buildroot}%{_mandir}/man1/http.1 | help2man %{buildroot}%{_bindir}/http > %{buildroot}%{_mandir}/man1/http.1 | ||||||
| help2man %{buildroot}%{_bindir}/https > %{buildroot}%{_mandir}/man1/https.1 | help2man %{buildroot}%{_bindir}/https > %{buildroot}%{_mandir}/man1/https.1 | ||||||
|  | help2man %{buildroot}%{_bindir}/httpie > %{buildroot}%{_mandir}/man1/httpie.1 | ||||||
|  |  | ||||||
|  |  | ||||||
| %check | %check | ||||||
| @@ -67,8 +68,10 @@ help2man %{buildroot}%{_bindir}/https > %{buildroot}%{_mandir}/man1/https.1 | |||||||
| %license LICENSE | %license LICENSE | ||||||
| %{_bindir}/http | %{_bindir}/http | ||||||
| %{_bindir}/https | %{_bindir}/https | ||||||
|  | %{_bindir}/httpie | ||||||
| %{_mandir}/man1/http.1* | %{_mandir}/man1/http.1* | ||||||
| %{_mandir}/man1/https.1* | %{_mandir}/man1/https.1* | ||||||
|  | %{_mandir}/man1/httpie.1* | ||||||
| # we co-own the entire directory structures for bash/fish completion to avoid a dependency | # we co-own the entire directory structures for bash/fish completion to avoid a dependency | ||||||
| %{_datadir}/bash-completion/ | %{_datadir}/bash-completion/ | ||||||
| %{_datadir}/fish/ | %{_datadir}/fish/ | ||||||
|   | |||||||
| @@ -8,10 +8,8 @@ from contextlib import suppress | |||||||
| from pathlib import Path | from pathlib import Path | ||||||
| from typing import Optional, List | from typing import Optional, List | ||||||
|  |  | ||||||
| import importlib_metadata |  | ||||||
|  |  | ||||||
| from httpie.manager.cli import parser, missing_subcommand | from httpie.manager.cli import parser, missing_subcommand | ||||||
| from httpie.compat import get_dist_name | from httpie.compat import importlib_metadata, get_dist_name | ||||||
| from httpie.context import Environment | from httpie.context import Environment | ||||||
| from httpie.status import ExitStatus | from httpie.status import ExitStatus | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								setup.py
									
									
									
									
									
								
							| @@ -35,7 +35,7 @@ install_requires = [ | |||||||
|     'requests-toolbelt>=0.9.1', |     'requests-toolbelt>=0.9.1', | ||||||
|     'multidict>=4.7.0', |     'multidict>=4.7.0', | ||||||
|     'setuptools', |     'setuptools', | ||||||
|     'importlib-metadata>=1.4.0', |     'importlib-metadata>=1.4.0; python_version < "3.8"', | ||||||
| ] | ] | ||||||
| install_requires_win_only = [ | install_requires_win_only = [ | ||||||
|     'colorama>=0.2.4', |     'colorama>=0.2.4', | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user