15
0
forked from pool/python-pifpaf
Files
python-pifpaf/python-pifpaf.spec
Dirk Mueller c2ad1d9ae1 Accepting request 456653 from Cloud:OpenStack:Factory
update to version 0.24.1
  * doc: rabbitmq cluster is supported
  * tests: allow to find zookeeper bins
  * Make travis-ci happy again
  * ceph: increase rados object name limit for ext4 fs
  * gnocchi: start statsd daemon
  * gnocchi: Set statd old vars
  * tests: Fix a python3 bug
  * rabbit: put password for all hosts in the url
  * Set storage engine to mmapv1 when wiredtiger is not present
  * correctly decode application stdout
  * Revert "gnocchi: set auth_mode = noauth"
  * Add MongoDB to README
  * tests: Don't run them in //
  * gnocchi: allow to run with an existing storage URL
  * aodh: auth with basic against Gnocchi
  * Revert "mysql: fix timezone"
  * travis: fix mysql install
  * travis: remove tarball from cache
  * ceph: last jewel point release have lowered object max len
  * Clean variables on exit
  * gnocchi: fix statds waiting line for gnocchi <3.0
  * Revert "Partial revert for debug output"
  * mysql: fix timezone
  * gnocchi: set auth_mode = noauth
  * tests: fix env variable parsing
  * rabbit: use process group
  * Set a proper PS1 when invoked via eval
  * Gnocchi >= 3.1 will not ship any config by default
  * rabbitmq: fix waiting line

OBS-URL: https://build.opensuse.org/request/show/456653
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pifpaf?expand=0&rev=4
2017-02-13 12:44:54 +00:00

64 lines
2.0 KiB
RPMSpec

#
# spec file for package python-pifpaf
#
# Copyright (c) 2017 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.24.1
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.io/packages/source/p/pifpaf/pifpaf-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-pbr
Requires: python-cliff
Requires: python-fixtures
Requires: python-os-testr
Requires: python-oslotest
Requires: python-requests
Requires: python-six
Requires: python-stevedore
Requires: python-testrepository
Requires: python-testtools
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