Compare commits
10 Commits
0827c10c88
...
cf6b99c314
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf6b99c314 | ||
|
|
9202ca4e6a | ||
|
|
73c3805f3c | ||
|
|
0f93b37a67 | ||
|
|
d2c9c251dc | ||
|
|
d7af977375 | ||
|
|
7ddc761bd4 | ||
|
|
4538073b7d | ||
|
|
9560c8a379 | ||
|
|
62aaadcbd5 |
36
README.en.md
36
README.en.md
@ -1,36 +0,0 @@
|
||||
# openstack-releases
|
||||
|
||||
#### Description
|
||||
Repo config for OpenStack releases
|
||||
|
||||
#### Software Architecture
|
||||
Software architecture description
|
||||
|
||||
#### Installation
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### Instructions
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### Contribution
|
||||
|
||||
1. Fork the repository
|
||||
2. Create Feat_xxx branch
|
||||
3. Commit your code
|
||||
4. Create Pull Request
|
||||
|
||||
|
||||
#### Gitee Feature
|
||||
|
||||
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
|
||||
2. Gitee blog [blog.gitee.com](https://blog.gitee.com)
|
||||
3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore)
|
||||
4. The most valuable open source project [GVP](https://gitee.com/gvp)
|
||||
5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help)
|
||||
6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
||||
36
README.md
36
README.md
@ -1,37 +1,7 @@
|
||||
# openstack-releases
|
||||
|
||||
#### 介绍
|
||||
## 介绍
|
||||
|
||||
Repo config for OpenStack releases
|
||||
|
||||
#### 软件架构
|
||||
软件架构说明
|
||||
|
||||
|
||||
#### 安装教程
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### 使用说明
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### 参与贡献
|
||||
|
||||
1. Fork 本仓库
|
||||
2. 新建 Feat_xxx 分支
|
||||
3. 提交代码
|
||||
4. 新建 Pull Request
|
||||
|
||||
|
||||
#### 特技
|
||||
|
||||
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
|
||||
2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com)
|
||||
3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目
|
||||
4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目
|
||||
5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
|
||||
6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
||||
This repo contains the rpm spec for openstack release package.
|
||||
|
||||
79
openstack-release.spec
Normal file
79
openstack-release.spec
Normal file
@ -0,0 +1,79 @@
|
||||
%global _empty_manifest_terminate_build 0
|
||||
Name: openstack-release
|
||||
Version: 1.0.6
|
||||
Release: 7
|
||||
Summary: Yum repo for OpenStack releases
|
||||
License: Apache-2.0
|
||||
URL: https://gitee.com/openeuler/openstack-releases
|
||||
Source0: openstack-releases-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Yum repo for OpenStack releases
|
||||
|
||||
|
||||
%package -n openstack-release-wallaby
|
||||
Summary: Yum repo for OpenStack release wallaby
|
||||
Conflicts: openstack-release-antelope
|
||||
%description -n openstack-release-wallaby
|
||||
Yum repo for OpenStack release wallaby
|
||||
|
||||
%package -n openstack-release-antelope
|
||||
Summary: Yum repo for OpenStack release antelope
|
||||
Conflicts: openstack-release-wallaby
|
||||
%description -n openstack-release-antelope
|
||||
Yum repo for OpenStack release antelope
|
||||
|
||||
%prep
|
||||
%autosetup -n openstack-releases-%{version}
|
||||
|
||||
%build
|
||||
rm -f README.md
|
||||
cp openstack-template.repo openstack-wallaby.repo
|
||||
mv openstack-template.repo openstack-antelope.repo
|
||||
|
||||
sed -i "s/\$openEuler_release/openEuler-24.03-LTS-SP1/" openstack-wallaby.repo
|
||||
sed -i "s/\$OpenStack_release/Wallaby/" openstack-wallaby.repo
|
||||
sed -i "s/\$openEuler_release/openEuler-24.03-LTS-SP1/" openstack-antelope.repo
|
||||
sed -i "s/\$OpenStack_release/Antelope/" openstack-antelope.repo
|
||||
|
||||
%install
|
||||
install -D -m644 openstack-wallaby.repo %{buildroot}%{_sysconfdir}/yum.repos.d/openstack-wallaby.repo
|
||||
install -D -m644 openstack-antelope.repo %{buildroot}%{_sysconfdir}/yum.repos.d/openstack-antelope.repo
|
||||
|
||||
%files -n openstack-release-wallaby
|
||||
%{_sysconfdir}/yum.repos.d/openstack-wallaby.repo
|
||||
|
||||
%files -n openstack-release-antelope
|
||||
%{_sysconfdir}/yum.repos.d/openstack-antelope.repo
|
||||
|
||||
%changelog
|
||||
* Mon Jan 06 2025 tzing_t <zhengting13@huawei.com> - 1.0.6-7
|
||||
- Fix error sp num
|
||||
|
||||
* Tue Nov 26 2024 tzing_t <zhengting13@huawei.com> - 1.0.6-6
|
||||
- Upgrade to 24.03 LTS SP1
|
||||
|
||||
* Sat Mar 30 2024 zhegnting <zhengting13@huawei.com> - 1.0.6-5
|
||||
- Upgrade to 24.03 LTS
|
||||
|
||||
* Tue Dec 19 2023 zhengting <zhengting13@huawei.com> - 1.0.6-4
|
||||
- Upgrade to 22.03 LTS SP3
|
||||
|
||||
* Tue Oct 25 2022 wangxiyuan <wangxiyuan1007@gmail.com> - 1.0.6-3
|
||||
- Upgrade to 22.03 LTS SP2
|
||||
|
||||
* Tue Oct 25 2022 wangxiyuan <wangxiyuan1007@gmail.com> - 1.0.6-2
|
||||
- Upgrade to 22.03 LTS SP1
|
||||
|
||||
* Mon Apr 11 2022 wangxiyuan <wangxiyuan1007@gmail.com> - 1.0.6-1
|
||||
- Upgrade to 1.0.6 to correct gpgkey url.
|
||||
|
||||
* Wed Apr 06 2022 wangxiyuan <wangxiyuan1007@gmail.com> - 1.0.5-1
|
||||
- Upgrade to 1.0.5 to add update yum repo
|
||||
|
||||
* Thu Mar 24 2022 wangxiyuan <wangxiyuan1007@gmail.com> - 1.0.4-1
|
||||
- Upgrade to 1.0.4
|
||||
|
||||
* Mon Feb 07 2022 wangxiyuan <wangxiyuan1007@gmail.com>
|
||||
- Package Spec generated
|
||||
BIN
openstack-releases-1.0.6.tar.gz
Normal file
BIN
openstack-releases-1.0.6.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user