commit af4ec8fb9c1617ee1fdc51940bc768f6242bae7940e94aef01703e48d2fce9ed Author: Dirk Mueller Date: Mon Jun 6 11:19:56 2016 +0000 Accepting request 400011 from home:tbechtold:branches:devel:languages:python Needed for newer python-amqp OBS-URL: https://build.opensuse.org/request/show/400011 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-case?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/case-1.1.4.tar.gz b/case-1.1.4.tar.gz new file mode 100644 index 0000000..2eb01ae --- /dev/null +++ b/case-1.1.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23bae76b1dbe11c319d0ef23d8b8c91a660c092f25169ecead782fd5af558e5 +size 55298 diff --git a/python-case.changes b/python-case.changes new file mode 100644 index 0000000..b4078aa --- /dev/null +++ b/python-case.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Fri Jun 3 17:12:53 UTC 2016 - tbechtold@suse.com + +- Initial packaging (version 1.1.4) + diff --git a/python-case.spec b/python-case.spec new file mode 100644 index 0000000..0d5525b --- /dev/null +++ b/python-case.spec @@ -0,0 +1,59 @@ +# +# spec file for package python-case +# +# Copyright (c) 2016 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-case +Version: 1.1.4 +Release: 0 +License: BSD +Summary: Python unittest Utilities +Url: http://github.com/celery/case +Group: Development/Languages/Python +Source: https://pypi.io/packages/source/c/case/case-%{version}.tar.gz +BuildRequires: python-devel +BuildRequires: python-setuptools +BuildRequires: python-coverage +BuildRequires: python-mock +BuildRequires: python-nose +BuildRequires: python-six +BuildRequires: python-unittest2 +Requires: python-mock +Requires: python-nose +Requires: python-six +Requires: python-unittest2 +BuildArch: noarch + +%description +Python unittest Utilities + +%prep +%setup -q -n case-%{version} + +%build +python setup.py build + +%install +python setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%check +python setup.py test + +%files +%defattr(-,root,root,-) +%doc Changelog LICENSE README.rst +%{python_sitelib}/* + +%changelog