Sync from SUSE:SLFO:Main python-ephemeral-port-reserve revision 1c25d3e8c161e4d156ef2f8e82bf02e2

This commit is contained in:
Adrian Schröter 2024-05-03 20:35:28 +02:00
commit b6fbc855f7
4 changed files with 108 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

BIN
ephemeral-port-reserve-1.1.4.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,9 @@
-------------------------------------------------------------------
Fri Apr 21 12:24:41 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Tue Apr 19 19:52:50 UTC 2022 - Matej Cepl <mcepl@suse.com>
- Initial packaging effort for ephemeral-port-reserve 1.1.4.

View File

@ -0,0 +1,73 @@
#
# spec file for package python-ephemeral-port-reserve
#
# 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
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define modname ephemeral-port-reserve
%{?sle15_python_module_pythons}
Name: python-ephemeral-port-reserve
Version: 1.1.4
Release: 0
Summary: Bind to an ephemeral port, force it into the TIME_WAIT state, and unbind it
License: MIT
URL: https://github.com/Yelp/ephemeral-port-reserve/
# GH URL is necessary because of missing tests, gh#Yelp/ephemeral-port-reserve#16
Source: https://github.com/Yelp/%{modname}/archive/refs/tags/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires(post): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
%python_subpackages
%description
Bind to an ephemeral port, force it into the TIME_WAIT state, and unbind it.
%prep
%autosetup -p1 -n %{modname}-%{version}
sed -i -e '1{/env python/d}' ephemeral_port_reserve.py
%build
%pyproject_wheel
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/ephemeral-port-reserve
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%post
%python_install_alternative ephemeral-port-reserve
%postun
%python_uninstall_alternative ephemeral-port-reserve
%files %{python_files}
%python_alternative %{_bindir}/ephemeral-port-reserve
%{python_sitelib}/__pycache__
%{python_sitelib}/ephemeral_port_reserve-%{version}*-info
%{python_sitelib}/ephemeral_port_reserve.py
%changelog