From e3953e4706d285d06ba45da61f503795dcb9a28cc806250db01c15898862ecb1 Mon Sep 17 00:00:00 2001 From: Todd R Date: Thu, 3 May 2018 07:01:45 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 +++++++++++++ .gitignore | 1 + multipledispatch-0.5.0.tar.gz | 3 ++ python-multipledispatch.changes | 33 +++++++++++++++++++ python-multipledispatch.spec | 58 +++++++++++++++++++++++++++++++++ 5 files changed, 118 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 multipledispatch-0.5.0.tar.gz create mode 100644 python-multipledispatch.changes create mode 100644 python-multipledispatch.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/multipledispatch-0.5.0.tar.gz b/multipledispatch-0.5.0.tar.gz new file mode 100644 index 0000000..b17cf58 --- /dev/null +++ b/multipledispatch-0.5.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e92d63efad2c9b68562175d9148d8cb32d04bf5557991190e643749bf4ed954 +size 8946 diff --git a/python-multipledispatch.changes b/python-multipledispatch.changes new file mode 100644 index 0000000..35deb46 --- /dev/null +++ b/python-multipledispatch.changes @@ -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 + diff --git a/python-multipledispatch.spec b/python-multipledispatch.spec new file mode 100644 index 0000000..7728026 --- /dev/null +++ b/python-multipledispatch.spec @@ -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