#download and install perl tce-load -wi perl5.tcz #download and install the compile tools tce-load -wi compiletc.tcz tce-load -wi squashfs-tools.tcz #download and install openssl related tce-load -wi ca-certificates.tcz echo "ca_directory = /usr/local/etc/ssl/certs" > ~/.wgetrc # Variables TODAY=`date +%Y/%m/%d` #PACKAGE="XML-NamespaceSupport" DOWNLOAD="XML-NamespaceSupport" PACKAGE="perl_XML-NamespaceSupport" VERSION="1.12" DESCRIPTION="simple generic namespace processor" AUTHORS="Robin Berjon" #HOMEPAGE="http://search.cpan.org/~perigrin/XML-NamespaceSupport-1.12/lib/XML/NamespaceSupport.pm" HOMEPAGE="https://metacpan.org/pod/XML::NamespaceSupport" LICENSE="See Original-site" ME="rhermsen" TAGS="perl xml namespacesupport" DESTDIR=/tmp/dest/${PACKAGE} TMPDIR=/tmp/submit/${PACKAGE} PERLVER=5.28.0 # Workdir sudo rm -r /tmp/${PACKAGE} 2>/dev/null mkdir /tmp/${PACKAGE} cd /tmp/${PACKAGE} # Source wget http://search.cpan.org/CPAN/authors/id/P/PE/PERIGRIN/XML-NamespaceSupport-1.12.tar.gz tar xf /tmp/${PACKAGE}/${DOWNLOAD}-${VERSION}.tar.gz cd /tmp/${PACKAGE}/${DOWNLOAD}-${VERSION} perl Makefile.PL find . -name Makefile -type f -exec sed -i 's/-O2//g' {} \; make sudo rm -r ${DESTDIR} 2>/dev/null mkdir -p ${DESTDIR} make DESTDIR=${DESTDIR} install sudo rm -r ${TMPDIR}* 2>/dev/null #mkdir -p ${TMPDIR}/usr/local/lib/perl5/$PERLVER/i486-linux-thread-multi/ mkdir -p ${TMPDIR}/usr/local/lib/perl5/site_perl/$PERLVER/XML/ #mkdir -p ${TMPDIR}/usr/local/lib/perl5/site_perl/$PERLVER/i486-linux-thread-multi/auto/XML/ #mv ${DESTDIR}/usr/local/lib/perl5/$PERLVER/i486-linux-thread-multi/* ${TMPDIR}/usr/local/lib/perl5/$PERLVER/i486-linux-thread-multi/ mv ${DESTDIR}/usr/local/lib/perl5/site_perl/$PERLVER/XML/* ${TMPDIR}/usr/local/lib/perl5/site_perl/$PERLVER/XML/ #mv ${DESTDIR}/usr/local/lib/perl5/site_perl/$PERLVER/i486-linux-thread-multi/auto/XML/ ${TMPDIR}/usr/local/lib/perl5/site_perl/$PERLVER/i486-linux-thread-multi/auto/XML/ cd /tmp/submit/ cat < ${PACKAGE}.tcz.info Title: ${PACKAGE}.tcz Description: ${DESCRIPTION} Version: ${VERSION} Author: ${AUTHORS} Original-site: ${HOMEPAGE} Copying-policy: ${LICENSE} Size: ${size} Extension_by: ${ME} Tags: ${TAGS} Comments: XML::NamespaceSupport This module offers a simple way to process namespaced XML names (unames) from within any application that may need them. It also helps maintain a prefix to namespace URI map, and provides a number of basic checks. The model for this module is SAX2's NamespaceSupport class, readable at http://www.saxproject.org/namespaces.html It adds a few perlisations where we thought it appropriate, and supports the Namespaces in XML 1.1 specification. Change-log: 2018/01/11 First Version, 1.12 2018/04/07 recompiled on tc-9.x, 1.12 ${TODAY} recompiled on tc-10.x, ${VERSION} Current: ${TODAY} recompiled on tc-10.x, ${VERSION} EOF cat < ${PACKAGE}.tcz.dep perl5.tcz EOF mkdir -p ${TMPDIR}-doc/usr/local/share/man/man3/ mv ${DESTDIR}/usr/local/share/man/man3/* ${TMPDIR}-doc/usr/local/share/man/man3/ cd /tmp/submit/ sudo cat < ${PACKAGE}-doc.tcz.info Title: ${PACKAGE}-doc.tcz Description: ${DESCRIPTION} Version: ${VERSION} Author: ${AUTHORS} Original-site: ${HOMEPAGE} Copying-policy: ${LICENSE} Size: ${size} Extension_by: ${ME} Tags: ${TAGS} Comments: XML::NamespaceSupport This module offers a simple way to process namespaced XML names (unames) from within any application that may need them. It also helps maintain a prefix to namespace URI map, and provides a number of basic checks. The model for this module is SAX2's NamespaceSupport class, readable at http://www.saxproject.org/namespaces.html It adds a few perlisations where we thought it appropriate, and supports the Namespaces in XML 1.1 specification. Change-log: 2018/01/11 First Version, 1.12 2018/04/07 recompiled on tc-9.x, 1.12 ${TODAY} recompiled on tc-10.x, ${VERSION} Current: ${TODAY} recompiled on tc-10.x, ${VERSION} EOF find $TMPDIR/ -type d | xargs chmod -v 755; find $TMPDIR | xargs file | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded cd $TMPDIR find $TMPDIR -perm 777 -exec chmod 755 {} \; find $TMPDIR -perm 555 -exec chmod 755 {} \; find $TMPDIR -perm 444 -exec chmod 644 {} \; find $TMPDIR -perm 666 -exec chmod 644 {} \; find $TMPDIR -perm 664 -exec chmod 644 {} \; sudo chown -R root:root $TMPDIR cd /tmp/submit/ mksquashfs $TMPDIR ${PACKAGE}.tcz cd $TMPDIR sudo sh -c "find usr -not -type d > ${PACKAGE}.tcz.list" sudo mv ../${PACKAGE}.tcz . sudo mv ../${PACKAGE}.tcz.dep . sudo mv ../${PACKAGE}.tcz.info . # Create md5 file sudo sh -c "md5sum ${PACKAGE}.tcz > ${PACKAGE}.tcz.md5.txt" # Cleanup temp directory sudo rm -r -f usr # create documentation extension cd $TMPDIR-doc find $TMPDIR-doc -perm 777 -exec chmod 755 {} \; find $TMPDIR-doc -perm 555 -exec chmod 755 {} \; find $TMPDIR-doc -perm 444 -exec chmod 644 {} \; find $TMPDIR-doc -perm 666 -exec chmod 644 {} \; find $TMPDIR-doc -perm 664 -exec chmod 644 {} \; sudo chown -R root:root $TMPDIR-doc cd /tmp/submit/ mksquashfs $TMPDIR-doc ${PACKAGE}-doc.tcz cd $TMPDIR-doc sudo sh -c "find usr -not -type d > ${PACKAGE}-doc.tcz.list" sudo mv ../${PACKAGE}-doc.tcz . sudo mv ../${PACKAGE}-doc.tcz.info . # Create md5 file sudo sh -c "md5sum ${PACKAGE}-doc.tcz > ${PACKAGE}-doc.tcz.md5.txt" # Cleanup temp directory sudo rm -r -f usr