From 0913f9e6810f4e29f06eeb094a6ae4a121c1f7f3 Mon Sep 17 00:00:00 2001 From: Sérgio M. Basto Date: Nov 24 2021 19:58:59 +0000 Subject: Update Virtualbox Guest Additions to 6.1.30 (#2025728) --- diff --git a/.gitignore b/.gitignore index 47f08d5..29d2e94 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ /VirtualBox-6.1.22.tar.bz2 /VirtualBox-6.1.26.tar.bz2 /VirtualBox-6.1.28.tar.bz2 +/VirtualBox-6.1.30.tar.bz2 diff --git a/sources b/sources index 22cdd0f..28bd9d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (VirtualBox-6.1.28.tar.bz2) = d0eb49a82ec6ddb7ce7da362faf86254d324e73522001c44ab0f26a09ead3d9a800ce0d4ad3698853d4f9a4e9803ceb21f3bf50388a1855edcb2a42ce51f3a96 +SHA512 (VirtualBox-6.1.30.tar.bz2) = fab5b8327d9ad4186e584e90d1aca461d95731d0935509301e8adfe28d0737fb3ded5ac1d97e4cd1edc12c79bebb75cc675289762f9e918106f34bf6e8d363d4 diff --git a/update_vbox.sh b/update_vbox.sh index 5a6866d..2069c83 100755 --- a/update_vbox.sh +++ b/update_vbox.sh @@ -1,8 +1,8 @@ -VERSION=6.1.28 -BUG=2015655 +VERSION=6.1.30 +BUG=2025728 REL=1 RAWHIDE=36 -BRANCHES="f35 f34 f33" +BRANCHES="f35 f34" if [ -z "$1" ] then stage=0 @@ -18,19 +18,27 @@ echo STAGE 0 rpmdev-bumpspec -n $VERSION -c "Update Virtualbox Guest Additions to ${VERSION} (#${BUG})" virtualbox-guest-additions.spec spectool -g virtualbox-guest-additions.spec # to not download sources again we do new-sources right now -fedpkg new-sources ./VirtualBox-${VERSION}.tar.bz2 -# fedpkg srpm && copr-cli build sergiomb/vboxfor23 virtualbox-guest-additions-$VERSION-$REL.fc$RAWHIDE.src.rpm -# to test i686 builds -fedpkg scratch-build --srpm +echo Press enter scratch-build or n to skip ; read dummy; + if [[ "$dummy" != "n" ]]; then + # to test i686 builds + rfpkg scratch-build --srpm --nowait + fi +echo Press enter to build on corp -build or n to skip ; read dummy; + if [[ "$dummy" != "n" ]]; then + fedpkg srpm && copr-cli build sergiomb/vboxfor23 virtualbox-guest-additions-$VERSION-$REL.fc$RAWHIDE.src.rpm + fi fi + if test $stage -le 1 then echo STAGE 1 echo Press enter to upload sources; read dummy; +fedpkg new-sources ./VirtualBox-${VERSION}.tar.bz2 fedpkg ci -c && git show echo Press enter to push and build on rawhide; read dummy; fedpkg push && fedpkg build --nowait fi + if test $stage -le 2 then echo STAGE 2 diff --git a/virtualbox-guest-additions.spec b/virtualbox-guest-additions.spec index 2cf939b..b4fd95d 100644 --- a/virtualbox-guest-additions.spec +++ b/virtualbox-guest-additions.spec @@ -1,7 +1,7 @@ %global __provides_exclude_from %{_libdir}/VBoxGuestAdditions Name: virtualbox-guest-additions -Version: 6.1.28 +Version: 6.1.30 Release: 1%{?dist} Summary: VirtualBox Guest Additions License: GPLv2 or (GPLv2 and CDDL) @@ -183,6 +183,9 @@ getent passwd vboxadd >/dev/null || \ %changelog +* Wed Nov 24 2021 Sérgio Basto - 6.1.30-1 +- Update Virtualbox Guest Additions to 6.1.30 (#2025728) + * Fri Oct 22 2021 Sérgio Basto - 6.1.28-1 - Update Virtualbox Guest Additions to 6.1.28 (#2015655)