Skip to content

Commit

Permalink
F37 GA
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiomb2 committed Nov 19, 2022
1 parent 74dc330 commit 848b6f6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Sat Nov 19 2022 Sérgio Basto <[email protected]> - 37.2-1
- F37 GA

* Sat Sep 24 2022 Sérgio Basto <[email protected]> - 37.1-1
- New names for configurations (%{reponame}-%{version}-%{arch}.cfg)
- Make links to short names of settings names in el
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=37.1
VERSION=37.2
RELEASE=1

.ONESHELL: # Applies to every targets in the file!
Expand Down
16 changes: 15 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@ To have changelog , you may need run make to have mock-rpmfusion-free.spec
MSG="F33 GA"
rpmdev-bumpspec -c "$MSG" mock-rpmfusion-free.spec
Edit CHANGELOG with result of rpmdev-bumpspec
etc_mock=../mock/mock-core-configs/etc/mock
cd $etc_mock/
ln -srf alma+epel-8-aarch64.cfg epel-8-aarch64.cfg
ln -srf alma+epel-8-ppc64le.cfg epel-8-ppc64le.cfg
ln -srf alma+epel-8-x86_64.cfg epel-8-x86_64.cfg
# no epel-next+rpmfusion-8 available
ln -srf centos-stream+epel-9-aarch64.cfg epel-9-aarch64.cfg
ln -srf centos-stream+epel-9-ppc64le.cfg epel-9-ppc64le.cfg
ln -srf centos-stream+epel-9-s390x.cfg epel-9-s390x.cfg
ln -srf centos-stream+epel-9-x86_64.cfg epel-9-x86_64.cfg
ln -srf centos-stream+epel-next-9-aarch64.cfg epel-next-9-aarch64.cfg
ln -srf centos-stream+epel-next-9-ppc64le.cfg epel-next-9-ppc64le.cfg
ln -srf centos-stream+epel-next-9-s390x.cfg epel-next-9-s390x.cfg
ln -srf centos-stream+epel-next-9-x86_64.cfg epel-next-9-x86_64.cfg
To check if all good:
make
git status
Expand All @@ -36,7 +50,7 @@ tag equal to Makefile VERSION

Set bash terminal the actual version that we want to build for example:
VERSION=32.2
upload mock-kwizart-$VERSION.tar.bz2, mock-rpmfusion-free-$VERSION.tar.bz2 and mock-rpmfusion-nonfree-$VERISON.tar.bz2
upload mock-rpmfusion-free-$VERSION.tar.bz2 and mock-rpmfusion-nonfree-$VERISON.tar.bz2

# Build free package:
cd ../../mock-rpmfusion-free/
Expand Down
9 changes: 7 additions & 2 deletions round.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh

ARCHES="i386 x86_64 aarch64 armhfp ppc64le"
FVERSION="34 35 36"
BRANCHED="37"
FVERSION="34 35 36 37"
BRANCHED=""
RAWHIDE="38"
REPOS="rpmfusion_free rpmfusion_nonfree"
etc_mock=../mock/mock-core-configs/etc/mock
Expand All @@ -17,6 +17,11 @@ for arch in $ARCHES ; do

#### script

# RPMFusion f37 don't have armhfp builders
if [ "$arch" = "armhfp" ] && [ "${fver}" -ge "37" ] ; then
continue
fi

flavour=stable
fver_alt=$fver
if [ "$fver" = "$BRANCHED" ] ; then
Expand Down

0 comments on commit 848b6f6

Please sign in to comment.