From 98dd0da6011da02e3fef8dfbbe020ffed80fc523 Mon Sep 17 00:00:00 2001 From: mahdi Date: Sun, 6 Nov 2022 23:23:40 +0100 Subject: [PATCH] update migration to meta-tech.academy --- README.md | 10 +++++----- bes.ini | 2 +- dist/bes-build | 6 +++--- src/main.sh | 4 ++-- src/update.sh | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 98acd0c..1d5de5c 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ to use **bes-build** like a dependency manager, you need a `bes.ini` file in you ```ini [require] -bes.echo = 1.3 +bes.echo = 1.4 ``` then you can run the `update` command before building @@ -86,7 +86,7 @@ since version 0.6 you can now add external dependencies : ```ini [require] -test.echo = https://git.pluie.org/meta-tech/bes-echo:master +test.echo = https://gitea.meta-tech.academy/meta-tech/bes-echo:master ``` @@ -99,14 +99,14 @@ if you intend to release your lib as a bes dependency you must provide a bes.ini [project] vendor = bes name = echo -version = 1.3 +version = 1.4 license = "GNU GPL v3" author = a-Sansara type = library -homepage = "https://git.pluie.org/meta-tech/bes-echo" +homepage = "https://gitea.meta-tech.academy/meta-tech/bes-echo" description = "bash bes display utility library" keywords = "bash, bes" [require] -bes.color = 1.3 +bes.color = 1.4 ``` diff --git a/bes.ini b/bes.ini index 1967c86..aad2d54 100644 --- a/bes.ini +++ b/bes.ini @@ -5,7 +5,7 @@ version = 0.13 license = "GNU GPL v3" author = a-Sansara type = application -homepage = "https://git.pluie.org/meta-tech/bes-build" +homepage = "https://gitea.meta-tech.academy/meta-tech/bes-build" description = "bash bes build application for bash programs" keywords = "bash, bes, build" diff --git a/dist/bes-build b/dist/bes-build index b07ce82..46340de 100755 --- a/dist/bes-build +++ b/dist/bes-build @@ -928,7 +928,7 @@ function bes.loadDep () cd "$APP_DIR/vendor/$vendor" echo.action "updating repository $Cusa$vendor.$project ${Coff}:$Cusa $version" if [ ! -d "$project" ]; then - git clone -q "https://git.pluie.org/meta-tech/$vendor-$project" "$project" 2>&1 >/dev/null + git clone -q "https://gitea.meta-tech.academy/meta-tech/$vendor-$project" "$project" 2>&1 >/dev/null #~ echo.state $? cd $project else @@ -1034,7 +1034,7 @@ function bes.usage () bes.boot # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -# @author a-Sansara - https://git.pluie.org/meta-tech/bes-build +# @author a-Sansara - https://gitea.meta-tech.academy/meta-tech/bes-build # @app bes-build # @license GNU GPL v3 # @date 2017-06-16 04:38:52 CET @@ -1042,7 +1042,7 @@ bes.boot # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BES_VERSION=0.13 BES_NAME="bes-build" - BES_URL="https://git.pluie.org/meta-tech/$BES_NAME/raw/latest/dist/$BES_NAME" + BES_URL="https://gitea.meta-tech.academy/meta-tech/$BES_NAME/raw/latest/dist/$BES_NAME" APP_DIR=$(pwd) APP_NAME=$(basename $(pwd)) APP_BIN=$APP_DIR/dist/$APP_NAME diff --git a/src/main.sh b/src/main.sh index 6b5c0b2..10be78e 100755 --- a/src/main.sh +++ b/src/main.sh @@ -1,7 +1,7 @@ #!/bin/bash # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -# @author a-Sansara - https://git.pluie.org/meta-tech/bes-build +# @author a-Sansara - https://gitea.meta-tech.academy/meta-tech/bes-build # @app bes-build # @license GNU GPL v3 # @date 2017-06-16 04:38:52 CET @@ -9,7 +9,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BES_VERSION=0.13 BES_NAME="bes-build" - BES_URL="https://git.pluie.org/meta-tech/$BES_NAME/raw/latest/dist/$BES_NAME" + BES_URL="https://gitea.meta-tech.academy/meta-tech/$BES_NAME/raw/latest/dist/$BES_NAME" APP_DIR=$(pwd) APP_NAME=$(basename $(pwd)) APP_BIN=$APP_DIR/dist/$APP_NAME diff --git a/src/update.sh b/src/update.sh index 87dc886..1a4077b 100644 --- a/src/update.sh +++ b/src/update.sh @@ -90,7 +90,7 @@ function bes.loadDep () cd "$APP_DIR/vendor/$vendor" echo.action "updating repository $Cusa$vendor.$project ${Coff}:$Cusa $version" if [ ! -d "$project" ]; then - git clone -q "https://git.pluie.org/meta-tech/$vendor-$project" "$project" 2>&1 >/dev/null + git clone -q "https://gitea.meta-tech.academy/meta-tech/$vendor-$project" "$project" 2>&1 >/dev/null #~ echo.state $? cd $project else