update migration to meta-tech.academy
This commit is contained in:
parent
1ee9ac25e7
commit
98dd0da601
10
README.md
10
README.md
|
@ -66,7 +66,7 @@ to use **bes-build** like a dependency manager, you need a `bes.ini` file in you
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[require]
|
[require]
|
||||||
bes.echo = 1.3
|
bes.echo = 1.4
|
||||||
```
|
```
|
||||||
|
|
||||||
then you can run the `update` command before building
|
then you can run the `update` command before building
|
||||||
|
@ -86,7 +86,7 @@ since version 0.6 you can now add external dependencies :
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[require]
|
[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]
|
[project]
|
||||||
vendor = bes
|
vendor = bes
|
||||||
name = echo
|
name = echo
|
||||||
version = 1.3
|
version = 1.4
|
||||||
license = "GNU GPL v3"
|
license = "GNU GPL v3"
|
||||||
author = a-Sansara
|
author = a-Sansara
|
||||||
type = library
|
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"
|
description = "bash bes display utility library"
|
||||||
keywords = "bash, bes"
|
keywords = "bash, bes"
|
||||||
|
|
||||||
[require]
|
[require]
|
||||||
bes.color = 1.3
|
bes.color = 1.4
|
||||||
```
|
```
|
||||||
|
|
2
bes.ini
2
bes.ini
|
@ -5,7 +5,7 @@ version = 0.13
|
||||||
license = "GNU GPL v3"
|
license = "GNU GPL v3"
|
||||||
author = a-Sansara
|
author = a-Sansara
|
||||||
type = application
|
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"
|
description = "bash bes build application for bash programs"
|
||||||
keywords = "bash, bes, build"
|
keywords = "bash, bes, build"
|
||||||
|
|
||||||
|
|
6
dist/bes-build
vendored
6
dist/bes-build
vendored
|
@ -928,7 +928,7 @@ function bes.loadDep ()
|
||||||
cd "$APP_DIR/vendor/$vendor"
|
cd "$APP_DIR/vendor/$vendor"
|
||||||
echo.action "updating repository $Cusa$vendor.$project ${Coff}:$Cusa $version"
|
echo.action "updating repository $Cusa$vendor.$project ${Coff}:$Cusa $version"
|
||||||
if [ ! -d "$project" ]; then
|
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 $?
|
#~ echo.state $?
|
||||||
cd $project
|
cd $project
|
||||||
else
|
else
|
||||||
|
@ -1034,7 +1034,7 @@ function bes.usage ()
|
||||||
bes.boot
|
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
|
# @app bes-build
|
||||||
# @license GNU GPL v3
|
# @license GNU GPL v3
|
||||||
# @date 2017-06-16 04:38:52 CET
|
# @date 2017-06-16 04:38:52 CET
|
||||||
|
@ -1042,7 +1042,7 @@ bes.boot
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
BES_VERSION=0.13
|
BES_VERSION=0.13
|
||||||
BES_NAME="bes-build"
|
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_DIR=$(pwd)
|
||||||
APP_NAME=$(basename $(pwd))
|
APP_NAME=$(basename $(pwd))
|
||||||
APP_BIN=$APP_DIR/dist/$APP_NAME
|
APP_BIN=$APP_DIR/dist/$APP_NAME
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/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
|
# @app bes-build
|
||||||
# @license GNU GPL v3
|
# @license GNU GPL v3
|
||||||
# @date 2017-06-16 04:38:52 CET
|
# @date 2017-06-16 04:38:52 CET
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
BES_VERSION=0.13
|
BES_VERSION=0.13
|
||||||
BES_NAME="bes-build"
|
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_DIR=$(pwd)
|
||||||
APP_NAME=$(basename $(pwd))
|
APP_NAME=$(basename $(pwd))
|
||||||
APP_BIN=$APP_DIR/dist/$APP_NAME
|
APP_BIN=$APP_DIR/dist/$APP_NAME
|
||||||
|
|
|
@ -90,7 +90,7 @@ function bes.loadDep ()
|
||||||
cd "$APP_DIR/vendor/$vendor"
|
cd "$APP_DIR/vendor/$vendor"
|
||||||
echo.action "updating repository $Cusa$vendor.$project ${Coff}:$Cusa $version"
|
echo.action "updating repository $Cusa$vendor.$project ${Coff}:$Cusa $version"
|
||||||
if [ ! -d "$project" ]; then
|
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 $?
|
#~ echo.state $?
|
||||||
cd $project
|
cd $project
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue
Block a user