[SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a2818e79962c73c14730cf3d7ea585d05b710606)

Vlad Glagolev scm at sourcemage.org
Fri Jun 24 10:28:39 EDT 2011


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

 devel/bison/DEPENDS           |    4 +++-
 devel/bison/HISTORY           |    3 +++
 disk/libisoburn/DEPENDS       |    4 +++-
 disk/libisoburn/HISTORY       |    3 +++
 disk/xfsdump/DEPENDS          |    4 +++-
 disk/xfsdump/HISTORY          |    3 +++
 gnome2-apps/gnumeric/DEPENDS  |    4 +++-
 gnome2-apps/gnumeric/HISTORY  |    3 +++
 graphics-libs/mesalib/DEPENDS |    4 +++-
 graphics-libs/mesalib/HISTORY |    3 +++
 x11-libs/cairo/DEPENDS        |    4 +++-
 x11-libs/cairo/HISTORY        |    3 +++
 12 files changed, 36 insertions(+), 6 deletions(-)

New commits:
commit a2818e79962c73c14730cf3d7ea585d05b710606
Author: Vlad Glagolev <stealth at sourcemage.org>
Commit: Vlad Glagolev <stealth at sourcemage.org>

    libisofs: reimplemented version checking

commit 536bfb30d5ab0adee4e49e834ad4ecbba71d2dcd
Author: Vlad Glagolev <stealth at sourcemage.org>
Commit: Vlad Glagolev <stealth at sourcemage.org>

    bison: reimplemented version checking

commit 588384d1a72109e871ccef18a742047701f66b1c
Author: Vlad Glagolev <stealth at sourcemage.org>
Commit: Vlad Glagolev <stealth at sourcemage.org>

    mesalib: reimplemented version checking

commit 769027dd433ce0136d0e3fb81461ac61462747f0
Author: Vlad Glagolev <stealth at sourcemage.org>
Commit: Vlad Glagolev <stealth at sourcemage.org>

    cairo: reimplemented version checking

commit 778306f9824138ccc42249e1b7e2ccc4cf32424a
Author: Vlad Glagolev <stealth at sourcemage.org>
Commit: Vlad Glagolev <stealth at sourcemage.org>

    xfsdump: reimplemented version checking

commit 924263d20e35d0e5dee34e25b03e8a7723cb1497
Author: Vlad Glagolev <stealth at sourcemage.org>
Commit: Vlad Glagolev <stealth at sourcemage.org>

    gnumeric: reimplemented version checking

diff --git a/devel/bison/DEPENDS b/devel/bison/DEPENDS
index 22bb332..be08f17 100755
--- a/devel/bison/DEPENDS
+++ b/devel/bison/DEPENDS
@@ -1,8 +1,10 @@
+. "$GRIMOIRE/FUNCTIONS" &&
+
 depends gnupg &&
 depends m4 &&
 depends smgl-fhs &&
 
-if spell_ok m4 && [[ $(installed_version m4) < 1.4.16 ]]; then
+if spell_ok m4 && is_version_less $(installed_version m4) 1.4.16; then
   force_depends m4
 fi &&
 
diff --git a/devel/bison/HISTORY b/devel/bison/HISTORY
index 434b32c..b85c99b 100644
--- a/devel/bison/HISTORY
+++ b/devel/bison/HISTORY
@@ -1,3 +1,6 @@
+2011-06-24 Vlad Glagolev <stealth at sourcemage.org>
+	* DEPENDS: correctly compare versions
+
 2011-05-16 Vlad Glagolev <stealth at sourcemage.org>
 	* DETAILS: updated spell to 2.5
 	* DEPENDS: fixed m4 dependency renewal on update
diff --git a/disk/libisoburn/DEPENDS b/disk/libisoburn/DEPENDS
index 33b06ef..8cc1feb 100755
--- a/disk/libisoburn/DEPENDS
+++ b/disk/libisoburn/DEPENDS
@@ -1,6 +1,8 @@
+. "$GRIMOIRE/FUNCTIONS" &&
+
 depends libburn &&
 depends libisofs &&
 
-if spell_ok libisofs && [[ $(installed_version libisofs) < 0.6.24 ]]; then
+if spell_ok libisofs && is_version_less $(installed_version libisofs) 0.6.24; then
   force_depends libisofs
 fi
diff --git a/disk/libisoburn/HISTORY b/disk/libisoburn/HISTORY
index f7e142e..14b5157 100644
--- a/disk/libisoburn/HISTORY
+++ b/disk/libisoburn/HISTORY
@@ -1,3 +1,6 @@
+2011-06-24 Vlad Glagolev <stealth at sourcemage.org>
+	* DEPENDS: correctly compare versions
+
 2011-06-20 Treeve Jelbert <treeve at sourcemage.org>
 	* DETAILS: version 1.1.0
 
diff --git a/disk/xfsdump/DEPENDS b/disk/xfsdump/DEPENDS
index 57f39a6..3c30156 100755
--- a/disk/xfsdump/DEPENDS
+++ b/disk/xfsdump/DEPENDS
@@ -1,9 +1,11 @@
+. "$GRIMOIRE/FUNCTIONS" &&
+
 depends autoconf &&
 depends attr &&
 depends dmapi &&
 depends xfsprogs &&
 
-if spell_ok xfsprogs && [[ $(installed_version xfsprogs) < 3.0.5 ]]; then
+if spell_ok xfsprogs && is_version_less $(installed_version xfsprogs) 3.0.5; then
   force_depends xfsprogs
 fi &&
 
diff --git a/disk/xfsdump/HISTORY b/disk/xfsdump/HISTORY
index e462d06..c99858f 100644
--- a/disk/xfsdump/HISTORY
+++ b/disk/xfsdump/HISTORY
@@ -1,3 +1,6 @@
+2011-06-24 Vlad Glagolev <stealth at sourcemage.org>
+	* DEPENDS: correctly check versions
+
 2010-01-13 Vlad Glagolev <stealth at sourcemage.org>
 	* DETAILS: updated spell to 3.0.4
 	* PRE_BUILD: apply the patch
diff --git a/gnome2-apps/gnumeric/DEPENDS b/gnome2-apps/gnumeric/DEPENDS
index 727c274..aeca41e 100755
--- a/gnome2-apps/gnumeric/DEPENDS
+++ b/gnome2-apps/gnumeric/DEPENDS
@@ -1,9 +1,11 @@
+. "$GRIMOIRE/FUNCTIONS" &&
+
 depends  libole2-2    &&
 depends  libgsf       &&
 
 depends goffice &&
 
-if spell_ok goffice && [[ $(installed_version goffice) < 0.8.11 ]]; then
+if spell_ok goffice && is_version_less $(installed_version goffice) 0.8.11; then
   force_depends goffice
 fi &&
 
diff --git a/gnome2-apps/gnumeric/HISTORY b/gnome2-apps/gnumeric/HISTORY
index 96227f3..214233b 100644
--- a/gnome2-apps/gnumeric/HISTORY
+++ b/gnome2-apps/gnumeric/HISTORY
@@ -1,3 +1,6 @@
+2011-06-24 Vlad Glagolev <stealth at sourcemage.org>
+	* DEPENDS: correctly compare versions
+
 2011-06-17 Vlad Glagolev <stealth at sourcemage.org>
 	* DETAILS: updated spell to 1.10.16
 
diff --git a/graphics-libs/mesalib/DEPENDS b/graphics-libs/mesalib/DEPENDS
index 27bc27a..6c61a57 100755
--- a/graphics-libs/mesalib/DEPENDS
+++ b/graphics-libs/mesalib/DEPENDS
@@ -1,3 +1,5 @@
+. "$GRIMOIRE/FUNCTIONS" &&
+
 depends dri2proto &&
 depends libdrm &&
 depends util-macros &&
@@ -30,7 +32,7 @@ if is_depends_enabled $SPELL libxcb;then
   sub_depends libx11 XCB
 fi &&
 
-if spell_ok libdrm && [[ $(installed_version libdrm|sed 's:\.::g') -lt 243 ]]; then
+if spell_ok libdrm && is_version_less $(installed_version libdrm) 2.4.3; then
   force_depends libdrm
 fi &&
 
diff --git a/graphics-libs/mesalib/HISTORY b/graphics-libs/mesalib/HISTORY
index 9e8424c..1e53079 100644
--- a/graphics-libs/mesalib/HISTORY
+++ b/graphics-libs/mesalib/HISTORY
@@ -1,3 +1,6 @@
+2011-06-24 Vlad Glagolev <stealth at sourcemage.org>
+	* DEPENDS: correctly compare versions
+
 2011-06-14 Ladislav Hagara <hgr at vabo.cz>
 	* DETAILS: 7.10.3 (feature, developement)
 
diff --git a/x11-libs/cairo/DEPENDS b/x11-libs/cairo/DEPENDS
index ba839d6..03bcf55 100755
--- a/x11-libs/cairo/DEPENDS
+++ b/x11-libs/cairo/DEPENDS
@@ -1,8 +1,10 @@
+. "$GRIMOIRE/FUNCTIONS" &&
+
 depends freetype2 '--enable-ft' &&
 depends fontconfig &&
 depends pixman &&
 
-if spell_ok pixman && [[ $(installed_version pixman) < 0.18.4 ]]; then
+if spell_ok pixman && is_version_less $(installed_version pixman) 0.18.4; then
   force_depends pixman
 fi &&
 
diff --git a/x11-libs/cairo/HISTORY b/x11-libs/cairo/HISTORY
index 36cde1d..ba507b1 100644
--- a/x11-libs/cairo/HISTORY
+++ b/x11-libs/cairo/HISTORY
@@ -1,3 +1,6 @@
+2011-06-24 Vlad Glagolev <stealth at sourcemage.org>
+	* DEPENDS: correctly compare versions
+
 2011-06-20 Vlad Glagolev <stealth at sourcemage.org>
 	* DEPENDS: bumped pixman version requirement
 


More information about the SM-Commit mailing list