Github messages for voidlinux
 help / color / mirror / Atom feed
From: dkwo <dkwo@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] incus: update to 6.2
Date: Wed, 05 Jun 2024 19:17:25 +0200	[thread overview]
Message-ID: <20240605171726.9FD0229C23@inbox.vuxu.org> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-50251@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 309 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages incus
https://github.com/void-linux/void-packages/pull/50251

incus: update to 6.2
Tested.

A patch file from https://github.com/void-linux/void-packages/pull/50251.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-incus-50251.patch --]
[-- Type: text/x-diff, Size: 4809 bytes --]

From ad2b110937944db19b52dc1530f3d464bea683ee Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Wed, 8 May 2024 15:20:25 -0400
Subject: [PATCH 1/2] incus: update to 6.2

---
 srcpkgs/incus/files/README.voidlinux | 11 +++++++++++
 srcpkgs/incus/template               | 21 ++++++++++++++++-----
 2 files changed, 27 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/incus/files/README.voidlinux

diff --git a/srcpkgs/incus/files/README.voidlinux b/srcpkgs/incus/files/README.voidlinux
new file mode 100644
index 00000000000000..3a4a5b356f49a9
--- /dev/null
+++ b/srcpkgs/incus/files/README.voidlinux
@@ -0,0 +1,11 @@
+Users wishing to interact with incus system daemons should belong to
+the `_incus-admin` and `_incus` groups. The root user should also be
+assigned a range of subordinate user and group IDs to be mapped in
+containers. For example, the command
+
+	usermod --add-subuids 1000000-1065535 \
+		--add-subgids 1000000-1065535 root
+
+will assign a range of 65,536 IDs for users and groups.
+Some container configurations may require that the `CGROUP_MODE`
+variable in `/etc/rc.conf` be set to `unified`.
diff --git a/srcpkgs/incus/template b/srcpkgs/incus/template
index 7ff722c779c059..ee696e1557ae5d 100644
--- a/srcpkgs/incus/template
+++ b/srcpkgs/incus/template
@@ -1,9 +1,10 @@
 # Template file for 'incus'
 pkgname=incus
-version=0.6.0
-revision=2
+version=6.2.0
+revision=1
 build_style=go
-go_import_path=github.com/lxc/incus
+build_helper=qemu
+go_import_path=github.com/lxc/incus/v6
 go_build_tags="libsqlite3"
 go_package="${go_import_path}/cmd/incus
  ${go_import_path}/cmd/incus-benchmark
@@ -20,7 +21,7 @@ maintainer="dkwo <npiazza@disroot.org>"
 license="Apache-2.0"
 homepage="https://linuxcontainers.org/incus"
 distfiles="https://github.com/lxc/incus/archive/refs/tags/v${version}.tar.gz"
-checksum=9bbce9ae95b40be4bd11116a97f422ecd2adf2915a2c0b6828fa34435de756d2
+checksum=3593bd8ffd18d347615f451fddcc9658a65e47d4812461cceb9f61c49f568231
 system_groups="_incus-admin _incus"
 make_dirs="
  /var/lib/incus 0755 root root
@@ -47,6 +48,14 @@ post_install() {
 	vsv incus
 	# avoid conflict with lxd, lxd-lts
 	mv ${DESTDIR}/usr/bin/{fuidshift,fuidshift-incus}
+
+	# generate shell completions
+	local incus=${DESTDIR}/usr/bin/incus
+	for shell in bash fish zsh; do
+		vtargetrun ${incus} completion ${shell} > scripts/${shell}-completion
+	done
+
+	vdoc "${FILESDIR}/README.voidlinux"
 }
 
 incus-client_package() {
@@ -55,7 +64,9 @@ incus-client_package() {
 	pkg_install() {
 		vmove usr/bin/incus
 		vsv incus-user
-		vcompletion scripts/bash/incus bash incus
+		for shell in bash fish zsh; do
+			vcompletion scripts/${shell}-completion ${shell} incus
+		done
 	}
 }
 

From e0bb85dec8975373fd587abef3d3477b9e72a3b0 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Wed, 5 Jun 2024 13:17:11 -0400
Subject: [PATCH 2/2] incus: patch for 32bit

---
 srcpkgs/incus/patches/32bit.patch | 40 +++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 srcpkgs/incus/patches/32bit.patch

diff --git a/srcpkgs/incus/patches/32bit.patch b/srcpkgs/incus/patches/32bit.patch
new file mode 100644
index 00000000000000..533729d06820b4
--- /dev/null
+++ b/srcpkgs/incus/patches/32bit.patch
@@ -0,0 +1,40 @@
+From f11c0b04f2e90a19e900ca077e21edf02c589db2 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber@stgraber.org>
+Date: Wed, 5 Jun 2024 11:35:50 -0400
+Subject: [PATCH] incusd/seccomp: Fix sysinfo logic on 32bit platforms
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Closes #918
+
+Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
+---
+ internal/server/seccomp/sysinfo_32.go | 12 ++++++------
+ 1 file changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/internal/server/seccomp/sysinfo_32.go b/internal/server/seccomp/sysinfo_32.go
+index 56bcd23ace..0445473147 100644
+--- a/internal/server/seccomp/sysinfo_32.go
++++ b/internal/server/seccomp/sysinfo_32.go
+@@ -8,13 +8,13 @@ import (
+ 
+ // ToNative fills fields from s into native fields.
+ func (s *Sysinfo) ToNative(n *unix.Sysinfo_t) {
+-	n.Bufferram = uint32(s.Bufferram / s.Unit)
+-	n.Freeram = uint32(s.Freeram / s.Unit)
+-	n.Freeswap = uint32(s.Freeswap / s.Unit)
++	n.Bufferram = uint32(s.Bufferram) / s.Unit
++	n.Freeram = uint32(s.Freeram) / s.Unit
++	n.Freeswap = uint32(s.Freeswap) / s.Unit
+ 	n.Procs = s.Procs
+-	n.Sharedram = uint32(s.Sharedram / s.Unit)
+-	n.Totalram = uint32(s.Totalram / s.Unit)
+-	n.Totalswap = uint32(s.Totalswap / s.Unit)
++	n.Sharedram = uint32(s.Sharedram) / s.Unit
++	n.Totalram = uint32(s.Totalram) / s.Unit
++	n.Totalswap = uint32(s.Totalswap) / s.Unit
+ 	n.Uptime = int32(s.Uptime)
+ 	n.Unit = uint32(s.Unit)
+ }
+

  parent reply	other threads:[~2024-06-05 17:17 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-08 23:22 [PR PATCH] incus: update to 6.1 dkwo
2024-05-09 14:09 ` dkwo
2024-05-09 20:19 ` [PR PATCH] [Updated] " dkwo
2024-05-11 21:53 ` dkwo
2024-05-23  0:29 ` dkwo
2024-06-04 19:09 ` sbromberger
2024-06-04 20:00 ` [PR REVIEW] " ahesford
2024-06-04 20:00 ` ahesford
2024-06-05 12:29 ` [PR PATCH] [Updated] " dkwo
2024-06-05 12:30 ` dkwo
2024-06-05 12:40 ` [PR REVIEW] " dkwo
2024-06-05 12:40 ` dkwo
2024-06-05 12:42 ` dkwo
2024-06-05 17:17 ` dkwo [this message]
2024-06-05 17:22 ` incus: update to 6.2 dkwo
2024-06-06 20:27 ` dkwo
2024-06-06 20:42 ` [PR PATCH] [Merged]: " ahesford
2024-06-06 22:11 ` sbromberger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240605171726.9FD0229C23@inbox.vuxu.org \
    --to=dkwo@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).