Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] libidn: update to 1.37.
@ 2021-05-28 19:01 ailiop-git
  2021-05-31 21:28 ` ericonr
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ailiop-git @ 2021-05-28 19:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ailiop-git/void-packages libidn
https://github.com/void-linux/void-packages/pull/31183

libidn: update to 1.37.
<!-- 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
- [ ] 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/31183.patch is attached

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

From 95971a7cc391c865b775f4eedf9fdce0fa578e67 Mon Sep 17 00:00:00 2001
From: Anthony Iliopoulos <ailiop@altatus.com>
Date: Fri, 28 May 2021 20:42:59 +0200
Subject: [PATCH] libidn: update to 1.37.

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

diff --git a/srcpkgs/libidn/template b/srcpkgs/libidn/template
index de73822035b0..ea0de262aeb6 100644
--- a/srcpkgs/libidn/template
+++ b/srcpkgs/libidn/template
@@ -1,6 +1,6 @@
 # Template file for 'libidn'
 pkgname=libidn
-version=1.36
+version=1.37
 revision=1
 build_style=gnu-configure
 configure_args="--disable-csharp --disable-java --disable-static
@@ -11,7 +11,7 @@ maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later, LGPL-2.1-or-later"
 homepage="https://www.gnu.org/software/libidn/"
 distfiles="${GNU_SITE}/libidn/libidn-${version}.tar.gz"
-checksum=14b67108344d81ba844631640df77c9071d9fb0659b080326ff5424e86b14038
+checksum=3c8e970d5cd80a8cb56f59c61611535336343942e3f1c81b0190c69993a692c2
 
 pre_configure() {
 	autoreconf -fi

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

* Re: libidn: update to 1.37.
  2021-05-28 19:01 [PR PATCH] libidn: update to 1.37 ailiop-git
@ 2021-05-31 21:28 ` ericonr
  2021-05-31 21:43 ` ericonr
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2021-05-31 21:28 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31183#issuecomment-851691242

Comment:
Build is broken on musl:

```
In file included from /usr/include/endian.h:23,
                 from /usr/include/sys/types.h:70,
                 from ./sys/types.h:39,
                 from ./fcntl.h:56,
                 from cloexec.c:25:
./stdint.h:89:5: error: #if with no expression
   89 | #if
      |     ^
```

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

* Re: libidn: update to 1.37.
  2021-05-28 19:01 [PR PATCH] libidn: update to 1.37 ailiop-git
  2021-05-31 21:28 ` ericonr
@ 2021-05-31 21:43 ` ericonr
  2021-05-31 21:44 ` ericonr
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2021-05-31 21:43 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31183#issuecomment-851694797

Comment:
gnulib is kinda borked:

```
/* Override WINT_MIN and WINT_MAX if gnulib's <wchar.h> or <wctype.h> overrides
   wint_t.  */
#if @GNULIBHEADERS_OVERRIDE_WINT_T@
# undef WINT_MIN
# undef WINT_MAX
# define WINT_MIN 0x0U
# define WINT_MAX 0xffffffffU
#endif
```

`GNULIBHEADERS_OVERRIDE_WINT_T` ends up empty and the `#if ` line makes the preprocessor error out.

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

* Re: libidn: update to 1.37.
  2021-05-28 19:01 [PR PATCH] libidn: update to 1.37 ailiop-git
  2021-05-31 21:28 ` ericonr
  2021-05-31 21:43 ` ericonr
@ 2021-05-31 21:44 ` ericonr
  2021-05-31 21:49 ` ericonr
  2021-07-28  4:23 ` [PR PATCH] [Closed]: " ericonr
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2021-05-31 21:44 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31183#issuecomment-851694797

Comment:
gnulib is kinda borked:

```
/* Override WINT_MIN and WINT_MAX if gnulib's <wchar.h> or <wctype.h> overrides
   wint_t.  */
#if @GNULIBHEADERS_OVERRIDE_WINT_T@
# undef WINT_MIN
# undef WINT_MAX
# define WINT_MIN 0x0U
# define WINT_MAX 0xffffffffU
#endif
```

`GNULIBHEADERS_OVERRIDE_WINT_T` ends up empty and the resulting `#if ` line makes the preprocessor error out.

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

* Re: libidn: update to 1.37.
  2021-05-28 19:01 [PR PATCH] libidn: update to 1.37 ailiop-git
                   ` (2 preceding siblings ...)
  2021-05-31 21:44 ` ericonr
@ 2021-05-31 21:49 ` ericonr
  2021-07-28  4:23 ` [PR PATCH] [Closed]: " ericonr
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2021-05-31 21:49 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31183#issuecomment-851696005

Comment:
And since we are here, remove `--enable-threads=posix` from config args.

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

* Re: [PR PATCH] [Closed]: libidn: update to 1.37.
  2021-05-28 19:01 [PR PATCH] libidn: update to 1.37 ailiop-git
                   ` (3 preceding siblings ...)
  2021-05-31 21:49 ` ericonr
@ 2021-07-28  4:23 ` ericonr
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2021-07-28  4:23 UTC (permalink / raw)
  To: ml

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

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

libidn: update to 1.37.
https://github.com/void-linux/void-packages/pull/31183

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
- [ ] 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] 6+ messages in thread

end of thread, other threads:[~2021-07-28  4:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-28 19:01 [PR PATCH] libidn: update to 1.37 ailiop-git
2021-05-31 21:28 ` ericonr
2021-05-31 21:43 ` ericonr
2021-05-31 21:44 ` ericonr
2021-05-31 21:49 ` ericonr
2021-07-28  4:23 ` [PR PATCH] [Closed]: " 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).