Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] vc: update to 1.4.2.
@ 2021-08-01  8:56 ardadem
  2021-08-03  4:45 ` [PR PATCH] [Merged]: " ericonr
  0 siblings, 1 reply; 2+ messages in thread
From: ardadem @ 2021-08-01  8:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ardadem/void-packages pr-vc-142
https://github.com/void-linux/void-packages/pull/32284

vc: update to 1.4.2.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [X] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From edc7a52de08e275fa789cb9ed937416db0d2f349 Mon Sep 17 00:00:00 2001
From: Arda Demir <ddmirarda@gmail.com>
Date: Sun, 1 Aug 2021 11:52:23 +0300
Subject: [PATCH] vc: update to 1.4.2.

---
 ...9a67bd5b7523da7678eb5b37f42c0e2759b7.patch | 31 +++++++++++++++++++
 srcpkgs/vc/template                           |  4 +--
 2 files changed, 33 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch

diff --git a/srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch b/srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch
new file mode 100644
index 000000000000..4fc361225049
--- /dev/null
+++ b/srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch
@@ -0,0 +1,31 @@
+From dea29a67bd5b7523da7678eb5b37f42c0e2759b7 Mon Sep 17 00:00:00 2001
+From: Bernhard Manfred Gruber <bernhardmgruber@gmail.com>
+Date: Fri, 25 Jun 2021 14:24:23 +0200
+Subject: [PATCH] support GCC standard libraries which do not define
+ __GLIBC_PREREQ
+
+---
+ Vc/global.h | 7 ++++++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/Vc/global.h b/Vc/global.h
+index 6f85b3ce2..d19dc45c2 100644
+--- a/Vc/global.h
++++ b/Vc/global.h
+@@ -132,10 +132,15 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ #endif
+ 
+ #ifdef Vc_GCC
+-#  if Vc_GCC >= 0x70000 && defined __i386__ && (!defined __GLIBC_PREREQ || !__GLIBC_PREREQ(2,26))
++#  if Vc_GCC >= 0x70000 && defined __i386__
+      // GCC 7 changed alignof(max_align_t) to 16. glibc 2.26 followed with malloc in 2.26.
+      // 1. If GCC >= 7 and libc is not glibc max_align_t and malloc mismatch
+      // 2. If GCC >= 7 and libc is glibc < 2.26 max_align_t and malloc mismatch
++#    ifdef __GLIBC_PREREQ
++#      if __GLIBC_PREREQ(2,26)
++#        define Vc_HAVE_STD_MAX_ALIGN_T 1
++#      endif
++#    endif
+ #  elif Vc_GCC >= 0x40900
+ #    define Vc_HAVE_STD_MAX_ALIGN_T 1
+ #  else
diff --git a/srcpkgs/vc/template b/srcpkgs/vc/template
index 9b2a89373446..63a77967b37c 100644
--- a/srcpkgs/vc/template
+++ b/srcpkgs/vc/template
@@ -1,6 +1,6 @@
 # Template file for 'vc'
 pkgname=vc
-version=1.4.1
+version=1.4.2
 revision=1
 wrksrc="Vc-${version}"
 build_style=cmake
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/VcDevel/Vc"
 distfiles="${homepage}/releases/download/${version}/Vc-${version}.tar.gz"
-checksum=68e609a735326dc3625e98bd85258e1329fb2a26ce17f32c432723b750a4119f
+checksum=50d3f151e40b0718666935aa71d299d6370fafa67411f0a9e249fbce3e6e3952
 
 post_install() {
 	vlicense LICENSE

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

* Re: [PR PATCH] [Merged]: vc: update to 1.4.2.
  2021-08-01  8:56 [PR PATCH] vc: update to 1.4.2 ardadem
@ 2021-08-03  4:45 ` ericonr
  0 siblings, 0 replies; 2+ messages in thread
From: ericonr @ 2021-08-03  4:45 UTC (permalink / raw)
  To: ml

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

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

vc: update to 1.4.2.
https://github.com/void-linux/void-packages/pull/32284

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [X] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

end of thread, other threads:[~2021-08-03  4:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-01  8:56 [PR PATCH] vc: update to 1.4.2 ardadem
2021-08-03  4:45 ` [PR PATCH] [Merged]: " ericonr

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