Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] docker: enable armv7 build
@ 2019-05-04 10:38 voidlinux-github
  2019-05-04 15:03 ` voidlinux-github
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: voidlinux-github @ 2019-05-04 10:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/innerspacepilot/void-packages docker
https://github.com/void-linux/void-packages/pull/11489

docker: enable armv7 build
Hello!
Successfully built docker natively on raspberry pi 3 (had to add 1G swapfile)
docker is fully working (as far as i can tell)


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

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

From 6f442eac117d9242262799edfe06c985dec6d513 Mon Sep 17 00:00:00 2001
From: innerspacepilot <innerspacepilot@gmx.com>
Date: Sat, 4 May 2019 13:36:55 +0300
Subject: [PATCH] docker: enable armv7 build

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

diff --git a/srcpkgs/docker/template b/srcpkgs/docker/template
index 9bb14e37c72..c5d5206babc 100644
--- a/srcpkgs/docker/template
+++ b/srcpkgs/docker/template
@@ -1,7 +1,7 @@
 # Template file for 'docker'
 pkgname=docker
 version=18.09.5
-revision=1
+revision=2
 wrksrc="${pkgname}-ce-${version}"
 hostmakedepends="git go pkg-config curl cmake"
 makedepends="libbtrfs-devel sqlite-devel device-mapper-devel libseccomp-devel
@@ -19,7 +19,7 @@ depends+=" iptables xz git"
 nopie=yes
 nostrip=yes
 nocross=yes
-archs="x86_64* ppc64le*"
+archs="armv7l x86_64* ppc64le*"
 system_groups="docker"
 
 _docker_components="tini proxy dockercli"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: docker: enable armv7 build
  2019-05-04 10:38 [PR PATCH] docker: enable armv7 build voidlinux-github
@ 2019-05-04 15:03 ` voidlinux-github
  2019-05-04 19:42 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-05-04 15:03 UTC (permalink / raw)
  To: ml

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

New comment by Hoshpak on void-packages repository

https://github.com/void-linux/void-packages/pull/11489#issuecomment-489334724
Comment:
Are you aware that we don't build armv7l natively so this won't cause the docker package to be built for the repository for that architecture? Also is there a reason you didn't make it armv7l*? If it works for other musl-architectures, it should work just as well for armv7l-musl.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Updated] docker: enable armv7 build
  2019-05-04 10:38 [PR PATCH] docker: enable armv7 build voidlinux-github
  2019-05-04 15:03 ` voidlinux-github
  2019-05-04 19:42 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-05-04 19:42 ` voidlinux-github
  2019-05-04 19:44 ` voidlinux-github
  2019-05-04 20:15 ` [PR PATCH] [Merged]: " voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-05-04 19:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/innerspacepilot/void-packages docker
https://github.com/void-linux/void-packages/pull/11489

docker: enable armv7 build
Hello!
Successfully built docker natively on raspberry pi 3 (had to add 1G swapfile)
docker is fully working (as far as i can tell)


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

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

From fadbe9e9254ef78300d46b4b242edb4ef3fd9e80 Mon Sep 17 00:00:00 2001
From: innerspacepilot <innerspacepilot@gmx.com>
Date: Sat, 4 May 2019 13:36:55 +0300
Subject: [PATCH] docker: enable armv7 build

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

diff --git a/srcpkgs/docker/template b/srcpkgs/docker/template
index 9bb14e37c72..a24124773f9 100644
--- a/srcpkgs/docker/template
+++ b/srcpkgs/docker/template
@@ -1,7 +1,7 @@
 # Template file for 'docker'
 pkgname=docker
 version=18.09.5
-revision=1
+revision=2
 wrksrc="${pkgname}-ce-${version}"
 hostmakedepends="git go pkg-config curl cmake"
 makedepends="libbtrfs-devel sqlite-devel device-mapper-devel libseccomp-devel
@@ -19,7 +19,7 @@ depends+=" iptables xz git"
 nopie=yes
 nostrip=yes
 nocross=yes
-archs="x86_64* ppc64le*"
+archs="armv7l* x86_64* ppc64le*"
 system_groups="docker"
 
 _docker_components="tini proxy dockercli"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Updated] docker: enable armv7 build
  2019-05-04 10:38 [PR PATCH] docker: enable armv7 build voidlinux-github
  2019-05-04 15:03 ` voidlinux-github
@ 2019-05-04 19:42 ` voidlinux-github
  2019-05-04 19:42 ` voidlinux-github
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-05-04 19:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/innerspacepilot/void-packages docker
https://github.com/void-linux/void-packages/pull/11489

docker: enable armv7 build
Hello!
Successfully built docker natively on raspberry pi 3 (had to add 1G swapfile)
docker is fully working (as far as i can tell)


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

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

From fadbe9e9254ef78300d46b4b242edb4ef3fd9e80 Mon Sep 17 00:00:00 2001
From: innerspacepilot <innerspacepilot@gmx.com>
Date: Sat, 4 May 2019 13:36:55 +0300
Subject: [PATCH] docker: enable armv7 build

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

diff --git a/srcpkgs/docker/template b/srcpkgs/docker/template
index 9bb14e37c72..a24124773f9 100644
--- a/srcpkgs/docker/template
+++ b/srcpkgs/docker/template
@@ -1,7 +1,7 @@
 # Template file for 'docker'
 pkgname=docker
 version=18.09.5
-revision=1
+revision=2
 wrksrc="${pkgname}-ce-${version}"
 hostmakedepends="git go pkg-config curl cmake"
 makedepends="libbtrfs-devel sqlite-devel device-mapper-devel libseccomp-devel
@@ -19,7 +19,7 @@ depends+=" iptables xz git"
 nopie=yes
 nostrip=yes
 nocross=yes
-archs="x86_64* ppc64le*"
+archs="armv7l* x86_64* ppc64le*"
 system_groups="docker"
 
 _docker_components="tini proxy dockercli"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: docker: enable armv7 build
  2019-05-04 10:38 [PR PATCH] docker: enable armv7 build voidlinux-github
                   ` (2 preceding siblings ...)
  2019-05-04 19:42 ` voidlinux-github
@ 2019-05-04 19:44 ` voidlinux-github
  2019-05-04 20:15 ` [PR PATCH] [Merged]: " voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-05-04 19:44 UTC (permalink / raw)
  To: ml

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

New comment by innerspacepilot on void-packages repository

https://github.com/void-linux/void-packages/pull/11489#issuecomment-489359540
Comment:
yes, armv7l* is right.
Let's hope arm build host will arrive.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Merged]: docker: enable armv7 build
  2019-05-04 10:38 [PR PATCH] docker: enable armv7 build voidlinux-github
                   ` (3 preceding siblings ...)
  2019-05-04 19:44 ` voidlinux-github
@ 2019-05-04 20:15 ` voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-05-04 20:15 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

docker: enable armv7 build
https://github.com/void-linux/void-packages/pull/11489
Description: Hello!
Successfully built docker natively on raspberry pi 3 (had to add 1G swapfile)
docker is fully working (as far as i can tell)


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-05-04 20:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-04 10:38 [PR PATCH] docker: enable armv7 build voidlinux-github
2019-05-04 15:03 ` voidlinux-github
2019-05-04 19:42 ` [PR PATCH] [Updated] " voidlinux-github
2019-05-04 19:42 ` voidlinux-github
2019-05-04 19:44 ` voidlinux-github
2019-05-04 20:15 ` [PR PATCH] [Merged]: " voidlinux-github

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).