This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository eflete.

View the commit online.

commit 6fd2a4533bf414d73b3fda5f0dfb7d4c30153e9e
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Wed Oct 9 21:19:45 2024 +0500

    remove old dev helpers
---
 run                      | 104 -----------------------------------------------
 sonar-project.properties |  12 ------
 2 files changed, 116 deletions(-)

diff --git a/run b/run
deleted file mode 100755
index 305987573..000000000
--- a/run
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/bin/bash
-
-NAME=eflete
-BD=./build
-
-remove_build_dir()
-{
-    [ -d ${BD} ] && rm -rf $BD
-}
-
-meson_setup()
-{
-    meson setup . $BD -Dbuildtype=debug -Dwarning_level=2 -Dwerror=true -Dbuild-tests=true
-}
-
-meson_compile()
-{
-    meson compile -C $BD
-}
-
-meson_install()
-{
-    meson install -C $BD
-}
-
-meson_uninstall()
-{
-
-    if [ -d ${BD} ]; then 
-        sudo ninja -C $BD uninstall
-    else
-        echo "Nothing to be done! At first build and install it by './run c && ./run i'"
-    fi
-}
-
-meson_test()
-{
-    if [ -d ${BD} ]; then 
-        meson test -C $BD # be sure that build-tests is true in meson options
-    else
-        echo "Nothing to be done! Needs to be compiled by './run c'"
-    fi
-}
-
-case "$1" in
-    s|setup)
-        remove_build_dir
-        meson_setup
-        ;;
-    c|compile)
-        echo "$NAME: Compilation started"
-        remove_build_dir
-        meson_setup
-        meson_compile
-        echo "$NAME: Compilation finished"
-        ;;
-    i|install)
-        meson_install
-        ;;
-    u|uninstall)
-        meson_uninstall
-        ;;
-    r|run)
-        exec $BD/src/bin/$NAME
-        ;;
-    cl|clear)
-        rm -rf ~/.config/$NAME
-        ;;
-    t|test)
-        meson_test
-        ;;
-    cc|cocci)
-        exec ./scripts/coccinelle/coccicheck.sh
-        ;;
-    cv|coverage)
-        remove_build_dir
-        meson setup . $BD -Db_coverage=true
-        meson_compile
-        meson_test
-        ninja coverage-text -C $BD
-        # ninja coverage-html -C $BD
-        ;;
-    po|translation)
-        ./po/potfiles-update.sh
-        ninja -C $BD po
-        ;;
-    ts|timestamp)
-        find . -exec touch {} \;
-        ;;
-    *)
-        echo "Usage: $0 [cmd]"
-        echo "     s|setup        setup meson build system"
-        echo "     c|compile      compile project using meson"
-        echo "     i|install      install project"
-        echo "     u|uninstall    uninstall project"
-        echo "     r|run          run local executable (in build dir)"
-        echo "    cl|clear        clear (remove) home config dir"
-        echo "     t|test         build tests"
-        echo "    cc|cocci        run coccinelle analysis"
-        echo "    cv|coverage     build coverage report"
-        echo "    po|translation  build (update) localization files"
-        echo "    ts|timestemp    update access time of each file"
-        ;;
-esac
diff --git a/sonar-project.properties b/sonar-project.properties
deleted file mode 100644
index ef71a7bf2..000000000
--- a/sonar-project.properties
+++ /dev/null
@@ -1,12 +0,0 @@
-sonar.projectKey=dimmus_eflete
-sonar.organization=dimmus
-
-# This is the name and version displayed in the SonarCloud UI.
-#sonar.projectName=eflete
-#sonar.projectVersion=1.0
-
-# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
-#sonar.sources=.
-
-# Encoding of the source code. Default is default system encoding
-#sonar.sourceEncoding=UTF-8

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to