commit 8785df784fbc7bc4ca3868aa3ba8fba2a400893af575f877cbe9341017a01c48 Author: Dirk Mueller Date: Sun Feb 28 20:26:03 2016 +0000 - Initial package (0.1.3) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pika-pool?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/pika-pool-0.1.3.tar.gz b/pika-pool-0.1.3.tar.gz new file mode 100644 index 0000000..3d380d5 --- /dev/null +++ b/pika-pool-0.1.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3985888cc2788cdbd293a68a8b5702a9c955db6f7b8b551aeac91e7f32da397 +size 4722 diff --git a/python-pika-pool.changes b/python-pika-pool.changes new file mode 100644 index 0000000..6cb5bcc --- /dev/null +++ b/python-pika-pool.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sun Feb 28 20:22:51 UTC 2016 - dmueller@suse.com + +- Initial package (0.1.3) + diff --git a/python-pika-pool.spec b/python-pika-pool.spec new file mode 100644 index 0000000..3b294f1 --- /dev/null +++ b/python-pika-pool.spec @@ -0,0 +1,56 @@ +# +# spec file for package python-pika-pool +# +# 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-pika-pool +Version: 0.1.3 +Release: 0 +Summary: Pools for pikas +License: BSD-2-Clause +Group: Development/Languages/Python +Url: https://github.com/bninja/pika-pool +Source: https://pypi.python.org/packages/source/p/pika-pool/pika-pool-%{version}.tar.gz +BuildRequires: python-devel +BuildRequires: python-pika >= 0.9 +BuildRequires: python-setuptools +Requires: python-pika >= 0.9 +BuildArch: noarch + +%description +========= +Pika connection pooling inspired by: + +- `flask-pika `_ +- `sqlalchemy.pool.Pool `_ + +Typically you'll go with local `shovels `_, `krazee-eyez kombu `_, etc. but this works too. + +%prep +%setup -q -n pika-pool-%{version} + +%build +python setup.py build + +%install +python setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%files +%defattr(-,root,root,-) +%doc README.rst +%{python_sitelib}/pika* + +%changelog