Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id C66E11A9239 for ; Thu, 27 Jan 2022 18:27:18 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id EC1B984E7A; Thu, 27 Jan 2022 18:27:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 274E184E89 for ; Thu, 27 Jan 2022 18:27:17 +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 BLr8fJp18qdH for ; Thu, 27 Jan 2022 18:27:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6FDBC84E7A for ; Thu, 27 Jan 2022 18:27:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 695BDFB24; Thu, 27 Jan 2022 18:27:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1643308036242410" MIME-Version: 1.0 Date: Thu, 27 Jan 2022 18:27:16 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/security/qore-xmlsec-module To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20220127182716.695BDFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1643308036242410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Thu Jan 27 18:27:16 UTC 2022 Modified Files: pkgsrc/security/qore-xmlsec-module: Makefile PLIST distinfo Removed Files: pkgsrc/security/qore-xmlsec-module: options.mk pkgsrc/security/qore-xmlsec-module/patches: patch-configure patch-src_Makefile.in Log Message: Update qore-xmlsec-module to version 1.0.0 This update is to make sure the package works correctly qore version 1.2. This is version 1.0.0. Our patches are not needed anymore. Remove options.mk since cmake is now used as build system and the configure arguments are not valid for cmake. Change maintainer address since it has changed. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/security/qore-xmlsec-module/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/qore-xmlsec-module/PLIST cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/qore-xmlsec-module/distinfo cvs rdiff -u -r1.2 -r0 pkgsrc/security/qore-xmlsec-module/options.mk cvs rdiff -u -r1.1 -r0 \ pkgsrc/security/qore-xmlsec-module/patches/patch-configure \ pkgsrc/security/qore-xmlsec-module/patches/patch-src_Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1643308036242410 Content-Disposition: inline Content-Length: 3321 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/qore-xmlsec-module/Makefile diff -u pkgsrc/security/qore-xmlsec-module/Makefile:1.11 pkgsrc/security/qore-xmlsec-module/Makefile:1.12 --- pkgsrc/security/qore-xmlsec-module/Makefile:1.11 Wed Dec 8 16:06:23 2021 +++ pkgsrc/security/qore-xmlsec-module/Makefile Thu Jan 27 18:27:16 2022 @@ -1,30 +1,22 @@ -# $NetBSD: Makefile,v 1.11 2021/12/08 16:06:23 adam Exp $ +# $NetBSD: Makefile,v 1.12 2022/01/27 18:27:16 nros Exp $ -DISTNAME= qore-xmlsec-module-0.0.2 -PKGREVISION= 13 +DISTNAME= qore-xmlsec-module-1.0.0 CATEGORIES= security -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} +MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} +GITHUB_PROJECT= module-xmlsec +GITHUB_RELEASE= v${PKGVERSION_NOREV} +EXTRACT_SUFX= .tar.bz2 -MAINTAINER= nros@users.sourceforge.net +MAINTAINER= nros@NetBSD.org HOMEPAGE= http://www.qore.org/ COMMENT= XMLSec module for Qore LICENSE= gnu-lgpl-v2.1 -GNU_CONFIGURE= yes -USE_LIBTOOL= yes +USE_CMAKE= yes USE_LANGUAGES= c c++11 PTHREAD_OPTS+= native -CONFIGURE_ARGS+= --with-xmlsec-dir=${BUILDLINK_PREFIX.xmlsec1} -CONFIGURE_ARGS+= --with-libxml2-dir=${BUILDLINK_PREFIX.libxml2} -CONFIGURE_ARGS+= --with-qore-dir=${BUILDLINK_PREFIX.qore} - -INSTALLATION_DIRS+= share/doc/${PKGBASE} -post-install: - ${INSTALL_DATA} ${WRKSRC}/docs/xmlsec-module-doc.html \ - ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} - -.include "options.mk" +CMAKE_USE_GNU_INSTALL_DIRS= no .include "../../mk/pthread.buildlink3.mk" .include "../../security/xmlsec1/buildlink3.mk" Index: pkgsrc/security/qore-xmlsec-module/PLIST diff -u pkgsrc/security/qore-xmlsec-module/PLIST:1.1 pkgsrc/security/qore-xmlsec-module/PLIST:1.2 --- pkgsrc/security/qore-xmlsec-module/PLIST:1.1 Tue Dec 30 16:03:28 2014 +++ pkgsrc/security/qore-xmlsec-module/PLIST Thu Jan 27 18:27:16 2022 @@ -1,3 +1,2 @@ -@comment $NetBSD: PLIST,v 1.1 2014/12/30 16:03:28 wiz Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/01/27 18:27:16 nros Exp $ ${QORE_MODULE_DIR}/xmlsec-api-${QORE_MODULE_API}.qmod -share/doc/${PKGBASE}/xmlsec-module-doc.html Index: pkgsrc/security/qore-xmlsec-module/distinfo diff -u pkgsrc/security/qore-xmlsec-module/distinfo:1.4 pkgsrc/security/qore-xmlsec-module/distinfo:1.5 --- pkgsrc/security/qore-xmlsec-module/distinfo:1.4 Tue Oct 26 11:17:52 2021 +++ pkgsrc/security/qore-xmlsec-module/distinfo Thu Jan 27 18:27:16 2022 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.4 2021/10/26 11:17:52 nia Exp $ +$NetBSD: distinfo,v 1.5 2022/01/27 18:27:16 nros Exp $ -BLAKE2s (qore-xmlsec-module-0.0.2.tar.gz) = b52aa2798fa8ec2829bbd8e87ff9c73c58c9a54b6e29c32d2dc24a109c69f2a2 -SHA512 (qore-xmlsec-module-0.0.2.tar.gz) = e4a60e795c40717b6d397bcdc5a4d45cf75f08dbaec98e3357ff669875ad41718bf35b49e987c07fbc14e4367e6507a11c7b16a615e7168958841dd8f023a2c2 -Size (qore-xmlsec-module-0.0.2.tar.gz) = 421326 bytes +BLAKE2s (qore-xmlsec-module-1.0.0.tar.bz2) = 032ea59c72bf8b579119f3ea94382237ed6e4b21cbe10b137730b67ecf03c5f7 +SHA512 (qore-xmlsec-module-1.0.0.tar.bz2) = 10a9e48e97109f1a056813902a9b039d6333c02a3ffe07f93919632874334d5e66a5c0c807278981ed5cbba0d715ceab0d97e3946c1386fed19b65b81fdb5ff3 +Size (qore-xmlsec-module-1.0.0.tar.bz2) = 31258 bytes SHA1 (patch-configure) = df7a2896c6f887d3456108690885cde1e6f73b89 SHA1 (patch-src_Makefile.in) = b018b3be8dfb7c2ba2c3c108aed111ae969b782d --_----------=_1643308036242410--