Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Libdispatch package
@ 2023-07-01 19:51 Ilia1
  2023-07-01 20:37 ` Bnyro
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Ilia1 @ 2023-07-01 19:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Ilia1/void-packages libdispatch
https://github.com/void-linux/void-packages/pull/44773

Libdispatch package
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86-64

This library is required to upgrade package deadbeef.


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

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

From ad3abbde4422b8cfe07f0f2df0b784b7c7c05949 Mon Sep 17 00:00:00 2001
From: Ilia1 <iliaponomaryow@ya.ru>
Date: Sun, 2 Jul 2023 00:43:15 +0500
Subject: [PATCH 1/2] Create template for libdispatch

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

diff --git a/srcpkgs/libdispatch/template b/srcpkgs/libdispatch/template
new file mode 100644
index 000000000000..4d689ea5d97e
--- /dev/null
+++ b/srcpkgs/libdispatch/template
@@ -0,0 +1,32 @@
+pkgname=libdispatch
+version=5.5.3
+revision=1
+create_wrksrc=yes
+build_style=cmake
+hostmakedepends="ninja clang git"
+short_desc="Library provides comprehensive support for concurrent code execution on multicore hardware"
+maintainer="Ilya <ISPonomarev@yahoo.com>"
+license="Apache-2.0"
+homepage="https://github.com/apple/swift-corelibs-libdispatch"
+
+do_fetch() {
+       git clone https://github.com/apple/swift-corelibs-libdispatch
+       mv swift-corelibs-libdispatch ${pkgname}-${version}
+}
+
+pre_configure() {
+       mkdir build
+}
+
+do_configure() {
+        cd build
+        cmake -G Ninja -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
+}
+
+libdispatch-devel_package() {
+	short_desc+=" - development files"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+	}
+}

From 140417d8b3683bbd0bb1d284d62ddc97bfe46fd8 Mon Sep 17 00:00:00 2001
From: Ilia1 <iliaponomaryow@ya.ru>
Date: Sun, 2 Jul 2023 00:44:39 +0500
Subject: [PATCH 2/2] Update shlibs

---
 common/shlibs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/common/shlibs b/common/shlibs
index 258b257a75c3..aa185f0d6a27 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4277,3 +4277,5 @@ libgsoapssl++-2.8.124.so gsoap-2.8.124_1
 libjxl.so.0.8 libjxl-0.8.2_1
 libjxl_dec.so.0.8 libjxl-0.8.2_1
 libjxl_threads.so.0.8 libjxl-0.8.2_1
+libdispatch.so libdispatch-5.5.3_1
+libBlocksRuntime.so libdispatch-5.5.3_1

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

* Re: Libdispatch package
  2023-07-01 19:51 [PR PATCH] Libdispatch package Ilia1
@ 2023-07-01 20:37 ` Bnyro
  2023-07-02 10:06 ` [PR PATCH] [Updated] " Ilia1
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Bnyro @ 2023-07-01 20:37 UTC (permalink / raw)
  To: ml

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

New comment by Bnyro on void-packages repository

https://github.com/void-linux/void-packages/pull/44773#issuecomment-1616104402

Comment:
This should likely be in the same  PR with the deadbeef update. And please do one commit per added / updated package as explained in https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#updating-a-template.

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

* Re: [PR PATCH] [Updated] Libdispatch package
  2023-07-01 19:51 [PR PATCH] Libdispatch package Ilia1
  2023-07-01 20:37 ` Bnyro
@ 2023-07-02 10:06 ` Ilia1
  2023-07-02 10:13 ` Ilia1
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Ilia1 @ 2023-07-02 10:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Ilia1/void-packages libdispatch
https://github.com/void-linux/void-packages/pull/44773

Libdispatch package
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86-64

This library is required to upgrade package deadbeef.


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

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

From 39274a654100924946e392c507a34817de80f41f Mon Sep 17 00:00:00 2001
From: ilia <ISPonomarev@yahoo.com>
Date: Sun, 2 Jul 2023 14:57:15 +0500
Subject: [PATCH] Create template for libdispatch

---
 common/shlibs                |  2 ++
 srcpkgs/libdispatch/template | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/libdispatch/template

diff --git a/common/shlibs b/common/shlibs
index 258b257a75c3..aa185f0d6a27 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4277,3 +4277,5 @@ libgsoapssl++-2.8.124.so gsoap-2.8.124_1
 libjxl.so.0.8 libjxl-0.8.2_1
 libjxl_dec.so.0.8 libjxl-0.8.2_1
 libjxl_threads.so.0.8 libjxl-0.8.2_1
+libdispatch.so libdispatch-5.5.3_1
+libBlocksRuntime.so libdispatch-5.5.3_1
diff --git a/srcpkgs/libdispatch/template b/srcpkgs/libdispatch/template
new file mode 100644
index 000000000000..4d689ea5d97e
--- /dev/null
+++ b/srcpkgs/libdispatch/template
@@ -0,0 +1,32 @@
+pkgname=libdispatch
+version=5.5.3
+revision=1
+create_wrksrc=yes
+build_style=cmake
+hostmakedepends="ninja clang git"
+short_desc="Library provides comprehensive support for concurrent code execution on multicore hardware"
+maintainer="Ilya <ISPonomarev@yahoo.com>"
+license="Apache-2.0"
+homepage="https://github.com/apple/swift-corelibs-libdispatch"
+
+do_fetch() {
+       git clone https://github.com/apple/swift-corelibs-libdispatch
+       mv swift-corelibs-libdispatch ${pkgname}-${version}
+}
+
+pre_configure() {
+       mkdir build
+}
+
+do_configure() {
+        cd build
+        cmake -G Ninja -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
+}
+
+libdispatch-devel_package() {
+	short_desc+=" - development files"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+	}
+}

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

* Re: Libdispatch package
  2023-07-01 19:51 [PR PATCH] Libdispatch package Ilia1
  2023-07-01 20:37 ` Bnyro
  2023-07-02 10:06 ` [PR PATCH] [Updated] " Ilia1
@ 2023-07-02 10:13 ` Ilia1
  2023-07-02 10:39 ` Bnyro
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Ilia1 @ 2023-07-02 10:13 UTC (permalink / raw)
  To: ml

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

New comment by Ilia1 on void-packages repository

https://github.com/void-linux/void-packages/pull/44773#issuecomment-1616573483

Comment:
This library is not specific to the deadbeef package and can be used by other programs in the future. So I put it in a separate package.

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

* Re: Libdispatch package
  2023-07-01 19:51 [PR PATCH] Libdispatch package Ilia1
                   ` (2 preceding siblings ...)
  2023-07-02 10:13 ` Ilia1
@ 2023-07-02 10:39 ` Bnyro
  2023-07-02 11:55 ` [PR PATCH] [Closed]: " Ilia1
  2023-07-02 11:55 ` Ilia1
  5 siblings, 0 replies; 7+ messages in thread
From: Bnyro @ 2023-07-02 10:39 UTC (permalink / raw)
  To: ml

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

New comment by Bnyro on void-packages repository

https://github.com/void-linux/void-packages/pull/44773#issuecomment-1616586944

Comment:
Yes, but your other PR depends on it. So it should be added in the same PR as a dependency, because it's required there in order to update the package.
Nevertheless the package has to be independent from the deadbeef package.

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

* Re: Libdispatch package
  2023-07-01 19:51 [PR PATCH] Libdispatch package Ilia1
                   ` (4 preceding siblings ...)
  2023-07-02 11:55 ` [PR PATCH] [Closed]: " Ilia1
@ 2023-07-02 11:55 ` Ilia1
  5 siblings, 0 replies; 7+ messages in thread
From: Ilia1 @ 2023-07-02 11:55 UTC (permalink / raw)
  To: ml

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

New comment by Ilia1 on void-packages repository

https://github.com/void-linux/void-packages/pull/44773#issuecomment-1616619242

Comment:
OK, I was thinking that 1 PR = 1 package.
Now I close this PR.

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

* Re: [PR PATCH] [Closed]: Libdispatch package
  2023-07-01 19:51 [PR PATCH] Libdispatch package Ilia1
                   ` (3 preceding siblings ...)
  2023-07-02 10:39 ` Bnyro
@ 2023-07-02 11:55 ` Ilia1
  2023-07-02 11:55 ` Ilia1
  5 siblings, 0 replies; 7+ messages in thread
From: Ilia1 @ 2023-07-02 11:55 UTC (permalink / raw)
  To: ml

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

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

Libdispatch package
https://github.com/void-linux/void-packages/pull/44773

Description:
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86-64

This library is required to upgrade package deadbeef.


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

end of thread, other threads:[~2023-07-02 11:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-01 19:51 [PR PATCH] Libdispatch package Ilia1
2023-07-01 20:37 ` Bnyro
2023-07-02 10:06 ` [PR PATCH] [Updated] " Ilia1
2023-07-02 10:13 ` Ilia1
2023-07-02 10:39 ` Bnyro
2023-07-02 11:55 ` [PR PATCH] [Closed]: " Ilia1
2023-07-02 11:55 ` Ilia1

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