public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Orion Poplawski <orion@nwra.com>
To: git-commits@fedoraproject.org
Subject: [rpms/uriparser] epel9: Merge branch 'rawhide' into epel9-update
Date: Mon, 22 Jun 2026 11:34:46 GMT	[thread overview]
Message-ID: <178212808640.1.5037606133638086181.rpms-uriparser-ec284e7f544f@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/uriparser
Branch : epel9
Commit : ec284e7f544fadbfad483aab08e7f2c766650071
Author : Orion Poplawski <orion@nwra.com>
Date   : 2026-06-21T17:06:59-06:00
Stats  : +35/-22 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/uriparser/c/ec284e7f544fadbfad483aab08e7f2c766650071?branch=epel9

Log:
Merge branch 'rawhide' into epel9-update

---
diff --git a/.gitignore b/.gitignore
index 956e7e7..08f7661 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,7 @@ uriparser-0.7.5.tar.gz
 /uriparser-0.9.6.tar.bz2
 /uriparser-0.9.7.tar.bz2
 /uriparser-0.9.8.tar.bz2
+/uriparser-0.9.9.tar.bz2
+/uriparser-1.0.0.tar.bz2
+/uriparser-1.0.1.tar.bz2
+/uriparser-1.0.2.tar.bz2

diff --git a/sources b/sources
index 14e021f..1622297 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (uriparser-0.9.8.tar.bz2) = 41377e27f92345442cafa4e443485808c286430fcb5ce2354a683344e744786a170f443425f304bdb5a152edf96a3412f203eabe4fb3345a369e6d69f3d97e40
+SHA512 (uriparser-1.0.2.tar.bz2) = 23cf062e10b70e3cababbbb52e20a7e3ca17ae2cba21125ab0587a3dbee562d12d727703567ce14cba90151712f2c4c9e911eda92245292ea3a1138f88dd09fd

diff --git a/uriparser-inet-ntop.patch b/uriparser-inet-ntop.patch
deleted file mode 100644
index d298963..0000000
--- a/uriparser-inet-ntop.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -rupN --no-dereference uriparser-0.9.6/tool/uriparse.c uriparser-0.9.6-new/tool/uriparse.c
---- uriparser-0.9.6/tool/uriparse.c	2022-01-06 19:01:11.000000000 +0100
-+++ uriparser-0.9.6-new/tool/uriparse.c	2022-01-07 10:22:25.506474914 +0100
-@@ -43,10 +43,6 @@
- #ifdef _WIN32
- # include <winsock2.h>
- # include <ws2tcpip.h>
--# ifdef __MINGW32__
--WINSOCK_API_LINKAGE const char * WSAAPI inet_ntop(
--		int af, const void *src, char *dst, socklen_t size);
--# endif
- #else
- # include <sys/socket.h>
- # include <arpa/inet.h>

diff --git a/uriparser.spec b/uriparser.spec
index d7bd475..cebafd7 100644
--- a/uriparser.spec
+++ b/uriparser.spec
@@ -5,11 +5,13 @@
 %endif
 
 Name:           uriparser
-Version:        0.9.8
-Release:        2%{?dist}
+Version:        1.0.2
+Release:        1%{?dist}
 Summary:        URI parsing library - RFC 3986
 
-# /test/ is under LGPL-2.1-or-later but not included in RPM
+# main license is BSD-3-Clause
+# test suite is licensed under the LGPL-2.1-or-later, but it is not included in the binary RPM
+# fuzzing code is licensed under the Apache-2.0 license, but it is not included in the binary RPM
 # /doc/rfc* are under LicenseRef-scancode-iso-8879, LicenseRef-scancode-ietf, LicenseRef-scancode-ietf-trust but not included in RPM
 License:        BSD-3-Clause
 URL:            https://uriparser.github.io/
@@ -108,7 +110,7 @@ sed -i 's/GENERATE_QHP\ =\ yes/GENERATE_QHP\ =\ no/g' doc/Doxyfile.in
 
 %files
 %doc THANKS AUTHORS ChangeLog
-%license COPYING
+%license COPYING.BSD-3-Clause
 %{_bindir}/uriparse
 %{_libdir}/lib%{name}.so.1*
 
@@ -119,12 +121,12 @@ sed -i 's/GENERATE_QHP\ =\ yes/GENERATE_QHP\ =\ no/g' doc/Doxyfile.in
 %{_libdir}/pkgconfig/lib%{name}.pc
 
 %files doc
-%license COPYING
+%license COPYING.BSD-3-Clause
 %doc %{_docdir}/%{name}/html
 
 %if %{with mingw}
 %files -n mingw32-%{name}
-%license COPYING
+%license COPYING.BSD-3-Clause
 %{mingw32_bindir}/uriparse.exe
 %{mingw32_bindir}/lib%{name}-1.dll
 %{mingw32_includedir}/%{name}/
@@ -133,7 +135,7 @@ sed -i 's/GENERATE_QHP\ =\ yes/GENERATE_QHP\ =\ no/g' doc/Doxyfile.in
 %{mingw32_libdir}/cmake/%{name}-%{version}/
 
 %files -n mingw64-%{name}
-%license COPYING
+%license COPYING.BSD-3-Clause
 %{mingw64_bindir}/uriparse.exe
 %{mingw64_includedir}/%{name}/
 %{mingw64_bindir}/lib%{name}-1.dll
@@ -144,6 +146,27 @@ sed -i 's/GENERATE_QHP\ =\ yes/GENERATE_QHP\ =\ no/g' doc/Doxyfile.in
 
 
 %changelog
+* Mon May 11 2026 Sandro Mani <manisandro@gmail.com> - 1.0.2-1
+- Update to 1.0.2
+
+* Thu Apr 30 2026 Sandro Mani <manisandro@gmail.com> - 1.0.1-1
+- Update to 1.0.1
+
+* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
+
+* Mon Dec 15 2025 Sandro Mani <manisandro@gmail.com> - 1.0.0-1
+- Update to 1.0.0
+
+* Thu Sep 04 2025 Sandro Mani <manisandro@gmail.com> - 0.9.9-1
+- Update to 0.9.9
+
+* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
+
+* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
+
 * Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
 

                 reply	other threads:[~2026-06-22 11:34 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=178212808640.1.5037606133638086181.rpms-uriparser-ec284e7f544f@fedoraproject.org \
    --to=orion@nwra.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