]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove ancient untouched legacy svn files
authordrjaska <drjaska83@gmail.com>
Wed, 4 Sep 2024 14:49:42 +0000 (17:49 +0300)
committerdrjaska <drjaska83@gmail.com>
Wed, 4 Sep 2024 14:49:42 +0000 (17:49 +0300)
eol-style.txt [deleted file]
find-eol-style.sh [deleted file]

diff --git a/eol-style.txt b/eol-style.txt
deleted file mode 100644 (file)
index 357f3c0..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-animinfo 1
-ase 0
-bgs 1
-blend 0
-bsp 0
-c 1
-cache 0
-cbp 0
-cfg 1
-db 0
-def 1
-dem 0
-dpm 0
-framegroups 1
-h 1
-hardwired 1
-inc 1
-instantaction 1
-jpg 0
-lmp 0
-Makefile 1
-makespr32 1
-map 0
-mapinfo 1
-md3 0
-mdl 0
-modinfo 1
-obj 0
-ogg 0
-options 1
-pcx 0
-pk3 0
-pl 1
-png 0
-proj 1
-psd 0
-qc 1
-qh 1
-rb 1
-rc 1
-rtlights 0
-sh 1
-shader 1
-skin 1
-sounds 1
-sp2 0
-spr 0
-spr32 0
-src 1
-svg 0
-tga 0
-txt 1
-wav 0
-waypoints 0
-width 1
-zym 0
diff --git a/find-eol-style.sh b/find-eol-style.sh
deleted file mode 100755 (executable)
index 509ce12..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-allstatus=$(
-       find . -name .svn -prune -o -type f -print | while IFS= read -r LINE; do
-               ext=${LINE##*/}
-               ext=${ext##*.}
-               if s=`svn propget svn:eol-style "$LINE"`; then
-                       case "$s" in
-                               *native*)
-                                       echo "$ext 1"
-                                       ;;
-                               *)
-                                       echo "$ext 0"
-                                       ;;
-                       esac
-               fi
-       done | sort -u
-)
-
-mixed=`echo "$allstatus" | rev | cut -c 3- | rev | uniq -d`
-if [ -n "$mixed" ]; then
-       echo "The following file extensions need to be manually fixed:"
-       echo "$mixed"
-       exit 1
-fi
-
-echo "$allstatus" > eol-style.txt