commit
c8f32672bf
@ -0,0 +1,12 @@
|
|||||||
|
# CentOS-Storage.repo
|
||||||
|
#
|
||||||
|
# Please see http://wiki.centos.org/SpecialInterestGroup/Storage for more
|
||||||
|
# information
|
||||||
|
|
||||||
|
[centos-storage-common]
|
||||||
|
name=CentOS-$releasever - Storage SIG - common
|
||||||
|
metalink=https://mirrors.centos.org/metalink?repo=centos-storage-sig-all-all-9-stream&arch=$basearch
|
||||||
|
gpgcheck=1
|
||||||
|
enabled=0
|
||||||
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Storage
|
||||||
|
|
@ -0,0 +1,20 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
Version: GnuPG v2.0.22 (GNU/Linux)
|
||||||
|
|
||||||
|
mQENBFTCLWABCADDHh5ktfB+78L6yxcIxwbZgaLKTp0mKvM3i2CjBrbw+xHJ4x9E
|
||||||
|
mn39rkTJf2UHOK0PgAp3FftoAFCtrSAXuanNGpEcpSxXDzxNj2QMpAbySZ2r4RpL
|
||||||
|
qxNVlB73dHuASXIMlhyV1ASpM6Me0dpaTtyKj38kRPFkWWuIUaiEQzXFgztYx7Kp
|
||||||
|
i+we0iUBfSKY47l2rbqyu9qZ8kCeMjuSuLfG5OKw+fj9zwqFJkc+LAz8IPTF4g7p
|
||||||
|
48m0m5bUPvKIIa1BfYcyqaTMxfbqjGaF1M37zF1O0TUKGQ+8VddzQmwg7GglQMt3
|
||||||
|
FqVer1WJUNPXyEgmZMzfmg7lqdPKKYaQBLk1ABEBAAG0XkNlbnRPUyBTdG9yYWdl
|
||||||
|
IFNJRyAoaHR0cDovL3dpa2kuY2VudG9zLm9yZy9TcGVjaWFsSW50ZXJlc3RHcm91
|
||||||
|
cC9TdG9yYWdlKSA8c2VjdXJpdHlAY2VudG9zLm9yZz6JATkEEwEKACMCGwMHCwkI
|
||||||
|
BwMCAQYVCAIJCgsEFgIDAQIeAQIXgAUCYiBuMgAKCRDUouUL5FHlteOXB/wJ6njL
|
||||||
|
WfUnsPUxMJLYOYXQy/UcUdR6K1v4C4CyoZPyqbH43CUHK2WP/iWOvJOGhRKWBTkZ
|
||||||
|
0ednp5EesYHOI2mBRDo9m+DFv+pdy1CoXzaXnQS1scqqR+3loUgswq6CRf9WBD9n
|
||||||
|
MntWgoBvcKwYz7FcGTp938DJ4OS4DwBBf+hSYaaaCeLUrJt923BZSK9w2sd8o5GG
|
||||||
|
8Iyrp3sqkjXRVajmJEXA0p8JuGdfihZHmDIxDP9Kdh190wm2+Qz+PWb6SZwxOhdy
|
||||||
|
Eim8noybFQMiTUcHH4dvaU7Jhx8xSC9MU9s/onu/MTo8TGCLG55SdW1HwlYwGX0A
|
||||||
|
X3vAT9GZEYZ4LHrV
|
||||||
|
=0E5C
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
@ -0,0 +1,71 @@
|
|||||||
|
Summary: Common release file to establish shared metadata for CentOS Storage SIG
|
||||||
|
Name: centos-release-storage-common
|
||||||
|
Epoch: 0
|
||||||
|
Version: 2
|
||||||
|
Release: 5%{?dist}
|
||||||
|
License: GPL
|
||||||
|
Group: System Environment/Base
|
||||||
|
Source0: RPM-GPG-KEY-CentOS-SIG-Storage
|
||||||
|
Source1: CentOS-Storage-common.repo
|
||||||
|
URL: http://wiki.centos.org/SpecialInterestGroup/Storage
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
Provides: centos-release-storage-common
|
||||||
|
%if 0%{?centos} >= 7
|
||||||
|
# $contentdir for altarch support was added with CentOS-7.5
|
||||||
|
Requires: centos-release >= 7-5.1804.el7.centos.2
|
||||||
|
%else
|
||||||
|
Requires: centos-release
|
||||||
|
%endif
|
||||||
|
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
Common files needed by other centos-release components in the Storage SIG
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{name} -T -c
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/etc/pki/rpm-gpg/
|
||||||
|
install -m 644 %SOURCE0 $RPM_BUILD_ROOT/etc/pki/rpm-gpg/
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/etc/yum.repos.d
|
||||||
|
install -m 644 %SOURCE1 $RPM_BUILD_ROOT/etc/yum.repos.d/
|
||||||
|
%if 0%{?centos} < 7
|
||||||
|
sed -i 's/\$contentdir/centos/g' $RPM_BUILD_ROOT/etc/yum.repos.d/$(basename %SOURCE1)
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Storage
|
||||||
|
/etc/yum.repos.d/CentOS-Storage-common.repo
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Aug 16 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 2-5
|
||||||
|
- Rebuilt for MSVSphere 9.4
|
||||||
|
|
||||||
|
* Thu Apr 6 2023 Neil Hanlon <neil@rockylinux.org> - 2-5
|
||||||
|
- Switch to new GPG keys rhbz#2184640
|
||||||
|
|
||||||
|
* Wed Jan 26 2022 Kaleb S. KEITHLEY <kkeithle [at] redhat.com> - 2-4
|
||||||
|
- mirror.c.o -> mirrors.c.o
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Kaleb S. KEITHLEY <kkeithle [at] redhat.com> - 2-3
|
||||||
|
- c9s
|
||||||
|
|
||||||
|
* Tue Jul 31 2018 Niels de Vos <ndevos@redhat.com> - 2-2
|
||||||
|
- Add support for altarch repositories
|
||||||
|
|
||||||
|
* Fri Sep 22 2017 Niels de Vos <ndevos@redhat.com> - 2-1
|
||||||
|
- Add CentOS-Storage-common.repo with shared debuginfo repo
|
||||||
|
|
||||||
|
* Thu Nov 12 2015 Niels de Vos <ndevos@redha.com> - 1-2
|
||||||
|
- rebuild for CentOS Extras
|
||||||
|
|
||||||
|
* Thu Nov 12 2015 Niels de Vos <ndevos@redha.com> - 1-1
|
||||||
|
- Basic setup with the gpg key
|
||||||
|
- Based on the centos-release-virt-common package
|
Loading…
Reference in new issue