Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: [PR PATCH]  lxc: update to 3.1.0
Date: Tue, 18 Jun 2019 11:53:22 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-12526@inbox.vuxu.org> (raw)

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

There is a new pull request by julio641742 against master on the void-packages repository

https://github.com/julio641742/void-packages lxd
https://github.com/void-linux/void-packages/pull/12526

 lxc: update to 3.1.0


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

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

From b840d7b7795d777513917862c5ab8a51490e841e Mon Sep 17 00:00:00 2001
From: Julio Galvan <julio@epazote.net>
Date: Tue, 18 Jun 2019 01:49:51 -0700
Subject: [PATCH 1/2] lxc: update to 3.1.0

---
 srcpkgs/lxc/patches/lxc-usernsexec.patch | 83 ------------------------
 srcpkgs/lxc/template                     |  6 +-
 2 files changed, 3 insertions(+), 86 deletions(-)
 delete mode 100644 srcpkgs/lxc/patches/lxc-usernsexec.patch

diff --git a/srcpkgs/lxc/patches/lxc-usernsexec.patch b/srcpkgs/lxc/patches/lxc-usernsexec.patch
deleted file mode 100644
index 666d87c68ce..00000000000
--- a/srcpkgs/lxc/patches/lxc-usernsexec.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-commit c14ea11dccbfa80021a9b169b94bd86e8b359611
-Author: Cameron Nemo <camerontnorman@gmail.com>
-Date:   Wed Nov 28 19:42:29 2018 -0800
-
-    lxc-usernsexec: fix default map functionality
-    
-    * Place NULL bytes at the end of strings so that
-      lxc_safe_ulong() can parse them correctly
-    
-    * Only free the newly created id_map on error,
-      to avoid passing garbage to lxc_map_ids()
-    
-    Signed-off-by: Cameron Nemo <camerontnorman@gmail.com>
-
-diff --git src/lxc/cmd/lxc_usernsexec.c src/lxc/cmd/lxc_usernsexec.c
-index 10557dd5..ab0dffcf 100644
---- src/lxc/cmd/lxc_usernsexec.c
-+++ src/lxc/cmd/lxc_usernsexec.c
-@@ -200,6 +200,7 @@ static int read_default_map(char *fnam, int which, char *user)
- {
- 	size_t len;
- 	char *p1, *p2;
-+	unsigned long ul1, ul2;
- 	FILE *fin;
- 	int ret = -1;
- 	size_t sz = 0;
-@@ -224,37 +225,42 @@ static int read_default_map(char *fnam, int which, char *user)
- 		if (!p2)
- 			continue;
- 
--		newmap = malloc(sizeof(*newmap));
--		if (!newmap)
--			goto on_error;
-+		line[strlen(line) - 1] = '\0';
-+		*p2 = '\0';
- 
--		ret = lxc_safe_ulong(p1 + 1, &newmap->hostid);
-+		ret = lxc_safe_ulong(p1 + 1, &ul1);
- 		if (ret < 0)
--			goto on_error;
-+			break;
- 
--		ret = lxc_safe_ulong(p2 + 1, &newmap->range);
-+		ret = lxc_safe_ulong(p2 + 1, &ul2);
- 		if (ret < 0)
--			goto on_error;
-+			break;
-+
-+		ret = -1;
-+		newmap = malloc(sizeof(*newmap));
-+		if (!newmap)
-+			break;
- 
- 		newmap->nsid = 0;
- 		newmap->idtype = which;
-+		newmap->hostid = ul1;
-+		newmap->range = ul2;
- 
--		ret = -1;
- 		tmp = malloc(sizeof(*tmp));
--		if (!tmp)
--			goto on_error;
-+		if (!tmp) {
-+			free(newmap);
-+			break;
-+		}
- 
- 		tmp->elem = newmap;
- 		lxc_list_add_tail(&active_map, tmp);
-+
-+		ret = 0;
- 		break;
- 	}
- 
--	ret = 0;
--
--on_error:
- 	fclose(fin);
- 	free(line);
--	free(newmap);
- 
- 	return ret;
- }
diff --git a/srcpkgs/lxc/template b/srcpkgs/lxc/template
index c2c72aec65f..17464dc08f8 100644
--- a/srcpkgs/lxc/template
+++ b/srcpkgs/lxc/template
@@ -2,8 +2,8 @@
 _desc="Linux Containers"
 
 pkgname=lxc
-version=3.0.3
-revision=4
+version=3.1.0
+revision=1
 build_style=gnu-configure
 configure_args="--enable-doc --enable-seccomp
  --enable-capabilities --enable-apparmor --with-distro=none
@@ -16,7 +16,7 @@ maintainer="Juan RP <xtraeme@voidlinux.org>"
 homepage="https://linuxcontainers.org"
 license="LGPL-2.1-or-later"
 distfiles="https://linuxcontainers.org/downloads/lxc-${version}.tar.gz"
-checksum=620cb832cc02c63bf4d330657bf6176544e145da281ee384a34d689635a19841
+checksum=4d8772c25baeaea2c37a954902b88c05d1454c91c887cb6a0997258cfac3fdc5
 
 conf_files="/etc/lxc/default.conf"
 make_dirs="

From 64ff77fb9f20bc42272405c483298247388e0d39 Mon Sep 17 00:00:00 2001
From: Julio Galvan <julio@epazote.net>
Date: Tue, 18 Jun 2019 01:50:23 -0700
Subject: [PATCH 2/2] lxd: update to 3.14

---
 srcpkgs/lxd/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/lxd/template b/srcpkgs/lxd/template
index 1fa0cd0731f..2a9cf44d88d 100644
--- a/srcpkgs/lxd/template
+++ b/srcpkgs/lxd/template
@@ -1,6 +1,6 @@
 # Template file for 'lxd'
 pkgname=lxd
-version=3.13
+version=3.14
 revision=1
 build_style=go
 go_import_path=github.com/lxc/lxd
@@ -15,7 +15,7 @@ maintainer="Cameron Nemo <camerontnorman@gmail.com>"
 license="Apache-2.0"
 homepage="https://linuxcontainers.org/lxd"
 distfiles="https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz"
-checksum=025138d2ac7ade6e34446f90f2d25ded86aedcad726d85ba8f2b7188dab75acd
+checksum=409e4758cbeb43b098d0265c4ce05aeeac5ae73f8914ceb1006e6a6d89fe1fe5
 system_groups="lxd"
 
 do_configure() {

             reply	other threads:[~2019-06-18  9:53 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-18  9:53 voidlinux-github [this message]
2019-06-19  1:48 ` voidlinux-github
2019-06-19  3:10 ` voidlinux-github
2019-06-24  4:49 ` [PR PATCH] [Updated] " voidlinux-github
2019-06-24  4:49 ` voidlinux-github
2019-06-25  6:52 ` [PR PATCH] [Merged]: " voidlinux-github
  -- strict thread matches above, loose matches on Subject: below --
2019-05-05  4:50 [PR PATCH] " voidlinux-github

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=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-12526@inbox.vuxu.org \
    --to=voidlinux-github@inbox.vuxu.org \
    --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).