diff -Nru libtld-1.6.2.0~bionic/debian/changelog libtld-1.6.2.1~bionic/debian/changelog --- libtld-1.6.2.0~bionic/debian/changelog 2021-05-15 16:07:40.000000000 +0000 +++ libtld-1.6.2.1~bionic/debian/changelog 2021-06-05 00:45:11.000000000 +0000 @@ -1,4 +1,10 @@ -libtld (1.6.2.0~bionic) bionic; urgency=high +libtld (1.6.2.1~bionic) bionic; urgency=high + + * Bumped build version to rebuild on Launchpad. + + -- Alexis Wilke Fri, 04 Jun 2021 17:45:11 -0700 + +libtld (1.6.2.0~xenial) xenial; urgency=high * Changed the Qt 5.14 test with QT_VERSION_CHECK(). * Added a few more updates so it compiles under Ubuntu 21.04. Binary files /tmp/tmpo_c153_2/IR1Xpl5FKv/libtld-1.6.2.0~bionic/debian/.changelog.swp and /tmp/tmpo_c153_2/ZSqA0FLB3m/libtld-1.6.2.1~bionic/debian/.changelog.swp differ diff -Nru libtld-1.6.2.0~bionic/mk libtld-1.6.2.1~bionic/mk --- libtld-1.6.2.0~bionic/mk 2021-05-07 22:44:47.000000000 +0000 +++ libtld-1.6.2.1~bionic/mk 2021-06-04 20:09:10.000000000 +0000 @@ -1,50 +1,13 @@ #!/bin/sh # -# Sample script to run make without having to retype the long path each time -# This will work if you built the environment using our ~/bin/build-snap script +# See the snapcmakemodules project for details about this script +# https://github.com/m2osw/snapcmakemodules -PROJECT=libtld -PROCESSORS="`nproc`" -BUILDDIR="../../../BUILD/contrib/${PROJECT}" +if test -x ../../cmake/scripts/mk +then + ../../cmake/scripts/mk $* +else + echo "error: could not locate the cmake mk script" + exit 1 +fi -# "Brief Version" -- for the documentation -VERSION=`dpkg-parsechangelog --show-field Version | sed -e 's/~.*//' -e 's/\(^[0-9]\+\.[0-9]\+\).*/\1/'` - - -case $1 in -"-l") - make -C ${BUILDDIR} 2>&1 | less -SR - ;; - -"-d") - rm -rf ${BUILDDIR}/doc/${PROJECT}-doc-${VERSION}.tar.gz - make -C ${BUILDDIR} - ;; - -"-i") - make -j${PROCESSORS} -C ${BUILDDIR} install - ;; - -"-t") - ( - if make -j${PROCESSORS} -C ${BUILDDIR} - then - shift - ${BUILDDIR}/tests/unittest --progress $* - fi - ) 2>&1 | less -SR - ;; - -"-r") - make -j${PROCESSORS} -C ${BUILDDIR} - ;; - -"") - make -j${PROCESSORS} -C ${BUILDDIR} - ;; - -*) - echo "error: unknown command line option \"$1\"" - ;; - -esac