mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge remote-tracking branch 'origin/migrate-to-bookworm' into bookworm
This commit is contained in:
commit
bb4f9cc1da
4 changed files with 37 additions and 9 deletions
28
debian/changelog
vendored
28
debian/changelog
vendored
|
@ -4,6 +4,33 @@ yunohost (12.0.0) unstable; urgency=low
|
||||||
|
|
||||||
-- Alexandre Aubin <alex.aubin@mailoo.org> Thu, 04 May 2023 20:30:19 +0200
|
-- Alexandre Aubin <alex.aubin@mailoo.org> Thu, 04 May 2023 20:30:19 +0200
|
||||||
|
|
||||||
|
yunohost (11.2.14.1) stable; urgency=low
|
||||||
|
|
||||||
|
- helpers: Fix typo in ynh_read_manifest documentation ([#1866](http://github.com/YunoHost/yunohost/pull/1866))
|
||||||
|
- helpers/go: fix goenv call ([#1868](http://github.com/YunoHost/yunohost/pull/1868))
|
||||||
|
|
||||||
|
Thanks to all contributors <3 ! (Chris Vogel, clecle226, Félix Piédallu, OniriCorpe)
|
||||||
|
|
||||||
|
-- Alexandre Aubin <alex.aubin@mailoo.org> Mon, 10 Jun 2024 12:34:25 +0200
|
||||||
|
|
||||||
|
yunohost (11.2.14) testing; urgency=low
|
||||||
|
|
||||||
|
- helpers/go: fix missing git fetch (5676a7275)
|
||||||
|
|
||||||
|
-- Félix Piédallu <felix@piedallu.me> Wed, 05 Jun 2024 15:52:06 +0200
|
||||||
|
|
||||||
|
yunohost (11.2.13) stable; urgency=low
|
||||||
|
|
||||||
|
- helpers: add a --jinja option to ynh_add_config ([#1851](http://github.com/YunoHost/yunohost/pull/1851))
|
||||||
|
- helpers: add mongodb helpers ([#1844](http://github.com/YunoHost/yunohost/pull/1844))
|
||||||
|
- helpers: update getopts to accept arguments that are valid arguments to echo ([#1847](http://github.com/YunoHost/yunohost/pull/1847))
|
||||||
|
- helpers: create versionned directories of the helpers ([#1717](http://github.com/YunoHost/yunohost/pull/1717))
|
||||||
|
- helpers: fix goenv broken when checking out latest master commit ([#1863](http://github.com/YunoHost/yunohost/pull/1863))
|
||||||
|
|
||||||
|
Thanks to all contributors <3 ! (alexAubin, Chris Vogel, Félix Piédallu, Josué Tille, Salamandar, tituspijean)
|
||||||
|
|
||||||
|
-- Alexandre Aubin <alex.aubin@mailoo.org> Tue, 04 Jun 2024 16:43:42 +0200
|
||||||
|
|
||||||
yunohost (11.2.12) stable; urgency=low
|
yunohost (11.2.12) stable; urgency=low
|
||||||
|
|
||||||
- doc: Remove internal/packagingv1 helpers from helpers doc ([#1832](http://github.com/YunoHost/yunohost/pull/1832))
|
- doc: Remove internal/packagingv1 helpers from helpers doc ([#1832](http://github.com/YunoHost/yunohost/pull/1832))
|
||||||
|
@ -5143,4 +5170,3 @@ moulinette-yunohost (1.0~megusta1) megusta; urgency=low
|
||||||
* Init
|
* Init
|
||||||
|
|
||||||
-- Adrien Beudin <beudbeud@yunohost.org> Thu, 15 May 2014 13:16:03 +0200
|
-- Adrien Beudin <beudbeud@yunohost.org> Thu, 15 May 2014 13:16:03 +0200
|
||||||
|
|
||||||
|
|
|
@ -128,15 +128,17 @@ ynh_install_go () {
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Install or update xxenv-latest
|
# Install or update xxenv-latest
|
||||||
mkdir -p "$goenv_install_dir/plugins/xxenv-latest"
|
goenv_latest_dir="$goenv_install_dir/plugins/xxenv-latest"
|
||||||
pushd "$goenv_install_dir/plugins/xxenv-latest"
|
mkdir -p "$goenv_latest_dir"
|
||||||
if ! [ -x "$goenv_install_dir/plugins/xxenv-latest/bin/goenv-latest" ]; then
|
pushd "$goenv_latest_dir"
|
||||||
|
if ! [ -x "$goenv_latest_dir/bin/goenv-latest" ]; then
|
||||||
ynh_print_info --message="Downloading xxenv-latest..."
|
ynh_print_info --message="Downloading xxenv-latest..."
|
||||||
git init -q
|
git init -q
|
||||||
git remote add origin https://github.com/momo-lab/xxenv-latest.git
|
git remote add origin https://github.com/momo-lab/xxenv-latest.git
|
||||||
else
|
else
|
||||||
ynh_print_info --message="Updating xxenv-latest..."
|
ynh_print_info --message="Updating xxenv-latest..."
|
||||||
fi
|
fi
|
||||||
|
git fetch -q --tags --prune origin
|
||||||
local git_latest_tag=$(git describe --tags "$(git rev-list --tags --max-count=1)")
|
local git_latest_tag=$(git describe --tags "$(git rev-list --tags --max-count=1)")
|
||||||
git checkout -q "$git_latest_tag"
|
git checkout -q "$git_latest_tag"
|
||||||
popd
|
popd
|
||||||
|
@ -154,7 +156,7 @@ ynh_install_go () {
|
||||||
test -x /usr/bin/go_goenv && mv /usr/bin/go_goenv /usr/bin/go
|
test -x /usr/bin/go_goenv && mv /usr/bin/go_goenv /usr/bin/go
|
||||||
|
|
||||||
# Install the requested version of Go
|
# Install the requested version of Go
|
||||||
local final_go_version=$(goenv latest --print "$go_version")
|
local final_go_version=$("$goenv_latest_dir/bin/goenv-latest" --print "$go_version")
|
||||||
ynh_print_info --message="Installation of Go-$final_go_version"
|
ynh_print_info --message="Installation of Go-$final_go_version"
|
||||||
goenv install --skip-existing "$final_go_version"
|
goenv install --skip-existing "$final_go_version"
|
||||||
|
|
||||||
|
|
|
@ -943,9 +943,9 @@ ynh_secure_remove() {
|
||||||
|
|
||||||
# Read the value of a key in a ynh manifest file
|
# Read the value of a key in a ynh manifest file
|
||||||
#
|
#
|
||||||
# usage: ynh_read_manifest --manifest="manifest.json" --key="key"
|
# usage: ynh_read_manifest --manifest="manifest.json" --manifest_key="key"
|
||||||
# | arg: -m, --manifest= - Path of the manifest to read
|
# | arg: -m, --manifest= - Path of the manifest to read
|
||||||
# | arg: -k, --key= - Name of the key to find
|
# | arg: -k, --manifest_key= - Name of the key to find
|
||||||
# | ret: the value associate to that key
|
# | ret: the value associate to that key
|
||||||
#
|
#
|
||||||
# Requires YunoHost version 3.5.0 or higher.
|
# Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
VERSION="?"
|
VERSION="?"
|
||||||
RELEASE="testing"
|
RELEASE="stable"
|
||||||
REPO=$(basename $(git rev-parse --show-toplevel))
|
REPO=$(basename $(git rev-parse --show-toplevel))
|
||||||
REPO_URL=$(git remote get-url origin)
|
REPO_URL=$(git remote get-url origin)
|
||||||
ME=$(git config --get user.name)
|
ME=$(git config --get user.name)
|
||||||
|
|
Loading…
Add table
Reference in a new issue