Changes between Version 3 and Version 4 of jazz/rmpi_deb
- Timestamp:
- Jul 11, 2008, 3:15:42 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/rmpi_deb
v3 v4 10 10 Standards-Version: 3.7.2 11 11 }}} 12 12 * First, download source of rmpi package. Use '''apt-get build-dep''' to check the build dependence. Since LAN/MPI will confuse the configure of rmpi package, here we remove the related package which is installed by '''apt-get build-dep''' command. 13 {{{ 14 #!sh 15 # apt-get source rpmi 16 # apt-get build-dep rmpi 17 # apt-get remove --purge lam-runtime lam4-dev 18 # apt-get install autoconf automake 19 # cd rmpi-0.5-3/ 20 ~rmpi-0.5-3# 21 }}} 22 * modified configure.in 13 23 {{{ 14 24 #!diff … … 46 56 echo "Please use --with-mpi=/path/to/mpi or specify the environment variable MPI_ROOT" 47 57 }}} 48 58 * run '''autoreconf''' to regenerate the configure file 59 {{{ 60 #!sh 61 ~/rmpi-0.5-3# autoreconf 62 }}} 63 * modified debian/control 49 64 {{{ 50 65 #!diff … … 61 76 Package: r-cran-rmpi 62 77 }}} 78 * run '''dch -i''' for editing changlog 79 {{{ 80 #!sh 81 ~/rmpi-0.5-3# dch -i 82 }}} 83 {{{ 84 #!diff 85 --- debian/changelog.bak 2008-07-10 12:16:08.000000000 -0700 86 +++ debian/changelog 2008-07-10 11:55:00.000000000 -0700 87 @@ -1,3 +1,9 @@ 88 +rmpi (0.5-3-2mpich2) unstable; urgency=low 89 + 90 + * modified configure.in and debian/control for mpich2 91 + 92 + -- Jazz Yao-Tsung Wang <jazz@nchc.org.tw> Thu, 10 Jul 2008 11:54:53 -0700 93 + 94 }}} 95 * run '''dpkg-buildpackage''' to build the new package 96 {{{ 97 #!sh 98 ~/rmpi-0.5-3# dpkg-buildpackage 99 }}}