public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/global] rawhide: Update to v6.6.15
@ 2026-06-20 19:42 Matthew Krupcale
0 siblings, 0 replies; only message in thread
From: Matthew Krupcale @ 2026-06-20 19:42 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/global
Branch : rawhide
Commit : 09391c57a6514186559965156c5774ec2250b073
Author : Matthew Krupcale <mkrupcale@gmail.com>
Date : 2026-06-20T15:39:19-04:00
Stats : +6/-64 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/global/c/09391c57a6514186559965156c5774ec2250b073?branch=rawhide
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 ee99fef..74b41a8 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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-20 19:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-20 19:42 [rpms/global] rawhide: Update to v6.6.15 Matthew Krupcale
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox