Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add cross-arm-none-eabi-newlib as qmk dependency.
@ 2020-05-27 19:12 Liebach
  2020-05-27 19:33 ` ericonr
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Liebach @ 2020-05-27 19:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Liebach/void-packages qmk-depend
https://github.com/void-linux/void-packages/pull/22363

Add cross-arm-none-eabi-newlib as qmk dependency.
Fixes building at least planck/rev6 firmware, possibly other keyboards
with ARM based controllers.

Found out with help from Discord users Erovia and fauxpark on the qmk server.

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

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

From 6c95372f75c93dd59e32fcdee5106fa2cc53424e Mon Sep 17 00:00:00 2001
From: Morten Gade Liebach <m@lieba.ch>
Date: Wed, 27 May 2020 21:02:31 +0200
Subject: [PATCH] Add cross-arm-none-eabi-newlib as qmk dependency.

Fixes building at least planck/rev6 firmware, possibly other keyboards
with ARM based controllers.
---
 srcpkgs/qmk/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template
index 389df443e61..cfd67251d8c 100644
--- a/srcpkgs/qmk/template
+++ b/srcpkgs/qmk/template
@@ -16,7 +16,8 @@ depends="python3-appdirs
  avrdude
  dfu-util
  avr-gcc
- cross-arm-none-eabi-gcc"
+ cross-arm-none-eabi-gcc
+ cross-arm-none-eabi-newlib"
 short_desc="CLI tool for working with QMK firmware of mechanical keyboards"
 maintainer="RinsedSloth <afernandezh@protonmail.com>"
 license="MIT"

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

* Re: Add cross-arm-none-eabi-newlib as qmk dependency.
  2020-05-27 19:12 [PR PATCH] Add cross-arm-none-eabi-newlib as qmk dependency Liebach
@ 2020-05-27 19:33 ` ericonr
  2020-05-27 19:42 ` Liebach
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2020-05-27 19:33 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/22363#issuecomment-634894590

Comment:
Can't you add `cross-arm-none-eabi` as a dependency instead? It's a meta package, and includes gcc and newlib.

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

* Re: Add cross-arm-none-eabi-newlib as qmk dependency.
  2020-05-27 19:12 [PR PATCH] Add cross-arm-none-eabi-newlib as qmk dependency Liebach
  2020-05-27 19:33 ` ericonr
@ 2020-05-27 19:42 ` Liebach
  2020-05-27 20:05 ` ericonr
  2020-05-27 20:26 ` [PR PATCH] [Closed]: qmk: add cross-arm-none-eabi to dependencies Liebach
  3 siblings, 0 replies; 5+ messages in thread
From: Liebach @ 2020-05-27 19:42 UTC (permalink / raw)
  To: ml

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

New comment by Liebach on void-packages repository

https://github.com/void-linux/void-packages/pull/22363#issuecomment-634899929

Comment:
@ericonr Yes, definitely.

Shouldn't revision=1 be incremented too?

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

* Re: Add cross-arm-none-eabi-newlib as qmk dependency.
  2020-05-27 19:12 [PR PATCH] Add cross-arm-none-eabi-newlib as qmk dependency Liebach
  2020-05-27 19:33 ` ericonr
  2020-05-27 19:42 ` Liebach
@ 2020-05-27 20:05 ` ericonr
  2020-05-27 20:26 ` [PR PATCH] [Closed]: qmk: add cross-arm-none-eabi to dependencies Liebach
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2020-05-27 20:05 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/22363#issuecomment-634911067

Comment:
Yup! Otherwise the package won't be rebuilt.

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

* Re: [PR PATCH] [Closed]: qmk: add cross-arm-none-eabi to dependencies
  2020-05-27 19:12 [PR PATCH] Add cross-arm-none-eabi-newlib as qmk dependency Liebach
                   ` (2 preceding siblings ...)
  2020-05-27 20:05 ` ericonr
@ 2020-05-27 20:26 ` Liebach
  3 siblings, 0 replies; 5+ messages in thread
From: Liebach @ 2020-05-27 20:26 UTC (permalink / raw)
  To: ml

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

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

qmk: add cross-arm-none-eabi to dependencies
https://github.com/void-linux/void-packages/pull/22363

Description:
Fixes building at least planck/rev6 firmware, possibly other keyboards
with ARM based controllers.

Found out with help from Discord users Erovia and fauxpark on the qmk server.

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

end of thread, other threads:[~2020-05-27 20:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-27 19:12 [PR PATCH] Add cross-arm-none-eabi-newlib as qmk dependency Liebach
2020-05-27 19:33 ` ericonr
2020-05-27 19:42 ` Liebach
2020-05-27 20:05 ` ericonr
2020-05-27 20:26 ` [PR PATCH] [Closed]: qmk: add cross-arm-none-eabi to dependencies Liebach

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