From c5929281bdc22beefe4344c32e9762598265c120459434fd4c9b3e47ea7420f9 Mon Sep 17 00:00:00 2001
From: Denisart Benjamin
Date: Mon, 7 Dec 2015 22:56:16 +0000
Subject: [PATCH] Accepting request 347795 from
home:tbechtold:branches:devel:languages:python
Initial packaging
OBS-URL: https://build.opensuse.org/request/show/347795
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-gear?expand=0&rev=1
---
.gitattributes | 23 ++++++++++++++++++++
.gitignore | 1 +
gear-0.5.8.tar.gz | 3 +++
python-gear.changes | 5 +++++
python-gear.spec | 51 +++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 83 insertions(+)
create mode 100644 .gitattributes
create mode 100644 .gitignore
create mode 100644 gear-0.5.8.tar.gz
create mode 100644 python-gear.changes
create mode 100644 python-gear.spec
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/gear-0.5.8.tar.gz b/gear-0.5.8.tar.gz
new file mode 100644
index 0000000..a611d4a
--- /dev/null
+++ b/gear-0.5.8.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cfa343b291f962f31dea84bb91617003d9be9c6164cd90f0b47181a0cef82051
+size 42410
diff --git a/python-gear.changes b/python-gear.changes
new file mode 100644
index 0000000..b086d39
--- /dev/null
+++ b/python-gear.changes
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Mon Dec 7 14:44:52 UTC 2015 - tbechtold@suse.com
+
+- Initial packaging (version 0.5.8)
+
diff --git a/python-gear.spec b/python-gear.spec
new file mode 100644
index 0000000..3fe2a26
--- /dev/null
+++ b/python-gear.spec
@@ -0,0 +1,51 @@
+#
+# spec file for package python-gear
+#
+# Copyright (c) 2015 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-gear
+Version: 0.5.8
+Release: 0
+License: Apache-2.0
+Summary: Pure Python Async Gear Protocol Library
+Url: http://pypi.python.org/pypi/gear
+Group: Development/Languages/Python
+Source: https://pypi.python.org/packages/source/g/gear/gear-%{version}.tar.gz
+BuildRequires: python-devel
+BuildRequires: python-pbr
+Requires: python-extras
+Requires: python-python-daemon >= 2.0.4
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
+BuildArch: noarch
+
+%description
+A pure-Python asynchronous library to interface with Gearman.
+
+%prep
+%setup -q -n gear-%{version}
+
+%build
+python setup.py build
+
+%install
+python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc README.rst ChangeLog LICENSE AUTHORS
+%{python_sitelib}/*
+%{_bindir}/geard
+
+%changelog