commit python-irclib for openSUSE:Factory

2016-08-10 Thread h_root
Hello community,

here is the log from the commit of package python-irclib for openSUSE:Factory 
checked in at 2016-08-10 19:55:32

Comparing /work/SRC/openSUSE:Factory/python-irclib (Old)
 and  /work/SRC/openSUSE:Factory/.python-irclib.new (New)


Package is "python-irclib"

Changes:

--- /work/SRC/openSUSE:Factory/python-irclib/python-irclib.changes  
2013-03-08 09:43:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-irclib.new/python-irclib.changes 
2016-08-10 19:55:34.0 +0200
@@ -1,0 +2,17 @@
+Sun Jul 31 15:01:43 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.6.4 (changes since 0.4.8):
+  * Minimum Python requirement is now Python 2.6.
+  * Add support for periodic commands in irclib (.execute_every).
+  * Fix the global event handler priority bug.
+  * Remove incorrect usage of Connection.execute_delayed.
+Add Connection.execute_every.
+  * Use new-style classes.
+  * Fix incorrect usage of Connection.execute_delayed (again).
+  * Fix failing test where DelayedCommands weren't being sorted
+properly. DelayedCommand a now subclass of the DateTime object,
+where the command's due time is the datetime.
+- Update upstream links.
+- Add python-irclib-no-paver.patch: remove paver requirement.
+
+---
@@ -10 +26,0 @@
-

Old:

  python-irclib-0.4.8.tar.gz

New:

  irc-0.6.4.tar.gz
  python-irclib-no-paver.patch



Other differences:
--
++ python-irclib.spec ++
--- /var/tmp/diff_new_pack.SSyXU7/_old  2016-08-10 19:55:35.0 +0200
+++ /var/tmp/diff_new_pack.SSyXU7/_new  2016-08-10 19:55:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-irclib
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +16,22 @@
 #
 
 
-
 Name:   python-irclib
-Version:0.4.8
-Release:1
-License:LGPL-2.1+
+Version:0.6.4
+Release:0
 Summary:A set of Python modules for IRC support
-Url:http://python-irclib.sourceforge.net
+License:LGPL-2.1+
 Group:  Development/Libraries/Python
-Source: 
http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.gz
-BuildRequires:  python-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} > 1110
+Url:https://github.com/jaraco/irc
+Source: 
https://github.com/jaraco/irc/archive/%{version}.tar.gz#/irc-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE python-irclib-no-paver.patch sor.ale...@meowr.ru -- 
Remove paver requirement.
+Patch0: %{name}-no-paver.patch
+BuildRequires:  python
+%if 0%{?suse_version} >= 1120
 BuildArch:  noarch
+%else
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%py_requires
 %endif
 
 %description
@@ -38,20 +41,22 @@
 connections.
 
 %prep
-%setup -q
-sed -i 's/\r//g' *
+%setup -q -n irc-%{version}
+%patch0 -p1
 
 %build
-python setup.py build
+python2 pavement.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot} 
--record-rpm=INSTALLED_FILES
-
-%clean
-rm -rf %{buildroot}
+python2 pavement.py install \
+  --root=%{buildroot} --prefix=%{_prefix}
 
-%files -f INSTALLED_FILES
+%files
 %defattr(-,root,root)
-%doc COPYING ChangeLog README dccreceive dccsend irccat irccat2 servermap 
testbot.py
+%doc ChangeLog CHANGES COPYING README
+%doc scripts/
+%{python_sitelib}/irclib.py*
+%{python_sitelib}/ircbot.py*
+%{python_sitelib}/python_irclib-*
 
 %changelog

++ python-irclib-no-paver.patch ++
--- a/pavement.py
+++ b/pavement.py
@@ -1,15 +1,14 @@
 import os
 import platform
 
-import paver.easy
-import paver.setuputils
+from distutils.core import setup
 
 def read_long_description():
 with open('README') as f:
 data = f.read()
 return data
 
-paver.setuputils.setup(
+setup(
 name="python-irclib",
 description="IRC (Internet Relay Chat) protocol client library for Python",
 long_description=read_long_description(),
@@ -27,27 +26,4 @@ paver.setuputils.setup(
 "Programming Language :: Python :: 2.6",
 "Programming Language :: Python :: 2.7",
 ],
-setup_requires=[
-'hgtools',
-],
 )
-
-@paver.easy.task
-def upload_project_web():
-"""
-Generate the project web page at sourceforge using the reStructuredText
-README.
-"""
-import docutils.core
-docutils.core.publish_file(source_path='README',
-destination_path='readme.html', writer_name='html')
-cmd = 'pscp' if platform.syste

commit python-irclib for openSUSE:Factory

2013-03-08 Thread h_root
Hello community,

here is the log from the commit of package python-irclib for openSUSE:Factory 
checked in at 2013-03-08 09:43:25

Comparing /work/SRC/openSUSE:Factory/python-irclib (Old)
 and  /work/SRC/openSUSE:Factory/.python-irclib.new (New)


Package is "python-irclib", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-irclib/python-irclib.changes  
2011-09-23 12:42:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-irclib.new/python-irclib.changes 
2013-03-08 09:43:26.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan  3 18:01:44 UTC 2013 - toddrme2...@gmail.com
+
+- Fix building on SLES
+
+---



Other differences:
--
++ python-irclib.spec ++
--- /var/tmp/diff_new_pack.Lm2C73/_old  2013-03-08 09:43:27.0 +0100
+++ /var/tmp/diff_new_pack.Lm2C73/_new  2013-03-08 09:43:27.0 +0100
@@ -27,7 +27,9 @@
 Source: 
http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} > 1110
 BuildArch:  noarch
+%endif
 
 %description
 This library is intended to encapsulate the IRC protocol at a quite

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-irclib for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package python-irclib for openSUSE:Factory 
checked in at 2011-12-06 18:56:10

Comparing /work/SRC/openSUSE:Factory/python-irclib (Old)
 and  /work/SRC/openSUSE:Factory/.python-irclib.new (New)


Package is "python-irclib", Maintainer is ""

Changes:




Other differences:
--
++ python-irclib.spec ++
--- /var/tmp/diff_new_pack.gdi5cF/_old  2011-12-06 19:29:21.0 +0100
+++ /var/tmp/diff_new_pack.gdi5cF/_new  2011-12-06 19:29:21.0 +0100
@@ -20,7 +20,7 @@
 Name:   python-irclib
 Version:0.4.8
 Release:1
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:A set of Python modules for IRC support
 Url:http://python-irclib.sourceforge.net
 Group:  Development/Libraries/Python

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-irclib for openSUSE:Factory

2011-03-31 Thread h_root

Hello community,

here is the log from the commit of package python-irclib for openSUSE:Factory
checked in at Thu Mar 31 11:24:55 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/python-irclib/python-irclib.changes
2010-12-09 21:16:55.0 +0100
@@ -0,0 +1,5 @@
+---
+Thu Dec  9 20:08:19 UTC 2010 - prus...@opensuse.org
+
+- created package (version 0.4.8)
+

calling whatdependson for head-i586


New:

  python-irclib-0.4.8.tar.gz
  python-irclib.changes
  python-irclib.spec



Other differences:
--
++ python-irclib.spec ++
#
# spec file for package python-irclib
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#



Name:   python-irclib
Version:0.4.8
Release:1
License:LGPLv2.1+
Summary:A set of Python modules for IRC support
Url:http://python-irclib.sourceforge.net
Group:  Development/Libraries/Python
Source: 
http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.gz
BuildRequires:  python-devel
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%description
This library is intended to encapsulate the IRC protocol at a quite
low level.  It provides an event-driven IRC client framework.  It has
a fairly thorough support for the basic IRC protocol, CTCP and DCC
connections.

%prep
%setup -q
sed -i 's/\r//g' *

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot} 
--record-rpm=INSTALLED_FILES

%clean
rm -rf %{buildroot}

%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc COPYING ChangeLog README dccreceive dccsend irccat irccat2 servermap 
testbot.py

%changelog





Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org