From 9e7432606f0e28bbc6c8c25556137bf2f3c26081057d7bd18dc226dbd861e4a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Wed, 2 Jan 2019 14:10:06 +0000 Subject: [PATCH] osc copypac from project:M17N:l10n.opensuse.org package:python-celery-batches revision:1 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery-batches?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++ celery-batches-0.2.tar.gz | 3 ++ python-celery-batches.changes | 4 ++ python-celery-batches.spec | 71 +++++++++++++++++++++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 .gitattributes create mode 100644 celery-batches-0.2.tar.gz create mode 100644 python-celery-batches.changes create mode 100644 python-celery-batches.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/celery-batches-0.2.tar.gz b/celery-batches-0.2.tar.gz new file mode 100644 index 0000000..cb83718 --- /dev/null +++ b/celery-batches-0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db26b18f3322d950f7ba325a92f9d6efba68e3b1d49d3f5cb903e20ff84f5fd5 +size 10718 diff --git a/python-celery-batches.changes b/python-celery-batches.changes new file mode 100644 index 0000000..d7f98e9 --- /dev/null +++ b/python-celery-batches.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Nov 30 12:02:33 UTC 2018 - Matthias Fehring + +- Initial package version 0.2 diff --git a/python-celery-batches.spec b/python-celery-batches.spec new file mode 100644 index 0000000..0bb220f --- /dev/null +++ b/python-celery-batches.spec @@ -0,0 +1,71 @@ +# +# spec file for package python-celery-batches +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 Matthias Fehring +# +# 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%define _pkgname celery-batches +Name: python-%{_pkgname} +Version: 0.2 +Release: 0 +Summary: Process Multiple Celery Task Requests Together +License: BSD-3-Clause +Group: Development/Languages/Python +Url: https://github.com/percipient/celery-batches +Source: https://github.com/percipient/%{_pkgname}/archive/v%{version}.tar.gz#/%{_pkgname}-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: fdupes +BuildRequires: %{python_module celery >= 4.0} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module coverage} +BuildRequires: %{python_module pytz} +Requires: python-celery >= 4.0 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +%python_subpackages + +%description +The best way to have Django DRY forms. Build programmatic reusable layouts out +of components, having full control of the rendered HTML without writing HTML in +templates. All this without breaking the standard way of doing things in +Django, so it plays nice with any other form application. + +%prep +%setup -q -n %{_pkgname}-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%python_exec setup.py test + +%files %{python_files} +%defattr(-,root,root,-) +%doc README.rst CHANGELOG.rst +%if 0%{?suse_version} < 1500 +%doc LICENSE +%else +%license LICENSE +%endif +%{python_sitelib}/* + +%changelog