File: update-lib-versions.sh

package info (click to toggle)
golang-github-containers-common 0.64.1%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 5,932 kB
  • sloc: makefile: 132; sh: 111
file content (13 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

set -exo pipefail

SPECFILE=rpm/containers-common.spec

# Fetch versions from go.mod
IMAGE_VERSION=$(awk '/github.com\/containers\/image/ {print $2}' go.mod)
STORAGE_VERSION=$(awk '/github.com\/containers\/storage/ {print $2}' go.mod)

# Update versions in rpm spec
sed -i "s/^%global image_branch main/%global image_branch $IMAGE_VERSION/" $SPECFILE
sed -i "s/^%global storage_branch main/%global storage_branch $STORAGE_VERSION/" $SPECFILE