git: 7ed7228b1faf - main - www/xapian-omega: Update to 1.4.24
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 14 Nov 2023 17:18:18 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=7ed7228b1faf7a77676553ed3439245bc217a509 commit 7ed7228b1faf7a77676553ed3439245bc217a509 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-11-14 16:38:52 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-11-14 17:15:36 +0000 www/xapian-omega: Update to 1.4.24 Changes: https://trac.xapian.org/wiki/ReleaseOverview --- www/xapian-omega/Makefile | 2 +- www/xapian-omega/distinfo | 6 +++--- www/xapian-omega/files/patch-values.h | 21 --------------------- 3 files changed, 4 insertions(+), 25 deletions(-) diff --git a/www/xapian-omega/Makefile b/www/xapian-omega/Makefile index 30243eb92ccd..959a3dbacd86 100644 --- a/www/xapian-omega/Makefile +++ b/www/xapian-omega/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapian-omega -PORTVERSION= 1.4.23 +PORTVERSION= 1.4.24 CATEGORIES= www MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION}/ \ LOCAL/sunpoet diff --git a/www/xapian-omega/distinfo b/www/xapian-omega/distinfo index 8a8bed3e170d..10aae2be2f2d 100644 --- a/www/xapian-omega/distinfo +++ b/www/xapian-omega/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1688902033 -SHA256 (xapian-omega-1.4.23.tar.xz) = 7ba460eba70004d1f44299de4e62dcc84009927e6d52604ae67a3e30165e220f -SIZE (xapian-omega-1.4.23.tar.xz) = 571596 +TIMESTAMP = 1699774494 +SHA256 (xapian-omega-1.4.24.tar.xz) = d08756e4f33b18916cc8a2493d311f1cbeb8ed4357bd40fa5c1744adc080ebff +SIZE (xapian-omega-1.4.24.tar.xz) = 580736 diff --git a/www/xapian-omega/files/patch-values.h b/www/xapian-omega/files/patch-values.h deleted file mode 100644 index a2ed27bdea99..000000000000 --- a/www/xapian-omega/files/patch-values.h +++ /dev/null @@ -1,21 +0,0 @@ ---- values.h.orig 2019-03-02 01:45:31 UTC -+++ values.h -@@ -37,18 +37,6 @@ enum value_slot { - VALUE_CTIME = 3 // Like VALUE_LASTMOD, but for last metadata change. - }; - --#ifndef WORDS_BIGENDIAN --inline std::uint32_t bswap32(std::uint32_t v) { --# if HAVE_DECL___BUILTIN_BSWAP32 -- return __builtin_bswap32(v); --# elif HAVE_DECL__BYTESWAP_ULONG -- return _byteswap_ulong(v); --# else -- return (v << 24) | ((v & 0xff00) << 8) | ((v >> 8) & 0xff00) | (v >> 24); --# endif --} --#endif -- - inline std::uint32_t binary_string_to_int(const std::string &s) - { - if (s.size() != 4) return static_cast<std::uint32_t>(-1);