commit b901fc231cd8483dd8405d5b42577890b4c1ce85cfc24bf3816d67bd84985d49 Author: Dirk Mueller Date: Fri Oct 31 10:22:30 2014 +0000 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/plyvel-0.9.tar.gz b/plyvel-0.9.tar.gz new file mode 100644 index 0000000..fe0bc26 --- /dev/null +++ b/plyvel-0.9.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:587d93681ae44936ae086b4b45486eb302e3853ba5af149aac3be9e9713998e9 +size 121513 diff --git a/python-plyvel.changes b/python-plyvel.changes new file mode 100644 index 0000000..457aa3d --- /dev/null +++ b/python-plyvel.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue Oct 28 16:52:58 UTC 2014 - mpluskal@suse.com + +- Initial package + diff --git a/python-plyvel.spec b/python-plyvel.spec new file mode 100644 index 0000000..4b1df3b --- /dev/null +++ b/python-plyvel.spec @@ -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