public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Joe Orton <jorton@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/neon] epel10.3: update to 0.37.1
Date: Wed, 26 Aug 2026 14:41:06 GMT	[thread overview]
Message-ID: <178775526632.1.6112724199794646802.rpms-neon-9382d79d8e66@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/neon
Branch : epel10.3
Commit : 9382d79d8e66e2ed9812a53452031d2a16b2ab59
Author : Joe Orton <jorton@redhat.com>
Date   : 2026-04-07T07:45:32+01:00
Stats  : +3/-47 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/neon/c/9382d79d8e66e2ed9812a53452031d2a16b2ab59?branch=epel10.3

Log:
update to 0.37.1

---
diff --git a/.gitignore b/.gitignore
index 42b1f35..5d0aa23 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,3 +19,4 @@ neon-0.29.2.tar.gz
 /neon-0.35.0.tar.gz
 /neon-0.36.0.tar.gz
 /neon-0.37.0.tar.gz
+/neon-0.37.1.tar.gz

diff --git a/neon-0.37.0-bigend.patch b/neon-0.37.0-bigend.patch
deleted file mode 100644
index ea99e8c..0000000
--- a/neon-0.37.0-bigend.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-
-Fix test cases on bigendian systems.
-
-diff --git a/test/auth.c b/test/auth.c
-index 09fe2c6..41a0407 100644
---- a/test/auth.c
-+++ b/test/auth.c
-@@ -1788,10 +1788,10 @@ static int build_type2_challenge(tSmbNtlmAuthChallenge *challenge,
-             challenge->buffer[i*2] = domain[i];
-             challenge->buffer[i*2+1] = 0;
-         }
--        challenge->uDomain.len = i * 2;
--        challenge->uDomain.maxlen = i * 2;
--        challenge->uDomain.offset = (unsigned char *)challenge->buffer - (unsigned char *)challenge;
--        challenge->bufIndex = i * 2;
-+        challenge->uDomain.len = htole16(i * 2);
-+        challenge->uDomain.maxlen = htole16(i * 2);
-+        challenge->uDomain.offset = htole32((unsigned char *)challenge->buffer - (unsigned char *)challenge);
-+        challenge->bufIndex = htole32(i * 2);
-     }
- 
-     return OK;
-@@ -1846,8 +1846,8 @@ static int serve_ntlm(ne_socket *sock, void *userdata)
- 
-         ONV(memcmp(request.ident, "NTLMSSP\0", 8) != 0,
-             ("Type 1 message has invalid NTLMSSP signature"));
--        ONV(request.msgType != 1,
--            ("Type 1 message has wrong type: %u (expected 1)", request.msgType));
-+        ONV(le32toh(request.msgType) != 1,
-+            ("Type 1 message has wrong type: %u (expected 1)", le32toh(request.msgType)));
- 
-         NE_DEBUG(NE_DBG_HTTP, "auth: Valid Type 1 message received.\n");
- #ifdef NE_DEBUGGING
-@@ -1893,8 +1893,8 @@ static int serve_ntlm(ne_socket *sock, void *userdata)
- 
-     ONV(memcmp(response.ident, "NTLMSSP\0", 8) != 0,
-         ("Type 3 message has invalid NTLMSSP signature"));
--    ONV(response.msgType != 3,
--        ("Type 3 message has wrong type: %u (expected 3)", response.msgType));
-+    ONV(le32toh(response.msgType) != 3,
-+        ("Type 3 message has wrong type: %u (expected 3)", le32toh(response.msgType)));
-     
-     /* Validate security buffers have reasonable values */
-     ONV(response.lmResponse.len > 24 && response.lmResponse.len != 24,

diff --git a/neon.spec b/neon.spec
index 4102480..b0a3e3a 100644
--- a/neon.spec
+++ b/neon.spec
@@ -7,13 +7,12 @@
 
 Summary: An HTTP and WebDAV client library
 Name: neon
-Version: 0.37.0
+Version: 0.37.1
 Release: %autorelease
 License: LGPL-2.0-or-later
 URL: https://notroj.github.io/neon/
 Source0: https://notroj.github.io/neon/neon-%{version}.tar.gz
 Patch0: neon-0.34.0-multilib.patch
-Patch1: neon-0.37.0-bigend.patch
 BuildRequires: expat-devel, openssl-devel, zlib-devel, krb5-devel
 BuildRequires: pkgconfig, make, gcc, xmlto, libntlm-devel
 %if %{with pkcs11}

diff --git a/sources b/sources
index 4335d95..4c48677 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (neon-0.37.0.tar.gz) = c3c41c90d29bb93375e88d56288b4e4044324ace4b4e10dd2ae6ddea33f0223d024c07c366ab1da2f32fa2625b1462cc3ed3fceb694626409e0d42a9a8a63bdb
+SHA512 (neon-0.37.1.tar.gz) = 3d3e369b91f2aad336c682f5cc47ec25726409c29bf85ff407ae5ad3a81300fd227df82877efc2a6d461301dafcd3a40ee3556ce803e5e766b18b5dca2d35500

                 reply	other threads:[~2026-08-26 14:41 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178775526632.1.6112724199794646802.rpms-neon-9382d79d8e66@fedoraproject.org \
    --to=jorton@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox