From: Yaroslav Halchenko Date: Mon, 1 Oct 2012 18:11:00 +0000 (-0400) Subject: changelog + nd-vmsetupwizard: Preparing 0.29 release of neurodebian for updated nd... X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=50ce9c2131d4282247929546bd020426364dd599;p=neurodebian.git changelog + nd-vmsetupwizard: Preparing 0.29 release of neurodebian for updated nd-vmsetupwizard * VM (6.0.6): - base on 6.0.6 Debian point release (finally version of NeuroDebian VM is in sync with the Debian release) - nd-vmsetupwizard: - robustify check/linking of $HOME/host - optional installations dialog: - set height of the dialog to 450 for to fit all list items - refactored "GIMP" section into "Graphics" which would install also inkscape, vym and svgtune - added sections for "PyMVPA tutorial", and different collections of Python modules (Neuroimaging, Electrophysiology, etc) - Python selections depend on ipython01x instead of older ipython to provide IPython notebooks facilities out-of-the-box --- diff --git a/debian/changelog b/debian/changelog index c37d292..ad929db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +neurodebian (0.29) unstable; urgency=low + + [ Yaroslav Halchenko & Michael Hanke ] + * website: + - new mirror ([de-md]) + - dynamic ranges for the new distributions subscription stats plot + * VM (6.0.6): + - base on 6.0.6 Debian point release (finally version of NeuroDebian + VM is in sync with the Debian release) + - nd-vmsetupwizard: + - robustify check/linking of $HOME/host + - optional installations dialog: + - set height of the dialog to 450 for to fit all list items + - refactored "GIMP" section into "Graphics" which would install + also inkscape, vym and svgtune + - added sections for "PyMVPA tutorial", and different collections of + Python modules (Neuroimaging, Electrophysiology, etc) + - Python selections depend on ipython01x instead of older ipython + to provide IPython notebooks facilities out-of-the-box + + -- Yaroslav Halchenko Mon, 01 Oct 2012 12:26:37 -0400 + neurodebian (0.28) unstable; urgency=low [ Michael Hanke & Yaroslav Halchenko] diff --git a/tools/nd-vmsetupwizard b/tools/nd-vmsetupwizard index 8d69df4..496ccf1 100755 --- a/tools/nd-vmsetupwizard +++ b/tools/nd-vmsetupwizard @@ -102,12 +102,14 @@ Do you want to get those files, if available, sourced automatically for your env fi # create symlink to shared folder into homedir -[ ! -e $HOME/host ] && ln -s /media/sf_host $HOME/host +# note: -e check would exit 1 if link is broken +# ln -f is used for further robustness +[ ! -L $HOME/host ] && ln -sf /media/sf_host $HOME/host # TODO: add PyMVPA: # FALSE "PyMVPA" "python-mvpa2,python-mvpa2-doc,python-mvpa2-tutorial-data" \ # needs -doc and -tutorial-data package -packages=$(zenity --list $icon_opt --checklist --column="Install" --column="Description" \ +packages=$(zenity --height 450 --list $icon_opt --checklist --column="Install" --column="Description" \ --column="Package Name" --print-column=3 --hide-column=3 --hide-header \ --separator=' ' --text="Please select any additional component that shall be installed. @@ -115,10 +117,14 @@ Please note that this selection will not affect packages already installed on the system. No installed packages will be reinstalled or removed, only additional components will be installed." \ FALSE "Emacs" "emacs" \ -FALSE "GNU Image Manipulation Program (Gimp)" "gimp" \ +FALSE "Graphics (e.g. GIMP, Inscape)" "gimp,inkscape,svgtune,xzgv,vym" \ FALSE "Octave" "octave,qtoctave" \ FALSE "OpenOffice.org" "openoffice.org" \ -FALSE "Scientific Python" "ipython,python-scipy,python-matplotlib" \ +FALSE "PyMVPA Tutorial" "ipython01x,python-mvpa2,python-mvpa2-doc,python-mvpa2-tutorialdata,spyder" \ +FALSE "Python: Electrophysiology & Modeling" "python-brian,python-pynn,python-pyentropy,stimfit" \ +FALSE "Python: Neuroimaging" "ipython01x,spyder,nipy-suite,python-mvpa2" \ +FALSE "Python: Scientific stack" "ipython01x,spyder,python-matplotlib,python-pandas,python-sympy" \ +FALSE "R" "r-recommended" \ FALSE "TeX Live" "texlive" \ FALSE "Adobe Flash browser plugin" "flashplugin-nonfree" \ FALSE "Sun Java browser plugin" "sun-java6-plugin" \ diff --git a/vm/tools/nd_createappliance b/vm/tools/nd_createappliance index 6a4539b..fc76bcb 100755 --- a/vm/tools/nd_createappliance +++ b/vm/tools/nd_createappliance @@ -6,14 +6,14 @@ set -eu # TODO: arguments later on to become cmdline args #iso=debian-squeeze-di-beta1-amd64-businesscard.iso -iso=debian-6.0.3-${ARCH:=amd64}-businesscard.iso +iso=debian-6.0.6-${ARCH:=amd64}-businesscard.iso di_cd=$(readlink -f $PWD/../../../neurodebian-images/$iso) di_host=head1.hydra.dartmouth.edu # where to look for di preseed build_dir=$PWD/build dist_dir=$PWD/dist vendor="NeuroDebian" -vm_version="6.0.5" +vm_version="6.0.6" vm_ostype=Debian vendor_url="http://neuro.debian.net" product_url="${vendor_url}/vm.html"