From a72b515d5b72fd700b3c343ebc348f3872bd608b Mon Sep 17 00:00:00 2001 From: nowrep Date: Sun, 6 Nov 2011 17:13:18 +0100 Subject: [PATCH] Another previous commit fix... Deleting unneeded files + backup files from Gedit (file + ~) --- scripts/coding_style.sh~ | 27 --------------------------- scripts/cppcheck.sh~ | 18 ------------------ scripts/make-ca-bundle.sh~ | 2 -- scripts/updatePluginTranslations.sh | 8 -------- scripts/updateTranslations-safe.sh | 24 ------------------------ scripts/updateTranslations.sh | 24 ------------------------ 6 files changed, 103 deletions(-) delete mode 100755 scripts/coding_style.sh~ delete mode 100755 scripts/cppcheck.sh~ delete mode 100755 scripts/make-ca-bundle.sh~ delete mode 100755 scripts/updatePluginTranslations.sh delete mode 100755 scripts/updateTranslations-safe.sh delete mode 100755 scripts/updateTranslations.sh diff --git a/scripts/coding_style.sh~ b/scripts/coding_style.sh~ deleted file mode 100755 index 9d9a26f5c..000000000 --- a/scripts/coding_style.sh~ +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash -# -# Requirements: -# astyle >=2.02 -# - -echo "running astyle for *.cpp ..." - -cd ../src - -astyle --indent=spaces=4 --style=1tbs \ - --indent-labels --pad-oper --unpad-paren --pad-header \ - --convert-tabs --indent-preprocessor \ - --align-pointer=type --align-reference=name \ - `find -type f -name '*.cpp'` - -echo "running astyle for *.h ..." - -astyle --indent=spaces=4 --style=linux \ - --indent-labels --pad-oper --unpad-paren --pad-header \ - --keep-one-line-statements --keep-one-line-blocks \ - --indent-preprocessor --convert-tabs \ - --align-pointer=type --align-reference=name \ - `find -type f -name '*.h'` - -read -p "Press [ENTER] to close terminal" -exit diff --git a/scripts/cppcheck.sh~ b/scripts/cppcheck.sh~ deleted file mode 100755 index f741d68d4..000000000 --- a/scripts/cppcheck.sh~ +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -# -# cppcheck -# - -echo "cppcheck..." -echo "" -echo "" - -cd ../src -cppcheck \ ---enable=all \ ---force \ ---verbose \ -. > /dev/null - -read -p "Press [ENTER] to close terminal" -exit diff --git a/scripts/make-ca-bundle.sh~ b/scripts/make-ca-bundle.sh~ deleted file mode 100755 index b1e5790e9..000000000 --- a/scripts/make-ca-bundle.sh~ +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat /usr/share/ca-certificates/*/*.crt > ../other/ca-bundle.crt diff --git a/scripts/updatePluginTranslations.sh b/scripts/updatePluginTranslations.sh deleted file mode 100755 index 1222dfb8b..000000000 --- a/scripts/updatePluginTranslations.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -lupdate ../plugins/TestPlugin/TestPlugin.pro -no-obsolete -ts ../plugins/TestPlugin/cs_CZ.ts - -lupdate ../plugins/TestPlugin/TestPlugin.pro -no-obsolete -ts ../plugins/TestPlugin/sk_SK.ts - -read -p "Press [ENTER] to close terminal" -exit diff --git a/scripts/updateTranslations-safe.sh b/scripts/updateTranslations-safe.sh deleted file mode 100755 index 580f26e7d..000000000 --- a/scripts/updateTranslations-safe.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -## circular inclusions workaround - we comment that buggy line -sed -i 's/include(3rdparty/##temp/g' ../src/QupZilla.pro - -lupdate ../src/QupZilla.pro -ts ../translations/cs_CZ.ts - -lupdate ../src/QupZilla.pro -ts ../translations/sk_SK.ts - -lupdate ../src/QupZilla.pro -ts ../translations/nl_NL.ts - -lupdate ../src/QupZilla.pro -ts ../translations/de_DE.ts - -lupdate ../src/QupZilla.pro -ts ../translations/es.ts - -lupdate ../src/QupZilla.pro -ts ../translations/it_IT.ts - -lupdate ../src/QupZilla.pro -ts ../translations/zh_CN.ts - -## uncomment it now -sed -i 's/##temp/include(3rdparty/g' ../src/QupZilla.pro - -read -p "Press [ENTER] to close terminal" -exit diff --git a/scripts/updateTranslations.sh b/scripts/updateTranslations.sh deleted file mode 100755 index a130bd136..000000000 --- a/scripts/updateTranslations.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -## circular inclusions workaround - we comment that buggy line -sed -i 's/include(3rdparty/##temp/g' ../src/QupZilla.pro - -lupdate ../src/QupZilla.pro -no-obsolete -ts ../translations/cs_CZ.ts - -lupdate ../src/QupZilla.pro -no-obsolete -ts ../translations/sk_SK.ts - -lupdate ../src/QupZilla.pro -no-obsolete -ts ../translations/nl_NL.ts - -lupdate ../src/QupZilla.pro -no-obsolete -ts ../translations/de_DE.ts - -lupdate ../src/QupZilla.pro -no-obsolete -ts ../translations/es.ts - -lupdate ../src/QupZilla.pro -no-obsolete -ts ../translations/it_IT.ts - -lupdate ../src/QupZilla.pro -no-obsolete -ts ../translations/zh_CN.ts - -## uncomment it now -sed -i 's/##temp/include(3rdparty/g' ../src/QupZilla.pro - -read -p "Press [ENTER] to close terminal" -exit