commit 760ee97a3c57499e9925b30829aa3c9048aef814a79ee5d40d28724cc5033664 Author: Tomáš Chvátal Date: Mon Sep 9 07:20:51 2019 +0000 Accepting request 728572 from home:carmenbianca New package, dependency of reuse package OBS-URL: https://build.opensuse.org/request/show/728572 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-boolean.py?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/python-boolean.py-3.6.tar.gz b/python-boolean.py-3.6.tar.gz new file mode 100644 index 0000000..4d3d103 --- /dev/null +++ b/python-boolean.py-3.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4990b15caaea9a5843285004dd1cd829a94b6e539358d0a161a369ff206cecd +size 30383 diff --git a/python-boolean.py.changes b/python-boolean.py.changes new file mode 100644 index 0000000..8ba9074 --- /dev/null +++ b/python-boolean.py.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Sep 5 13:15:45 UTC 2019 - Carmen Bianca Bakker + +- New package, version 3.6 diff --git a/python-boolean.py.spec b/python-boolean.py.spec new file mode 100644 index 0000000..f13fb50 --- /dev/null +++ b/python-boolean.py.spec @@ -0,0 +1,65 @@ +# +# spec file for package python-license-expression +# +# Copyright (c) 2019 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-boolean.py +Version: 3.6 +Release: 0 +License: BSD-2-Clause +Summary: Define boolean algebras, and create and parse boolean expressions +URL: https://github.com/bastikr/boolean.py +Group: Development/Languages/Python +Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module Sphinx} +BuildRequires: fdupes +BuildArch: noarch + +%python_subpackages + +%description +"boolean.py" is a small library implementing a boolean algebra. It defines +two base elements, TRUE and FALSE, and a Symbol class that can take on one of +these two values. Calculations are done in terms of AND, OR and NOT - other +compositions like XOR and NAND are not implemented but can be emulated with +AND or and NOT. Expressions are constructed from parsed strings or in Python. + + + +%prep +%setup -q -n boolean.py-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} +sphinx-build docs html +rm -rf html/.{doctrees,buildinfo} + +%check +%python_exec setup.py test + +%files %{python_files} +%license LICENSE.txt +%doc README.md CHANGELOG.rst html/ +%{python_sitelib}/* + +%changelog