15
0
forked from pool/python-plyvel

Accepting request 258836 from home:pluskalm

It would be nice to have this package available here, other thinks that I want to package has it as dependency

OBS-URL: https://build.opensuse.org/request/show/258836
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-plyvel?expand=0&rev=1
This commit is contained in:
2014-10-31 10:22:30 +00:00
committed by Git OBS Bridge
commit b901fc231c
5 changed files with 86 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
plyvel-0.9.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:587d93681ae44936ae086b4b45486eb302e3853ba5af149aac3be9e9713998e9
size 121513

5
python-plyvel.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Tue Oct 28 16:52:58 UTC 2014 - mpluskal@suse.com
- Initial package

54
python-plyvel.spec Normal file
View File

@@ -0,0 +1,54 @@
#
# spec file for package python-plyvel
#
# Copyright (c) 2014 SUSE LINUX Products 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-devel
BuildRequires: python-setuptools
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
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --optimize=2 --root=%{buildroot}
%fdupes %{buildroot}
%files
%defattr(-,root,root,-)
%{python_sitearch}/*
%doc doc/*.rst
%changelog