forked from pool/python-irc
- update to 20.5.0:
* Refactored commands processing so now every command has a
numeric and a name. Programs reliant on numeric values not
yet defined can do so without breaking once they are defined.
* Unconditionally close the socket, even if shutdown fails.
* Stop excluding scripts. Prevents docs and scripts from being
installed.
* Fix SSL wrapper usage example in Factory docstring.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-irc?expand=0&rev=19
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d2517f5566d6bf3aa85d7f98c7758b61f0d63ee915bfd9f6f567139736644f9
|
||||
size 91215
|
||||
3
irc-20.5.0.tar.gz
Normal file
3
irc-20.5.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ddbfd19f71204ceceba7b7c72724b15b3fa87bab5e81e45a75bef736a1a3c76
|
||||
size 92150
|
||||
@@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 24 19:01:59 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 20.5.0:
|
||||
* Refactored commands processing so now every command has a
|
||||
numeric and a name. Programs reliant on numeric values not
|
||||
yet defined can do so without breaking once they are defined.
|
||||
* Unconditionally close the socket, even if shutdown fails.
|
||||
* Stop excluding scripts. Prevents docs and scripts from being
|
||||
installed.
|
||||
* Fix SSL wrapper usage example in Factory docstring.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 6 19:32:53 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -16,21 +16,21 @@
|
||||
#
|
||||
|
||||
|
||||
%define modname irc
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-irc
|
||||
Version: 20.4.0
|
||||
Version: 20.5.0
|
||||
Release: 0
|
||||
Summary: A set of Python modules for IRC support
|
||||
License: LGPL-2.1-or-later
|
||||
URL: https://github.com/jaraco/irc
|
||||
Source: https://files.pythonhosted.org/packages/source/i/irc/%{modname}-%{version}.tar.gz
|
||||
Source: https://files.pythonhosted.org/packages/source/i/irc/irc-%{version}.tar.gz
|
||||
BuildRequires: %{python_module importlib-metadata}
|
||||
BuildRequires: %{python_module importlib-resources}
|
||||
BuildRequires: %{python_module jaraco.collections}
|
||||
BuildRequires: %{python_module jaraco.functools >= 1.20}
|
||||
BuildRequires: %{python_module jaraco.logging}
|
||||
BuildRequires: %{python_module jaraco.stream}
|
||||
BuildRequires: %{python_module jaraco.text}
|
||||
BuildRequires: %{python_module jaraco.text >= 3.14}
|
||||
BuildRequires: %{python_module more-itertools}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest}
|
||||
@@ -41,11 +41,12 @@ BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-importlib-metadata
|
||||
Requires: python-importlib-resources
|
||||
Requires: python-jaraco.collections
|
||||
Requires: python-jaraco.functools >= 1.20
|
||||
Requires: python-jaraco.logging
|
||||
Requires: python-jaraco.stream
|
||||
Requires: python-jaraco.text
|
||||
Requires: python-jaraco.text >= 3.14
|
||||
Requires: python-more-itertools
|
||||
Requires: python-pytz
|
||||
Requires: python-tempora >= 1.6
|
||||
@@ -62,7 +63,7 @@ a fairly thorough support for the basic IRC protocol, CTCP and DCC
|
||||
connections.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{modname}-%{version}
|
||||
%setup -q -n irc-%{version}
|
||||
sed -i -e '1s!/env python!/python!' scripts/testbot.py
|
||||
rm pytest.ini
|
||||
|
||||
|
||||
Reference in New Issue
Block a user