commit b6fbc855f7052ed79a0ef74c051d0d9114bd3c9e0bb7dcb5da0db6264982f455 Author: Adrian Schröter Date: Fri May 3 20:35:28 2024 +0200 Sync from SUSE:SLFO:Main python-ephemeral-port-reserve revision 1c25d3e8c161e4d156ef2f8e82bf02e2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/ephemeral-port-reserve-1.1.4.tar.gz b/ephemeral-port-reserve-1.1.4.tar.gz new file mode 100644 index 0000000..b943b2c --- /dev/null +++ b/ephemeral-port-reserve-1.1.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:522a3b80e885c62b9561c4150cefda7a67cad954d22d474c6f9362348828e079 +size 4839 diff --git a/python-ephemeral-port-reserve.changes b/python-ephemeral-port-reserve.changes new file mode 100644 index 0000000..d4d63b7 --- /dev/null +++ b/python-ephemeral-port-reserve.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Fri Apr 21 12:24:41 UTC 2023 - Dirk Müller + +- add sle15_python_module_pythons (jsc#PED-68) + +------------------------------------------------------------------- +Tue Apr 19 19:52:50 UTC 2022 - Matej Cepl + +- Initial packaging effort for ephemeral-port-reserve 1.1.4. diff --git a/python-ephemeral-port-reserve.spec b/python-ephemeral-port-reserve.spec new file mode 100644 index 0000000..b53ed65 --- /dev/null +++ b/python-ephemeral-port-reserve.spec @@ -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