forked from pool/python-multipledispatch
Accepting request 694223 from home:pgajdos
- version update to 0.6.0 * no upstream changelog - turn testsuite on - deleted sources - LICENSE.txt (not needed) OBS-URL: https://build.opensuse.org/request/show/694223 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-multipledispatch?expand=0&rev=8
This commit is contained in:
parent
1cbb97f676
commit
d694abe597
3
0.6.0.tar.gz
Normal file
3
0.6.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:649f6e61b8a6ce581c75f32365c926b55495c01b8177135408b83aa03886cde0
|
||||||
|
size 23692
|
28
LICENSE.txt
28
LICENSE.txt
@ -1,28 +0,0 @@
|
|||||||
Copyright (c) 2014 Matthew Rocklin
|
|
||||||
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
a. Redistributions of source code must retain the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer.
|
|
||||||
b. Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
c. Neither the name of multipledispatch nor the names of its contributors
|
|
||||||
may be used to endorse or promote products derived from this software
|
|
||||||
without specific prior written permission.
|
|
||||||
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
||||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
|
|
||||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
||||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
||||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
||||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
|
||||||
DAMAGE.
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9e92d63efad2c9b68562175d9148d8cb32d04bf5557991190e643749bf4ed954
|
|
||||||
size 8946
|
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 12 14:24:40 UTC 2019 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- version update to 0.6.0
|
||||||
|
* no upstream changelog
|
||||||
|
- turn testsuite on
|
||||||
|
- deleted sources
|
||||||
|
- LICENSE.txt (not needed)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 4 12:50:35 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
Tue Dec 4 12:50:35 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-multipledispatch
|
# spec file for package python-multipledispatch
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -18,14 +18,15 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-multipledispatch
|
Name: python-multipledispatch
|
||||||
Version: 0.5.0
|
Version: 0.6.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Multiple dispatch in Python
|
Summary: Multiple dispatch in Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: http://github.com/mrocklin/multipledispatch/
|
Url: http://github.com/mrocklin/multipledispatch/
|
||||||
Source: https://files.pythonhosted.org/packages/source/m/multipledispatch/multipledispatch-%{version}.tar.gz
|
Source: https://github.com/mrocklin/multipledispatch/archive/0.6.0.tar.gz
|
||||||
Source10: https://raw.githubusercontent.com/mrocklin/multipledispatch/%{version}/LICENSE.txt
|
BuildRequires: %{python_module pytest-benchmark}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -42,7 +43,7 @@ support.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n multipledispatch-%{version}
|
%setup -q -n multipledispatch-%{version}
|
||||||
cp %{SOURCE10} .
|
rm multipledispatch/tests/test_dispatcher_3only.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
@ -51,6 +52,9 @@ cp %{SOURCE10} .
|
|||||||
%python_install
|
%python_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
|
%check
|
||||||
|
%pytest
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
|
Loading…
x
Reference in New Issue
Block a user