From 8e53eee78935ddbe4dd7ad45673d126300a84578 Mon Sep 17 00:00:00 2001 From: Bjorn Winckler Date: Sat, 16 Aug 2008 14:36:15 +0200 Subject: [PATCH] Remove make-snapshot.sh and README-snapshot.sh --- src/MacVim/README-snapshot.txt | 7 ----- src/MacVim/make-snapshot.sh | 60 ------------------------------------------ 2 files changed, 67 deletions(-) delete mode 100644 src/MacVim/README-snapshot.txt delete mode 100755 src/MacVim/make-snapshot.sh diff --git a/src/MacVim/README-snapshot.txt b/src/MacVim/README-snapshot.txt deleted file mode 100644 index 6957df4f..00000000 --- a/src/MacVim/README-snapshot.txt +++ /dev/null @@ -1,7 +0,0 @@ -This archive contains a snapshot of 'MacVim.app' and the shell script -'mvim'. - -For usage instructions, please start MacVim and type ":h macvim" -(without the quotes). - -MacVim requires a PPC or Intel Mac running Mac OS X 10.4 or 10.5. diff --git a/src/MacVim/make-snapshot.sh b/src/MacVim/make-snapshot.sh deleted file mode 100755 index 45789d5c..00000000 --- a/src/MacVim/make-snapshot.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -export MACOSX_DEPLOYMENT_TARGET=10.4 - -# Increment build number -/Developer/usr/bin/agvtool next-version -all > /dev/null - -# Get current build number -BUILDNUM=`/Developer/usr/bin/agvtool what-version -terse` -DEST=~/Desktop/MacVim-snapshot-$BUILDNUM - -echo '****************************************************' -echo " BUILDING SNAPSHOT $BUILDNUM" -echo '****************************************************' -echo '' - -# Build Vim binary -echo 'BUILDING VIM BINARY' -echo ' running configure...' -cd .. && ./configure --enable-gui=macvim --with-mac-arch=both \ - --with-features=huge --enable-pythoninterp \ - --enable-cscope --enable-rubyinterp \ - --with-compiledby="Bjorn Winckler " > /dev/null - -echo ' cleaning...' -make clean > /dev/null -echo ' calling make...' -make > /dev/null -echo ' done' - -# Build MacVim.app -echo 'BUILDING MacVim.app' -cd MacVim -echo ' cleaning...' -xcodebuild -configuration Universal clean > /dev/null -echo ' calling xcodebuild...' -xcodebuild -configuration Universal > /dev/null -echo ' done' - -# Create archive of build/Universal/MacVim.app -echo 'CREATING SNAPSHOT ARCHIVE' -echo ' copying MacVim.app and supporting files...' -mkdir $DEST -cp -pR build/Universal/MacVim.app $DEST/ -cp -p mvim $DEST/ -cp -p README-snapshot.txt $DEST/ -echo ' creating archive....' -cd $DEST && cd .. -tar cjf MacVim-snapshot-$BUILDNUM.tbz MacVim-snapshot-$BUILDNUM -echo ' done' - -echo 'ALL DONE' -echo 'Now update the Appcast, commit and tag, then post on vim_mac.' -# Update app-cast - -# Commit & tag -# git-commit -a -m "$BUILDNUM" -# git-tag -a -F tagfile $BUILDNUM - -# Post on vim_mac -- 2.11.4.GIT