commit 5e606c5c7e1573945f043fadbdfdf22b64034d7d4c7e44fd9c1484c1cb37971b Author: Dirk Mueller Date: Tue May 17 13:04:29 2016 +0000 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 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/_service b/_service new file mode 100644 index 0000000..378480d --- /dev/null +++ b/_service @@ -0,0 +1,13 @@ + + + enable + + + pifpaf + + + enable + + + + diff --git a/pifpaf-0.2.0.tar.gz b/pifpaf-0.2.0.tar.gz new file mode 100644 index 0000000..7595f90 --- /dev/null +++ b/pifpaf-0.2.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf716f622aaf18843043964d31b8507a26619527ab0dea43831150157b93970 +size 21677 diff --git a/python-pifpaf.changes b/python-pifpaf.changes new file mode 100644 index 0000000..4dfa1c5 --- /dev/null +++ b/python-pifpaf.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Fri May 13 12:48:05 UTC 2016 - tbechtold@suse.com + +- Initial packaging (version 0.2.0) + diff --git a/python-pifpaf.spec b/python-pifpaf.spec new file mode 100644 index 0000000..7cd08e1 --- /dev/null +++ b/python-pifpaf.spec @@ -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