15
0
forked from pool/python-irc

Accepting request 1137300 from devel:languages:python

- update to 20.3.1:
  * Added support for SASL login.
  * Better handling of escape sequences in message tags.
  * Require Python 3.8 or later.
  * Pinned against jaraco.text 3.10 due to change in interface.
  * In irc.bot, avoid hanging idle when the first
    connection attempt fails.
  * SingleServerIRCBot no longer accepts reconnection_interval as
    a parameter.
  * Added server support for NOTICE commands.

- update to 20.0.0:
  * ``SingleServerIRCBot`` no longer accepts ``reconnection_interval``
    as a parameter.
  * Added server support for NOTICE commands.
  * Require Python 3.7 or later.

- Update to 19.0.1

OBS-URL: https://build.opensuse.org/request/show/1137300
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-irc?expand=0&rev=8
This commit is contained in:
2024-01-07 20:39:50 +00:00
committed by Git OBS Bridge
4 changed files with 38 additions and 13 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99fd5d1fa1d054dee4fbb81e0d5193dc1e8200db751d5da9a97850a62162b9ab
size 118227

3
irc-20.3.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:806b83af894d8b121ed1e14866a90640128588de6cc0495c4ecb2c5ec272280b
size 91115

View File

@@ -1,7 +1,30 @@
-------------------------------------------------------------------
Sat Jan 6 20:42:35 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 20.3.1:
* Added support for SASL login.
* Better handling of escape sequences in message tags.
* Require Python 3.8 or later.
* Pinned against jaraco.text 3.10 due to change in interface.
* In irc.bot, avoid hanging idle when the first
connection attempt fails.
* SingleServerIRCBot no longer accepts reconnection_interval as
a parameter.
* Added server support for NOTICE commands.
-------------------------------------------------------------------
Sat Mar 26 18:33:16 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 20.0.0:
* ``SingleServerIRCBot`` no longer accepts ``reconnection_interval``
as a parameter.
* Added server support for NOTICE commands.
* Require Python 3.7 or later.
-------------------------------------------------------------------
Wed Dec 22 15:02:42 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>
- Update to 19.0.1
- Update to 19.0.1
* #176: Fix issues with version number reporting. Restored
version version number reporting in bot and client.
* ``irc.client`` no longer exposes a ``VERSION`` or
@@ -268,7 +291,7 @@ Mon Apr 29 07:36:11 UTC 2013 - boris@steki.net
- Use argument parsing to solicit optional port
- Use argparse for argument parsing
- Add and document global variable
-------------------------------------------------------------------
Fri Mar 15 09:20:43 UTC 2013 - speilicke@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-irc
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,10 +17,9 @@
%define modname irc
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
%{?sle15_python_module_pythons}
Name: python-irc
Version: 19.0.1
Version: 20.3.1
Release: 0
Summary: A set of Python modules for IRC support
License: LGPL-2.1-or-later
@@ -33,10 +32,12 @@ BuildRequires: %{python_module jaraco.logging}
BuildRequires: %{python_module jaraco.stream}
BuildRequires: %{python_module jaraco.text}
BuildRequires: %{python_module more-itertools}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module tempora >= 1.6}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-importlib-metadata
@@ -66,10 +67,10 @@ sed -i -e '1s!/env python!/python!' scripts/testbot.py
rm pytest.ini
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -79,8 +80,9 @@ export PYTHONDONTWRITEBYTECODE=1
%files %{python_files}
%license LICENSE
%doc CHANGES.rst README.rst
%doc NEWS.rst README.rst
%doc scripts/
%{python_sitelib}/irc*
%{python_sitelib}/irc
%{python_sitelib}/irc-%{version}.dist-info
%changelog