15
0
forked from pool/python-case

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
This commit is contained in:
2016-06-06 11:19:56 +00:00
committed by Git OBS Bridge
commit af4ec8fb9c
5 changed files with 91 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
case-1.1.4.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a23bae76b1dbe11c319d0ef23d8b8c91a660c092f25169ecead782fd5af558e5
size 55298

5
python-case.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Fri Jun 3 17:12:53 UTC 2016 - tbechtold@suse.com
- Initial packaging (version 1.1.4)

59
python-case.spec Normal file
View File

@@ -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