15
0

Accepting request 603548 from devel:languages:python:misc

Addons for the python standard library

OBS-URL: https://build.opensuse.org/request/show/603548
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-boltons?expand=0&rev=1
This commit is contained in:
Todd R
2018-05-03 07:20:01 +00:00
committed by Git OBS Bridge
commit c3ba8e1f39
5 changed files with 114 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@@ -0,0 +1 @@
.osc

3
boltons-18.0.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a11e113cf3f0915a21ee2c8c69c315b02f46546ad61d3640e1037b7603f6e16f
size 138894

26
python-boltons.changes Normal file
View File

@@ -0,0 +1,26 @@
-------------------------------------------------------------------
Thu May 3 07:16:06 UTC 2018 - toddrme2178@gmail.com
- Update to 18.0.0
* Add <thead> and <tbody> structure to tableutils.Table HTML output, which helps with styling and other functionality (e.g., jQuery datatables).
* Add dictutils.subdict() to get a filtered version of a dictionary based on a subset of keys.
* Add beta version of cacheutils.MinIDMap.
-------------------------------------------------------------------
Sat Apr 15 23:00:34 UTC 2017 - toddrme2178@gmail.com
- Update to 17.1.0
* No upstream changelog
- Implement single-spec version
-------------------------------------------------------------------
Mon Mar 21 20:02:23 UTC 2016 - toddrme2178@gmail.com
- Update t0 16.1.1
* No upstream changelog
-------------------------------------------------------------------
Wed May 20 14:10:33 UTC 2015 - toddrme2178@gmail.com
- Initial version

61
python-boltons.spec Normal file
View File

@@ -0,0 +1,61 @@
#
# spec file for package python-boltons
#
# 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-boltons
Version: 18.0.0
Release: 0
Summary: Boltons should be builtins
License: BSD-3-Clause
Group: Development/Languages/Python
Url: https://github.com/mahmoud/boltons
Source: https://files.pythonhosted.org/packages/source/b/boltons/boltons-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%python_subpackages
%description
Functionality that should be in the standard library. Like
builtins, but Boltons.
Otherwise known as, "everyone's util.py," but cleaned up and
tested.
Contains over 160 BSD-licensed utility types and functions that can be
used as a package or independently. `Extensively documented on Read
the Docs: http://boltons.readthedocs.org.
%prep
%setup -q -n boltons-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%defattr(-,root,root,-)
%{python_sitelib}/*
%changelog