Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
f48a1372f7 !16 Update package os-win of version 4.3.3
From: @huangtianhua
Reviewed-by: @xiyuanwang
Signed-off-by: @xiyuanwang
2021-11-10 07:20:42 +00:00
huangtianhua
4cc4f9b5ed Update package os-win of version 4.3.3 2021-11-10 14:49:34 +08:00
openeuler-ci-bot
f6849483e5 !9 【轻量级 PR】:Drop wrong requires
From: @xiyuanwang
Reviewed-by: @huangtianhua
Signed-off-by: @huangtianhua
2021-08-04 09:06:18 +00:00
哦哈哟
82da7bf3a4 Drop wrong requires 2021-08-03 01:07:38 +00:00
openeuler-ci-bot
6a00907390 !7 Update to version 5.4.0
From: @joec88
Reviewed-by: 
Signed-off-by:
2021-08-02 07:02:31 +00:00
joec88
13ab08d245 Update to version 5.4.0 2021-08-02 13:38:35 +08:00
openeuler-ci-bot
0b5de6746d !3 revise requires of python-os-win
From: @zhangy1317
Reviewed-by: @joec88
Signed-off-by: @joec88
2021-01-27 11:13:01 +08:00
zhangy1317
c1acab8ade revise spec 2021-01-27 10:39:24 +08:00
openeuler-ci-bot
fc3c27f78d !2 python-os-win:Add source packages and spec file
From: @zhangy1317
Reviewed-by: 
Signed-off-by:
2021-01-22 13:11:30 +08:00
zhangy1317
e19e30b857 add spec and tar file 2021-01-22 09:27:27 +08:00
2 changed files with 105 additions and 0 deletions

BIN
os-win-4.3.3.tar.gz Normal file

Binary file not shown.

105
python-os-win.spec Normal file
View File

@ -0,0 +1,105 @@
%global _empty_manifest_terminate_build 0
Name: python-os-win
Version: 4.3.3
Release: 1
Summary: Windows / Hyper-V library for OpenStack projects.
License: Apache-2.0
URL: http://www.cloudbase.it/
Source0: https://files.pythonhosted.org/packages/d6/04/1e0c49f24b6db06f0374873c21da17bcb26f8103bbe6cf7975f8e4d16c2c/os-win-4.3.3.tar.gz
BuildArch: noarch
%description
This library contains Windows/Hyper-V code commonly used in the OpenStack
projects: nova, cinder, networking-hyperv. The library can be used in any
other OpenStack projects where it is needed.
%package -n python3-os-win
Summary: Windows / Hyper-V library for OpenStack projects.
Provides: python-os-win
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
# General requires
BuildRequires: python3-babel
BuildRequires: python3-eventlet
BuildRequires: python3-oslo-concurrency
BuildRequires: python3-oslo-config
BuildRequires: python3-oslo-log
BuildRequires: python3-oslo-utils
BuildRequires: python3-oslo-i18n
# General requires
Requires: python3-pbr
Requires: python3-babel
Requires: python3-eventlet
Requires: python3-oslo-concurrency
Requires: python3-oslo-config
Requires: python3-oslo-log
Requires: python3-oslo-utils
Requires: python3-oslo-i18n
%description -n python3-os-win
This library contains Windows/Hyper-V code commonly used in the OpenStack
projects: nova, cinder, networking-hyperv. The library can be used in any
other OpenStack projects where it is needed.
%package help
Summary: Windows / Hyper-V library for OpenStack projects.
Provides: python3-os-win-doc
%description help
This library contains Windows/Hyper-V code commonly used in the OpenStack
projects: nova, cinder, networking-hyperv. The library can be used in any
other OpenStack projects where it is needed.
%prep
%autosetup -n os-win-%{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 .
%files -n python3-os-win -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Wed Nov 10 2021 OpenStack_SIG <openstack@openeuler.org> - 4.3.3-1
- Upgrade package python3-os-win to version 4.3.3
* Tue Aug 03 2021 wangxiyuan <wangxiyuan1007@gmail.com> - 5.4.0-2
- Drop wrong requires
* Fri Jul 23 2021 OpenStack_SIG <openstack@openeuler.org> - 5.4.0-1
- Update to 5.4.0
* Wed Jan 20 2021 zhangy1317 <zhangy1317@foxmail.com> 2021.1.20
- Update to 2021.1.20