forked from pool/python-blinker
- Update to version 1.2:
+ Added Signal.receiver_connected and Signal.receiver_disconnected per-Signal signals. + Deprecated the global 'receiver_connected' signal. + Verified Python 3.2 support (no changes needed!) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blinker?expand=0&rev=3
This commit is contained in:
parent
5315b2fdc9
commit
6bf4dc5b51
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:429a2b7433715b0c9bceb65aa0a93181d57f3548f89b9794697bedeb6b513a8f
|
||||
size 79412
|
3
blinker-1.2.tar.gz
Normal file
3
blinker-1.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7062c05e9f724e2208835e335df5ffdc169004fe372ca91fb6408cd0f8e3aa85
|
||||
size 66221
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 22 13:16:29 UTC 2012 - saschpe@suse.de
|
||||
|
||||
- Update to version 1.2:
|
||||
+ Added Signal.receiver_connected and
|
||||
Signal.receiver_disconnected per-Signal signals.
|
||||
+ Deprecated the global 'receiver_connected' signal.
|
||||
+ Verified Python 3.2 support (no changes needed!)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 23 12:39:41 UTC 2011 - saschpe@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-blinker
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2012 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
|
||||
@ -11,29 +11,28 @@
|
||||
# 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-blinker
|
||||
Version: 1.1
|
||||
Version: 1.2
|
||||
Release: 0
|
||||
Url: http://discorporate.us/projects/Blinker/
|
||||
Summary: Fast, simple object-to-object and broadcast signaling
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
Source: http://pypi.python.org/packages/source/b/blinker/blinker-%{version}.zip
|
||||
Source: http://pypi.python.org/packages/source/b/blinker/blinker-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-nose
|
||||
BuildRequires: unzip
|
||||
%if 0%{?suse_version}
|
||||
%py_requires
|
||||
%if 0%{?suse_version} > 1110
|
||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
||||
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
%else
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
%endif
|
||||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
%description
|
||||
Blinker provides a fast dispatching system that allows any number of
|
||||
|
Loading…
Reference in New Issue
Block a user