Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: avra-1.4.2
@ 2020-10-28 17:22 Logarithmus
  2020-10-28 18:18 ` ericonr
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Logarithmus @ 2020-10-28 17:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Logarithmus/void-packages avra
https://github.com/void-linux/void-packages/pull/25942

New package: avra-1.4.2
Assembler for the Atmel AVR microcontroller family.
I had to explicitly specify commit hash, because 1.4.2 tag fails to build.
The author fixed it but didn't bump the version.

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

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

From b131b027ab3112345cd6fdbbeab76c3b52f287cf Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Wed, 28 Oct 2020 20:15:17 +0300
Subject: [PATCH] New package: avra-1.4.2

---
 srcpkgs/avra/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/avra/template

diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
new file mode 100644
index 00000000000..53573bfb4a9
--- /dev/null
+++ b/srcpkgs/avra/template
@@ -0,0 +1,13 @@
+# Template file for 'avra'
+pkgname=avra
+version=1.4.2
+_commit=7c714e9537c52f3ad1885a872c0982148cc818e3
+revision=1
+build_style=gnu-makefile
+wrksrc=${pkgname}-${_commit}
+short_desc="Assembler for the Atmel AVR microcontroller family"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
+license="GPL-2.0-only"
+homepage="https://github.com/Ro5bert/avra"
+distfiles="https://github.com/Ro5bert/${pkgname}/archive/${_commit}.zip"
+checksum=347d16cb7cfa28a6e99648cc1800a4a61845a9615caadad2a653934a61139a9e

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

* Re: New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
@ 2020-10-28 18:18 ` ericonr
  2020-10-28 23:00 ` [PR PATCH] [Updated] " Logarithmus
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ericonr @ 2020-10-28 18:18 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/25942#issuecomment-718119875

Comment:
Could we backport only the specific commit that fixed it?

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

* Re: [PR PATCH] [Updated] New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
  2020-10-28 18:18 ` ericonr
@ 2020-10-28 23:00 ` Logarithmus
  2020-10-28 23:01 ` Logarithmus
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Logarithmus @ 2020-10-28 23:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Logarithmus/void-packages avra
https://github.com/void-linux/void-packages/pull/25942

New package: avra-1.4.2
Assembler for the Atmel AVR microcontroller family.
I had to explicitly specify commit hash, because 1.4.2 tag fails to build.
The author fixed it but didn't bump the version.

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

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

From cf997f0baa95460584806dd6160cdeb9f74d8b63 Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Wed, 28 Oct 2020 20:15:17 +0300
Subject: [PATCH] New package: avra-1.4.2

---
 srcpkgs/avra/patches/00-avra-version.patch | 25 ++++++++++++++++++++++
 srcpkgs/avra/template                      | 11 ++++++++++
 2 files changed, 36 insertions(+)
 create mode 100644 srcpkgs/avra/patches/00-avra-version.patch
 create mode 100644 srcpkgs/avra/template

diff --git a/srcpkgs/avra/patches/00-avra-version.patch b/srcpkgs/avra/patches/00-avra-version.patch
new file mode 100644
index 00000000000..4d954bba397
--- /dev/null
+++ b/srcpkgs/avra/patches/00-avra-version.patch
@@ -0,0 +1,25 @@
+--- src/avra.c
++++ src/avra.c
+@@ -37,10 +37,6 @@
+ 
+ #define debug 0
+ 
+-#ifndef VERSION
+-#define VERSION "undefined"
+-#endif
+-
+ const char *title = "AVRA: advanced AVR macro assembler (version %s)\n";
+ 
+ const char *usage =
+--- src/avra.h
++++ src/avra.h
+@@ -37,6 +37,10 @@
+ #define IS_ENDLINE(x)  ((x == 10) || (x == 13) || (x == '\0') || (x == 12))
+ #define IS_SEPARATOR(x)    ((x == ' ') || (x == ',') || (x == '[') || (x == ']'))
+ 
++#ifndef VERSION
++#define VERSION "undefined"
++#endif
++
+ #define LINEBUFFER_LENGTH 4096
+ #define MAX_NESTED_MACROLOOPS 256
diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
new file mode 100644
index 00000000000..9c95ef26da6
--- /dev/null
+++ b/srcpkgs/avra/template
@@ -0,0 +1,11 @@
+# Template file for 'avra'
+pkgname=avra
+version=1.4.2
+revision=1
+build_style=gnu-makefile
+short_desc="Assembler for the Atmel AVR microcontroller family"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
+license="GPL-2.0-only"
+homepage="https://github.com/Ro5bert/avra"
+distfiles="https://github.com/Ro5bert/${pkgname}/archive/${version}.tar.gz"
+checksum=cc56837be973d1a102dc6936a0b7235a1d716c0f7cd053bf77e0620577cff986

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

* Re: New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
  2020-10-28 18:18 ` ericonr
  2020-10-28 23:00 ` [PR PATCH] [Updated] " Logarithmus
@ 2020-10-28 23:01 ` Logarithmus
  2020-10-30 13:53 ` sgn
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Logarithmus @ 2020-10-28 23:01 UTC (permalink / raw)
  To: ml

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

New comment by Logarithmus on void-packages repository

https://github.com/void-linux/void-packages/pull/25942#issuecomment-718256717

Comment:
> Could we backport only the specific commit that fixed it?

I've just did that.

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

* Re: New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (2 preceding siblings ...)
  2020-10-28 23:01 ` Logarithmus
@ 2020-10-30 13:53 ` sgn
  2020-10-30 13:55 ` sgn
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sgn @ 2020-10-30 13:53 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/25942#issuecomment-719565697

Comment:
We don't need that patch, apply this into the template instead
```diff
 srcpkgs/avra/template | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
index 9c95ef26da..40a6c9708f 100644
--- a/srcpkgs/avra/template
+++ b/srcpkgs/avra/template
@@ -9,3 +9,5 @@ license="GPL-2.0-only"
 homepage="https://github.com/Ro5bert/avra"
 distfiles="https://github.com/Ro5bert/${pkgname}/archive/${version}.tar.gz"
 checksum=cc56837be973d1a102dc6936a0b7235a1d716c0f7cd053bf77e0620577cff986
+
+CFLAGS="-DVERSION=\\\"$version\\\""
```


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

* Re: New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (3 preceding siblings ...)
  2020-10-30 13:53 ` sgn
@ 2020-10-30 13:55 ` sgn
  2020-10-30 21:30 ` [PR PATCH] [Updated] " Logarithmus
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sgn @ 2020-10-30 13:55 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/25942#issuecomment-719565697

Comment:
We don't need that patch, and that patch doesn't correctly define the version, try this:
```sh
avra --version
```

Apply this into the template instead

```diff
 srcpkgs/avra/template | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
index 9c95ef26da..40a6c9708f 100644
--- a/srcpkgs/avra/template
+++ b/srcpkgs/avra/template
@@ -9,3 +9,5 @@ license="GPL-2.0-only"
 homepage="https://github.com/Ro5bert/avra"
 distfiles="https://github.com/Ro5bert/${pkgname}/archive/${version}.tar.gz"
 checksum=cc56837be973d1a102dc6936a0b7235a1d716c0f7cd053bf77e0620577cff986
+
+CFLAGS="-DVERSION=\\\"$version\\\""
```


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

* Re: [PR PATCH] [Updated] New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (4 preceding siblings ...)
  2020-10-30 13:55 ` sgn
@ 2020-10-30 21:30 ` Logarithmus
  2020-10-30 21:32 ` Logarithmus
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Logarithmus @ 2020-10-30 21:30 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Logarithmus/void-packages avra
https://github.com/void-linux/void-packages/pull/25942

New package: avra-1.4.2
Assembler for the Atmel AVR microcontroller family.
I had to explicitly specify commit hash, because 1.4.2 tag fails to build.
The author fixed it but didn't bump the version.

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

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

From f5999bf5ba740a1f6387e28658d2bdb54f1ab309 Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Wed, 28 Oct 2020 20:15:17 +0300
Subject: [PATCH] New package: avra-1.4.2

---
 srcpkgs/avra/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/avra/template

diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
new file mode 100644
index 00000000000..40a6c9708fc
--- /dev/null
+++ b/srcpkgs/avra/template
@@ -0,0 +1,13 @@
+# Template file for 'avra'
+pkgname=avra
+version=1.4.2
+revision=1
+build_style=gnu-makefile
+short_desc="Assembler for the Atmel AVR microcontroller family"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
+license="GPL-2.0-only"
+homepage="https://github.com/Ro5bert/avra"
+distfiles="https://github.com/Ro5bert/${pkgname}/archive/${version}.tar.gz"
+checksum=cc56837be973d1a102dc6936a0b7235a1d716c0f7cd053bf77e0620577cff986
+
+CFLAGS="-DVERSION=\\\"$version\\\""

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

* Re: New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (5 preceding siblings ...)
  2020-10-30 21:30 ` [PR PATCH] [Updated] " Logarithmus
@ 2020-10-30 21:32 ` Logarithmus
  2020-10-31  1:31 ` sgn
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Logarithmus @ 2020-10-30 21:32 UTC (permalink / raw)
  To: ml

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

New comment by Logarithmus on void-packages repository

https://github.com/void-linux/void-packages/pull/25942#issuecomment-719809597

Comment:
@sgn done

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

* Re: New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (6 preceding siblings ...)
  2020-10-30 21:32 ` Logarithmus
@ 2020-10-31  1:31 ` sgn
  2020-11-01  2:23 ` [PR REVIEW] " ericonr
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sgn @ 2020-10-31  1:31 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/25942#issuecomment-719865002

Comment:
I'll let ericonr decide ;)

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

* Re: [PR REVIEW] New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (7 preceding siblings ...)
  2020-10-31  1:31 ` sgn
@ 2020-11-01  2:23 ` ericonr
  2020-11-02 16:15 ` [PR PATCH] [Updated] " Logarithmus
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ericonr @ 2020-11-01  2:23 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/25942#discussion_r515565493

Comment:
https://github.com/Ro5bert/avra/blob/master/src/file.c says `-or-later`...

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

* Re: [PR PATCH] [Updated] New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (8 preceding siblings ...)
  2020-11-01  2:23 ` [PR REVIEW] " ericonr
@ 2020-11-02 16:15 ` Logarithmus
  2020-11-11  1:43 ` Logarithmus
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Logarithmus @ 2020-11-02 16:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Logarithmus/void-packages avra
https://github.com/void-linux/void-packages/pull/25942

New package: avra-1.4.2
Assembler for the Atmel AVR microcontroller family.
I had to explicitly specify commit hash, because 1.4.2 tag fails to build.
The author fixed it but didn't bump the version.

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

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

From 81900dee087b10b9b80e5348febcd9523edafba7 Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Wed, 28 Oct 2020 20:15:17 +0300
Subject: [PATCH] New package: avra-1.4.2

---
 srcpkgs/avra/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/avra/template

diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
new file mode 100644
index 00000000000..e8241a1dc25
--- /dev/null
+++ b/srcpkgs/avra/template
@@ -0,0 +1,15 @@
+# Template file for 'avra'
+pkgname=avra
+version=1.4.2
+revision=1
+build_style=gnu-makefile
+short_desc="Assembler for the Atmel AVR microcontroller family"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/Ro5bert/avra"
+distfiles="https://github.com/Ro5bert/${pkgname}/archive/${version}.tar.gz"
+checksum=cc56837be973d1a102dc6936a0b7235a1d716c0f7cd053bf77e0620577cff986
+
+pre_build() {
+	CFLAGS="-DVERSION=\\\"$version\\\""
+}

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

* Re: [PR PATCH] [Updated] New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (9 preceding siblings ...)
  2020-11-02 16:15 ` [PR PATCH] [Updated] " Logarithmus
@ 2020-11-11  1:43 ` Logarithmus
  2020-11-11  2:13 ` Logarithmus
  2020-12-16 16:53 ` [PR PATCH] [Merged]: " Piraty
  12 siblings, 0 replies; 14+ messages in thread
From: Logarithmus @ 2020-11-11  1:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Logarithmus/void-packages avra
https://github.com/void-linux/void-packages/pull/25942

New package: avra-1.4.2
Assembler for the Atmel AVR microcontroller family.
I had to explicitly specify commit hash, because 1.4.2 tag fails to build.
The author fixed it but didn't bump the version.

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

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

From 2fd0e0cf04a63d1a3c89856b9bce27b2af866132 Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Wed, 28 Oct 2020 20:15:17 +0300
Subject: [PATCH] New package: avra-1.4.2

---
 srcpkgs/avra/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/avra/template

diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
new file mode 100644
index 00000000000..e8241a1dc25
--- /dev/null
+++ b/srcpkgs/avra/template
@@ -0,0 +1,15 @@
+# Template file for 'avra'
+pkgname=avra
+version=1.4.2
+revision=1
+build_style=gnu-makefile
+short_desc="Assembler for the Atmel AVR microcontroller family"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/Ro5bert/avra"
+distfiles="https://github.com/Ro5bert/${pkgname}/archive/${version}.tar.gz"
+checksum=cc56837be973d1a102dc6936a0b7235a1d716c0f7cd053bf77e0620577cff986
+
+pre_build() {
+	CFLAGS="-DVERSION=\\\"$version\\\""
+}

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

* Re: [PR PATCH] [Updated] New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (10 preceding siblings ...)
  2020-11-11  1:43 ` Logarithmus
@ 2020-11-11  2:13 ` Logarithmus
  2020-12-16 16:53 ` [PR PATCH] [Merged]: " Piraty
  12 siblings, 0 replies; 14+ messages in thread
From: Logarithmus @ 2020-11-11  2:13 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Logarithmus/void-packages avra
https://github.com/void-linux/void-packages/pull/25942

New package: avra-1.4.2
Assembler for the Atmel AVR microcontroller family.
I had to explicitly specify commit hash, because 1.4.2 tag fails to build.
The author fixed it but didn't bump the version.

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

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

From 81900dee087b10b9b80e5348febcd9523edafba7 Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Wed, 28 Oct 2020 20:15:17 +0300
Subject: [PATCH] New package: avra-1.4.2

---
 srcpkgs/avra/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/avra/template

diff --git a/srcpkgs/avra/template b/srcpkgs/avra/template
new file mode 100644
index 00000000000..e8241a1dc25
--- /dev/null
+++ b/srcpkgs/avra/template
@@ -0,0 +1,15 @@
+# Template file for 'avra'
+pkgname=avra
+version=1.4.2
+revision=1
+build_style=gnu-makefile
+short_desc="Assembler for the Atmel AVR microcontroller family"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/Ro5bert/avra"
+distfiles="https://github.com/Ro5bert/${pkgname}/archive/${version}.tar.gz"
+checksum=cc56837be973d1a102dc6936a0b7235a1d716c0f7cd053bf77e0620577cff986
+
+pre_build() {
+	CFLAGS="-DVERSION=\\\"$version\\\""
+}

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

* Re: [PR PATCH] [Merged]: New package: avra-1.4.2
  2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
                   ` (11 preceding siblings ...)
  2020-11-11  2:13 ` Logarithmus
@ 2020-12-16 16:53 ` Piraty
  12 siblings, 0 replies; 14+ messages in thread
From: Piraty @ 2020-12-16 16:53 UTC (permalink / raw)
  To: ml

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

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

New package: avra-1.4.2
https://github.com/void-linux/void-packages/pull/25942

Description:
Assembler for the Atmel AVR microcontroller family.
I had to explicitly specify commit hash, because 1.4.2 tag fails to build.
The author fixed it but didn't bump the version.

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

end of thread, other threads:[~2020-12-16 16:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-28 17:22 [PR PATCH] New package: avra-1.4.2 Logarithmus
2020-10-28 18:18 ` ericonr
2020-10-28 23:00 ` [PR PATCH] [Updated] " Logarithmus
2020-10-28 23:01 ` Logarithmus
2020-10-30 13:53 ` sgn
2020-10-30 13:55 ` sgn
2020-10-30 21:30 ` [PR PATCH] [Updated] " Logarithmus
2020-10-30 21:32 ` Logarithmus
2020-10-31  1:31 ` sgn
2020-11-01  2:23 ` [PR REVIEW] " ericonr
2020-11-02 16:15 ` [PR PATCH] [Updated] " Logarithmus
2020-11-11  1:43 ` Logarithmus
2020-11-11  2:13 ` Logarithmus
2020-12-16 16:53 ` [PR PATCH] [Merged]: " Piraty

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