forked from pool/python-boolean.py
66 lines
2.1 KiB
RPMSpec
66 lines
2.1 KiB
RPMSpec
![]() |
#
|
||
|
# 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
|