Remove redundant files
authorColin Clark <colin.clark@cclark.uk>
Wed, 12 Jul 2023 11:05:37 +0000 (12:05 +0100)
committerColin Clark <colin.clark@cclark.uk>
Wed, 12 Jul 2023 11:05:37 +0000 (12:05 +0100)
scripts/check-compiles.sh [deleted file]
scripts/geeqie.cppcheck [deleted file]

diff --git a/scripts/check-compiles.sh b/scripts/check-compiles.sh
deleted file mode 100755 (executable)
index f098b6a..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/bin/sh
-
-#/*
-# * Copyright (C) 2022 The Geeqie Team
-# *
-# * Author: Colin Clark  
-# *  
-# * This program is free software; you can redistribute it and/or modify
-# * it under the terms of the GNU General Public License as published by
-# * the Free Software Foundation; either version 2 of the License, or
-# * (at your option) any later version.
-# *
-# * This program is distributed in the hope that it will be useful,
-# * but WITHOUT ANY WARRANTY; without even the implied warranty of
-# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# * GNU General Public License for more details.
-# *
-# * You should have received a copy of the GNU General Public License along
-# * with this program; if not, write to the Free Software Foundation, Inc.,
-# * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-# */
-
-## @file
-## @brief Check that Geeqie compiles with both gcc and clang,
-## for GTK3, and with and without optional modules.
-## 
-
-compile()
-{
-compiler="$1"
-rm -r build > /dev/null 2>&1
-meson setup build > /dev/null 2>&1
-
-printf '\e[32m%s\n' "$compiler all disabled"
-meson configure --auto-features disabled build
-
-if (! ninja -C build clean > /dev/null 2>&1)
-then
-       echo "ERROR"
-fi
-if (! ninja -C build > /dev/null 2>&1)
-then
-       echo "ERROR"
-fi
-
-printf '\e[32m%s\n' "$compiler none disabled"
-meson configure --auto-features auto build
-
-if (! ninja -C build clean > /dev/null 2>&1)
-then
-       echo "ERROR"
-fi
-if (! ninja -C build > /dev/null 2>&1)
-then
-       echo "ERROR"
-fi
-}
-
-export CC=clang
-export CXX=clang++
-compile "clang"
-
-export CC=
-export CXX=
-compile "gcc"
diff --git a/scripts/geeqie.cppcheck b/scripts/geeqie.cppcheck
deleted file mode 100644 (file)
index f89e8eb..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="1">
-    <builddir>../geeqie-cppcheck-build-dir</builddir>
-    <platform>Unspecified</platform>
-    <analyze-all-vs-configs>false</analyze-all-vs-configs>
-    <check-headers>true</check-headers>
-    <check-unused-templates>true</check-unused-templates>
-    <max-ctu-depth>2</max-ctu-depth>
-    <max-template-recursion>100</max-template-recursion>
-    <includedir>
-        <dir name="src/"/>
-    </includedir>
-    <defines>
-        <define name="FILEDATA_MARKS_SIZE=10"/>
-        <define name="HAVE_ARCHIVE"/>
-        <define name="HAVE_CLUTTER"/>
-        <define name="HAVE_DJVU"/>
-        <define name="HAVE_DEVELOPER"/>
-        <define name="HAVE_EXECINFO_H"/>
-        <define name="HAVE_EXIV2"/>
-        <define name="HAVE_EXIV2_ERROR_CODE"/>
-        <define name="HAVE_FFLUSH"/>
-        <define name="HAVE_FFMPEGTHUMBNAILER"/>
-        <define name="HAVE_FFMPEGTHUMBNAILER_METADATA"/>
-        <define name="HAVE_FFMPEGTHUMBNAILER_RGB"/>
-        <define name="HAVE_FFMPEGTHUMBNAILER_WH"/>
-        <define name="HAVE_FSYNC"/>
-        <define name="HAVE_HEIF"/>
-        <define name="HAVE_J2K"/>
-        <define name="HAVE_JPEG"/>
-        <define name="HAVE_JPEGXL"/>
-        <define name="HAVE_LCMS"/>
-        <define name="HAVE_LCMS2"/>
-        <define name="HAVE_LIBCHAMPLAIN"/>
-        <define name="HAVE_LIBCHAMPLAIN_GTK"/>
-        <define name="HAVE_LUA"/>
-        <define name="HAVE_PDF"/>
-        <define name="HAVE_RAW"/>
-        <define name="HAVE_SPELL"/>
-        <define name="HAVE_TIFF"/>
-    </defines>
-    <undefines>
-        <undefine>ENABLE_NLS</undefine>
-        <undefine>G_KEY_FILE_DESKTOP_GROUP</undefine>
-        <undefine>HAVE__NL_TIME_FIRST_WEEKDAY</undefine>
-        <undefine>UNUSED</undefine>
-        <undefine>ZD_EXPORT</undefine>
-    </undefines>
-    <paths>
-        <dir name="../src"/>
-    </paths>
-    <libraries>
-        <library>cairo</library>
-        <library>gnu</library>
-        <library>gtk</library>
-        <library>lua</library>
-        <library>posix</library>
-    </libraries>
-    <suppressions>
-        <suppression fileName="*" symbolName="*">variableScope</suppression>
-    </suppressions>
-</project>