Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] libsasl: fix build with glibc 2.38
@ 2024-01-05 12:37 oreo639
  2024-01-05 12:40 ` [PR PATCH] [Updated] " oreo639
  2024-01-05 23:45 ` [PR PATCH] [Merged]: " classabbyamp
  0 siblings, 2 replies; 3+ messages in thread
From: oreo639 @ 2024-01-05 12:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oreo639/void-packages libsasl
https://github.com/void-linux/void-packages/pull/48074

libsasl: fix build with glibc 2.38
disable rm'd applications that depend on crypt()

<!-- 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, (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/48074.patch is attached

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

From f69495ac1f15368b49e6d20c290aad0a3162ffb0 Mon Sep 17 00:00:00 2001
From: oreo639 <oreo6391@gmail.com>
Date: Fri, 5 Jan 2024 04:35:50 -0800
Subject: [PATCH] libsasl: fix build with glibc 2.38

disable rm'd applications that depend on crypt()
---
 srcpkgs/libsasl/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/libsasl/template b/srcpkgs/libsasl/template
index 76d1811f128af..6c6da42d8150b 100644
--- a/srcpkgs/libsasl/template
+++ b/srcpkgs/libsasl/template
@@ -8,6 +8,7 @@ configure_args="--enable-cram --enable-digest --enable-auth-sasldb
  --enable-plain --enable-anon --enable-login --enable-gssapi --enable-ntlm
  --with-configdir=/etc/sasl2:/etc/sasl:/usr/lib/sasl2
  --disable-otp --disable-srp --disable-srp-setpass --disable-krb4
+ --with-saslauthd=no --with-authdaemond=no --with-pwcheck=no
  --with-devrandom=/dev/random
  ac_cv_gssapi_supports_spnego=yes"
 hostmakedepends="automake libtool pkg-config"

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

* Re: [PR PATCH] [Updated] libsasl: fix build with glibc 2.38
  2024-01-05 12:37 [PR PATCH] libsasl: fix build with glibc 2.38 oreo639
@ 2024-01-05 12:40 ` oreo639
  2024-01-05 23:45 ` [PR PATCH] [Merged]: " classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: oreo639 @ 2024-01-05 12:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oreo639/void-packages libsasl
https://github.com/void-linux/void-packages/pull/48074

libsasl: fix build with glibc 2.38
disable rm'd applications that depend on crypt()

The `cyrus-sasl` package was updated to use libxcrypt-devel, however here, the application that depends on it isn't needed so just disable it, along with some other rm'd applications.

<!-- 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, (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/48074.patch is attached

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

From 19c442bbad6e91a5beede8bd6f97ff2e38a979d9 Mon Sep 17 00:00:00 2001
From: oreo639 <oreo6391@gmail.com>
Date: Fri, 5 Jan 2024 04:35:50 -0800
Subject: [PATCH] libsasl: fix build with glibc 2.38

disable rm'd applications that depend on crypt()

The cyrus-sasl package was updated to use libxcrypt-devel, however here, the
application that depends on crypt() gets rm'd so just disable it along with
some other applications that get rm'd.
---
 srcpkgs/libsasl/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/libsasl/template b/srcpkgs/libsasl/template
index 76d1811f128af..6c6da42d8150b 100644
--- a/srcpkgs/libsasl/template
+++ b/srcpkgs/libsasl/template
@@ -8,6 +8,7 @@ configure_args="--enable-cram --enable-digest --enable-auth-sasldb
  --enable-plain --enable-anon --enable-login --enable-gssapi --enable-ntlm
  --with-configdir=/etc/sasl2:/etc/sasl:/usr/lib/sasl2
  --disable-otp --disable-srp --disable-srp-setpass --disable-krb4
+ --with-saslauthd=no --with-authdaemond=no --with-pwcheck=no
  --with-devrandom=/dev/random
  ac_cv_gssapi_supports_spnego=yes"
 hostmakedepends="automake libtool pkg-config"

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

* Re: [PR PATCH] [Merged]: libsasl: fix build with glibc 2.38
  2024-01-05 12:37 [PR PATCH] libsasl: fix build with glibc 2.38 oreo639
  2024-01-05 12:40 ` [PR PATCH] [Updated] " oreo639
@ 2024-01-05 23:45 ` classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: classabbyamp @ 2024-01-05 23:45 UTC (permalink / raw)
  To: ml

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

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

libsasl: fix build with glibc 2.38
https://github.com/void-linux/void-packages/pull/48074

Description:
disable rm'd applications that depend on crypt()

The `cyrus-sasl` package was updated to use libxcrypt-devel, however here, the application that depends on it isn't needed so just disable it, along with some other rm'd applications.

<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2024-01-05 23:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-05 12:37 [PR PATCH] libsasl: fix build with glibc 2.38 oreo639
2024-01-05 12:40 ` [PR PATCH] [Updated] " oreo639
2024-01-05 23:45 ` [PR PATCH] [Merged]: " classabbyamp

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