From ffd2d9c9d7f26ed5ec5e9ed6ae942efc9555582f Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Wed, 8 Apr 2020 23:30:12 +0200 Subject: [PATCH 1/5] Switch to bullseye --- sources.list.d/whitewaterfoundry.list | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sources.list.d/whitewaterfoundry.list b/sources.list.d/whitewaterfoundry.list index 064f08b..d3334e3 100644 --- a/sources.list.d/whitewaterfoundry.list +++ b/sources.list.d/whitewaterfoundry.list @@ -1,8 +1,8 @@ -deb https://packagecloud.io/whitewaterfoundry/pengwin-base/debian/ buster main -#deb-src https://packagecloud.io/whitewaterfoundry/pengwin-base/debian/ buster main +deb https://packagecloud.io/whitewaterfoundry/pengwin-base/debian/ bullseye main +#deb-src https://packagecloud.io/whitewaterfoundry/pengwin-base/debian/ bullseye main -deb https://packagecloud.io/whitewaterfoundry/pengwin-setup/debian/ buster main -#deb-src https://packagecloud.io/whitewaterfoundry/pengwin-setup/debian/ buster main +deb https://packagecloud.io/whitewaterfoundry/pengwin-setup/debian/ bullseye main +#deb-src https://packagecloud.io/whitewaterfoundry/pengwin-setup/debian/ bullseye main deb https://packagecloud.io/whitewaterfoundry/wslu/debian/ bullseye main #deb-src https://packagecloud.io/whitewaterfoundry/wslu/debian/ bullseye main From ede2eb705ef44d05b5f6abb86818000b1fdf78d4 Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Wed, 8 Apr 2020 23:32:22 +0200 Subject: [PATCH 2/5] Switch main repositories to bullseye --- sources.list | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/sources.list b/sources.list index a7a3cf3..4d0fe8c 100644 --- a/sources.list +++ b/sources.list @@ -1,11 +1,8 @@ -deb https://deb.debian.org/debian testing main contrib non-free -# deb-src https://deb.debian.org/debian testing main +deb https://deb.debian.org/debian bullseye main contrib non-free +# deb-src https://deb.debian.org/debian bullseye main -deb https://deb.debian.org/debian testing-updates main -# deb-src https://deb.debian.org/debian testing-updates main +deb https://deb.debian.org/debian bullseye-updates main +# deb-src https://deb.debian.org/debian bullseye-updates main -deb https://deb.debian.org/debian-security testing-security main -# deb-src https://deb.debian.org/debian-security testing-security main - -deb https://deb.debian.org/debian/ unstable main contrib non-free -# deb-src https://deb.debian.org/debian/ unstable main contrib non-free +deb https://deb.debian.org/debian-security bullseye-security main +# deb-src https://deb.debian.org/debian-security bullseye-security main From fcb110783bb2ae73a3c018ff4232ac1b3aa2503c Mon Sep 17 00:00:00 2001 From: Jiro Kugiya Date: Thu, 9 Apr 2020 20:45:23 +0900 Subject: [PATCH 3/5] fix: Avoid bad math expression in zsh --- profile.d/00-pengwin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile.d/00-pengwin.sh b/profile.d/00-pengwin.sh index d4d9904..8e01ba3 100644 --- a/profile.d/00-pengwin.sh +++ b/profile.d/00-pengwin.sh @@ -19,7 +19,7 @@ if [ -n "${WSL_INTEROP}" ]; then if [ -n "${wsl2_d_tmp}" ]; then - wsl2_d_tmp="$(eval "$ipconfig_exec" | sed "$(("$wsl2_d_tmp" - 4))"','"$(("$wsl2_d_tmp" + 0))"'!d' | grep IPv4 | cut -d : -f 2 | sed -e "s|\s||g" -e "s|\r||g")" + wsl2_d_tmp="$(eval "$ipconfig_exec" | sed "$(($wsl2_d_tmp - 4))"','"$(($wsl2_d_tmp + 0))"'!d' | grep IPv4 | cut -d : -f 2 | sed -e "s|\s||g" -e "s|\r||g")" export DISPLAY=${wsl2_d_tmp}:0.0 # check if the type is changed From 0ac298b6bc5bbb980971178d5327a8cc7b8947b8 Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Thu, 9 Apr 2020 21:14:29 +0200 Subject: [PATCH 4/5] Code clean up --- profile.d/00-pengwin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile.d/00-pengwin.sh b/profile.d/00-pengwin.sh index 8e01ba3..dc78eac 100644 --- a/profile.d/00-pengwin.sh +++ b/profile.d/00-pengwin.sh @@ -19,7 +19,7 @@ if [ -n "${WSL_INTEROP}" ]; then if [ -n "${wsl2_d_tmp}" ]; then - wsl2_d_tmp="$(eval "$ipconfig_exec" | sed "$(($wsl2_d_tmp - 4))"','"$(($wsl2_d_tmp + 0))"'!d' | grep IPv4 | cut -d : -f 2 | sed -e "s|\s||g" -e "s|\r||g")" + wsl2_d_tmp="$(eval "$ipconfig_exec" | sed "$((wsl2_d_tmp - 4))"','"$((wsl2_d_tmp + 0))"'!d' | grep IPv4 | cut -d : -f 2 | sed -e "s|\s||g" -e "s|\r||g")" export DISPLAY=${wsl2_d_tmp}:0.0 # check if the type is changed From c4dfb029be0e887146a0676b63ebf873d1923607 Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Thu, 9 Apr 2020 21:16:58 +0200 Subject: [PATCH 5/5] Update pengwin version --- os-release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os-release b/os-release index 2d4a005..0643495 100644 --- a/os-release +++ b/os-release @@ -8,4 +8,4 @@ HOME_URL="https://github.com/whitewaterfoundry/Pengwin" SUPPORT_URL="https://github.com/WhitewaterFoundry/Pengwin/issues" BUG_REPORT_URL="https://github.com/WhitewaterFoundry/Pengwin/issues" VERSION_CODENAME=bullseye -PENGWIN_VERSION="20.04.0" +PENGWIN_VERSION="20.04.1"