/
githubmirror
/
elfutils
Обзор
Документация
Войти
/
githubmirror
/
elfutils
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
config/upload-release.sh
62 строки
1 KB
Dmitry V. Levin
config: fix spelling typos in comments and %changelog
12 дек 2020, 20:06
12 дек 2020, 20:06
f306e3d
Код
Авторство
О чём код?
#!/usr/bin/env bash # Must be run in the source directory. # Should have passed make distcheck. # And all final changes should already have been pushed. # Backup copy will be created in $HOME/elfutils-$VERSION # Any error is fatal set -e # We take one arguent, the version (e.g. 0.173) if [ $# -ne 1 ]; then echo "$0 <version> (e.g. 0.169)" exit 1 fi VERSION="$1" echo Make sure the git repo is tagged, signed and pushed echo git tag -s -m \"elfutils $VERSION release\" elfutils-$VERSION echo git push --tags # Create a temporary directory and make sure it is cleaned up. tempdir=$(mktemp -d) || exit trap "rm -rf -- ${tempdir}" EXIT pushd "${tempdir}" # Checkout git clone git://sourceware.org/git/elfutils.git cd elfutils git tag --verify "elfutils-${VERSION}" git checkout -b "$VERSION" "elfutils-${VERSION}" # Create dist autoreconf -v -f -i ./configure --enable-maintainer-mode make -j$(nproc) && make dist # Sign mkdir $VERSION cp elfutils-$VERSION.tar.bz2 $VERSION/ cd $VERSION/ gpg -b elfutils-$VERSION.tar.bz2 cd .. # Backup copy cp -r $VERSION $HOME/elfutils-$VERSION # Upload scp -r $VERSION sourceware.org:/sourceware/ftp/pub/elfutils/ ssh sourceware.org "(cd /sourceware/ftp/pub/elfutils \ && chmod go+rx $VERSION \ && chmod go+r $VERSION/elfutils-$VERSION.tar.bz2* \ && ln -sf $VERSION/elfutils-$VERSION.tar.bz2 elfutils-latest.tar.bz2 \ && ln -sf $VERSION/elfutils-$VERSION.tar.bz2.sig elfutils-latest.tar.bz2.sig \ && ls -lah elfutils-latest*)" # Cleanup popd trap - EXIT exit