Reduce the diff against the latest release. Also remove netbsd-import.sh,

since we are upstream now.
This commit is contained in:
maxv 2018-10-13 15:08:51 +00:00
parent 05f0d40cab
commit 05d534bebd
3 changed files with 21 additions and 106 deletions

View File

@ -1,6 +1,24 @@
Version history:
----------------
0.8 CVS (no official release yet)
0.8.x CVS (no official release yet)
o A lot of code cleanup
o XXX TODO
0.8.2 - 27 February 2014
o Fix admin port establish-sa for tunnel mode SAs (Alexander Sbitnev)
o Fix source port selection regression from version 0.8.1
o Various logging improvements
o Additional compliance and build fixes
0.8.1 - 08 January 2013
o Improved X.509 subject name comparation (Götz Babin-Ebell)
o Relax DPD cookie check for Cisco IOS compatibility (Roman Antink)
o Allow simplified syntax for inherited remote blocks (Roman Antink)
o Never shring pfkey socket buffer (Marcelo Leitner)
o Privilege separation child process exit fix
o Multiple memory allocation and use-after-free fixes
0.8 - 18 March 2011
o Fix authentication method ambiguity with kerberos and xauth
o RFC2253 compliant escaping of asn1dn identifiers (Cyrus Rahman)
o Local address code rewrite to speed things up

View File

@ -56,5 +56,6 @@ The mailing lists from SourceForge still exist:
ipsec-tools-devel@lists.sourceforge.net
ipsec-tools-users@lists.sourceforge.net
http://sf.net/mailarchive/forum.php?forum_name=ipsec-tools-devel
You can also browse the list archive:
http://sf.net/mailarchive/forum.php?forum_name=ipsec-tools-devel

View File

@ -1,104 +0,0 @@
#! /bin/sh
#
# $NetBSD: netbsd-import.sh,v 1.3 2008/04/30 13:10:46 martin Exp $
#
# Copyright (c) 2000-2005 The NetBSD Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# netbsd-import: prepare ipsec-tools distribution for import
# in the NetBSD tree, under src/crypto/dist/ipsec-tools
# Based on bind2netbsd.
#
# Instructions for importing a newer ipsec-tools release:
#
# $ tag=ipsec-tools-0_6-20050224
# $ cd /tmp
# $ cvs -danoncvs@cvs.sf.net:/cvsroot/ipsec-tools co -r $tag ipsec-tools
# $ cd ipsec-tools
# $ /usr/src/crypto/dist/ipsec-tools/netbsd-import.sh $tag `pwd` /usr/src
# $ cvs -d`whoami`@cvs.netbsd.org:/cvsroot import -m \
# "Import ipsec-tools $tag" src/crypto/dist/ipsec-tools \
# IPSEC_TOOLS $tag
# $ cd /usr/src/lib/libipsec
# $ cvs -d`whoami`@cvs.netbsd.org:/cvsroot commit -m \
# "update ipsec-tools version" package_version.h
#
test $# -ne 3 && \
echo "usage: netbsd-import.sh tag ipsec-tools-src netbsdsrc" && \
exit
SCRIPTNAME=$0
RELEASE=`echo $1|sed 's/^ipsec-tools-//; s/_/\./'`
DISTSRC=$2
NETBSDSRC=$3
### Remove CVS directories and .cvsignore files
find ${DISTSRC} -type d -name CVS -print | while read d ; do \
rm -R $d && echo "removed $d" ; \
done
find ${DISTSRC} -type f -name .cvsignore -print | while read f ; do \
rm $f && echo "removed $f" ; \
done
### Remove the $'s around RCS tags
find ${DISTSRC} -type f -print | \
xargs egrep -l '\$(Id|Created|Header)' | while read f; do
sed -e 's/\$\(Id.*\) \$/\1/' \
-e 's/\$\(Created.*\) \$/\1/' \
-e 's/\$\(Header.*\) \$/\1/' \
< $f > /tmp/ipsec1f$$ && mv /tmp/ipsec1f$$ $f && \
echo "removed \$RCS tag from $f"
done
### Add our NetBSD RCS Id
find ${DISTSRC} -type f -name '*.[chly]' -print | while read c; do
sed 1q < $c | grep -q '\$NetBSD' || (
echo "/* \$NetBSD\$ */" >/tmp/ipsec3n$$
echo "" >>/tmp/ipsec3n$$
cat $c >> /tmp/ipsec3n$$
mv /tmp/ipsec3n$$ $c && echo "added NetBSD RCS tag to $c"
)
done
find ${DISTSRC} -type f -name '*.[0-9]' -print | while read m; do
sed 1q < $m | grep -q '\$NetBSD' || (
echo ".\\\" \$NetBSD\$" >/tmp/ipsec2m$$
echo ".\\\"" >>/tmp/ipsec2m$$
cat $m >> /tmp/ipsec2m$$
mv /tmp/ipsec2m$$ $m && echo "added NetBSD RCS tag to $m"
)
done
sed " \
s/^\(#define TOP_PACKAGE_VERSION \).*/\1 \"${RELEASE}\"/; \
s/^\(#define TOP_PACKAGE_STRING \).*/\1 \"ipsec-tools ${RELEASE}\"/;\
" ${NETBSDSRC}/lib/libipsec/package_version.h > /tmp/ipsec5
mv /tmp/ipsec5 ${NETBSDSRC}/lib/libipsec/package_version.h && \
echo "Updated version in lib/libipsec/package_version.h"
cp ${SCRIPTNAME} ${DISTSRC} && echo "copied ${SCRIPTNAME} to ${DISTSRC}"
echo "done, don't forget to cvs commit src/lib/libipsec/package_version.h"