Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 17FB384D1B for ; Mon, 13 Nov 2023 15:26:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id aEb4poeE5Fmx for ; Mon, 13 Nov 2023 15:26:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 794FF84CE3 for ; Mon, 13 Nov 2023 15:26:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6DCC3FA3D; Mon, 13 Nov 2023 15:26:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169988916995020" MIME-Version: 1.0 Date: Mon, 13 Nov 2023 15:26:09 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/geography/libmaxminddb To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231113152609.6DCC3FA3D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169988916995020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Nov 13 15:26:09 UTC 2023 Modified Files: pkgsrc/geography/libmaxminddb: Makefile distinfo Log Message: libmaxminddb: update to 1.8.0. ## 1.8.0 - 2023-11-07 * `PACKAGE_VERSION` is now a private compile definition when building with CMake. Pull request by bsergean. GitHub #308. * `PACKAGE_VERSION` is no longer defined in `maxminddb.h` on Windows. * The feature test macro `_POSIX_C_SOURCE` is no longer set by `maxminddb.h`. As discussed in GitHub #318, this should be set by applications rather than by libraries. * `assert()` is no longer used outside test code. * The deprecated Visual Studio 12 project files in the `projects/` directory have been removed. CMake should be used when building on Windows. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/geography/libmaxminddb/Makefile \ pkgsrc/geography/libmaxminddb/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169988916995020 Content-Disposition: inline Content-Length: 1949 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/libmaxminddb/Makefile diff -u pkgsrc/geography/libmaxminddb/Makefile:1.10 pkgsrc/geography/libmaxminddb/Makefile:1.11 --- pkgsrc/geography/libmaxminddb/Makefile:1.10 Fri Oct 7 20:03:16 2022 +++ pkgsrc/geography/libmaxminddb/Makefile Mon Nov 13 15:26:09 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2022/10/07 20:03:16 fcambus Exp $ +# $NetBSD: Makefile,v 1.11 2023/11/13 15:26:09 wiz Exp $ -DISTNAME= libmaxminddb-1.7.1 +DISTNAME= libmaxminddb-1.8.0 CATEGORIES= geography MASTER_SITES= ${MASTER_SITE_GITHUB:=maxmind/} GITHUB_RELEASE= ${PKGVERSION_NOREV} @@ -11,10 +11,12 @@ COMMENT= C library for the MaxMind DB fi LICENSE= apache-2.0 GNU_CONFIGURE= yes -USE_LANGUAGES+= c99 +USE_LANGUAGES+= c USE_LIBTOOL= yes USE_TOOLS+= gmake +USE_CC_FEATURES= c99 + PKGCONFIG_OVERRIDE+= src/libmaxminddb.pc.in .include "../../mk/bsd.pkg.mk" Index: pkgsrc/geography/libmaxminddb/distinfo diff -u pkgsrc/geography/libmaxminddb/distinfo:1.10 pkgsrc/geography/libmaxminddb/distinfo:1.11 --- pkgsrc/geography/libmaxminddb/distinfo:1.10 Fri Oct 7 20:03:16 2022 +++ pkgsrc/geography/libmaxminddb/distinfo Mon Nov 13 15:26:09 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2022/10/07 20:03:16 fcambus Exp $ +$NetBSD: distinfo,v 1.11 2023/11/13 15:26:09 wiz Exp $ -BLAKE2s (libmaxminddb-1.7.1.tar.gz) = d91b08c2cbf4d41291f022a22c726aa0203e6da8ddd44c2c327ca71bcb1050a9 -SHA512 (libmaxminddb-1.7.1.tar.gz) = 5ad6e5f20dd0fd094d2e44b950256e3e705f6b7d1a5ffcc08f46d92917a540ac23796c670fdd7292b040fd78d2fe0dc10b16cc07ae941b00140e6301d8c2ac30 -Size (libmaxminddb-1.7.1.tar.gz) = 609542 bytes +BLAKE2s (libmaxminddb-1.8.0.tar.gz) = 94d785bb20367be3409025f78025f5ff7ecdccbdd4e21694a1aa592ff32305a1 +SHA512 (libmaxminddb-1.8.0.tar.gz) = 739d32ef79d7dadc00b33748054a018ab689e5add272dc1b61631a1d21a51610c8f38a75d9a22c313642a09e537936da36b2ffac3870a187c8ba6400961c9468 +Size (libmaxminddb-1.8.0.tar.gz) = 612176 bytes --_----------=_169988916995020--