Signed-off-by: David Lamparter <[email protected]>
---
 pimd/git-clone-github.sh          | 27 ---------------------------
 pimd/git-clone-savannah.sh        | 27 ---------------------------
 pimd/quagga-bootstrap.sh          | 23 -----------------------
 pimd/quagga-build-no-vtysh.sh     | 10 ----------
 pimd/quagga-build.sh              | 10 ----------
 pimd/quagga-configure-no-vtysh.sh | 10 ----------
 pimd/quagga-configure.sh          | 10 ----------
 pimd/quagga-git-add.sh            | 12 ------------
 pimd/quagga-memtypes.sh           | 22 ----------------------
 9 files changed, 151 deletions(-)
 delete mode 100755 pimd/git-clone-github.sh
 delete mode 100755 pimd/git-clone-savannah.sh
 delete mode 100755 pimd/quagga-bootstrap.sh
 delete mode 100755 pimd/quagga-build-no-vtysh.sh
 delete mode 100755 pimd/quagga-build.sh
 delete mode 100755 pimd/quagga-configure-no-vtysh.sh
 delete mode 100755 pimd/quagga-configure.sh
 delete mode 100755 pimd/quagga-git-add.sh
 delete mode 100755 pimd/quagga-memtypes.sh

diff --git a/pimd/git-clone-github.sh b/pimd/git-clone-github.sh
deleted file mode 100755
index ae2362a..0000000
--- a/pimd/git-clone-github.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/bash
-#
-# Github Developer Git Checkout
-#
-# Delete remote branch qpimd:    git push origin :qpimd
-#                                (git push origin :refs/heads/branch_to_delete)
-# Delete remote tag v0.139:      git push origin :v0.139
-#                                (git push origin :refs/tags/tag_to_delete)
-# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142
-# Rename branch qpimd to pim:    git branch -m qpimd pim
-# Commit changes:                git commit -a
-# Send changes:                  git push --all
-#
-# Recipe to re-sync with Quagga repository:
-#  git clone https://github.com/udhos/qpimd quagga
-#  cd quagga
-#  git checkout master
-#  git pull http://git.sv.gnu.org/r/quagga.git master
-#  git checkout -b pim origin/pim
-#  git rebase master pim
-#  # Test, then push back into Github repository:
-#  git push origin :pim ;# delete remote branch pim
-#  git push --all
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-git clone https://github.com/udhos/qpimd
diff --git a/pimd/git-clone-savannah.sh b/pimd/git-clone-savannah.sh
deleted file mode 100755
index 1aad51b..0000000
--- a/pimd/git-clone-savannah.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/bash
-#
-# Savannah Developer Git Checkout
-#
-# Delete remote branch qpimd:    git push origin :qpimd
-#                                (git push origin :refs/heads/branch_to_delete)
-# Delete remote tag v0.139:      git push origin :v0.139
-#                                (git push origin :refs/tags/tag_to_delete)
-# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142
-# Rename branch qpimd to pim:    git branch -m qpimd pim
-# Commit changes:                git commit -a
-# Send changes:                  git push --all
-#
-# Recipe to re-sync with Quagga repository:
-#  git clone ssh://[email protected]/srv/git/qpimd.git quagga
-#  cd quagga
-#  git checkout master
-#  git pull git://code.quagga.net/quagga.git master
-#  git checkout -b pim origin/pim
-#  git rebase master pim
-#  # Test, then push back into Savannah repository:
-#  git push origin :pim ;# delete remote branch pim
-#  git push --all
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-git clone ssh://[email protected]/srv/git/qpimd.git quagga
diff --git a/pimd/quagga-bootstrap.sh b/pimd/quagga-bootstrap.sh
deleted file mode 100755
index 4ec443d..0000000
--- a/pimd/quagga-bootstrap.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/bash
-#
-# Bootstrap Quagga autotools for pimd.
-#
-# Run from quagga's top dir as:
-# ./pimd/quagga-bootstrap.sh
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-me=`basename $0`
-msg () {
-       echo >&2 $me: $*
-}
-
-if [ -f ./bootstrap.sh ]; then
-       msg found ./bootstrap.sh from quagga
-       ./bootstrap.sh
-else
-       msg missing ./bootstrap.sh from quagga
-       #autoreconf -i --force
-       #bootstrap from tarball prefers autoreconf -i
-       autoreconf -i
-fi
diff --git a/pimd/quagga-build-no-vtysh.sh b/pimd/quagga-build-no-vtysh.sh
deleted file mode 100755
index 7136f67..0000000
--- a/pimd/quagga-build-no-vtysh.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /bin/bash
-#
-# Build minimum Quagga needed for pimd.
-#
-# Run from quagga's top dir as:
-# ./pimd/quagga-build-no-vtysh.sh
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-./pimd/quagga-memtypes.sh && ./pimd/quagga-bootstrap.sh && 
./pimd/quagga-configure-no-vtysh.sh && make
diff --git a/pimd/quagga-build.sh b/pimd/quagga-build.sh
deleted file mode 100755
index 2ad476d..0000000
--- a/pimd/quagga-build.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /bin/bash
-#
-# Build minimum Quagga needed for pimd.
-#
-# Run from quagga's top dir as:
-# ./pimd/quagga-build.sh
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-./pimd/quagga-memtypes.sh && ./pimd/quagga-bootstrap.sh && 
./pimd/quagga-configure.sh && make
diff --git a/pimd/quagga-configure-no-vtysh.sh 
b/pimd/quagga-configure-no-vtysh.sh
deleted file mode 100755
index 672007b..0000000
--- a/pimd/quagga-configure-no-vtysh.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /bin/bash
-#
-# Configure for minimum Quagga build needed for pimd.
-#
-# Run from quagga's top dir as:
-# ./pimd/quagga-configure-no-vtysh.sh
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-./configure --disable-bgpd --disable-ripd --disable-ripngd --disable-ospfd 
--disable-ospf6d --disable-watchquagga --disable-bgp-announce --disable-ospfapi 
--disable-ospfclient --disable-rtadv --disable-irdp --enable-pimd 
--enable-tcp-zebra --enable-ipv6
diff --git a/pimd/quagga-configure.sh b/pimd/quagga-configure.sh
deleted file mode 100755
index 72329eb..0000000
--- a/pimd/quagga-configure.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /bin/bash
-#
-# Configure for minimum Quagga build needed for pimd.
-#
-# Run from quagga's top dir as:
-# . pimd/quagga-configure.sh
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-tail -1 ./pimd/quagga-configure-no-vtysh.sh --enable-vtysh
diff --git a/pimd/quagga-git-add.sh b/pimd/quagga-git-add.sh
deleted file mode 100755
index 3824e98..0000000
--- a/pimd/quagga-git-add.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#! /bin/bash
-#
-# Add to git new files created by qpimd patch
-#
-# Run from quagga's top dir as:
-# ./pimd/quagga-git-add.sh
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-chmod a+rx pimd/*.sh
-git add doc/pimd.8
-git add pimd
diff --git a/pimd/quagga-memtypes.sh b/pimd/quagga-memtypes.sh
deleted file mode 100755
index e86f414..0000000
--- a/pimd/quagga-memtypes.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /bin/bash
-#
-# Check lib/memtypes.h from Quagga
-#
-# Run from quagga's top dir as:
-# ./pimd/quagga-memtypes.sh
-#
-# $QuaggaId: $Format:%an, %ai, %h$ $
-
-me=`basename $0`
-msg () {
-       echo >&2 $me: $*
-}
-
-memtypes_h=lib/memtypes.h
-if [ -e $memtypes_h ]; then
-       memtypes_h_size=`ls -s $memtypes_h | cut -d' ' -f1`
-       if [ "$memtypes_h_size" -lt 1 ]; then
-               msg WARNING: removing empty file: $memtypes_h -- awk failed?
-               rm $memtypes_h  
-       fi
-fi
-- 
2.3.6


_______________________________________________
Quagga-dev mailing list
[email protected]
https://lists.quagga.net/mailman/listinfo/quagga-dev

Reply via email to