Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| a70671c41d | |||
| 9c562490db | |||
| cd75ca07e5 | |||
| 8bf02ea081 | |||
| dd58fcbd6b | |||
| 53edd068a6 | |||
|
|
af8fbace4b | ||
|
|
4182336de4 | ||
| 4fe814b287 |
@@ -1,14 +0,0 @@
|
|||||||
Index: setup.cfg
|
|
||||||
===================================================================
|
|
||||||
--- setup.cfg.orig
|
|
||||||
+++ setup.cfg
|
|
||||||
@@ -21,9 +21,6 @@ show-source = true
|
|
||||||
statistics = true
|
|
||||||
max-line-length = 128
|
|
||||||
|
|
||||||
-[tool:pytest]
|
|
||||||
-addopts = --cov=sshuttle --cov-branch --cov-report=term-missing
|
|
||||||
-
|
|
||||||
[egg_info]
|
|
||||||
tag_build =
|
|
||||||
tag_date = 0
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f5a3ed1e5ab1213c7a6df860af41f1a903ab2cafbfef71f371acdcff21e69ee6
|
|
||||||
size 93639
|
|
||||||
@@ -1,3 +1,45 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 12 11:56:09 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 1.3.2:
|
||||||
|
* improve broken pipe (EPIPE) error handling in socket
|
||||||
|
operations
|
||||||
|
* Updates sudoers config according to executable
|
||||||
|
* switch to a network namespace on Linux
|
||||||
|
* prevent UnicodeDecodeError parsing iptables rule with
|
||||||
|
comments
|
||||||
|
* remove temp build hack
|
||||||
|
* support ':' sign in password
|
||||||
|
* replace nix-env with nix-shell
|
||||||
|
* update installation instructions
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 13 10:14:48 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 1.2.0:
|
||||||
|
* Add support for Python 3.11 and Python 3.11
|
||||||
|
* bad file descriptor error in windows, fix pytest errors
|
||||||
|
* drop Python 3.8 support
|
||||||
|
* ensure poetry works for Python 3.9
|
||||||
|
* fix broken workflow_dispatch CI rule
|
||||||
|
* Remove more references to legacy Python versions
|
||||||
|
* replace requirements.txt files with poetry
|
||||||
|
* update nix flake to fix problems
|
||||||
|
* use Python >= 3.10 for docs
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 23 08:41:18 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 1.1.2:
|
||||||
|
* Removed a little bit of legacy code
|
||||||
|
* logging priority to turn off noise
|
||||||
|
* Add support for SSHUTTLE_ARGS environment variable
|
||||||
|
* tproxy: Apply DNS rules first
|
||||||
|
* Workaround when sudo prints text to standard out
|
||||||
|
* Keep terminal in a sane state when sudo use_pty is used.
|
||||||
|
* Allow flake8 to determine the version of pyflakes
|
||||||
|
- drop fix-pytest.patch: obsolete (added pytest-cov instead)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 13:46:09 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
Mon Feb 26 13:46:09 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package sshuttle
|
# spec file for package sshuttle
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -22,26 +22,27 @@
|
|||||||
%define _fillupdir %{_localstatedir}/adm/fillup-templates
|
%define _fillupdir %{_localstatedir}/adm/fillup-templates
|
||||||
%endif
|
%endif
|
||||||
Name: sshuttle
|
Name: sshuttle
|
||||||
Version: 1.1.1
|
Version: 1.3.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: VPN over an SSH tunnel
|
Summary: VPN over an SSH tunnel
|
||||||
License: LGPL-2.1-only
|
License: LGPL-2.1-only
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/sshuttle/sshuttle
|
URL: https://github.com/sshuttle/sshuttle
|
||||||
Source0: https://files.pythonhosted.org/packages/source/s/sshuttle/sshuttle-%{version}.tar.gz
|
Source0: https://github.com/sshuttle/sshuttle/archive/refs/tags/v%{version}.tar.gz
|
||||||
Source1: %{name}.service
|
Source1: %{name}.service
|
||||||
Source2: sysconfig.%{name}
|
Source2: sysconfig.%{name}
|
||||||
Patch0: fix-pytest.patch
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
BuildRequires: python3-Sphinx
|
||||||
|
BuildRequires: python3-hatch_vcs
|
||||||
BuildRequires: python3-pip
|
BuildRequires: python3-pip
|
||||||
|
BuildRequires: python3-poetry-core
|
||||||
BuildRequires: python3-pytest
|
BuildRequires: python3-pytest
|
||||||
BuildRequires: python3-setuptools_scm
|
BuildRequires: python3-pytest-cov
|
||||||
BuildRequires: python3-wheel
|
BuildRequires: python3-wheel
|
||||||
BuildRequires: sysuser-tools
|
BuildRequires: sysuser-tools
|
||||||
Requires(post): %fillup_prereq
|
Requires(post): %fillup_prereq
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: python3-Sphinx
|
|
||||||
%sysusers_requires
|
%sysusers_requires
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
|||||||
3
v1.3.2.tar.gz
Normal file
3
v1.3.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c524955a0c891d91623339baca5c2ea880cccfe1d47bcc324f62ec4959db0715
|
||||||
|
size 173362
|
||||||
Reference in New Issue
Block a user