suppress change-log output

This commit is contained in:
Trevor Batley 2023-06-01 10:49:18 +10:00
parent bffa7d713e
commit 2cf3ca33bd

View File

@ -257,7 +257,7 @@ sed -i 's/^BuildRequires:.*e-smith/BuildRequires: smeserver/g' "$TARGETPKG.spec"
# - add changelog entry (Bugzilla #12359) # - add changelog entry (Bugzilla #12359)
# Bump the release and add changelog # Bump the release and add changelog
change-log "$TARGETPKG.spec" change-log "$TARGETPKG.spec" >/dev/null 2>&1
# and edit in the reason and add by whom # and edit in the reason and add by whom
sed -i "s/fix \[SME: \]/Rename to $TARGETPKG \[SME: 12359\]/" "$TARGETPKG.spec" sed -i "s/fix \[SME: \]/Rename to $TARGETPKG \[SME: 12359\]/" "$TARGETPKG.spec"
sed -i 's/ME MYSELF <myemail@koozali.org>/rename-e-smith-pkg.sh by Trevor Batley <trevor@batley.id.au>/' "$TARGETPKG.spec" sed -i 's/ME MYSELF <myemail@koozali.org>/rename-e-smith-pkg.sh by Trevor Batley <trevor@batley.id.au>/' "$TARGETPKG.spec"
@ -272,13 +272,13 @@ sed -i "/^Source:/ s/tar.xz/tar.gz/" "$TARGETPKG.spec"
git add "$TARGETPKG.spec" git add "$TARGETPKG.spec"
#Delete archivefilename file if it follows the new standard #Delete archivefilename file if it follows the new standard
if [ -e archivefilename ] ; then git rm archivefilename ; fi if [ -e archivefilename ] ; then git rm archivefilename $QUIET ; fi
#Update createlinks #Update createlinks
# - if there is an e-smith-<pkg>-update event rename to smeserver-<pkg>-update and add symlink # - if there is an e-smith-<pkg>-update event rename to smeserver-<pkg>-update and add symlink
git commit -m "rename-e-smith-pkg script (#12359)" $QUIET git commit -m "rename-e-smith-pkg script (#12359)" $QUIET
git push origin master $QUIET git push $QUIET
#Convert repository to a Regular Repository (rather than fork) #Convert repository to a Regular Repository (rather than fork)