Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: pinegpgp.in
===================================================================
--- pinegpgp.in	(nonexistent)
+++ pinegpgp.in	(revision 5)
@@ -0,0 +1,80 @@
+
+tmpdir=@tmpdir@
+
+cename=GnuPG
+ces="$cebin -at -s"
+cee="$cebin -at -e"
+cese="$cebin -at -se"
+cec="$cebin"
+cefp="gpg"
+
+hrb="--[PinePGP]--------------------------------------------------[begin]--"
+hrm="--[PinePGP]-----------------------------------------------------------"
+hre="--[PinePGP]----------------------------------------------------[end]--"
+
+n=1
+r=1
+case $0 in
+	*-sign) 		$ces $*;		n=$?	;;
+	*-encrypt)
+	  #if defined(PGP26X) || defined(PGP65X)
+	  RCPTS="$*"
+	  #else
+	  RCPTS=`echo $* | @SED@ -e 's/^ */ /' -e 's/  */ -r /g'`
+	  #endif
+	  $cee $RCPTS;
+	  n=$?
+	;;
+	*-sign+encrypt)
+	  #if defined(PGP26X) || defined(PGP65X)
+	  RCPTS="$*"
+	  #else
+	  RCPTS=`echo $* | @SED@ -e 's/^ */ /' -e 's/  */ -r /g'`
+	  #endif
+	  #if defined(USE_NSE_FIX)
+	  ( \
+	    @CAT@; \
+	    echo; \
+	    echo "Message signed and encrypted only for: $*"; \
+	  ) | $cese $RCPTS;
+	  #else
+	  $cese $RCPTS;
+	  #endif
+	  n=$?
+	;;
+	*-check)
+	  #if defined(USE_MKTEMP)
+	  TMP=`@MKTEMP@ ${tmpdir}/pinegpg.XXXXXX`
+	  #else
+	  TMP="${tmpdir}/pinegpg.$$"
+	  #endif
+          echo "$hrb"
+	  $cec $* 2> $TMP
+	  n=$?
+	  if [ -s $TMP ]; then
+            echo "$hrm"
+	    @CAT@ $TMP
+          fi
+	  if [ $n != 0 ]; then
+	    echo "PinePGP: Encryption backend encountered error."
+	    n=0
+	  fi
+          echo "$hre"
+	  @RM@ -f $TMP
+	  if [ $n = 0 ]; then r=0; fi
+	;;
+	*)
+	  echo "Pine in/out filters for $cename"
+	  echo "Use:"
+	  echo "	$cefp-sign"
+	  echo "	$cefp-encrypt"
+	  echo "	$cefp-sign+encrypt"
+	  echo "	$cefp-check"
+	  ;;
+esac
+
+if [ $r != 0 ]; then
+	echo -ne "\nHit return to continue." >&2
+	read <&2
+fi
+exit $n
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~