forked from pool/python-plyvel
- Update dependencies OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-plyvel?expand=0&rev=3
62 lines
1.8 KiB
RPMSpec
62 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package python-plyvel
|
|
#
|
|
# Copyright (c) 2016 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/
|
|
#
|
|
|
|
|
|
Name: python-plyvel
|
|
Version: 0.9
|
|
Release: 0
|
|
Summary: Fast and feature-rich Python interface to LevelDB
|
|
License: BSD-3-Clause
|
|
Group: Productivity/Networking/Other
|
|
Url: https://github.com/wbolster/plyvel
|
|
Source: https://pypi.python.org/packages/source/p/plyvel/plyvel-%{version}.tar.gz
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: leveldb-devel
|
|
BuildRequires: python-Cython
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-pytest
|
|
BuildRequires: python-pytest-cov
|
|
BuildRequires: python-setuptools
|
|
BuildRequires: python-tox
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Plyvel is a fast and feature-rich Python interface to LevelDB.
|
|
|
|
Plyvel has a rich feature set, high performance, and a friendly Pythonic API.
|
|
|
|
%prep
|
|
%setup -q -n plyvel-%{version}
|
|
|
|
%build
|
|
make %{?_smp_mflags} all
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --optimize=2 --root=%{buildroot}
|
|
%fdupes %{buildroot}
|
|
|
|
%check
|
|
make %{?_smp_mflags} test
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc doc/*.rst
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|