Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] gc: Update to 8.2.2
@ 2022-08-31 21:33 ivmai
  2022-08-31 21:35 ` ivmai
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: ivmai @ 2022-08-31 21:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ivmai/void-linux-packages patch-4
https://github.com/void-linux/void-packages/pull/39014

gc: Update to 8.2.2
Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x64)


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

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

From f0c3adb7a78a39e66c14aa3c0bc66db32416716f Mon Sep 17 00:00:00 2001
From: Ivan Maidanski <ivmai@mail.ru>
Date: Thu, 1 Sep 2022 00:31:44 +0300
Subject: [PATCH] gc: Update to 8.2.2

Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer
---
 srcpkgs/gc/template | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/gc/template b/srcpkgs/gc/template
index 3e00fa2ab468..34dd2dab690e 100644
--- a/srcpkgs/gc/template
+++ b/srcpkgs/gc/template
@@ -1,22 +1,16 @@
 # Template file for 'gc'
 pkgname=gc
-version=8.0.6
+version=8.2.2
 revision=1
 build_style=gnu-configure
-configure_args="--enable-static --enable-mmap"
+configure_args="--enable-static"
 hostmakedepends="pkg-config"
-makedepends="libatomic_ops-devel"
 short_desc="Garbage collector for C and C++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2.0-or-later"
+maintainer="Ivan Maidanski <ivmai@mail.ru>"
+license="MIT"
 homepage="https://www.hboehm.info/gc/"
 distfiles="https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
-checksum=3b4914abc9fa76593596773e4da671d7ed4d5390e3d46fbf2e5f155e121bea11
-
-case "$XBPS_TARGET_MACHINE" in
-*-musl)
-	CFLAGS='-D_GNU_SOURCE -DNO_GETCONTEXT -DSEARCH_FOR_DATA_START -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR'
-esac
+checksum=f30107bcb062e0920a790ffffa56d9512348546859364c23a14be264b38836a0
 
 post_install() {
 	mkdir -p ${DESTDIR}/usr/include/gc/

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

* Re: gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
@ 2022-08-31 21:35 ` ivmai
  2022-09-01 10:50 ` [PR PATCH] [Updated] " ivmai
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-08-31 21:35 UTC (permalink / raw)
  To: ml

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

New comment by ivmai on void-packages repository

https://github.com/void-linux/void-packages/pull/39014#issuecomment-1233444980

Comment:
This PR supersedes abandoned https://github.com/void-linux/void-packages/pull/34176

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

* Re: [PR PATCH] [Updated] gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
  2022-08-31 21:35 ` ivmai
@ 2022-09-01 10:50 ` ivmai
  2022-09-01 14:32 ` ivmai
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-09-01 10:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ivmai/void-linux-packages patch-4
https://github.com/void-linux/void-packages/pull/39014

gc: Update to 8.2.2
Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x64)


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

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

From c2d6544b40368b89d00b983b027de71d59203760 Mon Sep 17 00:00:00 2001
From: Ivan Maidanski <ivmai@mail.ru>
Date: Thu, 1 Sep 2022 00:31:44 +0300
Subject: [PATCH] gc: Update to 8.2.2

Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer
* Specify README.QUICK as license file
---
 srcpkgs/gc/template | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/gc/template b/srcpkgs/gc/template
index 3e00fa2ab4689..41de263b288d4 100644
--- a/srcpkgs/gc/template
+++ b/srcpkgs/gc/template
@@ -1,28 +1,23 @@
 # Template file for 'gc'
 pkgname=gc
-version=8.0.6
+version=8.2.2
 revision=1
 build_style=gnu-configure
-configure_args="--enable-static --enable-mmap"
+configure_args="--enable-static"
 hostmakedepends="pkg-config"
-makedepends="libatomic_ops-devel"
 short_desc="Garbage collector for C and C++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2.0-or-later"
+maintainer="Ivan Maidanski <ivmai@mail.ru>"
+license="MIT"
 homepage="https://www.hboehm.info/gc/"
 distfiles="https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
-checksum=3b4914abc9fa76593596773e4da671d7ed4d5390e3d46fbf2e5f155e121bea11
-
-case "$XBPS_TARGET_MACHINE" in
-*-musl)
-	CFLAGS='-D_GNU_SOURCE -DNO_GETCONTEXT -DSEARCH_FOR_DATA_START -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR'
-esac
+checksum=f30107bcb062e0920a790ffffa56d9512348546859364c23a14be264b38836a0
 
 post_install() {
 	mkdir -p ${DESTDIR}/usr/include/gc/
 	mv ${wrksrc}/include/* ${DESTDIR}/usr/include/gc/
 	mv ${DESTDIR}/usr/include/gc/extra/* ${DESTDIR}/usr/include/
 	rmdir ${DESTDIR}/usr/include/gc/extra
+	vlicense README.QUICK
 }
 
 gc-devel_package() {

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

* Re: [PR PATCH] [Updated] gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
  2022-08-31 21:35 ` ivmai
  2022-09-01 10:50 ` [PR PATCH] [Updated] " ivmai
@ 2022-09-01 14:32 ` ivmai
  2022-09-01 15:24 ` ivmai
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-09-01 14:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ivmai/void-linux-packages patch-4
https://github.com/void-linux/void-packages/pull/39014

gc: Update to 8.2.2
Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x64)


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

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

From d7d181a226dcaecd5d3fdf81280fa2ead40742fe Mon Sep 17 00:00:00 2001
From: Ivan Maidanski <ivmai@mail.ru>
Date: Thu, 1 Sep 2022 00:31:44 +0300
Subject: [PATCH] gc: Update to 8.2.2

Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer
* Specify README.QUICK as license file
---
 srcpkgs/gc/template | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/gc/template b/srcpkgs/gc/template
index 3e00fa2ab4689..dc9cb3398a43a 100644
--- a/srcpkgs/gc/template
+++ b/srcpkgs/gc/template
@@ -1,28 +1,24 @@
 # Template file for 'gc'
 pkgname=gc
-version=8.0.6
+version=8.2.2
 revision=1
 build_style=gnu-configure
-configure_args="--enable-static --enable-mmap"
+configure_args="--enable-static"
 hostmakedepends="pkg-config"
 makedepends="libatomic_ops-devel"
 short_desc="Garbage collector for C and C++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2.0-or-later"
+maintainer="Ivan Maidanski <ivmai@mail.ru>"
+license="MIT"
 homepage="https://www.hboehm.info/gc/"
 distfiles="https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
-checksum=3b4914abc9fa76593596773e4da671d7ed4d5390e3d46fbf2e5f155e121bea11
-
-case "$XBPS_TARGET_MACHINE" in
-*-musl)
-	CFLAGS='-D_GNU_SOURCE -DNO_GETCONTEXT -DSEARCH_FOR_DATA_START -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR'
-esac
+checksum=f30107bcb062e0920a790ffffa56d9512348546859364c23a14be264b38836a0
 
 post_install() {
 	mkdir -p ${DESTDIR}/usr/include/gc/
 	mv ${wrksrc}/include/* ${DESTDIR}/usr/include/gc/
 	mv ${DESTDIR}/usr/include/gc/extra/* ${DESTDIR}/usr/include/
 	rmdir ${DESTDIR}/usr/include/gc/extra
+	vlicense README.QUICK
 }
 
 gc-devel_package() {

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

* Re: gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
                   ` (2 preceding siblings ...)
  2022-09-01 14:32 ` ivmai
@ 2022-09-01 15:24 ` ivmai
  2022-09-02  5:52 ` [PR PATCH] [Updated] " ivmai
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-09-01 15:24 UTC (permalink / raw)
  To: ml

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

New comment by ivmai on void-packages repository

https://github.com/void-linux/void-packages/pull/39014#issuecomment-1234434815

Comment:
@leahneukirchen, could you please also review this patch? Thank you

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

* Re: [PR PATCH] [Updated] gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
                   ` (3 preceding siblings ...)
  2022-09-01 15:24 ` ivmai
@ 2022-09-02  5:52 ` ivmai
  2022-09-02  6:03 ` ivmai
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-09-02  5:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ivmai/void-linux-packages patch-4
https://github.com/void-linux/void-packages/pull/39014

gc: Update to 8.2.2
Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x64)


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

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

From d7d181a226dcaecd5d3fdf81280fa2ead40742fe Mon Sep 17 00:00:00 2001
From: Ivan Maidanski <ivmai@mail.ru>
Date: Thu, 1 Sep 2022 00:31:44 +0300
Subject: [PATCH] gc: Update to 8.2.2

Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer
* Specify README.QUICK as license file
---
 srcpkgs/gc/template | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/gc/template b/srcpkgs/gc/template
index 3e00fa2ab4689..dc9cb3398a43a 100644
--- a/srcpkgs/gc/template
+++ b/srcpkgs/gc/template
@@ -1,28 +1,24 @@
 # Template file for 'gc'
 pkgname=gc
-version=8.0.6
+version=8.2.2
 revision=1
 build_style=gnu-configure
-configure_args="--enable-static --enable-mmap"
+configure_args="--enable-static"
 hostmakedepends="pkg-config"
 makedepends="libatomic_ops-devel"
 short_desc="Garbage collector for C and C++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2.0-or-later"
+maintainer="Ivan Maidanski <ivmai@mail.ru>"
+license="MIT"
 homepage="https://www.hboehm.info/gc/"
 distfiles="https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
-checksum=3b4914abc9fa76593596773e4da671d7ed4d5390e3d46fbf2e5f155e121bea11
-
-case "$XBPS_TARGET_MACHINE" in
-*-musl)
-	CFLAGS='-D_GNU_SOURCE -DNO_GETCONTEXT -DSEARCH_FOR_DATA_START -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR'
-esac
+checksum=f30107bcb062e0920a790ffffa56d9512348546859364c23a14be264b38836a0
 
 post_install() {
 	mkdir -p ${DESTDIR}/usr/include/gc/
 	mv ${wrksrc}/include/* ${DESTDIR}/usr/include/gc/
 	mv ${DESTDIR}/usr/include/gc/extra/* ${DESTDIR}/usr/include/
 	rmdir ${DESTDIR}/usr/include/gc/extra
+	vlicense README.QUICK
 }
 
 gc-devel_package() {

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

* Re: [PR PATCH] [Updated] gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
                   ` (4 preceding siblings ...)
  2022-09-02  5:52 ` [PR PATCH] [Updated] " ivmai
@ 2022-09-02  6:03 ` ivmai
  2022-09-02  6:34 ` ivmai
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-09-02  6:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ivmai/void-linux-packages patch-4
https://github.com/void-linux/void-packages/pull/39014

gc: Update to 8.2.2
Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x64)


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

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

From 256581946093902c61c12c0c578eddbf48e300bd Mon Sep 17 00:00:00 2001
From: Ivan Maidanski <ivmai@mail.ru>
Date: Fri, 2 Sep 2022 09:00:44 +0300
Subject: [PATCH] gc: Update to 8.2.2

Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer
* Specify README.QUICK as license file
---
 srcpkgs/gc/template | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/gc/template b/srcpkgs/gc/template
index 3e00fa2ab468..a62033103920 100644
--- a/srcpkgs/gc/template
+++ b/srcpkgs/gc/template
@@ -1,28 +1,24 @@
 # Template file for 'gc'
 pkgname=gc
-version=8.0.6
+version=8.2.2
 revision=1
 build_style=gnu-configure
-configure_args="--enable-static --enable-mmap"
+# libatomic_ops is replaced by C11 atomic
+configure_args="--enable-static --with-libatomic-ops=none"
 hostmakedepends="pkg-config"
-makedepends="libatomic_ops-devel"
 short_desc="Garbage collector for C and C++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2.0-or-later"
+maintainer="Ivan Maidanski <ivmai@mail.ru>"
+license="MIT"
 homepage="https://www.hboehm.info/gc/"
 distfiles="https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
-checksum=3b4914abc9fa76593596773e4da671d7ed4d5390e3d46fbf2e5f155e121bea11
-
-case "$XBPS_TARGET_MACHINE" in
-*-musl)
-	CFLAGS='-D_GNU_SOURCE -DNO_GETCONTEXT -DSEARCH_FOR_DATA_START -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR'
-esac
+checksum=f30107bcb062e0920a790ffffa56d9512348546859364c23a14be264b38836a0
 
 post_install() {
 	mkdir -p ${DESTDIR}/usr/include/gc/
 	mv ${wrksrc}/include/* ${DESTDIR}/usr/include/gc/
 	mv ${DESTDIR}/usr/include/gc/extra/* ${DESTDIR}/usr/include/
 	rmdir ${DESTDIR}/usr/include/gc/extra
+	vlicense README.QUICK
 }
 
 gc-devel_package() {

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

* Re: [PR PATCH] [Updated] gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
                   ` (5 preceding siblings ...)
  2022-09-02  6:03 ` ivmai
@ 2022-09-02  6:34 ` ivmai
  2022-09-02  6:53 ` ivmai
  2022-09-02  8:22 ` [PR PATCH] [Merged]: " sgn
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-09-02  6:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ivmai/void-linux-packages patch-4
https://github.com/void-linux/void-packages/pull/39014

gc: Update to 8.2.2
Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x64)


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

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

From f89682a9207d8a6d128fb61f0055562c3f515e7f Mon Sep 17 00:00:00 2001
From: Ivan Maidanski <ivmai@mail.ru>
Date: Fri, 2 Sep 2022 09:33:42 +0300
Subject: [PATCH] gc: Update to 8.2.2

Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* Fix license (it is MIT, not GPL)
* Set maintainer
* Remove unneeded CFLAGS
* Specify README.QUICK as license file
---
 srcpkgs/gc/template | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/gc/template b/srcpkgs/gc/template
index 8f88681f6693..a62033103920 100644
--- a/srcpkgs/gc/template
+++ b/srcpkgs/gc/template
@@ -1,28 +1,24 @@
 # Template file for 'gc'
 pkgname=gc
-version=8.0.6
-revision=2
+version=8.2.2
+revision=1
 build_style=gnu-configure
 # libatomic_ops is replaced by C11 atomic
-configure_args="--enable-static --enable-mmap --with-libatomic-ops=none"
+configure_args="--enable-static --with-libatomic-ops=none"
 hostmakedepends="pkg-config"
 short_desc="Garbage collector for C and C++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2.0-or-later"
+maintainer="Ivan Maidanski <ivmai@mail.ru>"
+license="MIT"
 homepage="https://www.hboehm.info/gc/"
 distfiles="https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
-checksum=3b4914abc9fa76593596773e4da671d7ed4d5390e3d46fbf2e5f155e121bea11
-
-case "$XBPS_TARGET_MACHINE" in
-*-musl)
-	CFLAGS='-D_GNU_SOURCE -DNO_GETCONTEXT -DSEARCH_FOR_DATA_START -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR'
-esac
+checksum=f30107bcb062e0920a790ffffa56d9512348546859364c23a14be264b38836a0
 
 post_install() {
 	mkdir -p ${DESTDIR}/usr/include/gc/
 	mv ${wrksrc}/include/* ${DESTDIR}/usr/include/gc/
 	mv ${DESTDIR}/usr/include/gc/extra/* ${DESTDIR}/usr/include/
 	rmdir ${DESTDIR}/usr/include/gc/extra
+	vlicense README.QUICK
 }
 
 gc-devel_package() {

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

* Re: gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
                   ` (6 preceding siblings ...)
  2022-09-02  6:34 ` ivmai
@ 2022-09-02  6:53 ` ivmai
  2022-09-02  8:22 ` [PR PATCH] [Merged]: " sgn
  8 siblings, 0 replies; 10+ messages in thread
From: ivmai @ 2022-09-02  6:53 UTC (permalink / raw)
  To: ml

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

New comment by ivmai on void-packages repository

https://github.com/void-linux/void-packages/pull/39014#issuecomment-1235136965

Comment:
/cc @sgn 

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

* Re: [PR PATCH] [Merged]: gc: Update to 8.2.2
  2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
                   ` (7 preceding siblings ...)
  2022-09-02  6:53 ` ivmai
@ 2022-09-02  8:22 ` sgn
  8 siblings, 0 replies; 10+ messages in thread
From: sgn @ 2022-09-02  8:22 UTC (permalink / raw)
  To: ml

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

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

gc: Update to 8.2.2
https://github.com/void-linux/void-packages/pull/39014

Description:
Other cleanups:
* Remove --enable-mmap (which is the default configure option now)
* No longer depends on libatomic_ops (provided the compiler is gcc or clang)
* Fix license (it is MIT, not GPL)
* Remove unneeded CFLAGS
* Set maintainer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x64)


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

end of thread, other threads:[~2022-09-02  8:22 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-31 21:33 [PR PATCH] gc: Update to 8.2.2 ivmai
2022-08-31 21:35 ` ivmai
2022-09-01 10:50 ` [PR PATCH] [Updated] " ivmai
2022-09-01 14:32 ` ivmai
2022-09-01 15:24 ` ivmai
2022-09-02  5:52 ` [PR PATCH] [Updated] " ivmai
2022-09-02  6:03 ` ivmai
2022-09-02  6:34 ` ivmai
2022-09-02  6:53 ` ivmai
2022-09-02  8:22 ` [PR PATCH] [Merged]: " sgn

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