commit c12b8f0ec603718a10ce37a1f18ef100526928ead54f92a8151b540da1ef54e1 Author: Todd R Date: Wed May 30 20:04:03 2018 +0000 Accepting request 613120 from devel:languages:python:misc Required by python-csvkit. See request 612101 https://build.opensuse.org/request/show/612101 OBS-URL: https://build.opensuse.org/request/show/613120 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aenum?expand=0&rev=1 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/aenum-2.1.2.tar.gz b/aenum-2.1.2.tar.gz new file mode 100644 index 0000000..6828688 --- /dev/null +++ b/aenum-2.1.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3208e4b28db3a7b232ff69b934aef2ea1bf27286d9978e1e597d46f490e4687 +size 98823 diff --git a/python-aenum.changes b/python-aenum.changes new file mode 100644 index 0000000..87cba1c --- /dev/null +++ b/python-aenum.changes @@ -0,0 +1,12 @@ +------------------------------------------------------------------- +Wed May 23 19:09:16 UTC 2018 - toddrme2178@gmail.com + +- Update to version 2.1.0 + * support Flags being combined with other data types: + * add _create_pseudo_member_values_ + * add default __new__ and temporary _init_ + +------------------------------------------------------------------- +Thu Nov 16 17:44:07 UTC 2017 - toddrme2178@gmail.com + +- Initial version diff --git a/python-aenum.spec b/python-aenum.spec new file mode 100644 index 0000000..c17491a --- /dev/null +++ b/python-aenum.spec @@ -0,0 +1,82 @@ +# +# spec file for package python-aenum +# +# 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-aenum +Version: 2.1.2 +Release: 0 +License: BSD-3-Clause +Summary: Advanced Enumerations, NamedTuples, and NamedConstants +Url: https://bitbucket.org/stoneleaf/aenum +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/a/aenum/aenum-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildArch: noarch + +%python_subpackages + +%description +Advanced Enumerations (compatible with Python's stdlib Enum), +NamedTuples, and NamedConstants + +AEnum includes a Python stdlib Enum-compatible data type, as well as +a metaclass-based NamedTuple implementation and a NamedConstant +class. + +An Enum is a set of symbolic names (members) bound to unique, +constant values. Within an enumeration, the members can be compared +by identity, and the enumeration itself can be iterated over. If +using Python 3 there is built-in support for unique values, multiple +values, auto-numbering, and suspension of aliasing (members with the +same value are not identical), plus the ability to have values +automatically bound to attributes. + +A NamedTuple is a class-based, fixed-length tuple with a name for +each possible position accessible using attribute-access notation as +well as the standard index notation. + +A NamedConstant is a class whose members cannot be rebound; it lacks +all other Enum capabilities, however; consequently, it can have +duplicate values. + + +%prep +%setup -q -n aenum-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +export PYTHONDONTWRITEBYTECODE=1 +export LANG=en_US.UTF-8 +%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib} +$python -B aenum/test.py +} + +%files %{python_files} +%doc README aenum/CHANGES aenum/doc/* +%license aenum/LICENSE +%{python_sitelib}/* + +%changelog