[SM-Commit] GIT changes to devel-xorg-modular grimoire by Eric Sandall (43a8a3c83fe1373485bf571061ea63e1c468cbda)

Eric Sandall scm at sourcemage.org
Fri Aug 26 17:42:28 EDT 2011


GIT changes to devel-xorg-modular grimoire by Eric Sandall <sandalle at sourcemage.org>:

 cluster/metis/BUILD                       |    1 
 cluster/metis/DEPENDS                     |    1 
 cluster/metis/DETAILS                     |    4 -
 cluster/metis/HISTORY                     |    6 ++
 cluster/metis/INSTALL                     |   21 -------
 cluster/metis/PRE_BUILD                   |    4 -
 cluster/metis/metis-4.0.1-autotools.patch |   85 ------------------------------
 cluster/metis/metis-4.0.1-gcc44.patch     |   11 ---
 mail/postgrey/DETAILS                     |    4 -
 mail/postgrey/HISTORY                     |    3 +
 net/rrdtool/BUILD                         |    2 
 net/rrdtool/HISTORY                       |    3 +
 x11-libs/wine/DETAILS                     |    2 
 x11-libs/wine/HISTORY                     |    3 +
 14 files changed, 26 insertions(+), 124 deletions(-)

New commits:
commit 116f662085b1127dcfd1b32a1c13ec9870aab594
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    wine: Updated devel to 1.3.27

commit f764f91ce79c128c27b012f34fd1ae218f4db2e3
Author: Julien ROZO <julien at rozo.org>
Commit: Julien ROZO <julien at rozo.org>

    metis: fixed #90
    updated version to 5.0
    added DEPENDS and cmake dependency
    removed obsolete PRE_BUILD, metis-4.0.1-gcc44.patch and
    metis-4.0.1-autotools.patch
    updated BUILD and INSTALL to use the new cmake process

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

    postgrey: => 1.34

commit 57891d1af887794c75565912272e6e10dc02d8c8
Author: Ismael Luceno <ismael at sourcemage.org>
Commit: Ismael Luceno <ismael at sourcemage.org>

    rrdtool: Remove -ffast-math from CFLAGS

diff --git a/cluster/metis/BUILD b/cluster/metis/BUILD
index 8f58e6d..17bb6c5 100755
--- a/cluster/metis/BUILD
+++ b/cluster/metis/BUILD
@@ -1 +1,2 @@
+make config prefix=${INSTALL_ROOT}/usr &&
 make
diff --git a/cluster/metis/DEPENDS b/cluster/metis/DEPENDS
new file mode 100755
index 0000000..60dd614
--- /dev/null
+++ b/cluster/metis/DEPENDS
@@ -0,0 +1 @@
+depends cmake
diff --git a/cluster/metis/DETAILS b/cluster/metis/DETAILS
index 25f6745..9ebe879 100755
--- a/cluster/metis/DETAILS
+++ b/cluster/metis/DETAILS
@@ -1,7 +1,7 @@
            SPELL=metis
-         VERSION=4.0
+         VERSION=5.0
           SOURCE=$SPELL-$VERSION.tar.gz
-     SOURCE_HASH=sha512:002818c6e5510f95563a7a78bca4c08500c57f7cfdc0fe7e26415a830b19e7020454fafdee509acd319433d1fe8b25ba9e47b805b34ebd3a943ca39e7253db32
+     SOURCE_HASH=sha512:b992922bacb56c8c101b722ce7bfbdab0eb16035565c73548d6ed0e42068995ffa67b49b30801987a72cf6a99b95757b8913be095c824ea346aa44d53c16bcbc
 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
    SOURCE_URL[0]=http://glaros.dtc.umn.edu/gkhome/fetch/sw/$SPELL/$SOURCE
       LICENSE[0]=http://glaros.dtc.umn.edu/gkhome/metis/metis/faq?q=metis/metis/faq#distribute
diff --git a/cluster/metis/HISTORY b/cluster/metis/HISTORY
index 852898d..1499e90 100644
--- a/cluster/metis/HISTORY
+++ b/cluster/metis/HISTORY
@@ -1,3 +1,9 @@
+2011-08-26 Julien "_kaze_" ROZO <julien at rozo.org>
+	* DETAILS: updated version to 5.0, fixed issue #90
+	* PRE_BUILD, metis-4.0.1-gcc44.patch, metis-4.0.1-autotools.patch:removed, obsolete
+	* DEPENDS: added, cmake is mandatory
+	* BUILD, INSTALL: updated to the new compilation and installation process
+ 
 2010-04-27 Bor Kraljič <pyrobor at ver.si>
 	* PRE_BUILD: added patches form gentoo to compile
 	* metis-4.0.1-gcc44.patch: added for compile
diff --git a/cluster/metis/INSTALL b/cluster/metis/INSTALL
index 19a0c25..47cca5d 100755
--- a/cluster/metis/INSTALL
+++ b/cluster/metis/INSTALL
@@ -1,20 +1,3 @@
-install -m 755 graphchk    $INSTALL_ROOT/usr/bin  &&
-install -m 755 kmetis      $INSTALL_ROOT/usr/bin  &&
-install -m 755 mesh2dual   $INSTALL_ROOT/usr/bin  &&
-install -m 755 mesh2nodal  $INSTALL_ROOT/usr/bin  &&
-install -m 755 oemetis     $INSTALL_ROOT/usr/bin  &&
-install -m 755 onmetis     $INSTALL_ROOT/usr/bin  &&
-install -m 755 partdmesh   $INSTALL_ROOT/usr/bin  &&
-install -m 755 partnmesh   $INSTALL_ROOT/usr/bin  &&
-install -m 755 pmetis      $INSTALL_ROOT/usr/bin  &&
-
-install -d $INSTALL_ROOT/usr/include/metis  &&
-
-for file in `ls -1 Lib/*.h` ; do
-  install -m 644 $file $INSTALL_ROOT/usr/include/metis
-done  &&
-
-install -m 644 libmetis.a  $INSTALL_ROOT/usr/lib        &&
-
+default_install &&
 install -d $INSTALL_ROOT/usr/doc/metis  &&
-install -m 644 Doc/manual.ps $INSTALL_ROOT/usr/doc/metis
+install -m 644 $SOURCE_DIRECTORY/manual/manual.pdf $INSTALL_ROOT/usr/doc/metis
diff --git a/cluster/metis/PRE_BUILD b/cluster/metis/PRE_BUILD
deleted file mode 100755
index 3a49122..0000000
--- a/cluster/metis/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-mk_source_dir $SOURCE_DIRECTORY &&
- unpack_file &&
-patch -p0 -d $SOURCE_DIRECTORY < $SPELL_DIRECTORY/metis-4.0.1-autotools.patch &&
-patch -p1 -d $SOURCE_DIRECTORY < $SPELL_DIRECTORY/metis-4.0.1-gcc44.patch
diff --git a/cluster/metis/metis-4.0.1-autotools.patch b/cluster/metis/metis-4.0.1-autotools.patch
deleted file mode 100644
index b9623dd..0000000
--- a/cluster/metis/metis-4.0.1-autotools.patch
+++ /dev/null
@@ -1,85 +0,0 @@
---- configure.ac 	1970-01-01 01:00:00.000000000 +0100
-+++ configure.ac	2008-03-25 10:05:57.090715324 +0000
-@@ -0,0 +1,15 @@
-+# -*- Autoconf -*-
-+AC_PREREQ(2.59)
-+AC_INIT(metis, 4.0.1, karypis at cs.umn.edu)
-+AM_INIT_AUTOMAKE([foreign])
-+AC_CONFIG_HEADER([config.h])
-+AC_PROG_INSTALL
-+AC_PROG_LIBTOOL
-+AC_CHECK_LIB(m, sqrt)
-+AC_CONFIG_FILES([
-+	Makefile
-+	metis.pc
-+	Lib/Makefile
-+	Programs/Makefile\
-+	Test/Makefile])
-+AC_OUTPUT
---- metis.pc.in 	1970-01-01 01:00:00.000000000 +0100
-+++ metis.pc.in	2008-02-15 14:45:09.378997263 +0000
-@@ -0,0 +1,10 @@
-+prefix=@prefix@
-+exec_prefix=@exec_prefix@
-+libdir=@libdir@
-+includedir=@includedir@
-+
-+Name: METIS
-+Description: Software for partioning unstructured graphes and meshes
-+Version: @VERSION@
-+Libs: -L${libdir} -lmetis
-+Cflags: -I${includedir}/metis
---- Makefile.am 	1970-01-01 01:00:00.000000000 +0100
-+++ Makefile.am	2008-02-15 14:46:16.578826763 +0000
-@@ -0,0 +1,5 @@
-+SUBDIRS = Lib Programs Test
-+EXTRA_DIST = CHANGES VERSION metis.pc.in
-+
-+pkgconfigdir = $(libdir)/pkgconfig
-+pkgconfig_DATA = metis.pc
---- Lib/Makefile.am 	1970-01-01 01:00:00.000000000 +0100
-+++ Lib/Makefile.am	2008-03-25 10:06:10.719491984 +0000
-@@ -0,0 +1,15 @@
-+pkginclude_HEADERS = defs.h macros.h metis.h proto.h rename.h struct.h
-+pkgincludedir = $(includedir)/metis
-+lib_LTLIBRARIES = libmetis.la
-+libmetis_la_SOURCES = \
-+	coarsen.c fm.c initpart.c match.c ccgraph.c memory.c \
-+	pmetis.c pqueue.c refine.c util.c timing.c debug.c \
-+	bucketsort.c graph.c stat.c kmetis.c kwayrefine.c \
-+	kwayfm.c balance.c ometis.c srefine.c sfm.c separator.c \
-+	mincover.c mmd.c mesh.c meshpart.c frename.c fortran.c \
-+	myqsort.c compress.c parmetis.c estmem.c \
-+	mpmetis.c mcoarsen.c mmatch.c minitpart.c mbalance.c \
-+	mrefine.c mutil.c mfm.c mkmetis.c mkwayrefine.c mkwayfmh.c \
-+	mrefine2.c minitpart2.c mbalance2.c mfm2.c \
-+	kvmetis.c kwayvolrefine.c kwayvolfm.c subdomains.c
-+libmetis_la_LDFLAGS = -no-undefined -version-info 4:0:0
---- Programs/Makefile.am 	1970-01-01 01:00:00.000000000 +0100
-+++ Programs/Makefile.am	2008-01-31 12:00:14.981124649 +0000
-@@ -0,0 +1,15 @@
-+AM_CPPFLAGS = -I$(top_srcdir)/Lib
-+LDADD = $(top_builddir)/Lib/libmetis.la -lm
-+
-+bin_PROGRAMS = pmetis kmetis oemetis onmetis mesh2dual mesh2nodal \
-+	partdmesh partnmesh graphchk
-+
-+pmetis_SOURCES = pmetis.c io.c
-+kmetis_SOURCES = kmetis.c io.c
-+oemetis_SOURCES = oemetis.c io.c smbfactor.c
-+onmetis_SOURCES = onmetis.c io.c smbfactor.c
-+mesh2dual_SOURCES = mesh2dual.c io.c 
-+mesh2nodal_SOURCES = mesh2nodal.c io.c 
-+partdmesh_SOURCES = partdmesh.c io.c 
-+partnmesh_SOURCES = partnmesh.c io.c 
-+graphchk_SOURCES = graphchk.c io.c 
---- Test/Makefile.am 	1970-01-01 01:00:00.000000000 +0100
-+++ Test/Makefile.am	2008-01-31 12:37:59.532517099 +0000
-@@ -0,0 +1,7 @@
-+AM_CPPFLAGS = -I$(top_srcdir)/Lib
-+LDADD = $(top_builddir)/Lib/libmetis.la -lm
-+check_PROGRAMS = mtest
-+mtest_SOURCES = mtest.c ../Programs/io.c
-+
-+check-local: $(check_PROGRAMS)
-+	- ./mtest ../Graphs/4elt.graph
diff --git a/cluster/metis/metis-4.0.1-gcc44.patch b/cluster/metis/metis-4.0.1-gcc44.patch
deleted file mode 100644
index fc55499..0000000
--- a/cluster/metis/metis-4.0.1-gcc44.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- metis-4.0.orig/Lib/rename.h	1998-11-30 08:26:50.000000000 -0800
-+++ metis-4.0/Lib/rename.h	2009-05-26 00:18:27.000000000 -0700
-@@ -410,7 +410,7 @@
- #define RandomPermute			__RandomPermute
- #define ispow2				__ispow2
- #define InitRandom			__InitRandom
--#define log2				__log2
-+#define log2				___log2
- 
- 
- 
diff --git a/mail/postgrey/DETAILS b/mail/postgrey/DETAILS
index a6db5f2..058b8b8 100755
--- a/mail/postgrey/DETAILS
+++ b/mail/postgrey/DETAILS
@@ -1,9 +1,9 @@
            SPELL=postgrey
-         VERSION=1.33
+         VERSION=1.34
           SOURCE=$SPELL-$VERSION.tar.gz
    SOURCE_URL[0]=http://postgrey.schweikert.ch/pub/$SOURCE
    SOURCE_URL[1]=http://postgrey.schweikert.ch/pub/old/$SOURCE
-     SOURCE_HASH=sha512:82fb49283be4912ffffa26e69340c966b3ed378ccd154cdc7e18ecbb39b9f0daca002dbcc475e0cc008b3ff6fe4d313f0b36a515c0b5cd5a8360a51c1a3fcfd8
+     SOURCE_HASH=sha512:df6cf0c3bf6835591aad00bde13330ee4030b965c90a01a27dfafb5eac1f008dcfb9001dbfcf70a6209b91af7a571b38392b69db2212f112d888a565e9b703cb
 SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
         WEB_SITE=http://postgrey.schweikert.ch/
       LICENSE[0]=GPL
diff --git a/mail/postgrey/HISTORY b/mail/postgrey/HISTORY
index b763e9f..404d663 100644
--- a/mail/postgrey/HISTORY
+++ b/mail/postgrey/HISTORY
@@ -1,3 +1,6 @@
+2011-08-26 Vlad Glagolev <stealth at sourcemage.org>
+	* DETAILS: updated spell to 1.34
+
 2010-12-28 Vlad Glagolev <stealth at sourcemage.org>
 	* DEPENDS, DETAILS, {PRE_}BUILD, INSTALL,
 	  init.d/postgrey{.conf}: spell created
diff --git a/net/rrdtool/BUILD b/net/rrdtool/BUILD
new file mode 100755
index 0000000..883fed1
--- /dev/null
+++ b/net/rrdtool/BUILD
@@ -0,0 +1,2 @@
+CFLAGS="${CFLAGS/-ffast-math}"
+default_build
diff --git a/net/rrdtool/HISTORY b/net/rrdtool/HISTORY
index 3253ee8..337bdd7 100644
--- a/net/rrdtool/HISTORY
+++ b/net/rrdtool/HISTORY
@@ -1,3 +1,6 @@
+2011-08-25 Ismael Luceno <ismael at sourcemage.org>
+	* BUILD: Added code to remove -ffast-math from CFLAGS
+
 2011-08-19 Bor Kraljič <pyrobor at ver.si>
 	* DEPENDS: fixed unrecognized options (issue #30)
 
diff --git a/x11-libs/wine/DETAILS b/x11-libs/wine/DETAILS
index 30aeed5..51822b2 100755
--- a/x11-libs/wine/DETAILS
+++ b/x11-libs/wine/DETAILS
@@ -12,7 +12,7 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-git"
   FORCE_DOWNLOAD=1
 else
   if [[ $WINE_DEVEL == y ]]; then
-         VERSION=1.3.26
+         VERSION=1.3.27
   else
          VERSION=1.2.3
   fi
diff --git a/x11-libs/wine/HISTORY b/x11-libs/wine/HISTORY
index da08716..39c12ea 100644
--- a/x11-libs/wine/HISTORY
+++ b/x11-libs/wine/HISTORY
@@ -1,3 +1,6 @@
+2011-08-26 Eric Sandall <sandalle at sourcemage.org>
+	* DETAILS: Updated latest devel to 1.3.27
+
 2011-08-05 Eric Sandall <sandalle at sourcemage.org>
 	* DETAILS: Updated latest devel to 1.3.26
 


More information about the SM-Commit mailing list