forked from pool/python-multipledispatch
Accepting request 603529 from devel:languages:python:misc
Needed by python-DataShape, which is needed by python-datashader OBS-URL: https://build.opensuse.org/request/show/603529 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-multipledispatch?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
3
multipledispatch-0.5.0.tar.gz
Normal file
3
multipledispatch-0.5.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e92d63efad2c9b68562175d9148d8cb32d04bf5557991190e643749bf4ed954
|
||||
size 8946
|
33
python-multipledispatch.changes
Normal file
33
python-multipledispatch.changes
Normal file
@@ -0,0 +1,33 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 11 00:20:30 UTC 2018 - arun@gmx.de
|
||||
|
||||
- specfile:
|
||||
* update copyright year
|
||||
|
||||
- update to version 0.5.0:
|
||||
* ENH: optimize import times (#66)
|
||||
* Switch testing to pytest add benchmark test (#70)
|
||||
* support PEP484 function argument annotation (#65)
|
||||
* setup.py improvements (#62)
|
||||
* Convert readthedocs links for their .org -> .io migration for
|
||||
hosted projects (#61)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 11 01:21:27 UTC 2017 - toddrme2178@gmail.com
|
||||
|
||||
- Implement single-spec version
|
||||
- Fix source URL.
|
||||
- Update to 0.4.9
|
||||
* No upstream changelog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 10 08:01:31 UTC 2015 - toddrme2178@gmail.com
|
||||
|
||||
- Update to 0.4.8
|
||||
* No upstream changelog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 4 12:29:30 UTC 2014 - toddrme2178@gmail.com
|
||||
|
||||
- Initial version
|
||||
|
58
python-multipledispatch.spec
Normal file
58
python-multipledispatch.spec
Normal file
@@ -0,0 +1,58 @@
|
||||
#
|
||||
# spec file for package python-multipledispatch
|
||||
#
|
||||
# Copyright (c) 2018 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
|
||||
# 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/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-multipledispatch
|
||||
Version: 0.5.0
|
||||
Release: 0
|
||||
Summary: Multiple dispatch in Python
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
Url: http://github.com/mrocklin/multipledispatch/
|
||||
Source: https://files.pythonhosted.org/packages/source/m/multipledispatch/multipledispatch-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
A relatively sane approach to multiple dispatch in Python.
|
||||
|
||||
This implementation of multiple dispatch is efficient, mostly complete,
|
||||
performs static analysis to avoid conflicts, and provides optional namespace
|
||||
support. It looks good too.
|
||||
|
||||
%prep
|
||||
%setup -q -n multipledispatch-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.rst
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
Reference in New Issue
Block a user