Accepting request 602514 from home:Pharaoh_Atem:SUSE_distrib-gpg-keys

This package is part of adding support for targeting openSUSE in Fedora Copr. It is required to exist in the target distributions for supporting "bootstrap chroot" builds in Copr, as the GPG key provided by this package is used to validate the repository metadata safely.

OBS-URL: https://build.opensuse.org/request/show/602514
OBS-URL: https://build.opensuse.org/package/show/Base:System/distribution-gpg-keys?expand=0&rev=1
This commit is contained in:
Marcus Meissner 2018-04-30 11:53:04 +00:00 committed by Git OBS Bridge
commit 392761d004
5 changed files with 88 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa7a1eabad257613b2217941144057d440842fcecf81a511b36392ae22ef82c9
size 7668127

View File

@ -0,0 +1,5 @@
-------------------------------------------------------------------
Mon Apr 30 11:23:04 UTC 2018 - Neal Gompa <ngompa13@gmail.com>
- Version 1.21
- Initial package based on Mageia packaging

View File

@ -0,0 +1,56 @@
#
# spec file for package distribution-gpg-keys
#
# Copyright (c) 2018 Neal Gompa <ngompa13@gmail.com>.
#
# 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/
#
# Release versions are part of the git tag
%global origrel 1
Name: distribution-gpg-keys
Version: 1.21
Release: 0
Summary: GPG keys of various Linux distributions
Group: System/Packages
License: CC0-1.0
URL: https://github.com/xsuchy/distribution-gpg-keys
Source0: %{url}/archive/%{name}-%{version}-%{origrel}.tar.gz
BuildArch: noarch
%description
GPG keys used by various Linux distributions to sign packages.
%prep
%setup -q -n %{name}-%{name}-%{version}-%{origrel}
%build
#nothing to do here
%install
mkdir -p %{buildroot}%{_datadir}/%{name}/
cp -a keys/* %{buildroot}%{_datadir}/%{name}/
# We don't want to package COPR GPG keys
rm -rf %{buildroot}%{_datadir}/%{name}/copr
%files
%license LICENSE
%doc README.md SOURCES.md
%{_datadir}/%{name}/
%changelog