[geany/geany] effab1: Remove svn specific scripts as the are not needed anymore

Frank Lanitz git-noreply at xxxxx
Thu May 31 20:18:03 UTC 2012


Branch:      refs/heads/master
Author:      Frank Lanitz <frank at frank.uvena.de>
Committer:   Frank Lanitz <frank at frank.uvena.de>
Date:        Thu, 31 May 2012 20:18:03
Commit:      effab1a1291300018e8320b5a8c291c0ccb61cf4
             https://github.com/geany/geany/commit/effab1a1291300018e8320b5a8c291c0ccb61cf4

Log Message:
-----------
Remove svn specific scripts as the are not needed anymore


Modified Paths:
--------------
    scripts/svn-add.sh
    scripts/svn-changes.sh

Modified: scripts/svn-add.sh
8 files changed, 0 insertions(+), 8 deletions(-)
===================================================================
@@ -1,8 +0,0 @@
-#!/bin/sh
-FILES=$*
-if [ -n "$FILES" ]; then
-	svn add $FILES
-	svn propset svn:keywords 'Author Date Id Revision' $FILES
-	svn propset svn:eol-style native $FILES
-fi
-echo '>>> Remember to update Makefile.am, makefile.win32, wscript, po/POTFILES.in, geany.nsi (if necessary) <<<'


Modified: scripts/svn-changes.sh
60 files changed, 0 insertions(+), 60 deletions(-)
===================================================================
@@ -1,60 +0,0 @@
-#!/bin/sh
-# Copyright:	2008, Nick Treleaven
-# License:		GNU GPL V2 or later
-# Warranty:		NONE
-
-# Displays a summary of Subversion working copy changes in ChangeLog
-# format, plus warnings about any unknown files.
-
-# -s for spaces instead of comma separation
-if [ "$1" = -s ]; then
-	SPACES="set"
-	shift
-fi
-
-# -q to not print warnings
-if [ "$1" = -q ]; then
-	QUIET="set"
-	shift
-fi
-
-status=`svn st $*`
-
-# get list of files changed.
-# remove extraneous text, e.g. ? entries
-files=`echo "$status" |egrep '^[A-Z]'`
-# get filenames on one line
-files=`echo "$files" |egrep -o '[^A-Z].[ ]+(.+)' |xargs`
-# remove ChangeLog
-files=`echo "$files" |sed "s/ ChangeLog\b//"`
-# add commas if -s argument is not given
-if [ -z "$SPACES" ]; then
-	files=`echo "$files" |sed "s/ /, /g"`
-fi
-
-# show modifications
-if [ -n "$files" ]; then
-	echo 'Changes:'
-	if [ -z $SPACES ]; then
-		files="${files}:"
-	fi
-	# indent and wrap
-	OUTFILE=/tmp/fmt
-	echo -n '   '$files | fmt -w 72 >$OUTFILE
-	# put ' * ' for first line
-	cat $OUTFILE | sed '1s/   / * /'
-else
-	echo 'No changes.'
-fi
-
-# warn about anything that isn't a modification or addition
-if [ -n "$QUIET" ]; then
-	exit
-fi
-warn=`echo "$status" |egrep '^[^MA]'`
-if [ -n "$warn" ]; then
-	echo 'Warnings:'
-	echo $warn
-else
-	echo 'No warnings.'
-fi


@@ Diff output truncated at 100000 characters. @@


--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).



More information about the Commits mailing list