Accepting request 486995 from home:alarrosa:branches:devel:languages:python
singlespec version of python3-munkres (which can be deleted after this is accepted) OBS-URL: https://build.opensuse.org/request/show/486995 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-munkres?expand=0&rev=1
This commit is contained in:
commit
f0bec14d21
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
|
15
python-munkres.changes
Normal file
15
python-munkres.changes
Normal file
@ -0,0 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 10 08:13:03 UTC 2017 - alarrosa@suse.com
|
||||
|
||||
- Use singlespec macros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 21 13:12:51 UTC 2017 - jengelh@inai.de
|
||||
|
||||
- Wrap description
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 20 06:58:47 UTC 2017 - alarrosa@suse.com
|
||||
|
||||
- Initial release
|
||||
|
60
python-munkres.spec
Normal file
60
python-munkres.spec
Normal file
@ -0,0 +1,60 @@
|
||||
#
|
||||
# spec file for package python-munkres
|
||||
#
|
||||
# Copyright (c) 2017 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-munkres
|
||||
Version: 1.0.9
|
||||
Release: 0
|
||||
Summary: Munkres implementation for Python
|
||||
License: Apache-2.0
|
||||
Group: Development/Languages/Python
|
||||
Url: http://software.clapper.org/munkres/
|
||||
Source: https://github.com/bmc/munkres/archive/release-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
The Munkres module provides an O(n^3) implementation of the Munkres
|
||||
algorithm (also called the Hungarian algorithm or the Kuhn-Munkres
|
||||
algorithm). The algorithm models an assignment problem as an NxM cost
|
||||
matrix, where each element represents the cost of assigning the i'th
|
||||
worker to the j'th job, and it figures out the least-cost solution,
|
||||
choosing a single item from each row and column in the matrix, such
|
||||
that no row and no column are used more than once.
|
||||
|
||||
This particular implementation is based on
|
||||
http://csclab.murraystate.edu/~bob.pilgrim/445/munkres.html.
|
||||
|
||||
%prep
|
||||
%setup -q -n munkres-release-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGELOG.md LICENSE README.md
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
3
release-1.0.9.tar.gz
Normal file
3
release-1.0.9.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1dae30b882f409bab8d913af7bbf41877359b1ece3fa0ea31d6486a454f3493b
|
||||
size 13533
|
Loading…
Reference in New Issue
Block a user