Changeset 13344


Ignore:
Timestamp:
09/12/12 16:41:23 (13 years ago)
Author:
cborstad
Message:

CHG: get svn to ignore some files.

Location:
issm/trunk-jpl/externalpackages
Files:
1 added
9 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/boost

    • Property svn:ignore
      •  

        old new  
         1*.gz
        12install
        23src
  • issm/trunk-jpl/externalpackages/freetype

    • Property svn:ignore
      •  

        old new  
         1*.gz
        12install
        23src
  • issm/trunk-jpl/externalpackages/latex2rtf

    • Property svn:ignore
      •  

        old new  
         1*.gz
         2install
        13cfg
        24latex2rtf-2.0.0
  • issm/trunk-jpl/externalpackages/libpng

    • Property svn:ignore
      •  

        old new  
         1*.gz
        12src
        23install
  • issm/trunk-jpl/externalpackages/metis

    • Property svn:ignore
      •  

        old new  
         1*.gz
        12install
        23src
  • issm/trunk-jpl/externalpackages/pyclips

    • Property svn:ignore
      •  

        old new  
         1*.gz
        12install
  • issm/trunk-jpl/externalpackages/python

    • Property svn:ignore
      •  

        old new  
         1*.txt
        12install-*
        23install
  • issm/trunk-jpl/externalpackages/scipy/install-macosx-lion.sh

    r13264 r13344  
    1111#install scipy
    1212cd scipy
     13export  BLAS_SRC=$ISSM_DIR/externalpackages/blas/install/lib
     14export  BLAS=$ISSM_DIR/externalpackages/blas/install/lib
     15export  LAPACK_SRC=$ISSM_DIR/externalpackages/lapack/install/lib
     16export  LAPACK=$ISSM_DIR/externalpackages/lapack/install/lib
     17
     18#install scipy
    1319python setup.py build
    1420python setup.py install
  • issm/trunk-jpl/externalpackages/vim/addons/vimrc

    r12954 r13344  
    9999map <F8> :w <Enter> :make <Enter><Enter>
    100100map! <F8>  <ESC> :w <Enter> :make <Enter><Enter>
     101" make update: nice for longer documents
     102map <F7> :w <Enter> :make update <Enter><Enter>
     103map! <F7> <ESC> :w <Enter> :make update <Enter><Enter>
     104
    101105
    102106"use paste P: re-indent and re-format at the same time
     
    190194" Abbreviations {{{1
    191195" ----------------------------------------------------------------------
    192 func Eatchar(pat)
    193         let c = nr2char(getchar())
    194         return (c =~ a:pat) ? '' : c
    195 endfunc
    196 au BufRead,BufNewFile *.html     iabbr <silent> H1 <h1></h1><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
    197 au BufRead,BufNewFile *.html     iabbr <silent> H2 <h2></h2><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
    198 au BufRead,BufNewFile *.html     iabbr <silent> H3 <h3></h3><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
    199 au BufRead,BufNewFile *.html     iabbr <silent> CO <code></code><Left><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
    200 au BufRead,BufNewFile *.html     iabbr <silent> PP <p></p><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
    201 au BufRead,BufNewFile *.m        iabbr <silent> p1  disp('');<Left><Left><Left><C-R>=Eatchar('\s')<CR>
    202 au BufRead,BufNewFile *.m        iab <expr> p0  "disp('-------------- file: ".expand('%')." line: ".line(".")."');"
    203 au BufRead,BufNewFile *.c*       iabbr <silent> p1  printf("\n");<Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
    204 au BufRead,BufNewFile *.c*,*.h   iabbr <silent> ER  _error_("");<Left><Left><Left><C-R>=Eatchar('\s')<CR>
    205 au BufRead,BufNewFile *.py       iabbr <silent> ER  raise NameError('')<Left><Left><C-R>=Eatchar('\s')<CR>
    206 au BufRead,BufNewFile *.m        iabbr <silent> ER  error('');<Left><Left><Left><C-R>=Eatchar('\s')<CR>
    207 au BufRead,BufNewFile *.c*       ab VV VecView(ug,PETSC_VIEWER_STDOUT_WORLD);
    208 au BufRead,BufNewFile *.c*       ab AS _assert_();
    209 au BufRead,BufNewFile *.c*       iab <expr> p0  "printf(\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);"
    210 au BufRead,BufNewFile *.c*       iab <expr> pp0 "PetscSynchronizedPrintf(MPI_COMM_WORLD,\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);\nPetscSynchronizedFlush(MPI_COMM_WORLD);"
    211 "tex
    212 au BufRead,BufNewFile *.tex iab EQ
    213                         \\begin{equation}
    214                         \<CR>\end{equation}<up><C-R>=Eatchar('\s')<CR>
    215 au BufRead,BufNewFile *.tex iab IT
    216                         \\begin{itemize}
    217                         \<CR>\item
    218                         \<CR>\end{itemize}<up><C-R>=Eatchar('\s')<CR>
    219 au BufRead,BufNewFile *.tex iab EN
    220                         \\begin{enumerate}
    221                         \<CR>\item
    222                         \<CR>\end{enumerate}<up><C-R>=Eatchar('\s')<CR>
    223 au BufRead,BufNewFile *.tex ab (()) \left( \right)
     196"func Eatchar(pat)
     197"       let c = nr2char(getchar())
     198"       return (c =~ a:pat) ? '' : c
     199"endfunc
     200"au BufRead,BufNewFile *.html     iabbr <silent> H1 <h1></h1><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
     201"au BufRead,BufNewFile *.html     iabbr <silent> H2 <h2></h2><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
     202"au BufRead,BufNewFile *.html     iabbr <silent> H3 <h3></h3><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
     203"au BufRead,BufNewFile *.html     iabbr <silent> CO <code></code><Left><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
     204"au BufRead,BufNewFile *.html     iabbr <silent> PP <p></p><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
     205"au BufRead,BufNewFile *.m        iabbr <silent> p1  disp('');<Left><Left><Left><C-R>=Eatchar('\s')<CR>
     206"au BufRead,BufNewFile *.m        iab <expr> p0  "disp('-------------- file: ".expand('%')." line: ".line(".")."');"
     207"au BufRead,BufNewFile *.c*       iabbr <silent> p1  printf("\n");<Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR>
     208"au BufRead,BufNewFile *.c*,*.h   iabbr <silent> ER  _error_("");<Left><Left><Left><C-R>=Eatchar('\s')<CR>
     209"au BufRead,BufNewFile *.c*       ab VV VecView(ug,PETSC_VIEWER_STDOUT_WORLD);
     210"au BufRead,BufNewFile *.c*       ab AS _assert_();
     211"au BufRead,BufNewFile *.c*       iab <expr> p0  "printf(\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);"
     212"au BufRead,BufNewFile *.c*       iab <expr> pp0 "PetscSynchronizedPrintf(MPI_COMM_WORLD,\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);\nPetscSynchronizedFlush(MPI_COMM_WORLD);"
     213""tex
     214"au BufRead,BufNewFile *.tex iab EQ
     215"                       \\begin{equation}
     216"                       \<CR>\end{equation}<up><C-R>=Eatchar('\s')<CR>
     217"au BufRead,BufNewFile *.tex iab IT
     218"                       \\begin{itemize}
     219"                       \<CR>\item
     220"                       \<CR>\end{itemize}<up><C-R>=Eatchar('\s')<CR>
     221"au BufRead,BufNewFile *.tex iab EN
     222"                       \\begin{enumerate}
     223"                       \<CR>\item
     224"                       \<CR>\end{enumerate}<up><C-R>=Eatchar('\s')<CR>
     225"au BufRead,BufNewFile *.tex ab (()) \left( \right)
    224226"}}}
    225227" Skeletons {{{1
    226228au BufNewFile letter.tex   0r ~/.vim/xtr/skeleton/letter.tex
    227229"}}}
     230" Copy and Paste{{{
     231"vmap <C-c> y:call system("pbcopy", getreg("\""))<CR>
     232"nmap <C-v> :call setreg("\"",system("pbpaste"))<CR>p
     233"}}}
Note: See TracChangeset for help on using the changeset viewer.