2011-11-25 17:45:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# This script builds a maintainance LyX distribution according to
|
|
|
|
# the procedure outlined at:
|
|
|
|
# http://wiki.lyx.org/Devel/ReleaseProcedure
|
2022-12-11 16:14:23 +00:00
|
|
|
# It also includes several other tests, to make sure the packages
|
2011-11-25 17:45:26 +00:00
|
|
|
# works as it should.
|
|
|
|
|
2020-06-07 16:39:42 +00:00
|
|
|
#DEBUG=echo;
|
2017-08-21 21:16:07 +00:00
|
|
|
|
2020-06-07 16:39:42 +00:00
|
|
|
#########################################################
|
2011-11-25 17:45:26 +00:00
|
|
|
# A few variables need to be set, here at the top.
|
2020-06-07 16:39:42 +00:00
|
|
|
# The script should not need any other customization.
|
2012-06-25 13:33:27 +00:00
|
|
|
#
|
|
|
|
# Where we will do our work
|
2011-11-25 17:45:26 +00:00
|
|
|
BASE="/cvs/lyx/lyx-release";
|
2012-06-25 13:33:27 +00:00
|
|
|
# Where our git repository lives
|
2023-01-13 00:22:08 +00:00
|
|
|
SRCDIR="/cvs/lyx/lyx-devel";
|
2011-11-25 17:45:26 +00:00
|
|
|
# editor
|
|
|
|
if [ -z "$EDITOR" ]; then EDITOR=vi; fi
|
2020-06-07 16:39:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
#########################################################
|
|
|
|
# Option variables
|
|
|
|
|
2012-06-25 13:33:27 +00:00
|
|
|
# Options to make, when we compile
|
2022-12-11 16:14:23 +00:00
|
|
|
MAKEOPTS="-j12";
|
2020-06-07 16:39:42 +00:00
|
|
|
# Compile?
|
|
|
|
COMPILE="YES";
|
|
|
|
# Make patch file?
|
|
|
|
PATCH="YES";
|
|
|
|
|
|
|
|
function usage() {
|
|
|
|
echo "lyx-build [-C] [-m MAKEARGS[ [-P]";
|
|
|
|
echo " -C: Do not test compilation";
|
|
|
|
echo " -m MAKEARGS: Arguments for make";
|
|
|
|
echo " -P: Do not build patch files";
|
|
|
|
}
|
|
|
|
|
|
|
|
while getopts ":Cm:Ph" opt; do
|
|
|
|
case $opt in
|
|
|
|
C ) COMPILE="";; # don't test compilation
|
|
|
|
m ) MAKEOPTS="$OPTARG";;
|
|
|
|
P ) PATCH="";; # don't build patch files
|
|
|
|
h ) usage; exit 0;;
|
|
|
|
\? ) echo "Unknown option $opt"; usage; exit 1;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $(($OPTIND - 1));
|
2011-11-25 17:45:26 +00:00
|
|
|
|
2012-06-25 13:33:27 +00:00
|
|
|
# Determine LyX version
|
2011-11-25 17:45:26 +00:00
|
|
|
cd $SRCDIR/
|
2022-12-11 16:14:23 +00:00
|
|
|
VERSION=$(head configure.ac | grep AC_INIT | perl -e 'while (<>) {m/AC_INIT\(\[LyX\],\[([^,]+)\]/; print $1;}');
|
2011-11-25 17:45:26 +00:00
|
|
|
|
2020-06-07 16:39:42 +00:00
|
|
|
# Development release?
|
|
|
|
DEVEL_RELEASE="";
|
|
|
|
|
|
|
|
# If the version in configure.ac is e.g. "2.3.4dev", then we are building
|
|
|
|
# a development release.
|
|
|
|
PKG_VERSION=${VERSION%dev};
|
|
|
|
if [ "$VERSION" != "$PKG_VERSION" ]; then
|
|
|
|
CURHASH=$(git rev-parse HEAD);
|
|
|
|
# Eight chars should be enough
|
|
|
|
CURHASH=${CURHASH:0:8};
|
2022-12-11 16:14:23 +00:00
|
|
|
# New version is e.g. 2.3.4-12649348
|
2020-06-07 16:39:42 +00:00
|
|
|
PKG_VERSION="$VERSION-$CURHASH";
|
|
|
|
PATCH="";
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "This is version $PKG_VERSION.";
|
2011-11-25 17:45:26 +00:00
|
|
|
echo -n "Ready to build source packages...";
|
|
|
|
read
|
|
|
|
|
2012-06-25 13:33:27 +00:00
|
|
|
echo "Exporting clean tree...";
|
2022-12-11 16:14:23 +00:00
|
|
|
$DEBUG rm -Rf $BASE/lyx-export/
|
|
|
|
$DEBUG git checkout-index -a -f --prefix=$BASE/lyx-export/
|
|
|
|
$DEBUG cd $BASE/lyx-export/
|
2020-06-07 16:39:42 +00:00
|
|
|
$DEBUG ./autogen.sh
|
2022-12-11 16:14:23 +00:00
|
|
|
$DEBUG rm -Rf $BASE/lyx-build/
|
|
|
|
$DEBUG mkdir $BASE/lyx-build/
|
|
|
|
$DEBUG cd $BASE/lyx-build/
|
2011-11-25 17:45:26 +00:00
|
|
|
|
2012-06-25 13:33:27 +00:00
|
|
|
echo "Building distribution...";
|
2022-12-11 16:14:23 +00:00
|
|
|
$DEBUG $BASE/lyx-export/configure --enable-build-type=rel --enable-qt5
|
2022-12-12 01:02:24 +00:00
|
|
|
if ! $DEBUG make dist; then
|
2011-11-25 17:45:26 +00:00
|
|
|
echo "Couldn't make distribution!";
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Packages created:";
|
2020-06-07 16:39:42 +00:00
|
|
|
|
|
|
|
# This will happen with development releases
|
|
|
|
if [ ! -f "lyx-$PKG_VERSION.tar.gz" ]; then
|
|
|
|
$DEBUG mv "lyx-$VERSION.tar.gz" "lyx-$PKG_VERSION.tar.gz" || exit 1;
|
|
|
|
$DEBUG mv "lyx-$VERSION.tar.xz" "lyx-$PKG_VERSION.tar.xz" || exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
$DEBUG ln lyx-$PKG_VERSION.tar.{gz,xz} $BASE/ || exit 1;
|
2011-11-25 17:45:26 +00:00
|
|
|
|
|
|
|
echo -n "Ready to build signatures...";
|
|
|
|
read
|
|
|
|
|
2022-12-11 16:14:23 +00:00
|
|
|
$DEBUG gpg -b lyx-$VERSION.tar.gz
|
|
|
|
$DEBUG gpg -b lyx-$VERSION.tar.xz
|
2011-11-25 17:45:26 +00:00
|
|
|
|
|
|
|
echo "Signatures created:"
|
2020-06-07 16:39:42 +00:00
|
|
|
$DEBUG ln lyx-$VERSION.tar.*.sig $BASE;
|
|
|
|
|
|
|
|
if [ -n "$COMPILE" ]; then
|
|
|
|
echo -n "Ready to test compilation...";
|
|
|
|
read
|
|
|
|
|
2022-12-11 16:14:23 +00:00
|
|
|
$DEBUG rm -Rf $BASE/lyx-test/
|
|
|
|
$DEBUG mkdir $BASE/lyx-test/
|
|
|
|
$DEBUG cd $BASE/lyx-test/
|
|
|
|
$DEBUG tar -zxvf $BASE/lyx-build/lyx-$VERSION.tar.gz
|
2020-06-07 16:39:42 +00:00
|
|
|
if ! $DEBUG cd lyx-$PKG_VERSION; then
|
|
|
|
echo "Unable to enter build directory!";
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
$DEBUG ./configure --enable-build-type=rel --enable-qt5
|
|
|
|
|
|
|
|
if $DEBUG make $MAKEOPTS; then
|
|
|
|
echo "Compilation complete.";
|
|
|
|
echo -n "Ready to run LyX...";
|
|
|
|
read;
|
|
|
|
$DEBUG src/lyx -userdir /tmp/lyx-test;
|
|
|
|
else
|
|
|
|
echo "Compilation errors!!";
|
|
|
|
exit 1;
|
|
|
|
fi
|
2011-11-25 17:45:26 +00:00
|
|
|
fi
|
|
|
|
|
2020-06-07 16:39:42 +00:00
|
|
|
if [ -z "$PATCH" ]; then
|
|
|
|
echo "Skipping patch files.";
|
|
|
|
exit 0;
|
2011-11-25 17:45:26 +00:00
|
|
|
fi
|
|
|
|
|
2020-06-07 16:39:42 +00:00
|
|
|
LASTNUM=$(echo $PKG_VERSION | sed -e 's/.*\.//');
|
2017-08-21 21:16:07 +00:00
|
|
|
LAST=$((LASTNUM - 1));
|
2020-06-07 16:39:42 +00:00
|
|
|
FIRST=$(echo $PKG_VERSION | sed -e 's/[0-9]*$//');
|
2011-11-25 17:45:26 +00:00
|
|
|
ORIGINAL=${FIRST}0;
|
|
|
|
LAST=$FIRST$LAST;
|
|
|
|
|
2012-06-25 13:33:27 +00:00
|
|
|
if [ ! -d "$BASE/lyx-patch/" ]; then
|
2020-06-07 16:39:42 +00:00
|
|
|
$DEBUG mkdir "$BASE/lyx-patch/" || exit 1;
|
2012-06-25 13:33:27 +00:00
|
|
|
fi
|
2011-11-25 17:45:26 +00:00
|
|
|
|
2022-12-11 16:14:23 +00:00
|
|
|
if [ ! -d $BASE/lyx-patch/lyx-$LAST ]; then
|
2020-06-07 16:39:42 +00:00
|
|
|
echo "Can't find directory for last version $LAST.";
|
|
|
|
echo "See if you can fix this in $BASE/lyx-patch/.";
|
|
|
|
echo "Try that, if you like, and then we'll continue.";
|
|
|
|
echo "We'll try to download from the LyX site if that does not work.";
|
|
|
|
read;
|
|
|
|
|
|
|
|
if [ -z "$DEBUG" ]; then
|
|
|
|
if [ ! -d $BASE/lyx-patch/lyx-$LAST ]; then
|
|
|
|
echo "Will try to download from LyX site....";
|
2022-12-11 16:14:23 +00:00
|
|
|
pushd $BASE/lyx-patch/;
|
2020-06-07 16:39:42 +00:00
|
|
|
wget ftp://ftp.lyx.org/pub/lyx/stable/${FIRST}x/lyx-$LAST.tar.gz;
|
|
|
|
wget ftp://ftp.lyx.org/pub/lyx/stable/${FIRST}x/lyx-$LAST.tar.gz.sig
|
|
|
|
gpg -q --verify lyx-$LAST.tar.gz.sig
|
|
|
|
if ! [ $? == 0 ]; then
|
|
|
|
echo "Signature wrong!"
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
rm lyx-$LAST.tar.gz.sig
|
|
|
|
tar -zxvf lyx-$LAST.tar.gz;
|
|
|
|
if [ ! -f lyx-$LAST.tar.gz ]; then
|
|
|
|
echo "Still unable to find directory for last version $LAST.";
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
$DEBUG popd;
|
|
|
|
fi
|
2014-01-31 14:37:38 +00:00
|
|
|
fi
|
2011-11-25 17:45:26 +00:00
|
|
|
fi
|
|
|
|
|
2012-06-25 13:33:27 +00:00
|
|
|
echo -n "Ready to make patch against $LAST...";
|
|
|
|
read
|
|
|
|
|
2022-12-11 16:14:23 +00:00
|
|
|
$DEBUG cd $BASE/lyx-patch/;
|
2020-06-07 16:39:42 +00:00
|
|
|
if [ -z "$DEBUG" ]; then
|
2022-12-11 16:14:23 +00:00
|
|
|
tar -zxvf $BASE/lyx-build/lyx-$VERSION.tar.gz >/dev/null;
|
2020-06-07 16:39:42 +00:00
|
|
|
diff -urN -x .svn -x version.cpp lyx-$LAST lyx-$PKG_VERSION > patch;
|
|
|
|
echo -n "Please check the patch...";
|
|
|
|
read;
|
|
|
|
$EDITOR patch;
|
|
|
|
else
|
2022-12-11 16:14:23 +00:00
|
|
|
$DEBUG tar -zxvf $BASE/lyx-build/lyx-$VERSION.tar.gz;
|
2020-06-07 16:39:42 +00:00
|
|
|
$DEBUG diff -urN -x .svn -x version.cpp lyx-$LAST lyx-$PKG_VERSION;
|
|
|
|
fi
|
2011-11-25 17:45:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
NUMFIX="th";
|
|
|
|
if [ "$LASTNUM" = "1" ]; then
|
|
|
|
NUMFIX="st";
|
|
|
|
elif [ "$LASTNUM" = "2" ]; then
|
|
|
|
NUMFIX="nd";
|
|
|
|
fi
|
|
|
|
NUM="$LASTNUM$NUMFIX";
|
2020-06-07 16:39:42 +00:00
|
|
|
if [ -z "$DEBUG" ]; then
|
2022-12-11 16:14:23 +00:00
|
|
|
cat $BASE/lyx-export/development/tools/patch-preamble | \
|
2020-06-07 16:39:42 +00:00
|
|
|
sed -e "s/VERSION/$PKG_VERSION/; s/ORIGINAL/$ORIGINAL/; s/LAST/$LAST/; s/NUM/$NUM/;" >patch-preamble;
|
|
|
|
echo -n "Please verify the patch preamble...";
|
|
|
|
read
|
|
|
|
$EDITOR patch-preamble;
|
|
|
|
PATCH="patch-$VERSION";
|
2022-12-11 16:14:23 +00:00
|
|
|
cat patch-preamble $BASE/lyx-export/ANNOUNCE patch >$PATCH;
|
2020-06-07 16:39:42 +00:00
|
|
|
gzip -c $PATCH > $PATCH.gz
|
|
|
|
if [ -f $PATCH.gz.sig ]; then
|
|
|
|
rm $PATCH.gz.sig;
|
|
|
|
fi
|
|
|
|
gpg -b $PATCH.gz
|
|
|
|
xz -zc $PATCH > $PATCH.xz
|
|
|
|
if [ -f $PATCH.xz.sig ]; then
|
|
|
|
rm $PATCH.xz.sig;
|
|
|
|
fi
|
|
|
|
$DEBUG gpg -b $PATCH.xz
|
2011-11-25 17:45:26 +00:00
|
|
|
|
2020-06-07 16:39:42 +00:00
|
|
|
echo -n "Patch and signatures created...";
|
|
|
|
ln $PATCH.gz $PATCH.gz.sig $PATCH.xz $PATCH.xz.sig $BASE;
|
2012-11-04 02:10:40 +00:00
|
|
|
fi
|