BIND 10 master, updated. 910df2cc9298c1c7697f6f38c303b26169e62305 Merge branch 'master' of ssh://bind10.isc.org/var/bind10/git/bind10
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Feb 25 18:01:00 UTC 2011
The branch, master has been updated
via 910df2cc9298c1c7697f6f38c303b26169e62305 (commit)
via 2bd3a99bb2580fa3c783058f490eb1c8130c65ab (commit)
from ba727c17d3517232a3c40fa3a30c6924a30ed7dc (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 910df2cc9298c1c7697f6f38c303b26169e62305
Merge: 2bd3a99 ba727c1
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Feb 25 10:00:36 2011 -0800
Merge branch 'master' of ssh://bind10.isc.org/var/bind10/git/bind10
commit 2bd3a99bb2580fa3c783058f490eb1c8130c65ab
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Feb 25 09:59:39 2011 -0800
[master] cleanup: removed import_boost.sh, which is not used any more.
-----------------------------------------------------------------------
Summary of changes:
tools/import_boost.sh | 74 -------------------------------------------------
1 files changed, 0 insertions(+), 74 deletions(-)
delete mode 100755 tools/import_boost.sh
-----------------------------------------------------------------------
diff --git a/tools/import_boost.sh b/tools/import_boost.sh
deleted file mode 100755
index 07abe8c..0000000
--- a/tools/import_boost.sh
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-
-# given a directory, copy all needed parts from boost into the
-# current branch
-
-# only run this to update boost! (i.e. almost never)
-
-# usage example:
-# cd /tmp
-# tar xzvf /location/of/boost/tarball
-# cd /home/user/svn/bind10/trunk
-# tools/import_boost.sh /tmp/boost-version
-# svn commit
-
-# need new boost stuff?
-# TODO: LICENSE_1_0.txt
-# add files to list 'ere
-FILES="
-boost/*.hpp
-boost/algorithm
-boost/asio
-boost/assign/list_inserter.hpp
-boost/assign/std/vector.hpp
-boost/bind
-boost/config
-boost/concept
-boost/detail
-boost/exception
-boost/function
-boost/iterator
-boost/mpl
-boost/preprocessor
-boost/python
-boost/range
-boost/smart_ptr
-boost/type_traits
-boost/utility
-"
-
-TARGET="ext"
-
-if [ $# -ne 1 ]
-then
- echo "Usage: boost_import.sh <boost directory>"
- exit
-fi
-
-if [ ! -d $TARGET/boost ]
-then
- echo "This does not appear to be the main trunk/branch directory"
- exit
-fi
-
-
-DIR=$1
-
-do_cmd()
-{
- echo $@
- $@
-}
-
-
-#echo "cp ${DIR}/boost/shared_ptr.hpp boost/"
-for FILE in ${FILES}
-do
-TGT=`echo ${FILE} | sed 's/[^\/]*$//'`
-cmd="mkdir -p ${TARGET}/${TGT}"
-do_cmd ${cmd}
-cmd="cp -r ${DIR}/${FILE} ${TARGET}/${TGT}"
-do_cmd ${cmd}
-done
-
-
More information about the bind10-changes
mailing list