public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Dominik 'Rathann' Mierzejewski <dominik@greysector.net>
To: git-commits@fedoraproject.org
Subject: [rpms/tin] epel10: update to 2.6.3 (#2255732)
Date: Sun, 23 Aug 2026 23:18:23 GMT	[thread overview]
Message-ID: <178752710392.1.3871009533458677472.rpms-tin-461828b8224a@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/tin
            Branch : epel10
            Commit : 461828b8224a05e7ba32991a3a9b2b47135aa9a4
            Author : Dominik 'Rathann' Mierzejewski <dominik@greysector.net>
            Date   : 2023-12-28T00:35:46+01:00
            Stats  : +14/-96 in 4 file(s)
            URL    : https://src.fedoraproject.org/rpms/tin/c/461828b8224a05e7ba32991a3a9b2b47135aa9a4?branch=epel10

            Log:
            update to 2.6.3 (#2255732)

- drop obsolete patch
- use SPDX identifiers in License field

---
diff --git a/.gitignore b/.gitignore
index 1c29b55..09d6c6b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,5 @@ tin-1.8.3.tar.bz2.sign
 /tin-2.6.1.tar.xz.sign
 /tin-2.6.2.tar.xz
 /tin-2.6.2.tar.xz.sign
+/tin-2.6.3.tar.xz
+/tin-2.6.3.tar.xz.sign

diff --git a/sources b/sources
index b7e1158..7ec2105 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (tin-2.6.2.tar.xz) = 4c9e0edb3268d57fb89d9d53a90e8a5ba73da7c1da63c834224bed0f763502a7c3dd325351d3e57b1ddcb57494a84228cc38f227c49300b759fad8d112b1cac1
-SHA512 (tin-2.6.2.tar.xz.sign) = 9eb9769bd2f83c38cf74489fbc8a08e4a1b66a3d5b68200c7d52756f685413a39401066f396adebd57f00b1daccc75d359f6c5de39b2f093fc78e1a698a352e1
+SHA512 (tin-2.6.3.tar.xz) = e8b474849e3330475e92b7c578ffe2f29f022303be266d39493e58b7227d9a5ee3915812c1806f52358c07f91d6119810498db906d2da7ffe035feba0e340a42
+SHA512 (tin-2.6.3.tar.xz.sign) = 9db2af64f2edf4a625bd39e3ade80bee0a1ab8c67f77bf3c06fff465bd4f91dd31c0668a0e3c97d3286cebd0d66f3d8f9f3bbd37e942424e3585e8aad50aad4d

diff --git a/tin-configure-c99.patch b/tin-configure-c99.patch
deleted file mode 100644
index e0b8a7c..0000000
--- a/tin-configure-c99.patch
+++ /dev/null
@@ -1,90 +0,0 @@
-diff --git a/aclocal.m4 b/aclocal.m4
-index 2891764c68c773c4..5620aad356b67762 100644
---- a/aclocal.m4
-+++ b/aclocal.m4
-@@ -3517,7 +3517,7 @@ RETSIGTYPE signal_handler (int sig)
- 	int system_status;
- 	wait (&wait_status);
- 	system_status = WEXITSTATUS(wait_status); /* should be nonzero */
--	${cf_cv_main_return:-return}(system_status != 23);
-+	exit(system_status != 23);
- }
- 
- int main(void)
-@@ -5173,7 +5173,7 @@ AC_CACHE_CHECK([for passwd.pw_gecos], cf_cv_pw_gecos,[
- #include <pwd.h>
- ],[
- 	struct passwd foo;
--	char bar = foo.pw_gecos],
-+	char *bar = foo.pw_gecos],
- 	[cf_cv_pw_gecos=yes],
- 	[cf_cv_pw_gecos=no])])
- test $cf_cv_pw_gecos = no && AC_DEFINE(DONT_HAVE_PW_GECOS,1,[Define this to 1 if passwd struct has .pw_gecos])
-diff --git a/configure b/configure
-index 9e2d9ab4b6c46581..a85eaf929db2c820 100755
---- a/configure
-+++ b/configure
-@@ -24209,7 +24209,8 @@ int
- main (void)
- {
- 
--			int32_t needed, ustr = NULL;
-+			int32_t needed;
-+			const UChar *ustr = NULL;
-  			UErrorCode status;
- 			needed = unorm_normalize(ustr, -1, UNORM_DEFAULT, 0, NULL, 0, &status);
-   ;
-@@ -26820,8 +26821,8 @@ cat >"conftest.$ac_ext" <<_ACEOF
- int
- main (void)
- {
--struct timeval *tv;
--struct timezone *tz;
-+struct timeval tv;
-+struct timezone tz;
- gettimeofday(&tv, &tz);
-   ;
-   return 0;
-@@ -27669,7 +27670,7 @@ main (void)
- {
- 
- 	struct passwd foo;
--	char bar = foo.pw_gecos
-+	char *bar = foo.pw_gecos
-   ;
-   return 0;
- }
-@@ -28106,7 +28107,7 @@ RETSIGTYPE signal_handler (int sig)
- 	int system_status;
- 	wait (&wait_status);
- 	system_status = WEXITSTATUS(wait_status); /* should be nonzero */
--	${cf_cv_main_return:-return}(system_status != 23);
-+	exit(system_status != 23);
- }
- 
- int main(void)
-diff --git a/configure.in b/configure.in
-index 7d24b24176f7c3a6..810eaf6158dc9b48 100644
---- a/configure.in
-+++ b/configure.in
-@@ -1013,7 +1013,8 @@ AC_CHECK_HEADER(unicode/unorm.h,[
- 		cf_try_icuuc="no"
- 		LIBS="$LIBS -licuuc"
- 		AC_TRY_LINK([#include <unicode/unorm.h>], [
--			int32_t needed, ustr = NULL;
-+			int32_t needed;
-+			const UChar *ustr = NULL;
-  			UErrorCode status;
- 			needed = unorm_normalize(ustr, -1, UNORM_DEFAULT, 0, NULL, 0, &status);], [
- 			AC_DEFINE(HAVE_LIBICUUC,1,[Define this to 1 if we have libicuuc])
-@@ -1280,8 +1281,8 @@ AC_TRY_COMPILE([
- #if HAVE_SYS_TIME_H
- #include <sys/time.h>
- #endif],
--[struct timeval *tv;
--struct timezone *tz;
-+[struct timeval tv;
-+struct timezone tz;
- gettimeofday(&tv, &tz);],
- ac_cv_func_gettimeofday_2args=yes, ac_cv_func_gettimeofday_2args=no)
- AC_MSG_RESULT($ac_cv_func_gettimeofday_2args)

diff --git a/tin.spec b/tin.spec
index 0653b1c..dbd70ed 100644
--- a/tin.spec
+++ b/tin.spec
@@ -1,13 +1,14 @@
 Name: tin
-Version: 2.6.2
-Release: 6%{?dist}
+Version: 2.6.3
+Release: 1%{?dist}
 Summary: Basic Internet news reader
-License: BSD
+# all sources built into binaries are BSD-3-Clause except
+# src/parsdate.{c,y} which are Public Domain
+License: BSD-3-Clause AND LicenseRef-Fedora-Public-Domain
 URL: http://www.tin.org/
 Source0: ftp://ftp.tin.org/pub/news/clients/tin/stable/tin-%{version}.tar.xz
 Source1: ftp://ftp.tin.org/pub/news/clients/tin/stable/tin-%{version}.tar.xz.sign
 Source2: tin-pgp-key-0x5A49550EB490B4D1.txt
-Patch0: tin-configure-c99.patch
 BuildRequires: make
 BuildRequires: %{_bindir}/ispell
 BuildRequires:  gcc-c++
@@ -81,6 +82,11 @@ rm -r ${workdir}
 %{_mandir}/man5/*
 
 %changelog
+* Wed Dec 27 2023 Dominik Mierzejewski <dominik@greysector.net> 2.6.3-1
+- update to 2.6.3 (#2255732)
+- drop obsolete patch
+- use SPDX identifiers in License field
+
 * Fri Dec 15 2023 Florian Weimer <fweimer@redhat.com> - 2.6.2-6
 - Further C compatibility fixes for the configure script
 

                 reply	other threads:[~2026-08-23 23:18 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=178752710392.1.3871009533458677472.rpms-tin-461828b8224a@fedoraproject.org \
    --to=dominik@greysector.net \
    --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