1
0

Accepting request 729674 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/729674
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-boolean.py?expand=0&rev=2
This commit is contained in:
2019-09-11 08:33:33 +00:00
committed by Git OBS Bridge
2 changed files with 13 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Sep 10 07:14:25 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Use noun phrase in summary.
-------------------------------------------------------------------
Thu Sep 5 13:15:45 UTC 2019 - Carmen Bianca Bakker <carmen@carmenbianca.eu>

View File

@@ -1,5 +1,5 @@
#
# spec file for package python-license-expression
# spec file for package python-boolean.py
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
@@ -12,36 +12,35 @@
# 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/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-boolean.py
Version: 3.6
Release: 0
Summary: Module to define boolean algebras and create/parse boolean expressions
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
URL: https://github.com/bastikr/boolean.py
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module Sphinx}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module Sphinx}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
"boolean.py" is a small library implementing a boolean algebra. It defines
"boolean.py" is a 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}