Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Bor Kraljič (33db42ea69ef59bcab4c8c6de32e6fe335bee4d1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Bor Kraljič <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Bor Kraljič (33db42ea69ef59bcab4c8c6de32e6fe335bee4d1)
  • Date: Tue, 27 Apr 2010 03:22:52 -0500

GIT changes to master grimoire by Bor Kraljič <pyrobor AT ver.si>:

cluster/metis/DETAILS | 6 +-
cluster/metis/HISTORY | 6 ++
cluster/metis/PRE_BUILD | 4 +
cluster/metis/metis-4.0.1-autotools.patch | 85
++++++++++++++++++++++++++++++
cluster/metis/metis-4.0.1-gcc44.patch | 11 +++
security/nikto/DETAILS | 6 +-
security/nikto/HISTORY | 4 +
7 files changed, 116 insertions(+), 6 deletions(-)

New commits:
commit 33db42ea69ef59bcab4c8c6de32e6fe335bee4d1
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>

metis: fixed URLs and added patches to compile

commit ac4900fa49be31ac6dfeb53434a423633ca5d75b
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>

nikto: => 2.1.1

diff --git a/cluster/metis/DETAILS b/cluster/metis/DETAILS
index 6f9ca4e..25f6745 100755
--- a/cluster/metis/DETAILS
+++ b/cluster/metis/DETAILS
@@ -3,10 +3,10 @@
SOURCE=$SPELL-$VERSION.tar.gz

SOURCE_HASH=sha512:002818c6e5510f95563a7a78bca4c08500c57f7cfdc0fe7e26415a830b19e7020454fafdee509acd319433d1fe8b25ba9e47b805b34ebd3a943ca39e7253db32
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
-
SOURCE_URL[0]=http://www-users.cs.umn.edu/~karypis/metis/$SPELL/files/$SOURCE
-
LICENSE[0]=http://www-users.cs.umn.edu/~karypis/metis/metis/faq.html#distribute
+ 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
KEYWORDS="graph cluster"
- WEB_SITE=http://www-users.cs.umn.edu/~karypis/metis/metis
+ WEB_SITE=http://glaros.dtc.umn.edu/gkhome/metis/metis/overview
ENTERED=20020604
SHORT="graph partitioning programs"
cat << EOF
diff --git a/cluster/metis/HISTORY b/cluster/metis/HISTORY
index ca6cd80..852898d 100644
--- a/cluster/metis/HISTORY
+++ b/cluster/metis/HISTORY
@@ -1,3 +1,9 @@
+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
+ * metis-4.0.1-autotools.patch: added for compile
+ * DETAILS: fixed SOURCE_URL & WEBSITE
+
2006-06-29 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Removed BUILD_API=1, MAINTAINER, and UPDATED
Changed LICENSE to LICENSE[0]
diff --git a/cluster/metis/PRE_BUILD b/cluster/metis/PRE_BUILD
new file mode 100755
index 0000000..3a49122
--- /dev/null
+++ b/cluster/metis/PRE_BUILD
@@ -0,0 +1,4 @@
+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
new file mode 100644
index 0000000..b9623dd
--- /dev/null
+++ b/cluster/metis/metis-4.0.1-autotools.patch
@@ -0,0 +1,85 @@
+--- 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
new file mode 100644
index 0000000..fc55499
--- /dev/null
+++ b/cluster/metis/metis-4.0.1-gcc44.patch
@@ -0,0 +1,11 @@
+--- 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/security/nikto/DETAILS b/security/nikto/DETAILS
index b01de36..ae7b118 100755
--- a/security/nikto/DETAILS
+++ b/security/nikto/DETAILS
@@ -1,9 +1,9 @@
SPELL=nikto
- VERSION=2.03
+ VERSION=2.1.1
SOURCE=${SPELL}-${VERSION}.tar.bz2
-SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}
+SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-$VERSION
SOURCE_URL[0]=http://www.cirt.net/${SPELL}/${SOURCE}
-
SOURCE_HASH=sha512:f4bb9f43ad11518a473db9028a6120d52b69020461d4b486cdc4e5d363c6aab5822e01bf008a7d4d9a157fba062ea052bd42e58f23a18b8405c4340901d745c5
+
SOURCE_HASH=sha512:64dfaa6c4c490736bf3c62b32dc32d228b41c030817115fbfc24b5e4485db9ffdbac6179cd0e61e7ec4430981339cf59492abe2e3488676cffe06a40a83846b8
WEB_SITE=http://www.cirt.net/nikto2
ENTERED=20030727
LICENSE[0]=GPL
diff --git a/security/nikto/HISTORY b/security/nikto/HISTORY
index fc97ce0..1e4ba62 100644
--- a/security/nikto/HISTORY
+++ b/security/nikto/HISTORY
@@ -1,3 +1,7 @@
+2010-04-27 Bor Kraljič <pyrobor AT ver.si>
+ * DETAILS: updated spell to 2.1.1
+ changed SOURCE_DIRECTORY
+
2009-09-05 Arjan Bouter <abouter AT sourcemage.org>
* DETAILS: version 2.03
* CONFIGURE: removed, use standard optional_depends



  • [SM-Commit] GIT changes to master grimoire by Bor Kraljič (33db42ea69ef59bcab4c8c6de32e6fe335bee4d1), Bor Kraljič, 04/27/2010

Archive powered by MHonArc 2.6.24.

Top of Page