public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Matthew Krupcale <mkrupcale@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/global] epel10: Update to v6.6.15
Date: Sat, 20 Jun 2026 19:51:11 GMT [thread overview]
Message-ID: <178198507196.1.2576759798845695484.rpms-global-46d0c5ea4d87@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/global
Branch : epel10
Commit : 46d0c5ea4d87988ad536837d4724743bca5085fb
Author : Matthew Krupcale <mkrupcale@gmail.com>
Date : 2026-06-20T15:40:43-04:00
Stats : +6/-64 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/global/c/46d0c5ea4d87988ad536837d4724743bca5085fb?branch=epel10
Log:
Update to v6.6.15
Update to the latest release v6.6.15 and remove unnecessary libdb function
pointers patch resolved by upstream.
* .gitignore, sources: Update to v6.6.15
* global.spec:
- Update to v6.6.15
- Remove patch
* libdb-dbpanic-function-pointers.patch: remove
---
diff --git a/.gitignore b/.gitignore
index 69d8ce5..572df29 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ global-5.7.5.tar.gz
/global-6.6.4.tar.gz
/global-6.6.5.tar.gz
/global-6.6.14.tar.gz
+/global-6.6.15.tar.gz
diff --git a/global.spec b/global.spec
index c867b66..fde312c 100644
--- a/global.spec
+++ b/global.spec
@@ -1,7 +1,7 @@
%bcond reconf 1
Name: global
-Version: 6.6.14
+Version: 6.6.15
Release: 1%{?dist}
Summary: Source code tag system
# The entire source code is GPL-3.0-or-later except:
@@ -62,8 +62,6 @@ Obsoletes: emacs-global-el <= 6.5.1-1
Provides: emacs-global = %{version}-%{release}
Provides: emacs-global-el = %{version}-%{release}
-Patch0100: libdb-dbpanic-function-pointers.patch
-
%description
GNU GLOBAL is a source code tag system that works the same way across
diverse environments. It supports C, C++, Yacc, Java, PHP and
@@ -145,6 +143,9 @@ chmod -x %{buildroot}/%{_sysconfdir}/gtags.conf
%{_libdir}/gtags/*
%changelog
+* Sat Jun 20 2026 Matthew Krupcale <mkrupcale@gmail.com> - 6.6.15-1
+- Update to v6.6.15
+
* Sat Feb 14 2026 Matthew Krupcale <mkrupcale@gmail.com> - 6.6.14-1
- Update to v6.6.14
diff --git a/libdb-dbpanic-function-pointers.patch b/libdb-dbpanic-function-pointers.patch
deleted file mode 100644
index 29895d9..0000000
--- a/libdb-dbpanic-function-pointers.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-diff --git a/libdb/db.c b/libdb/db.c
-index d6734a1..5c9eb4e 100644
---- a/libdb/db.c
-+++ b/libdb/db.c
-@@ -75,7 +75,37 @@ dbopen(const char *fname, int flags, int mode, DBTYPE type, const void *openinfo
- }
-
- static int
--__dberr(void)
-+__dberr_del(const DB *, const DBT *, u_int)
-+{
-+ return (RET_ERROR);
-+}
-+
-+static int
-+__dberr_fd(const DB *)
-+{
-+ return (RET_ERROR);
-+}
-+
-+static int
-+__dberr_get(const DB *, const DBT *, DBT *, u_int)
-+{
-+ return (RET_ERROR);
-+}
-+
-+static int
-+__dberr_put(const DB *, DBT *, const DBT *, u_int)
-+{
-+ return (RET_ERROR);
-+}
-+
-+static int
-+__dberr_seq(const DB *, DBT *, DBT *, u_int)
-+{
-+ return (RET_ERROR);
-+}
-+
-+static int
-+__dberr_sync(const DB *, u_int)
- {
- return (RET_ERROR);
- }
-@@ -89,10 +119,10 @@ void
- __dbpanic(DB *dbp)
- {
- /* The only thing that can succeed is a close. */
-- dbp->del = (int (*)())__dberr;
-- dbp->fd = (int (*)())__dberr;
-- dbp->get = (int (*)())__dberr;
-- dbp->put = (int (*)())__dberr;
-- dbp->seq = (int (*)())__dberr;
-- dbp->sync = (int (*)())__dberr;
-+ dbp->del = __dberr_del;
-+ dbp->fd = __dberr_fd;
-+ dbp->get = __dberr_get;
-+ dbp->put = __dberr_put;
-+ dbp->seq = __dberr_seq;
-+ dbp->sync = __dberr_sync;
- }
diff --git a/sources b/sources
index 780df41..d64dfbb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (global-6.6.14.tar.gz) = 295b58cdbce3aca1a1cb47f87f6127d31860e07ba6003810f418dd1eff2e389ac78bcdb131d18e48d935cd42351eee7c5474fc2ff3bcd783a48a4ef178e5cad6
+SHA512 (global-6.6.15.tar.gz) = 7ce0343dde953244a0a24637165803bf06aa80bbb9be856854bc7d36243c0729dc94aeadeda95ee1472fe46885ecc1acbb96140cedfbaf05631bf72d67e0b774
reply other threads:[~2026-06-20 19:51 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=178198507196.1.2576759798845695484.rpms-global-46d0c5ea4d87@fedoraproject.org \
--to=mkrupcale@gmail.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