Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (7524bec155ad13122f198ca992cecab28611fcd6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (7524bec155ad13122f198ca992cecab28611fcd6)
  • Date: Mon, 20 Jun 2011 10:54:57 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

net/openswan/DEPENDS | 8 ++++----
net/openswan/HISTORY | 3 +++
2 files changed, 7 insertions(+), 4 deletions(-)

New commits:
commit 7524bec155ad13122f198ca992cecab28611fcd6
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

openswan: corrected depends versions check

diff --git a/net/openswan/DEPENDS b/net/openswan/DEPENDS
index 5b0a16b..3f2f5ad 100755
--- a/net/openswan/DEPENDS
+++ b/net/openswan/DEPENDS
@@ -2,15 +2,15 @@ depends gmp &&
depends iproute2 &&
depends iptables &&

-local IPR2REV=$(installed_version iproute2 | cut -d. -f3) &&
+local IPR2VER=$(installed_version iproute2) &&

-if spell_ok iproute2 && [[ $IPR2REV -le 8 ]]; then
+if spell_ok iproute2 && [[ $IPR2VER < 2.6.08 ]]; then
force_depends iproute2
fi &&

. "$GRIMOIRE/FUNCTIONS" &&
-local KREV=$(get_kernel_version | cut -d. -f3) &&
+local KVER=$(get_kernel_version) &&

-if [[ $KREV -le 9 ]]; then
+if [[ $KVER < 2.6.09 ]]; then
depends ipsec-tools
fi
diff --git a/net/openswan/HISTORY b/net/openswan/HISTORY
index 4ad39c1..fe442ce 100644
--- a/net/openswan/HISTORY
+++ b/net/openswan/HISTORY
@@ -1,3 +1,6 @@
+2011-06-20 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: corrected version check
+
2011-06-19 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.6.34; SECURITY_PATCH++ (several security
patches on the version update)



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (7524bec155ad13122f198ca992cecab28611fcd6), Vlad Glagolev, 06/20/2011

Archive powered by MHonArc 2.6.24.

Top of Page