commit b66855bebb00be87f9c85bf96bb32876cb14ea7e21ad22d9e46b1fffea33e940 Author: Matej Cepl Date: Wed Apr 20 07:30:22 2022 +0000 Accepting request 970980 from home:mcepl:branches:devel:languages:python:flask Required for testing of Werkzeug. OBS-URL: https://build.opensuse.org/request/show/970980 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ephemeral-port-reserve?expand=0&rev=1 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/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc 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..d0ab1c1 --- /dev/null +++ b/python-ephemeral-port-reserve.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +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..0fc3956 --- /dev/null +++ b/python-ephemeral-port-reserve.spec @@ -0,0 +1,72 @@ +# +# spec file for package python-ephemeral-port-reserve +# +# Copyright (c) 2022 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 +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