e277e2ef7e
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pickleshare?expand=0&rev=1
70 lines
2.4 KiB
RPMSpec
70 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-pickleshare
|
|
#
|
|
# Copyright (c) 2015 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-pickleshare
|
|
Version: 0.5
|
|
Release: 0
|
|
Summary: Tiny shelve-like database with concurrency support
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/vivainio/pickleshare
|
|
Source: https://pypi.python.org/packages/source/p/pickleshare/pickleshare-%{version}.tar.gz
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-path.py
|
|
BuildRequires: python-setuptools
|
|
Requires: python-path.py
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
%else
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
%description
|
|
PickleShare - a small 'shelve' like datastore with concurrency support
|
|
|
|
Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike shelve,
|
|
many processes can access the database simultaneously. Changing a value in
|
|
database is immediately visible to other processes accessing the same database.
|
|
|
|
Concurrency is possible because the values are stored in separate files. Hence
|
|
the "database" is a directory where *all* files are governed by PickleShare.
|
|
|
|
This module is certainly not ZODB, but can be used for low-load
|
|
(non-mission-critical) situations where tiny code size trumps the
|
|
advanced features of a "real" object database.
|
|
|
|
Installation guide: pip install path pickleshare
|
|
|
|
%prep
|
|
%setup -q -n pickleshare-%{version}
|
|
# Remove shebang
|
|
sed -i '1{\@^#!/usr/bin/env python@d}' pickleshare.py
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|