15
0
forked from pool/python-pifpaf

Accepting request 395164 from Cloud:OpenStack:Master

OBS-URL: https://build.opensuse.org/request/show/395164
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pifpaf?expand=0&rev=1
This commit is contained in:
2016-05-17 13:04:29 +00:00
committed by Git OBS Bridge
commit 5e606c5c7e
6 changed files with 103 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

13
_service Normal file
View File

@@ -0,0 +1,13 @@
<services>
<service mode="disabled" name="download_files">
<param name="changesgenerate">enable</param>
</service>
<service mode="disabled" name="set_version">
<param name="basename">pifpaf</param>
</service>
<service name="refresh_patches" mode="disabled">
<param name="changesgenerate">enable</param>
</service>
<service name="python_requires" mode="disabled">
</service>
</services>

3
pifpaf-0.2.0.tar.gz Normal file
View File

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

5
python-pifpaf.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Fri May 13 12:48:05 UTC 2016 - tbechtold@suse.com
- Initial packaging (version 0.2.0)

58
python-pifpaf.spec Normal file
View File

@@ -0,0 +1,58 @@
#
# spec file for package python-pifpaf
#
# 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-pifpaf
Version: 0.2.0
Release: 0
Summary: Suite of tools and fixtures to manage daemons for testing
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/jd/pifpaf
Source: https://pypi.python.org/packages/46/af/6bfd3ec3515d5e579b839a763c121c5532f7c67ef4ab5be1604150ba3fee/pifpaf-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-pbr
Requires: python-cliff
Requires: python-fixtures
Requires: python-six
Requires: python-stevedore
Requires: python-xattr
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
Pifpaf is a suite of `fixtures`_ and a command-line tool that allows to start
and stop daemons for a quick throw-away usage. This is typically useful when
needing these daemons to run `integration testing`_. It originaly evolved from
its precussor `overtest`_.
%prep
%setup -q -n pifpaf-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog LICENSE README.rst
%{python_sitelib}/*
%{_bindir}/pifpaf
%changelog