- Update to version 1.7.1:
* 1.7.1: Use minimum supported Python to build zipapp (#1515) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pipx?expand=0&rev=26
This commit is contained in:
parent
a54c2c3590
commit
c83ba3b74d
10
_service
10
_service
@ -2,15 +2,17 @@
|
|||||||
<service name="obs_scm" mode="manual">
|
<service name="obs_scm" mode="manual">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/pypa/pipx</param>
|
<param name="url">https://github.com/pypa/pipx</param>
|
||||||
<param name="revision">1.7.0</param>
|
<param name="revision">1.7.1</param>
|
||||||
<param name="match-tag">*</param>
|
<param name="match-tag">*</param>
|
||||||
<param name="versionrewrite-pattern">(\d+\.\d+\.\d+)</param>
|
<param name="versionrewrite-pattern">(\d+\.\d+\.\d+)</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
<!-- <param name="package-meta">yes</param> -->
|
</service>
|
||||||
|
<service name="tar" mode="manual"/>
|
||||||
|
<service name="recompress" mode="manual">
|
||||||
|
<param name="file">*.tar</param>
|
||||||
|
<param name="compression">gz</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="set_version" mode="manual" />
|
<service name="set_version" mode="manual" />
|
||||||
|
|
||||||
<service name="tar" mode="buildtime"/>
|
|
||||||
</services>
|
</services>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/pypa/pipx</param>
|
<param name="url">https://github.com/pypa/pipx</param>
|
||||||
<param name="changesrevision">551e9ce8f88135a9e45a4bb2f85dd8156b370a60</param></service></servicedata>
|
<param name="changesrevision">4462299fa391b7349074facc39c73767853c9d02</param></service></servicedata>
|
BIN
pipx-1.7.1.obscpio
(Stored with Git LFS)
Normal file
BIN
pipx-1.7.1.obscpio
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
pipx-1.7.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
pipx-1.7.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
name: pipx
|
name: pipx
|
||||||
version: 1.7.0
|
version: 1.7.1
|
||||||
mtime: 1724337711
|
mtime: 1724431976
|
||||||
commit: 551e9ce8f88135a9e45a4bb2f85dd8156b370a60
|
commit: 4462299fa391b7349074facc39c73767853c9d02
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 09 06:44:16 UTC 2024 - daniel.garcia@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.7.1:
|
||||||
|
* 1.7.1: Use minimum supported Python to build zipapp (#1515)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 23 14:53:33 UTC 2024 - Eyad Issa <eyadlorenzo@gmail.com>
|
Fri Aug 23 14:53:33 UTC 2024 - Eyad Issa <eyadlorenzo@gmail.com>
|
||||||
|
|
||||||
|
@ -18,23 +18,25 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pipx
|
Name: python-pipx
|
||||||
Version: 1.7.0
|
Version: 1.7.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Install and Run Python Applications in Isolated Environments
|
Summary: Install and Run Python Applications in Isolated Environments
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/pypa/pipx
|
URL: https://github.com/pypa/pipx
|
||||||
Source: pipx-%{version}.tar
|
Source: pipx-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module hatch-vcs >= 0.4}
|
BuildRequires: %{python_module hatch-vcs >= 0.4}
|
||||||
BuildRequires: %{python_module hatchling >= 1.18}
|
BuildRequires: %{python_module hatchling >= 1.18}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
Requires(post): update-alternatives
|
||||||
|
Requires(postun): update-alternatives
|
||||||
Requires: python >= 3.8
|
Requires: python >= 3.8
|
||||||
Requires: python-argcomplete >= 1.9.4
|
Requires: python-argcomplete >= 1.9.4
|
||||||
Requires: python-packaging >= 20
|
Requires: python-packaging >= 20
|
||||||
Requires: python-platformdirs >= 2.1
|
Requires: python-platformdirs >= 2.1
|
||||||
Requires: python-tomli
|
|
||||||
Requires: python-userpath >= 1.6
|
Requires: python-userpath >= 1.6
|
||||||
|
Requires: (python-tomli >= 4.4.0 if python-base < 3.11)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module argcomplete >= 1.9.4}
|
BuildRequires: %{python_module argcomplete >= 1.9.4}
|
||||||
@ -65,6 +67,13 @@ export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
|
|||||||
%postun
|
%postun
|
||||||
%python_uninstall_alternative pipx
|
%python_uninstall_alternative pipx
|
||||||
|
|
||||||
|
%check
|
||||||
|
# Tests require network or .pipx_tests with downloaded .whl, so not
|
||||||
|
# running pytest
|
||||||
|
%{python_expand #
|
||||||
|
PYTHONPATH=%{buildroot}%{$python_sitelib} %{buildroot}%{_bindir}/pipx-%{$python_version} --version
|
||||||
|
}
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc docs/CHANGELOG.md docs/README.md
|
%doc docs/CHANGELOG.md docs/README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user