Skip to content

Commit

Permalink
Update to OpenSSL 1.0.2j.
Browse files Browse the repository at this point in the history
There would (probably) be no security issue with continuing to use
OpenSSL 1.0.2h for RPKI, but it's usually best to stay current.

Update the update-snapshot script to use git instead of svn.
  • Loading branch information
sraustein committed Oct 10, 2016
1 parent b2eee83 commit 1d76651
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion openssl/Makefile.in
@@ -1,6 +1,6 @@
# $Id$ # $Id$


VERSION = 1.0.2h VERSION = 1.0.2j


OPENSSL_CONFIG_COMMAND = @OPENSSL_CONFIG_COMMAND@ OPENSSL_CONFIG_COMMAND = @OPENSSL_CONFIG_COMMAND@
OPENSSL_BUILD_DIRECTORY = ${abs_builddir}/openssl OPENSSL_BUILD_DIRECTORY = ${abs_builddir}/openssl
Expand Down
Binary file removed openssl/openssl-1.0.2h.tar.gz
Binary file not shown.
Binary file added openssl/openssl-1.0.2j.tar.gz
Binary file not shown.
9 changes: 5 additions & 4 deletions openssl/update-snapshot.sh
Expand Up @@ -2,11 +2,11 @@
# $Id$ # $Id$
# #
# Fetch today's OpenSSL tarball and do everything needed to make it # Fetch today's OpenSSL tarball and do everything needed to make it
# the current code other than the svn commit. # the current code other than the git commit.


#version="1.0.0-stable-SNAP-$(date +%Y%m%d)" #version="1.0.0-stable-SNAP-$(date +%Y%m%d)"


version="1.0.2h" version="1.0.2j"


tarball="openssl-${version}.tar.gz" tarball="openssl-${version}.tar.gz"


Expand All @@ -24,11 +24,12 @@ do
if [ "$i" != "$tarball" ] if [ "$i" != "$tarball" ]
then then
/bin/rm -rf "${i%.tar.gz}" /bin/rm -rf "${i%.tar.gz}"
/usr/local/bin/svn rm "$i" /usr/local/bin/git rm "$i"
fi fi
done done


/usr/bin/awk -v version="$version" '/^VERSION = / {$NF = version} {print}' Makefile.in >Makefile.in.$$ && /usr/bin/awk -v version="$version" '/^VERSION = / {$NF = version} {print}' Makefile.in >Makefile.in.$$ &&
/bin/mv Makefile.in.$$ Makefile.in /bin/mv Makefile.in.$$ Makefile.in


/usr/local/bin/svn add "$tarball" /usr/local/bin/git add -v "$tarball"
/usr/local/bin/git add -v -u

0 comments on commit 1d76651

Please sign in to comment.