14
0
2025-02-05 13:20:35 +00:00
committed by Git OBS Bridge
commit 82b6322053
6 changed files with 195 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
_multibuild Normal file
View File

@@ -0,0 +1,3 @@
<multibuild>
<package>test</package>
</multibuild>

72
python-userpath.changes Normal file
View File

@@ -0,0 +1,72 @@
-------------------------------------------------------------------
Wed Feb 5 12:20:58 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
- Use multibuild for tests
-------------------------------------------------------------------
Sat Mar 16 14:23:15 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.9.2:
* Fix import error on Windows
-------------------------------------------------------------------
Wed Dec 13 10:21:39 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.9.1:
* Temporarily revert the change on non-Windows systems where
only login shells are modified
-------------------------------------------------------------------
Thu Aug 10 07:10:31 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
- add sle15_python_module_pythons (jsc#PED-68, jsc#PED-5573)
- update to 1.9.0
* Ignore the current directory for path detection on Windows
* On non-Windows systems only modify login shells
- v1.8.0
* Broadcast WM_SETTINGCHANGE on Windows
* Drop Python 2.7 & 3.6
-------------------------------------------------------------------
Mon Mar 14 10:06:06 UTC 2022 - PragmaticLinux <info@pragmaticlinux.com>
- update to 1.7.0
* Fix path normalization to be aware of case-insensitive
platforms and symlinks.
* Use locale's encoding when handling output from subprocesses
* Modify bash start-up files based on their existence
* Remove distro dependency
* Fix fallback mechanism for detecting the name of the parent
process
-------------------------------------------------------------------
Thu Jul 23 11:07:58 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- update to 1.4.1
* Prevent adding paths multiple times on macOS/Linux
* Send CLI errors to stderr instead of stdout
-------------------------------------------------------------------
Mon May 18 09:10:45 UTC 2020 - Petr Gajdos <pgajdos@suse.com>
- %python3_only -> %python_alternative
-------------------------------------------------------------------
Wed Oct 23 07:06:02 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Fix license string
-------------------------------------------------------------------
Mon Oct 21 09:06:03 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Update to v1.3.0
-------------------------------------------------------------------
Wed Sep 11 08:18:27 AM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Update spec for userpath v1.2.0
-------------------------------------------------------------------
Thu Aug 2 18:59:39 UTC 2018 - aboe76@gmail.com
- python-addduserpath initial packaging

93
python-userpath.spec Normal file
View File

@@ -0,0 +1,93 @@
#
# spec file for package python-userpath
#
# 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/
#
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
%{?sle15_python_module_pythons}
Name: python-userpath%{psuffix}
Version: 1.9.2
Release: 0
Summary: Tool for adding locations to the user PATH
License: MIT
URL: https://github.com/ofek/userpath
Source: https://files.pythonhosted.org/packages/source/u/userpath/userpath-%{version}.tar.gz
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-click
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%if %{with test}
# SECTION test requirements
BuildRequires: %{python_module click}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module userpath = %{version}}
%endif
# /SECTION
%python_subpackages
%description
Cross-platform tool for adding locations to the user PATH,
with no elevated privileges required.
%prep
%autosetup -p1 -n userpath-%{version}
%build
%if !%{with test}
%pyproject_wheel
%endif
%install
%if !%{with test}
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/userpath
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%check
%if %{with test}
export LC_ALL=C.UTF-8
%pytest
%endif
%if !%{with test}
%post
%python_install_alternative userpath
%postun
%python_uninstall_alternative userpath
%files %{python_files}
%doc README.md
%license LICENSE.txt
%python_alternative %{_bindir}/userpath
%{python_sitelib}/userpath
%{python_sitelib}/userpath-%{version}*-info
%endif
%changelog

BIN
userpath-1.9.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.