Your message dated Fri, 25 Jul 2008 15:02:03 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#470418: fixed in libmesh 0.6.2.dfsg-2 has caused the Debian Bug report #470418, regarding libmesh: Please add scotchmetis support to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 470418: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470418 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems
--- Begin Message ---Package: libmesh Version: 0.6.1.dfsg-3 Severity: wishlist Tags: patch Greetings, The attached patch adds mesh partitioning support to libmesh in parallel runs using the scotch metis compatibility layer. It still needs two things to be complete: * libmesh0.6.1-dev needs to depend on libscotch-dev * README.Debian needs to add -lscotchmetis -lscotch -lscotcherr to the list of libraries needed to compile an example code (Sorry I haven't added these to the patch, but I've been sitting on it for more than a week and just want to get it in.) Thanks, -Adam -- GPG fingerprint: D54D 1AEE B11C CE9B A02B C5DD 526F 01E8 564E E4B6 Engineering consulting with open source tools http://www.opennovation.com/--- libmesh-0.6.1.dfsg/aclocal.m4~ 2007-10-15 20:48:46.000000000 +0000 +++ libmesh-0.6.1.dfsg/aclocal.m4 2008-02-29 14:11:49.000000000 +0000 @@ -1003,9 +1003,9 @@ dnl ------------------------------------------------------------- AC_DEFUN(CONFIGURE_METIS, [ - AC_CHECK_FILE(./contrib/metis/Lib/metis.h, + AC_CHECK_FILE(/usr/include/metis/metis.h, [ - METIS_INCLUDE_PATH=$PWD/contrib/metis/Lib + METIS_INCLUDE_PATH=/usr/include/metis METIS_INCLUDE=-I$METIS_INCLUDE_PATH METIS_LIB="\$(EXTERNAL_LIBDIR)/libmetis\$(libext)" AC_SUBST(METIS_INCLUDE) --- libmesh-0.6.1.dfsg/configure~ 2007-10-15 20:48:46.000000000 +0000 +++ libmesh-0.6.1.dfsg/configure 2008-02-29 14:13:37.000000000 +0000 @@ -11450,26 +11450,26 @@ if (test "$enablemetis" != no) ; then - echo "$as_me:$LINENO: checking for ./contrib/metis/Lib/metis.h" >&5 -echo $ECHO_N "checking for ./contrib/metis/Lib/metis.h... $ECHO_C" >&6 -if test "${ac_cv_file___contrib_metis_Lib_metis_h+set}" = set; then + echo "$as_me:$LINENO: checking for /usr/include/metis/metis.h" >&5 +echo $ECHO_N "checking for /usr/include/metis/metis.h... $ECHO_C" >&6 +if test "${ac_cv_file__usr_include_metis_metis_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else test "$cross_compiling" = yes && { { echo "$as_me:$LINENO: error: cannot check for file existence when cross compiling" >&5 echo "$as_me: error: cannot check for file existence when cross compiling" >&2;} { (exit 1); exit 1; }; } -if test -r "./contrib/metis/Lib/metis.h"; then - ac_cv_file___contrib_metis_Lib_metis_h=yes +if test -r "/usr/include/metis/metis.h"; then + ac_cv_file__usr_include_metis_metis_h=yes else - ac_cv_file___contrib_metis_Lib_metis_h=no + ac_cv_file__usr_include_metis_metis_h=no fi fi -echo "$as_me:$LINENO: result: $ac_cv_file___contrib_metis_Lib_metis_h" >&5 -echo "${ECHO_T}$ac_cv_file___contrib_metis_Lib_metis_h" >&6 -if test $ac_cv_file___contrib_metis_Lib_metis_h = yes; then +echo "$as_me:$LINENO: result: $ac_cv_file__usr_include_metis_metis_h" >&5 +echo "${ECHO_T}$ac_cv_file__usr_include_metis_metis_h" >&6 +if test $ac_cv_file__usr_include_metis_metis_h = yes; then - METIS_INCLUDE_PATH=$PWD/contrib/metis/Lib + METIS_INCLUDE_PATH=/usr/include/metis METIS_INCLUDE=-I$METIS_INCLUDE_PATH METIS_LIB="\$(EXTERNAL_LIBDIR)/libmetis\$(libext)" --- libmesh-0.6.1.dfsg/debian/rules~ 2008-02-29 14:14:59.000000000 +0000 +++ libmesh-0.6.1.dfsg/debian/rules 2008-02-29 14:15:08.000000000 +0000 @@ -19,7 +19,7 @@ cp /usr/share/misc/config.guess . cp /usr/share/misc/config.sub . QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2 - PETSC_DIR=/usr/lib/petsc PETSC_ARCH=linux-gnu-c-opt LDFLAGS=-Wl,-soname,libmesh.so.$(LIBMESH_VERSION),-lpetsc,-lpetscdm,-lpetscksp,-lpetscmat,-lpetscsnes,-lpetscts,-lpetscvec ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --disable-laspack --disable-slepc --disable-sfc --disable-gzstreams --disable-tecplot --disable-metis --disable-parmetis --disable-tetgen --disable-triangle --with-mpi=/usr --with-cxx=mpicxx --with-cc=mpicc --with-f77=mpif77 --disable-gmv + PETSC_DIR=/usr/lib/petsc PETSC_ARCH=linux-gnu-c-opt LDFLAGS=-Wl,-soname,libmesh.so.$(LIBMESH_VERSION),-lpetsc,-lpetscdm,-lpetscksp,-lpetscmat,-lpetscsnes,-lpetscts,-lpetscvec ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --disable-laspack --disable-slepc --disable-sfc --disable-gzstreams --disable-tecplot --enable-metis --disable-parmetis --disable-tetgen --disable-triangle --with-mpi=/usr --with-cxx=mpicxx --with-cc=mpicc --with-f77=mpif77 --disable-gmv build: build-stamp build-stamp: config.status --- libmesh-0.6.1.dfsg/debian/control~ 2008-02-29 14:15:50.000000000 +0000 +++ libmesh-0.6.1.dfsg/debian/control 2008-02-29 14:16:01.000000000 +0000 @@ -3,7 +3,7 @@ Maintainer: Debian Scientific Computing Team <[EMAIL PROTECTED]> Uploaders: Christophe Prud'homme <[EMAIL PROTECTED]>, Ondrej Certik <[EMAIL PROTECTED]>, Alan Woodland <[EMAIL PROTECTED]> XS-DM-Upload-Allowed: yes -Build-Depends: debhelper (>= 5), autotools-dev (>= 20070306.1), libpetsc2.3.3-dev (>= 2.3.3-3), quilt (>= 0.46-4) +Build-Depends: debhelper (>= 5), autotools-dev (>= 20070306.1), libpetsc2.3.3-dev (>= 2.3.3-3), quilt (>= 0.46-4), libscotchmetis-dev Standards-Version: 3.7.3 Section: libs Homepage: http://libmesh.sourceforge.net/
--- End Message ---
--- Begin Message ---Source: libmesh Source-Version: 0.6.2.dfsg-2 We believe that the bug you reported is fixed in the latest version of libmesh, which is due to be installed in the Debian FTP archive: libmesh0.6.2-dev_0.6.2.dfsg-2_all.deb to pool/main/libm/libmesh/libmesh0.6.2-dev_0.6.2.dfsg-2_all.deb libmesh0.6.2-pure-dev_0.6.2.dfsg-2_all.deb to pool/main/libm/libmesh/libmesh0.6.2-pure-dev_0.6.2.dfsg-2_all.deb libmesh0.6.2-pure_0.6.2.dfsg-2_amd64.deb to pool/main/libm/libmesh/libmesh0.6.2-pure_0.6.2.dfsg-2_amd64.deb libmesh0.6.2_0.6.2.dfsg-2_amd64.deb to pool/main/libm/libmesh/libmesh0.6.2_0.6.2.dfsg-2_amd64.deb libmesh_0.6.2.dfsg-2.diff.gz to pool/main/libm/libmesh/libmesh_0.6.2.dfsg-2.diff.gz libmesh_0.6.2.dfsg-2.dsc to pool/main/libm/libmesh/libmesh_0.6.2.dfsg-2.dsc A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Adam C. Powell, IV <[EMAIL PROTECTED]> (supplier of updated libmesh package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Tue, 22 Jul 2008 08:12:30 -0400 Source: libmesh Binary: libmesh0.6.2-dev libmesh0.6.2 libmesh0.6.2-pure-dev libmesh0.6.2-pure Architecture: source all amd64 Version: 0.6.2.dfsg-2 Distribution: unstable Urgency: low Maintainer: Debian Scientific Computing Team <[EMAIL PROTECTED]> Changed-By: Adam C. Powell, IV <[EMAIL PROTECTED]> Description: libmesh0.6.2 - libMesh - A C++ Finite Element Library libmesh0.6.2-dev - libMesh - A C++ Finite Element Library libmesh0.6.2-pure - libMesh - A C++ Finite Element Library libmesh0.6.2-pure-dev - libMesh - A C++ Finite Element Library Closes: 470418 486706 486708 491379 491380 491381 491744 Changes: libmesh (0.6.2.dfsg-2) unstable; urgency=low . * Completed scotch shared lib transition (closes: #470418). * Added conflicts to -dev packages (closes: #486706, #486708). * Added --enable-perflog to configure lines (closes: #491379). * Added VTK support (closes: #491380). * Added working example makefiles, and modified README.Debian (closes: #491381). * Added infinite finite element support (closes: #491744). Checksums-Sha1: 73a3c48a6d0c703eabbb80722d0b974124d74ba2 1457 libmesh_0.6.2.dfsg-2.dsc 071b0358999fb10816210b6c8ad0bb718433d2c6 8845 libmesh_0.6.2.dfsg-2.diff.gz e7e9bcd948b503b6b2240e2ba2a5f567e62a1db9 484370 libmesh0.6.2-dev_0.6.2.dfsg-2_all.deb 8c66dbc5718e7811e796cb62839f296d005dcad9 1924530 libmesh0.6.2_0.6.2.dfsg-2_amd64.deb f3d0c550b132646024903f543d943d62050efb7a 308264 libmesh0.6.2-pure-dev_0.6.2.dfsg-2_all.deb 5f4e0a42001bc71feda127832f8d16f417bfb832 1852102 libmesh0.6.2-pure_0.6.2.dfsg-2_amd64.deb Checksums-Sha256: d20a2bcde61968d9b70ced49c680f285e218bd3251b10e25d081e00a1d543b24 1457 libmesh_0.6.2.dfsg-2.dsc 0c2f565ac7635ceadc6028a0715c7b18bb54ada759eb711f190d0c510d661461 8845 libmesh_0.6.2.dfsg-2.diff.gz 83532ba5f3636717f316c7aafb824f6271348bbdc5554c2d0e51810d87d5aedf 484370 libmesh0.6.2-dev_0.6.2.dfsg-2_all.deb f251b8085e9506200a99d8b0bd8af0d5749e6be32aa899132daf3ddba504b2e3 1924530 libmesh0.6.2_0.6.2.dfsg-2_amd64.deb 68702eb3d3781269bd871b8914b9f85a6d00fcab983307ec09bdbd9a32411f89 308264 libmesh0.6.2-pure-dev_0.6.2.dfsg-2_all.deb 788fb36bf900d83586509a9367f7f40e0adc0ea363da49c68962eca0454f1b5d 1852102 libmesh0.6.2-pure_0.6.2.dfsg-2_amd64.deb Files: d4a34c9c85dbaaf28bb03714fe0e2cf9 1457 libs extra libmesh_0.6.2.dfsg-2.dsc 307592f92119038dcc9bedfc68ea43b5 8845 libs extra libmesh_0.6.2.dfsg-2.diff.gz 44f2f9a0fb6a61546d15c6f20d510b34 484370 libdevel extra libmesh0.6.2-dev_0.6.2.dfsg-2_all.deb 8333403640d7f0756d796169b5eb6d3b 1924530 libs extra libmesh0.6.2_0.6.2.dfsg-2_amd64.deb 6184490716be68e8a5a198e59f408382 308264 libdevel extra libmesh0.6.2-pure-dev_0.6.2.dfsg-2_all.deb 52b8e034a3dc68b4b3f4d34b77599681 1852102 libs extra libmesh0.6.2-pure_0.6.2.dfsg-2_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkiF4GQACgkQUm8B6FZO5LbAiwCfeFgs9kftZK3nefYeBvlT7WTZ VxMAn1oXKy7vRXv9xyBB2OKQ35TF4R59 =Zovk -----END PGP SIGNATURE-----
--- End Message ---

