forked from pool/python-numericalunits
3a0b144e71
- Update to 1.22 * add horsepower_imperial and horsepower_metric * update all values to CODATA as of July 2018. OBS-URL: https://build.opensuse.org/request/show/662731 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numericalunits?expand=0&rev=2
66 lines
2.1 KiB
RPMSpec
66 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package python-numericalunits
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-numericalunits
|
|
Version: 1.22
|
|
Release: 0
|
|
Summary: Python module for defining quantities with units
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Url: http://pypi.python.org/pypi/numericalunits
|
|
Source: https://files.pythonhosted.org/packages/py2.py3/n/numericalunits/numericalunits-%{version}-py2.py3-none-any.whl
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
Units and dimensional analysis compatible with everything
|
|
|
|
This package implements units and dimensional analysis in an unconventional
|
|
way with unique advantages:
|
|
|
|
* Compatible with everything
|
|
* Zero storage overhead
|
|
* Zero calculation overhead
|
|
|
|
%prep
|
|
%setup -T -c -n numericalunits-%{version}
|
|
|
|
%build
|
|
# Not needed
|
|
|
|
%install
|
|
%python_expand pip%{$python_bin_suffix} install --root %{buildroot} %{SOURCE0}
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# todo
|
|
|
|
%files %{python_files}
|
|
%license %{python_sitelib}/numericalunits-%{version}.dist-info/LICENSE.txt
|
|
%{python_sitelib}/numericalunits-%{version}.dist-info/
|
|
%{python_sitelib}/numericalunits.py*
|
|
%pycache_only %{python_sitelib}/__pycache__/numericalunits.*
|
|
|
|
%changelog
|