Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] liburing: update to 0.2.
@ 2019-10-26 10:08 voidlinux-github
  2019-10-26 11:02 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 10:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ailiop-git/void-packages liburing
https://github.com/void-linux/void-packages/pull/15805

liburing: update to 0.2.


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

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

From 3dd908a217b2d4482992ff4cfc13b04d6156a362 Mon Sep 17 00:00:00 2001
From: Anthony Iliopoulos <ailiop@altatus.com>
Date: Sat, 26 Oct 2019 12:07:53 +0200
Subject: [PATCH] liburing: update to 0.2.

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

diff --git a/srcpkgs/liburing/template b/srcpkgs/liburing/template
index 061f29d1525..1095386700d 100644
--- a/srcpkgs/liburing/template
+++ b/srcpkgs/liburing/template
@@ -1,6 +1,6 @@
 # Template file for 'liburing'
 pkgname=liburing
-version=0.1
+version=0.2
 revision=1
 archs="i686* x86_64*"
 build_style=configure
@@ -10,7 +10,7 @@ maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-only"
 homepage="http://git.kernel.dk/cgit/liburing/"
 distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.xz"
-checksum=a018ca58d38d5d4b544bfaa539f8dba60ed30e74ffae91ffbc8bea70d304fc5e
+checksum=9e971105a376dc71feb76efe3e2a708e7da28b662edca77f8d230f000debde01
 
 liburing-devel_package() {
 	short_desc+=" - development files"

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

* Re: [PR PATCH] [Updated] liburing: update to 0.2.
  2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
  2019-10-26 11:02 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-26 11:02 ` voidlinux-github
  2019-10-26 16:42 ` voidlinux-github
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 11:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ailiop-git/void-packages liburing
https://github.com/void-linux/void-packages/pull/15805

liburing: update to 0.2.


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

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

From a26c208717de48d4b7bb58ee470e98359466c046 Mon Sep 17 00:00:00 2001
From: Anthony Iliopoulos <ailiop@altatus.com>
Date: Sat, 26 Oct 2019 12:07:53 +0200
Subject: [PATCH] liburing: update to 0.2.

---
 ...s-disable-compilation-of-ucontext-cp.patch | 28 +++++++++++++++++++
 srcpkgs/liburing/template                     |  4 +--
 2 files changed, 30 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch

diff --git a/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
new file mode 100644
index 00000000000..2faa3d6b1f2
--- /dev/null
+++ b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
@@ -0,0 +1,28 @@
+From 74782fe227819eeadc9768bd9ffb10ee81ef60e1 Mon Sep 17 00:00:00 2001
+From: Anthony Iliopoulos <ailiop@altatus.com>
+Date: Sat, 26 Oct 2019 12:45:46 +0200
+Subject: [PATCH] liburing/examples: disable compilation of ucontext-cp example
+
+the code leverages ucontext.h functionality which is not implemented in
+musl libc and thus fails compilation. the example code is anyway not
+part of the final package, so just remove it from compilation.
+---
+ examples/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git examples/Makefile examples/Makefile
+index 6fe3ac3..61a2b56 100644
+--- examples/Makefile
++++ examples/Makefile
+@@ -4,7 +4,7 @@ override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ -I../src/include/
+ 
+ include ../Makefile.quiet
+ 
+-all_targets += io_uring-test io_uring-cp link-cp ucontext-cp
++all_targets += io_uring-test io_uring-cp link-cp
+ 
+ all: $(all_targets)
+ 
+-- 
+2.23.0
+
diff --git a/srcpkgs/liburing/template b/srcpkgs/liburing/template
index 061f29d1525..1095386700d 100644
--- a/srcpkgs/liburing/template
+++ b/srcpkgs/liburing/template
@@ -1,6 +1,6 @@
 # Template file for 'liburing'
 pkgname=liburing
-version=0.1
+version=0.2
 revision=1
 archs="i686* x86_64*"
 build_style=configure
@@ -10,7 +10,7 @@ maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-only"
 homepage="http://git.kernel.dk/cgit/liburing/"
 distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.xz"
-checksum=a018ca58d38d5d4b544bfaa539f8dba60ed30e74ffae91ffbc8bea70d304fc5e
+checksum=9e971105a376dc71feb76efe3e2a708e7da28b662edca77f8d230f000debde01
 
 liburing-devel_package() {
 	short_desc+=" - development files"

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

* Re: [PR PATCH] [Updated] liburing: update to 0.2.
  2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
@ 2019-10-26 11:02 ` voidlinux-github
  2019-10-26 11:02 ` voidlinux-github
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 11:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ailiop-git/void-packages liburing
https://github.com/void-linux/void-packages/pull/15805

liburing: update to 0.2.


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

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

From a26c208717de48d4b7bb58ee470e98359466c046 Mon Sep 17 00:00:00 2001
From: Anthony Iliopoulos <ailiop@altatus.com>
Date: Sat, 26 Oct 2019 12:07:53 +0200
Subject: [PATCH] liburing: update to 0.2.

---
 ...s-disable-compilation-of-ucontext-cp.patch | 28 +++++++++++++++++++
 srcpkgs/liburing/template                     |  4 +--
 2 files changed, 30 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch

diff --git a/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
new file mode 100644
index 00000000000..2faa3d6b1f2
--- /dev/null
+++ b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
@@ -0,0 +1,28 @@
+From 74782fe227819eeadc9768bd9ffb10ee81ef60e1 Mon Sep 17 00:00:00 2001
+From: Anthony Iliopoulos <ailiop@altatus.com>
+Date: Sat, 26 Oct 2019 12:45:46 +0200
+Subject: [PATCH] liburing/examples: disable compilation of ucontext-cp example
+
+the code leverages ucontext.h functionality which is not implemented in
+musl libc and thus fails compilation. the example code is anyway not
+part of the final package, so just remove it from compilation.
+---
+ examples/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git examples/Makefile examples/Makefile
+index 6fe3ac3..61a2b56 100644
+--- examples/Makefile
++++ examples/Makefile
+@@ -4,7 +4,7 @@ override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ -I../src/include/
+ 
+ include ../Makefile.quiet
+ 
+-all_targets += io_uring-test io_uring-cp link-cp ucontext-cp
++all_targets += io_uring-test io_uring-cp link-cp
+ 
+ all: $(all_targets)
+ 
+-- 
+2.23.0
+
diff --git a/srcpkgs/liburing/template b/srcpkgs/liburing/template
index 061f29d1525..1095386700d 100644
--- a/srcpkgs/liburing/template
+++ b/srcpkgs/liburing/template
@@ -1,6 +1,6 @@
 # Template file for 'liburing'
 pkgname=liburing
-version=0.1
+version=0.2
 revision=1
 archs="i686* x86_64*"
 build_style=configure
@@ -10,7 +10,7 @@ maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-only"
 homepage="http://git.kernel.dk/cgit/liburing/"
 distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.xz"
-checksum=a018ca58d38d5d4b544bfaa539f8dba60ed30e74ffae91ffbc8bea70d304fc5e
+checksum=9e971105a376dc71feb76efe3e2a708e7da28b662edca77f8d230f000debde01
 
 liburing-devel_package() {
 	short_desc+=" - development files"

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

* Re: liburing: update to 0.2.
  2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
  2019-10-26 11:02 ` [PR PATCH] [Updated] " voidlinux-github
  2019-10-26 11:02 ` voidlinux-github
@ 2019-10-26 16:42 ` voidlinux-github
  2019-10-26 17:21 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 16:42 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/15805#issuecomment-546619329

Comment:
aarch looks supported now too

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

* Re: [PR PATCH] [Updated] liburing: update to 0.2.
  2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-10-26 17:21 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-26 17:21 ` voidlinux-github
  2019-10-26 17:22 ` voidlinux-github
  2019-10-26 18:59 ` [PR PATCH] [Merged]: " voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 17:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ailiop-git/void-packages liburing
https://github.com/void-linux/void-packages/pull/15805

liburing: update to 0.2.


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

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

From 0dd640a1fc798f0a363bdf6c9d7187199fbb2286 Mon Sep 17 00:00:00 2001
From: Anthony Iliopoulos <ailiop@altatus.com>
Date: Sat, 26 Oct 2019 12:07:53 +0200
Subject: [PATCH] liburing: update to 0.2.

---
 ...s-disable-compilation-of-ucontext-cp.patch | 28 +++++++++++++++++++
 srcpkgs/liburing/template                     |  6 ++--
 2 files changed, 31 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch

diff --git a/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
new file mode 100644
index 00000000000..2faa3d6b1f2
--- /dev/null
+++ b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
@@ -0,0 +1,28 @@
+From 74782fe227819eeadc9768bd9ffb10ee81ef60e1 Mon Sep 17 00:00:00 2001
+From: Anthony Iliopoulos <ailiop@altatus.com>
+Date: Sat, 26 Oct 2019 12:45:46 +0200
+Subject: [PATCH] liburing/examples: disable compilation of ucontext-cp example
+
+the code leverages ucontext.h functionality which is not implemented in
+musl libc and thus fails compilation. the example code is anyway not
+part of the final package, so just remove it from compilation.
+---
+ examples/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git examples/Makefile examples/Makefile
+index 6fe3ac3..61a2b56 100644
+--- examples/Makefile
++++ examples/Makefile
+@@ -4,7 +4,7 @@ override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ -I../src/include/
+ 
+ include ../Makefile.quiet
+ 
+-all_targets += io_uring-test io_uring-cp link-cp ucontext-cp
++all_targets += io_uring-test io_uring-cp link-cp
+ 
+ all: $(all_targets)
+ 
+-- 
+2.23.0
+
diff --git a/srcpkgs/liburing/template b/srcpkgs/liburing/template
index 061f29d1525..7277a3453c5 100644
--- a/srcpkgs/liburing/template
+++ b/srcpkgs/liburing/template
@@ -1,8 +1,8 @@
 # Template file for 'liburing'
 pkgname=liburing
-version=0.1
+version=0.2
 revision=1
-archs="i686* x86_64*"
+archs="i686* x86_64* aarch64*"
 build_style=configure
 configure_args="--mandir=/usr/share/man"
 short_desc="Linux-native io_uring I/O access library"
@@ -10,7 +10,7 @@ maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-only"
 homepage="http://git.kernel.dk/cgit/liburing/"
 distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.xz"
-checksum=a018ca58d38d5d4b544bfaa539f8dba60ed30e74ffae91ffbc8bea70d304fc5e
+checksum=9e971105a376dc71feb76efe3e2a708e7da28b662edca77f8d230f000debde01
 
 liburing-devel_package() {
 	short_desc+=" - development files"

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

* Re: [PR PATCH] [Updated] liburing: update to 0.2.
  2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-10-26 16:42 ` voidlinux-github
@ 2019-10-26 17:21 ` voidlinux-github
  2019-10-26 17:21 ` voidlinux-github
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 17:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ailiop-git/void-packages liburing
https://github.com/void-linux/void-packages/pull/15805

liburing: update to 0.2.


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

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

From 0dd640a1fc798f0a363bdf6c9d7187199fbb2286 Mon Sep 17 00:00:00 2001
From: Anthony Iliopoulos <ailiop@altatus.com>
Date: Sat, 26 Oct 2019 12:07:53 +0200
Subject: [PATCH] liburing: update to 0.2.

---
 ...s-disable-compilation-of-ucontext-cp.patch | 28 +++++++++++++++++++
 srcpkgs/liburing/template                     |  6 ++--
 2 files changed, 31 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch

diff --git a/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
new file mode 100644
index 00000000000..2faa3d6b1f2
--- /dev/null
+++ b/srcpkgs/liburing/patches/0001-liburing-examples-disable-compilation-of-ucontext-cp.patch
@@ -0,0 +1,28 @@
+From 74782fe227819eeadc9768bd9ffb10ee81ef60e1 Mon Sep 17 00:00:00 2001
+From: Anthony Iliopoulos <ailiop@altatus.com>
+Date: Sat, 26 Oct 2019 12:45:46 +0200
+Subject: [PATCH] liburing/examples: disable compilation of ucontext-cp example
+
+the code leverages ucontext.h functionality which is not implemented in
+musl libc and thus fails compilation. the example code is anyway not
+part of the final package, so just remove it from compilation.
+---
+ examples/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git examples/Makefile examples/Makefile
+index 6fe3ac3..61a2b56 100644
+--- examples/Makefile
++++ examples/Makefile
+@@ -4,7 +4,7 @@ override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ -I../src/include/
+ 
+ include ../Makefile.quiet
+ 
+-all_targets += io_uring-test io_uring-cp link-cp ucontext-cp
++all_targets += io_uring-test io_uring-cp link-cp
+ 
+ all: $(all_targets)
+ 
+-- 
+2.23.0
+
diff --git a/srcpkgs/liburing/template b/srcpkgs/liburing/template
index 061f29d1525..7277a3453c5 100644
--- a/srcpkgs/liburing/template
+++ b/srcpkgs/liburing/template
@@ -1,8 +1,8 @@
 # Template file for 'liburing'
 pkgname=liburing
-version=0.1
+version=0.2
 revision=1
-archs="i686* x86_64*"
+archs="i686* x86_64* aarch64*"
 build_style=configure
 configure_args="--mandir=/usr/share/man"
 short_desc="Linux-native io_uring I/O access library"
@@ -10,7 +10,7 @@ maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-only"
 homepage="http://git.kernel.dk/cgit/liburing/"
 distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.xz"
-checksum=a018ca58d38d5d4b544bfaa539f8dba60ed30e74ffae91ffbc8bea70d304fc5e
+checksum=9e971105a376dc71feb76efe3e2a708e7da28b662edca77f8d230f000debde01
 
 liburing-devel_package() {
 	short_desc+=" - development files"

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

* Re: liburing: update to 0.2.
  2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-10-26 17:21 ` voidlinux-github
@ 2019-10-26 17:22 ` voidlinux-github
  2019-10-26 18:59 ` [PR PATCH] [Merged]: " voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 17:22 UTC (permalink / raw)
  To: ml

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

New comment by ailiop-git on void-packages repository

https://github.com/void-linux/void-packages/pull/15805#issuecomment-546622876

Comment:
> aarch looks supported now too

thanks for pointing out, enabled and pushed.

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

* Re: [PR PATCH] [Merged]: liburing: update to 0.2.
  2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-10-26 17:22 ` voidlinux-github
@ 2019-10-26 18:59 ` voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-10-26 18:59 UTC (permalink / raw)
  To: ml

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

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

liburing: update to 0.2.
https://github.com/void-linux/void-packages/pull/15805

Description:


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

end of thread, other threads:[~2019-10-26 18:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-26 10:08 [PR PATCH] liburing: update to 0.2 voidlinux-github
2019-10-26 11:02 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-26 11:02 ` voidlinux-github
2019-10-26 16:42 ` voidlinux-github
2019-10-26 17:21 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-26 17:21 ` voidlinux-github
2019-10-26 17:22 ` voidlinux-github
2019-10-26 18:59 ` [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).