Index: Makefile
===================================================================
--- Makefile (nonexistent)
+++ Makefile (revision 5)
@@ -0,0 +1,58 @@
+
+COMPONENT_TARGETS = $(HARDWARE_NOARCH)
+
+
+include ../../../../build-system/constants.mk
+
+
+url = $(DOWNLOAD_SERVER)/sources/packages/n/pinepgp
+
+versions = 0.18.0
+pkgname = pinepgp
+suffix = tar.gz
+
+tarballs = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s = $(addsuffix .sha1sum, $(tarballs))
+
+patches = $(CURDIR)/patches/pinepgp-0.18.0-make-sed.patch
+patches += $(CURDIR)/patches/pinepgp-0.18.0-pinepgp-in.patch
+
+.NOTPARALLEL: $(patches)
+
+
+BUILD_TARGETS = $(tarballs) $(sha1s) $(patches)
+
+
+include ../../../../build-system/core.mk
+
+
+.PHONY: download_clean
+
+
+$(tarballs):
+ @echo -e "\n======= Downloading source tarballs =======" ; \
+ for tarball in $(tarballs) ; do \
+ echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
+ done ; wait
+
+$(sha1s): $(tarballs)
+ @for sha in $@ ; do \
+ echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
+ echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
+ touch $$sha ; \
+ echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
+ sha1sum --check $$sha ; ret="$$?" ; \
+ if [ "$$ret" == "1" ]; then \
+ echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
+ exit 1 ; \
+ fi ; \
+ done
+
+$(patches): $(sha1s)
+ @echo -e "\n======= Create Patches =======\n" ; \
+ ( cd create-0.18.0-make-sed-patch ; ./create.patch.sh ) ; \
+ ( cd create-0.18.0-pinepgp-in-patch ; ./create.patch.sh ) ; \
+ echo -e "\n"
+
+download_clean:
+ @rm -f $(tarballs) $(sha1s) $(patches)
Index: create-0.18.0-make-sed-patch/create.patch.sh
===================================================================
--- create-0.18.0-make-sed-patch/create.patch.sh (nonexistent)
+++ create-0.18.0-make-sed-patch/create.patch.sh (revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=0.18.0
+
+tar --files-from=file.list -xzvf ../pinepgp-$VERSION.tar.gz
+mv pinepgp-$VERSION pinepgp-$VERSION-orig
+
+cp -rf ./pinepgp-$VERSION-new ./pinepgp-$VERSION
+
+diff --unified -Nr pinepgp-$VERSION-orig pinepgp-$VERSION > pinepgp-$VERSION-make-sed.patch
+
+mv pinepgp-$VERSION-make-sed.patch ../patches
+
+rm -rf ./pinepgp-$VERSION
+rm -rf ./pinepgp-$VERSION-orig
Property changes on: create-0.18.0-make-sed-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: create-0.18.0-make-sed-patch/file.list
===================================================================
--- create-0.18.0-make-sed-patch/file.list (nonexistent)
+++ create-0.18.0-make-sed-patch/file.list (revision 5)
@@ -0,0 +1 @@
+pinepgp-0.18.0/Makefile.in
Index: create-0.18.0-make-sed-patch/pinepgp-0.18.0-new/Makefile.in
===================================================================
--- create-0.18.0-make-sed-patch/pinepgp-0.18.0-new/Makefile.in (nonexistent)
+++ create-0.18.0-make-sed-patch/pinepgp-0.18.0-new/Makefile.in (revision 5)
@@ -0,0 +1,173 @@
+# makefile for 'pinepgp'
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+bindir=@bindir@
+tmpdir=~/.pinepgp
+DESTDIR=
+
+PACKAGE=@PACKAGE@
+VERSION=@VERSION@
+
+SOURCES = \
+ pinegpgp \
+ pinepgpgpg-install
+SCRIPTS = \
+ configure \
+ install-sh
+FILTERS = \
+ pinegpg \
+ pinepgp26x \
+ pinepgp5x \
+ pinepgp65x
+BUILD_FILTERS=@BUILD_FILTERS@
+BUILD_FLAGS=@BUILD_FLAGS@
+
+INSTALL=@INSTALL@
+LN_S=@LN_S@
+BASH=@BASH@
+AWK=@AWK@
+SED=@SED@
+GREP=@GREP@
+CAT=@CAT@
+TAR=@TAR@
+RM=@RM@
+MKTEMP=@MKTEMP@
+GPG=@GPG@
+PGP=@PGP@
+PGP5S=@PGP5S@
+PGP5E=@PGP5E@
+PGP5V=@PGP5V@
+PGP6=@PGP6@
+CPP=@CPP@
+
+all: $(SOURCES) $(BUILD_FILTERS)
+
+$(SOURCES): $(SOURCES:%=%.in)
+ $(CAT) $(@).in | $(SED) -e 's%\@SED\@%$(SED)%'\
+ -e 's%\@CAT\@%$(CAT)%'\
+ -e 's%\@RM\@%$(RM)%'\
+ -e 's%\@MKTEMP\@%$(MKTEMP)%'\
+ -e 's%\@BASH\@%$(BASH)%'\
+ -e 's%\@bindir\@%$(bindir)%'\
+ -e 's%\@tmpdir\@%$(tmpdir)%' > $(@)
+ chmod 755 $(@)
+
+pinegpg: pinegpgp
+ $(CAT) pinegpgp | $(SED) -e 's%^cename=.*%cename=GnuPG%'\
+ -e 's%^ces=.*%ces="$(GPG) -at -s"%'\
+ -e 's%^cee=.*%cee="$(GPG) -at -e"%'\
+ -e 's%^cese=.*%cese="$(GPG) -at -se"%'\
+ -e 's%^cec=.*%cec="\$(GPG)"%'\
+ -e 's%^cefp=.*%cefp=gpg%' > $(@).c
+ $(CPP) -DGPG $(BUILD_FLAGS) $(@).c | $(GREP) -v "^# .* .*" > $(@)
+ chmod 755 $(@)
+
+pinepgp26x: pinegpgp
+ $(CAT) pinegpgp | $(SED) -e 's%^cename=.*%cename="PGP 2.6.x"%'\
+ -e 's%^ces=.*%ces="\$(PGP) -fat -s"%'\
+ -e 's%^cee=.*%cee="\$(PGP) -fat -e"%'\
+ -e 's%^cese=.*%cese="\$(PGP) -fat -se"%'\
+ -e 's%^cec=.*%cec="\$(PGP) -f"%'\
+ -e 's%^cefp=.*%cefp=pgp26x%' > $(@).c
+ $(CPP) -DPGP26X $(BUILD_FLAGS) $(@).c | $(GREP) -v "^# .* .*" > $(@)
+ chmod 755 $(@)
+
+pinepgp5x: pinegpgp
+ $(CAT) pinegpgp | $(SED) -e 's%^cename=.*%cename="PGP 5.x"%'\
+ -e 's%^ces=.*%ces="$(PGP5S) -fat"%'\
+ -e 's%^cee=.*%cee="$(PGP5E) -fat"%'\
+ -e 's%^cese=.*%cese="$(PGP5E) -fat -s"%'\
+ -e 's%^cec=.*%cec="$(PGP5V) -f"%'\
+ -e 's%^cefp=.*%cefp=pgp26x%' > $(@).c
+ $(CPP) -DPGP5X $(BUILD_FLAGS) $(@).c | $(GREP) -v "^# .* .*" > $(@)
+ chmod 755 $(@)
+
+pinepgp65x: pinegpgp
+ $(CAT) pinegpgp | $(SED) -e 's%^cename=.*%cename="PGP 6.5.x"%'\
+ -e 's%^ces=.*%ces="\$(PGP6) -fat -s -u $$USER"%'\
+ -e 's%^cee=.*%cee="\$(PGP6) -fat -e -u $$USER"%'\
+ -e 's%^cese=.*%cese="\$(PGP6) -fat -se -u $$USER"%'\
+ -e 's%^cec=.*%cec="\$(PGP6) -f -u $$USER"%'\
+ -e 's%^cefp=.*%cefp=pgp65x%' > $(@).c
+ $(CPP) -DPGP65X $(BUILD_FLAGS) $(@).c | $(GREP) -v "^# .* .*" > $(@)
+ chmod 755 $(@)
+
+install: $(BUILD_FILTERS:%=install-%)
+
+install-pinepgpgpg-install: pinepgpgpg-install
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) -m 755 pinepgpgpg-install $(DESTDIR)$(bindir)
+
+$(BUILD_FILTERS:%=install-%-install): install-pinepgpgpg-install
+ $(LN_S) pinepgpgpg-install $(DESTDIR)$(bindir)/$(@:install-%=%)
+
+install-pinepgp26x: install-pinepgp26x-install
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) -m 755 pinepgp26x $(DESTDIR)$(bindir)
+ $(LN_S) pinepgp26x $(DESTDIR)$(bindir)/pgp26x-check
+ $(LN_S) pinepgp26x $(DESTDIR)$(bindir)/pgp26x-encrypt
+ $(LN_S) pinepgp26x $(DESTDIR)$(bindir)/pgp26x-sign
+ $(LN_S) pinepgp26x $(DESTDIR)$(bindir)/pgp26x-sign+encrypt
+
+install-pinepgp5x: install-pinepgp5x-install
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) -m 755 pinepgp5x $(DESTDIR)$(bindir)
+ $(LN_S) pinepgp5x $(DESTDIR)$(bindir)/pgp5x-check
+ $(LN_S) pinepgp5x $(DESTDIR)$(bindir)/pgp5x-encrypt
+ $(LN_S) pinepgp5x $(DESTDIR)$(bindir)/pgp5x-sign
+ $(LN_S) pinepgp5x $(DESTDIR)$(bindir)/pgp5x-sign+encrypt
+
+install-pinepgp65x: install-pinepgp65x-install
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) -m 755 pinepgp65x $(DESTDIR)$(bindir)
+ $(LN_S) pinepgp65x $(DESTDIR)$(bindir)/pgp65x-check
+ $(LN_S) pinepgp65x $(DESTDIR)$(bindir)/pgp65x-encrypt
+ $(LN_S) pinepgp65x $(DESTDIR)$(bindir)/pgp65x-sign
+ $(LN_S) pinepgp65x $(DESTDIR)$(bindir)/pgp65x-sign+encrypt
+
+install-pinegpg: install-pinegpg-install
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) -m 755 pinegpg $(DESTDIR)$(bindir)
+ $(LN_S) pinegpg $(DESTDIR)$(bindir)/gpg-check
+ $(LN_S) pinegpg $(DESTDIR)$(bindir)/gpg-encrypt
+ $(LN_S) pinegpg $(DESTDIR)$(bindir)/gpg-sign
+ $(LN_S) pinegpg $(DESTDIR)$(bindir)/gpg-sign+encrypt
+
+clean:
+ rm -f $(SOURCES)
+ rm -f $(FILTERS)
+ rm -f $(FILTERS:%=%.c)
+
+cleanall: clean
+ rm -f config.log
+ rm -f config.cache
+ rm -f config.status
+ rm -f Makefile
+ rm -f configure
+
+mrproper: cleanall
+distclean: cleanall
+
+rebuild: distclean all
+
+tarball:
+ $(INSTALL) -d -m 755 ./$(PACKAGE)-$(VERSION)
+ $(INSTALL) -m 755 $(SCRIPTS) ./$(PACKAGE)-$(VERSION)
+ $(INSTALL) -m 644 $(SOURCES:%=%.in) ./$(PACKAGE)-$(VERSION)
+
+ $(INSTALL) -m 644 configure.in Makefile.in ./$(PACKAGE)-$(VERSION)
+
+ $(SED) -e "s#!VERSION!#$(VERSION)#" README > ./$(PACKAGE)-$(VERSION)/README
+ $(INSTALL) -m 644 COPYING ChangeLog ./$(PACKAGE)-$(VERSION)
+ $(INSTALL) -m 644 gnupg-hany-public-key.txt ./$(PACKAGE)-$(VERSION)
+
+ $(INSTALL) -d -m 755 ./$(PACKAGE)-$(VERSION)/packaging
+ $(INSTALL) -m 644 packaging/pinepgp.spec ./$(PACKAGE)-$(VERSION)/packaging
+
+ $(INSTALL) -d -m 755 ./$(PACKAGE)-$(VERSION)/contrib
+ $(INSTALL) -m 644 contrib/*.* ./$(PACKAGE)-$(VERSION)/contrib
+
+ tar cfz $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)
+ rm -rf ./$(PACKAGE)-$(VERSION)/*
+ rmdir ./$(PACKAGE)-$(VERSION)
Index: create-0.18.0-make-sed-patch/pinepgp-0.18.0-new
===================================================================
--- create-0.18.0-make-sed-patch/pinepgp-0.18.0-new (nonexistent)
+++ create-0.18.0-make-sed-patch/pinepgp-0.18.0-new (revision 5)
Property changes on: create-0.18.0-make-sed-patch/pinepgp-0.18.0-new
___________________________________________________________________
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
+*~
Index: create-0.18.0-make-sed-patch
===================================================================
--- create-0.18.0-make-sed-patch (nonexistent)
+++ create-0.18.0-make-sed-patch (revision 5)
Property changes on: create-0.18.0-make-sed-patch
___________________________________________________________________
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
+*~
Index: create-0.18.0-pinepgp-in-patch/create.patch.sh
===================================================================
--- create-0.18.0-pinepgp-in-patch/create.patch.sh (nonexistent)
+++ create-0.18.0-pinepgp-in-patch/create.patch.sh (revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=0.18.0
+
+tar --files-from=file.list -xzvf ../pinepgp-$VERSION.tar.gz
+mv pinepgp-$VERSION pinepgp-$VERSION-orig
+
+cp -rf ./pinepgp-$VERSION-new ./pinepgp-$VERSION
+
+diff --unified -Nr pinepgp-$VERSION-orig pinepgp-$VERSION > pinepgp-$VERSION-pinepgp-in.patch
+
+mv pinepgp-$VERSION-pinepgp-in.patch ../patches
+
+rm -rf ./pinepgp-$VERSION
+rm -rf ./pinepgp-$VERSION-orig
Property changes on: create-0.18.0-pinepgp-in-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: create-0.18.0-pinepgp-in-patch/file.list
===================================================================
--- create-0.18.0-pinepgp-in-patch/file.list (nonexistent)
+++ create-0.18.0-pinepgp-in-patch/file.list (revision 5)
@@ -0,0 +1 @@
+pinepgp-0.18.0/pinegpgp.in
Index: create-0.18.0-pinepgp-in-patch/pinepgp-0.18.0-new/pinegpgp.in
===================================================================
--- create-0.18.0-pinepgp-in-patch/pinepgp-0.18.0-new/pinegpgp.in (nonexistent)
+++ create-0.18.0-pinepgp-in-patch/pinepgp-0.18.0-new/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: create-0.18.0-pinepgp-in-patch/pinepgp-0.18.0-new
===================================================================
--- create-0.18.0-pinepgp-in-patch/pinepgp-0.18.0-new (nonexistent)
+++ create-0.18.0-pinepgp-in-patch/pinepgp-0.18.0-new (revision 5)
Property changes on: create-0.18.0-pinepgp-in-patch/pinepgp-0.18.0-new
___________________________________________________________________
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
+*~
Index: create-0.18.0-pinepgp-in-patch
===================================================================
--- create-0.18.0-pinepgp-in-patch (nonexistent)
+++ create-0.18.0-pinepgp-in-patch (revision 5)
Property changes on: create-0.18.0-pinepgp-in-patch
___________________________________________________________________
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
+*~
Index: patches/README
===================================================================
--- patches/README (nonexistent)
+++ patches/README (revision 5)
@@ -0,0 +1,6 @@
+
+/* begin *
+
+ TODO: Leave some comment here.
+
+ * end */
Index: patches
===================================================================
--- patches (nonexistent)
+++ patches (revision 5)
Property changes on: patches
___________________________________________________________________
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
+*~
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
+*~