66 lines
2.0 KiB
RPMSpec
66 lines
2.0 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 http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
|
Name: python-numericalunits
|
||
|
Version: 1.21
|
||
|
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/3.6/n/numericalunits/numericalunits-%{version}-py2.py3-none-any.whl
|
||
|
Source10: https://raw.githubusercontent.com/sbyrnes321/numericalunits/8a6d263c80db726989eaf7b67a1661456746d6db/LICENSE.txt
|
||
|
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}
|
||
|
cp %{SOURCE10} .
|
||
|
|
||
|
%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 LICENSE.txt
|
||
|
%{python_sitelib}/*
|
||
|
|
||
|
%changelog
|