Re: [arch-projects] [mkinitcpio] [PATCH 1/1] support zstd compression

2020-08-14 Thread Morten Linderud via arch-projects
On Fri, Aug 14, 2020 at 02:44:46PM +0200, Christian Hesse wrote:
> From: Christian Hesse 
> 
> Linux 5.9 supports zstd compressed initramfs, so add support here.

Just a headsup that there is a pull-request on github with changes to support
this.

https://github.com/archlinux/mkinitcpio/pull/35

-- 
Morten Linderud
PGP: 9C02FF419FECBE16


signature.asc
Description: PGP signature


[arch-projects] [devtools] [PATCH v2] Expand check_root keepenv variables

2018-12-21 Thread Morten Linderud via arch-projects
From: Morten Linderud 

Les us source makepkg.conf settings from the environemnt. This also includes
`GNUPGHOME` which is present in `makechrootpkg`, but not included in archbuild.

Signed-off-by: Morten Linderud 
---
 archbuild.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/archbuild.in b/archbuild.in
index 1e5b582..bd5706d 100644
--- a/archbuild.in
+++ b/archbuild.in
@@ -39,7 +39,7 @@ while getopts 'hcr:' arg; do
esac
 done
 
-check_root SOURCE_DATE_EPOCH
+check_root 
SOURCE_DATE_EPOCH,SRCDEST,SRCPKGDEST,PKGDEST,LOGDEST,MAKEFLAGS,PACKAGER,GNUPGHOME
 
 # Pass all arguments after -- right to makepkg
 makechrootpkg_args+=("${@:$OPTIND}")
-- 
2.20.1


[arch-projects] [devtools] [PATCH] Expand check_root keepenv variables

2018-07-23 Thread Morten Linderud via arch-projects
From: Morten Linderud 

makechrootpkg checks the environment for multiple variables before
overwriting them with makepkg.conf configurations. Expand check_root
with the variables makechrootpkg check for so we are capable of
overwriting them when needed.

Signed-off-by: Morten Linderud 
---
 archbuild.in| 2 +-
 lib/archroot.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/archbuild.in b/archbuild.in
index 1e5b582..6f22b12 100644
--- a/archbuild.in
+++ b/archbuild.in
@@ -39,7 +39,7 @@ while getopts 'hcr:' arg; do
esac
 done
 
-check_root SOURCE_DATE_EPOCH
+check_root SOURCE_DATE_EPOCH SRCDEST SRCPKGDEST PKGDEST LOGDEST MAKEFLAGS 
PACKAGER
 
 # Pass all arguments after -- right to makepkg
 makechrootpkg_args+=("${@:$OPTIND}")
diff --git a/lib/archroot.sh b/lib/archroot.sh
index f279603..82276e2 100644
--- a/lib/archroot.sh
+++ b/lib/archroot.sh
@@ -10,7 +10,7 @@ CHROOT_VERSION='v4'
 ##
 orig_argv=("$0" "$@")
 check_root() {
-   local keepenv=$1
+   local keepenv=$(tr " " "," <<< $@)
 
(( EUID == 0 )) && return
if type -P sudo >/dev/null; then
-- 
2.18.0


[arch-projects] [archweb][PATCH] Added arch security tracker to navbar

2017-01-22 Thread Morten Linderud
Signed-off-by: Morten Linderud <mor...@linderud.pw>
---
 templates/base.html | 1 +
 1 file changed, 1 insertion(+)

diff --git a/templates/base.html b/templates/base.html
index fae2037..02a29a8 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -23,6 +23,7 @@
 https://bbs.archlinux.org/; 
title="Community forums">Forums
 https://wiki.archlinux.org/; 
title="Community documentation">Wiki
 https://bugs.archlinux.org/; 
title="Report and track bugs">Bugs
+https://security.archlinux.org/; title="Arch Linux Security 
Tracker">Security
 https://aur.archlinux.org/; 
title="Arch Linux User Repository">AUR
 Download
 
-- 
2.11.0


Re: [arch-projects] [archweb][PATCH] Added security tracker into navbar

2017-01-22 Thread Morten Linderud
On Sun, Jan 22, 2017 at 07:30:59PM +0100, Johannes Löthberg via arch-projects 
wrote:
> On 20/01, Jelle van der Waa wrote:
> > On 01/19/17 at 11:28pm, Morten Linderud wrote:
> > > Signed-off-by: Morten Linderud <mor...@linderud.pw>
> > > ---
> > >  web/template/cgit/header.html | 1 +
> > >  web/template/header.php   | 1 +
> > 
> > This patch should go to aur-...@archlinux.org, since it's touching the
> > AUR and not archweb. Archweb is the django website which is written in
> > Python :) [1]
> > 
> > [1] https://git.archlinux.org/archweb.git/
> > 
> 
> (Though the changes should happen in both.)
> 

(Has patches for everything. Global Game Jam just got inn the way)


-- 
Morten Linderud

PGP: 9C02FF419FECBE16


signature.asc
Description: PGP signature


[arch-projects] [archweb][PATCH] Added security tracker into navbar

2017-01-19 Thread Morten Linderud
Signed-off-by: Morten Linderud <mor...@linderud.pw>
---
 web/template/cgit/header.html | 1 +
 web/template/header.php   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/web/template/cgit/header.html b/web/template/cgit/header.html
index 0217f2f..2d41870 100644
--- a/web/template/cgit/header.html
+++ b/web/template/cgit/header.html
@@ -7,6 +7,7 @@
https://bbs.archlinux.org/; title="Community forums">Forums
https://wiki.archlinux.org/; title="Community documentation">Wiki
https://bugs.archlinux.org/; title="Report and track bugs">Bugs
+   https://security.archlinux.org/; title="Arch Linux Security 
Tracker">Security
AUR
https://www.archlinux.org/download/; title="Get Arch 
Linux">Download

diff --git a/web/template/header.php b/web/template/header.php
index 874109a..48d2654 100644
--- a/web/template/header.php
+++ b/web/template/header.php
@@ -24,6 +24,7 @@
https://bbs.archlinux.org/; title="Community forums">Forums
https://wiki.archlinux.org/; title="Community documentation">Wiki
https://bugs.archlinux.org/; title="Report and track bugs">Bugs
+   https://security.archlinux.org/; title="Arch Linux Security 
Tracker">Security
AUR
https://www.archlinux.org/download/; title="Get Arch 
Linux">Download

-- 
2.11.0