From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- .../thrift/lib/perl/build-cpan-dist.sh | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100755 src/jaegertracing/thrift/lib/perl/build-cpan-dist.sh (limited to 'src/jaegertracing/thrift/lib/perl/build-cpan-dist.sh') diff --git a/src/jaegertracing/thrift/lib/perl/build-cpan-dist.sh b/src/jaegertracing/thrift/lib/perl/build-cpan-dist.sh new file mode 100755 index 000000000..c92fd76b5 --- /dev/null +++ b/src/jaegertracing/thrift/lib/perl/build-cpan-dist.sh @@ -0,0 +1,56 @@ +#!/bin/bash +# +# This script is intended to be used after tagging the repository and updating +# the version files for a release. It will create a CPAN archive. Run this +# from inside a docker image like ubuntu-xenial. +# + +set -e + +rm -f MANIFEST +rm -rf Thrift-* + +# setup cpan without a prompt +echo | cpan +cpan install HTTP::Date Log::Log4perl +cpan install CPAN +cpan install CPAN::Meta ExtUtils::MakeMaker JSON::PP +# cpan install Module::Signature + +perl Makefile.PL +rm MYMETA.yml +make manifest +make dist + +# +# We unpack the archive so we can add version metadata for CPAN +# so that it properly indexes Thrift and remove unnecessary files. +# + +echo '-----------------------------------------------------------' +set -x + +DISTFILE=$(ls Thrift*.gz) +NEWFILE=${DISTFILE/t-v/t-} +if [[ "$DISTFILE" != "$NEWFILE" ]]; then + mv $DISTFILE $NEWFILE + DISTFILE="$NEWFILE" +fi +tar xzf $DISTFILE +rm $DISTFILE +DISTDIR=$(ls -d Thrift*) +# cpan doesn't like "Thrift-v0.nn.0 as a directory name +# needs to be Thrift-0.nn.0 +NEWDIR=${DISTDIR/t-v/t-} +if [[ "$DISTDIR" != "$NEWDIR" ]]; then + mv $DISTDIR $NEWDIR + DISTDIR="$NEWDIR" +fi +cd $DISTDIR +cp -p ../Makefile.PL . +cp -pr ../gen-perl . +cp -pr ../gen-perl2 . +perl ../tools/FixupDist.pl +cd .. +tar cvzf --hard-dereference $DISTFILE $DISTDIR +rm -r $DISTDIR -- cgit v1.2.3