diff --git a/ceilometermiddleware-1.5.0.tar.gz b/ceilometermiddleware-1.5.0.tar.gz new file mode 100644 index 0000000..0f8cc5c Binary files /dev/null and b/ceilometermiddleware-1.5.0.tar.gz differ diff --git a/python-ceilometermiddleware.spec b/python-ceilometermiddleware.spec new file mode 100644 index 0000000..e884196 --- /dev/null +++ b/python-ceilometermiddleware.spec @@ -0,0 +1,107 @@ +%global _empty_manifest_terminate_build 0 +Name: python-ceilometermiddleware +Version: 1.5.0 +Release: 1 +Summary: OpenStack Telemetry middleware for generating metrics +License: Apache-2.0 +URL: http://docs.openstack.org/developer/ceilometermiddleware +Source0: https://files.pythonhosted.org/packages/a3/04/173e371036cf0bd5b74590e851796c3f756ce03c2e21dae4116269413297/ceilometermiddleware-1.5.0.tar.gz +BuildArch: noarch +%description + Middleware for OpenStack Telemetry (Ceilometer) This library provides +middleware modules designed to enable metric and event data generation to be +consumed by Ceilometer.For information on contributing, see +CONTRIBUTING.rst.License: Apache License, Version 2.0 Documentation: Source: +Bugs: any other information, refer to the parent project, Ceilometer: . + +%package -n python3-ceilometermiddleware +Summary: OpenStack Telemetry middleware for generating metrics +Provides: python-ceilometermiddleware +# Base build requires +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pbr +BuildRequires: python3-pip +BuildRequires: python3-wheel +# General requires +BuildRequires: python3-oslo-config +BuildRequires: python3-oslo-messaging +BuildRequires: python3-oslo-utils +BuildRequires: python3-pycadf +BuildRequires: python3-six +BuildRequires: python3-keystoneauth1 +BuildRequires: python3-keystoneclient +# General requires +Requires: python3-oslo-config +Requires: python3-oslo-messaging +Requires: python3-oslo-utils +Requires: python3-pbr +Requires: python3-pycadf +Requires: python3-six +Requires: python3-keystoneauth1 +Requires: python3-keystoneclient +%description -n python3-ceilometermiddleware + Middleware for OpenStack Telemetry (Ceilometer) This library provides +middleware modules designed to enable metric and event data generation to be +consumed by Ceilometer.For information on contributing, see +CONTRIBUTING.rst.License: Apache License, Version 2.0 Documentation: Source: +Bugs: any other information, refer to the parent project, Ceilometer: . + +%package help +Summary: OpenStack Telemetry middleware for generating metrics +Provides: python3-ceilometermiddleware-doc +%description help + Middleware for OpenStack Telemetry (Ceilometer) This library provides +middleware modules designed to enable metric and event data generation to be +consumed by Ceilometer.For information on contributing, see +CONTRIBUTING.rst.License: Apache License, Version 2.0 Documentation: Source: +Bugs: any other information, refer to the parent project, Ceilometer: . + +%prep +%autosetup -n ceilometermiddleware-%{version} + +%build +%py3_build + +%install +%py3_install + +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +#%check +#%{__python3} setup.py test + +%files -n python3-ceilometermiddleware -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Nov 29 2021 OpenStack_SIG - 1.5.0-1 +- Init package python3-ceilometermiddleware of version 1.5.0 +