packaging/artifact-registry-yum-plugin.spec (49 lines of code) (raw):

# Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Name: dnf-plugin-artifact-registry # Don't build debuginfo packages. %define debug_package %{nil} Epoch: 1 Version: %{_version} Release: g1%{?dist} Summary: dnf plugin for Artifact Registry License: ASL 2.0 Url: https://cloud.google.com/artifact-registry Source0: %{name}_%{version}.orig.tar.gz Requires: dnf >= 1.0.0 BuildRequires: python3-devel BuildArch: %{_arch} %description Contains a dnf plugin for authenticated access to Artifact Registry repositories. %prep %autosetup %build pushd cmd/ar-token GOPATH=%{_gopath} CGO_ENABLED=0 %{_go} build -ldflags="-s -w" -mod=readonly popd %install %define __python /usr/bin/python3 install -d %{buildroot}/usr/libexec install -p -m 0755 cmd/ar-token/ar-token %{buildroot}/usr/libexec/ install -d %{buildroot}%{python_sitelib}/dnf-plugins install -p -m 0644 dnf/artifact-registry.py %{buildroot}%{python_sitelib}/dnf-plugins/ install -d %{buildroot}/etc/dnf/plugins install -p -m 0644 artifact-registry.conf %{buildroot}/etc/dnf/plugins/ %files %defattr(-,root,root,-) /usr/libexec/ar-token /%{python_sitelib}/dnf-plugins/artifact-registry.py /%{python_sitelib}/dnf-plugins/__pycache__/artifact-registry*.py* %config /etc/dnf/plugins/artifact-registry.conf %doc LICENSE