Received: by mail.netbsd.org (Postfix, from userid 605) id 044C684E9E; Wed, 26 Apr 2023 16:12:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3370784D31 for ; Wed, 26 Apr 2023 16:12:49 +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 vLM4cmww6Et4 for ; Wed, 26 Apr 2023 16:12:48 +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 7D96684CE3 for ; Wed, 26 Apr 2023 16:12:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6B0F0FA87; Wed, 26 Apr 2023 16:12:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682525568232170" MIME-Version: 1.0 Date: Wed, 26 Apr 2023 16:12:48 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/libepoll-shim To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230426161248.6B0F0FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682525568232170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Apr 26 16:12:48 UTC 2023 Modified Files: pkgsrc/devel/libepoll-shim: Makefile PLIST distinfo Removed Files: pkgsrc/devel/libepoll-shim/patches: patch-src_CMakeLists.txt Log Message: libepoll-shim: update to 0.0.20230411. Changes not documented, 2 years of git commits. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/libepoll-shim/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/libepoll-shim/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/libepoll-shim/distinfo cvs rdiff -u -r1.1 -r0 \ pkgsrc/devel/libepoll-shim/patches/patch-src_CMakeLists.txt Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682525568232170 Content-Disposition: inline Content-Length: 3249 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libepoll-shim/Makefile diff -u pkgsrc/devel/libepoll-shim/Makefile:1.10 pkgsrc/devel/libepoll-shim/Makefile:1.11 --- pkgsrc/devel/libepoll-shim/Makefile:1.10 Tue Jan 24 18:36:23 2023 +++ pkgsrc/devel/libepoll-shim/Makefile Wed Apr 26 16:12:48 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2023/01/24 18:36:23 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2023/04/26 16:12:48 wiz Exp $ -DISTNAME= ${GITHUB_PROJECT}-0.0.20210418 +DISTNAME= ${GITHUB_PROJECT}-0.0.20230411 PKGNAME= lib${DISTNAME} -PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=jiixyj/} GITHUB_PROJECT= epoll-shim @@ -18,6 +17,9 @@ USE_LANGUAGES= c c++ CMAKE_ARGS+= -DBUILD_TESTING=OFF CMAKE_ARGS+= -DCMAKE_INSTALL_PKGCONFIGDIR=${PREFIX}/lib/pkgconfig +# re-defines read(2) itself +FORTIFY_SUPPORTED= no + .include "../../mk/bsd.prefs.mk" .if !defined(OPSYS_HAS_KQUEUE) @@ -32,6 +34,7 @@ PLIST.eventfd= YES PLIST.timerfd= YES .endif +PKGCONFIG_OVERRIDE+= epoll-shim-interpose.pc.cmakein PKGCONFIG_OVERRIDE+= epoll-shim.pc.cmakein .include "../../devel/cmake/build.mk" Index: pkgsrc/devel/libepoll-shim/PLIST diff -u pkgsrc/devel/libepoll-shim/PLIST:1.3 pkgsrc/devel/libepoll-shim/PLIST:1.4 --- pkgsrc/devel/libepoll-shim/PLIST:1.3 Thu Aug 4 14:41:40 2022 +++ pkgsrc/devel/libepoll-shim/PLIST Wed Apr 26 16:12:48 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2022/08/04 14:41:40 nia Exp $ +@comment $NetBSD: PLIST,v 1.4 2023/04/26 16:12:48 wiz Exp $ include/libepoll-shim/epoll-shim/detail/common.h include/libepoll-shim/epoll-shim/detail/poll.h include/libepoll-shim/epoll-shim/detail/read.h @@ -10,6 +10,9 @@ ${PLIST.timerfd}include/libepoll-shim/sy lib/cmake/epoll-shim/epoll-shim-config.cmake lib/cmake/epoll-shim/epoll-shim-targets-noconfig.cmake lib/cmake/epoll-shim/epoll-shim-targets.cmake +lib/libepoll-shim-interpose.so +lib/libepoll-shim-interpose.so.0 lib/libepoll-shim.so lib/libepoll-shim.so.0 +lib/pkgconfig/epoll-shim-interpose.pc lib/pkgconfig/epoll-shim.pc Index: pkgsrc/devel/libepoll-shim/distinfo diff -u pkgsrc/devel/libepoll-shim/distinfo:1.5 pkgsrc/devel/libepoll-shim/distinfo:1.6 --- pkgsrc/devel/libepoll-shim/distinfo:1.5 Sun Aug 7 23:29:49 2022 +++ pkgsrc/devel/libepoll-shim/distinfo Wed Apr 26 16:12:48 2023 @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.5 2022/08/07 23:29:49 tnn Exp $ +$NetBSD: distinfo,v 1.6 2023/04/26 16:12:48 wiz Exp $ -BLAKE2s (epoll-shim-0.0.20210418.tar.gz) = 991a4a90d3395dbe02430502802c57cfb7100b84a18b88d6b4148e0c2c485be2 -SHA512 (epoll-shim-0.0.20210418.tar.gz) = 34272a694165bfb47f8a103d18aec304f7a72b36491b83268ff63dd696f5103ab53dc9e32173ed20ddd7baa36b9d7ca2b3ec6236eef8dc2f02a101819b75eb7b -Size (epoll-shim-0.0.20210418.tar.gz) = 91936 bytes +BLAKE2s (epoll-shim-0.0.20230411.tar.gz) = 4af045f048218579884c1ff11c53b4d9bb2d7ecfbca8b2cf41394916cca3fb24 +SHA512 (epoll-shim-0.0.20230411.tar.gz) = eed623a3ea48e95c167976ad103a98e9a9f08fb0b300cda67da1b6961c1ac5556b51fd451d6db062b6503b8dcc5d3a267048f6a7ca153a834416ae9949c62f2f +Size (epoll-shim-0.0.20230411.tar.gz) = 103385 bytes SHA1 (patch-epoll-shim.pc.cmakein) = 6a31165678618c40104d9e592cb888e4a00a596c -SHA1 (patch-src_CMakeLists.txt) = 47f32282b12c79a9b51d8ffc821cd4ffbf19b728 --_----------=_1682525568232170--