diff options
author | Karl Berry <karl@freefriends.org> | 2019-08-10 22:33:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-08-10 22:33:12 +0000 |
commit | e1532c8b1806d36e36549bc1fa6c6614d2a8424f (patch) | |
tree | 817a86f4ea95d2863408e258fbe0754e7a029421 /Master/tlpkg/bin/tl-update-asy | |
parent | 65095863d32b4d7913f92aa73919ae9f3b95604d (diff) |
doc,sync,ctan-to-tl scripts
git-svn-id: svn://tug.org/texlive/trunk@51858 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tl-update-asy')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-asy | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Master/tlpkg/bin/tl-update-asy b/Master/tlpkg/bin/tl-update-asy index ef6c57db769..1475bb0fa87 100755 --- a/Master/tlpkg/bin/tl-update-asy +++ b/Master/tlpkg/bin/tl-update-asy @@ -3,13 +3,11 @@ # Public domain. Originally written 2008, Karl Berry. # Info about updating asymptote. # -# Do not run this script. It won't work. It is necessary to run the -# commands one at a time and think about what is being done. It's -# checked in so that when I get hit by a truck, at least the procedure I -# used will be available as a starting point. +# Do not just run this script. It won't work. It is necessary to run the +# commands one at a time and think about what is being done. # -# The script uses various paths and convenience variables that I define -# for myself; feel free to peruse tug.org:~karl/.bash_login, etc. +# Also, the script uses various paths and convenience variables that I +# define for myself; feel free to peruse tug.org:~karl/.bash_login, etc. # --karl test "x$1" = x--build || exit 1 @@ -25,12 +23,13 @@ if false && $update_sources_from_ctan; then cd asymptote ver=`awk -F\" '{print $2}' revision.cc` # the newly-released version + echo $ver # show list of new files to add: svn status | sed -n 's/^\?//p' | fgrep -v binaries svn add `!!` - # show list of files to remove: + # show list of files to remove (keep free) diff -qr . /home/ftp/tex-archive/graphics/asymptote/ \ | egrep -v ' differ' | egrep -v '\.svn' svn rm ... @@ -70,7 +69,7 @@ elif test "x$1" = x--build; then ./configure --prefix=/tmp/ainst \ --with-latex=/tmp/ainst/latex --with-context=/tmp/ainst/context \ --disable-fftw --disable-gl --disable-gsl \ - --enable-texlive-build CFLAGS=-g CXXFLAGS=-ansi + --enable-texlive-build CFLAGS=-g CXXFLAGS=-std=c++11 make make check make install-prebuilt |