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 6157C1A923B for ; Sun, 24 Jan 2021 19:09:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A00EC84DD6; Sun, 24 Jan 2021 19:09:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D5B8A84D37 for ; Sun, 24 Jan 2021 19:09:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id x8iEY767SqMh for ; Sun, 24 Jan 2021 19:09:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 40FA684C86 for ; Sun, 24 Jan 2021 19:09:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3A662FA9D; Sun, 24 Jan 2021 19:09:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1611515362134920" MIME-Version: 1.0 Date: Sun, 24 Jan 2021 19:09:22 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20210124190922.3A662FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1611515362134920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Sun Jan 24 19:09:22 UTC 2021 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/libstubborn: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: Add libstubborn version 0.1 header-only library to provide generic and some application-specific stub functions To generate a diff of this commit: cvs rdiff -u -r1.3321 -r1.3322 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/libstubborn/DESCR \ pkgsrc/devel/libstubborn/Makefile pkgsrc/devel/libstubborn/PLIST \ pkgsrc/devel/libstubborn/buildlink3.mk pkgsrc/devel/libstubborn/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1611515362134920 Content-Disposition: inline Content-Length: 3301 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3321 pkgsrc/devel/Makefile:1.3322 --- pkgsrc/devel/Makefile:1.3321 Sat Jan 23 23:49:36 2021 +++ pkgsrc/devel/Makefile Sun Jan 24 19:09:21 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3321 2021/01/23 23:49:36 wiz Exp $ +# $NetBSD: Makefile,v 1.3322 2021/01/24 19:09:21 maya Exp $ # COMMENT= Development utilities @@ -841,6 +841,7 @@ SUBDIR+= libstash SUBDIR+= libstatgrab SUBDIR+= libstree SUBDIR+= libstroke +SUBDIR+= libstubborn SUBDIR+= libtai SUBDIR+= libtar SUBDIR+= libtecla Added files: Index: pkgsrc/devel/libstubborn/DESCR diff -u /dev/null pkgsrc/devel/libstubborn/DESCR:1.1 --- /dev/null Sun Jan 24 19:09:22 2021 +++ pkgsrc/devel/libstubborn/DESCR Sun Jan 24 19:09:21 2021 @@ -0,0 +1,2 @@ +header-only library to provide generic and some application-specific +stub functions Index: pkgsrc/devel/libstubborn/Makefile diff -u /dev/null pkgsrc/devel/libstubborn/Makefile:1.1 --- /dev/null Sun Jan 24 19:09:22 2021 +++ pkgsrc/devel/libstubborn/Makefile Sun Jan 24 19:09:21 2021 @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1 2021/01/24 19:09:21 maya Exp $ + +GITHUB_PROJECT= libstubborn +GITHUB_TAG= 0.1 +DISTNAME= 0.1 +PKGNAME= ${GITHUB_PROJECT}-${DISTNAME} +CATEGORIES= # TODO: add primary category +MASTER_SITES= ${MASTER_SITE_GITHUB:=rfht/} +DIST_SUBDIR= ${GITHUB_PROJECT} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/rfht/libstubborn/ +COMMENT= Library of generic stub functions +LICENSE= isc + +WRKSRC= ${WRKDIR}/libstubborn-0.1 + +INSTALLATION_DIRS+= lib + +do-install: + set -e; cd ${WRKSRC}; \ + ${LN} -sf libstubborn.so.0.0 libstubborn.so + ${INSTALL_DATA} ${WRKSRC}/libstubborn.so* \ + ${DESTDIR}${PREFIX}/lib/ + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/libstubborn/PLIST diff -u /dev/null pkgsrc/devel/libstubborn/PLIST:1.1 --- /dev/null Sun Jan 24 19:09:22 2021 +++ pkgsrc/devel/libstubborn/PLIST Sun Jan 24 19:09:21 2021 @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1 2021/01/24 19:09:21 maya Exp $ +lib/libstubborn.so +lib/libstubborn.so.0.0 Index: pkgsrc/devel/libstubborn/buildlink3.mk diff -u /dev/null pkgsrc/devel/libstubborn/buildlink3.mk:1.1 --- /dev/null Sun Jan 24 19:09:22 2021 +++ pkgsrc/devel/libstubborn/buildlink3.mk Sun Jan 24 19:09:21 2021 @@ -0,0 +1,12 @@ +# $NetBSD: buildlink3.mk,v 1.1 2021/01/24 19:09:21 maya Exp $ + +BUILDLINK_TREE+= libstubborn + +.if !defined(LIBSTUBBORN_BUILDLINK3_MK) +LIBSTUBBORN_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.libstubborn+= libstubborn>=0.1 +BUILDLINK_PKGSRCDIR.libstubborn?= ../../devel/libstubborn +.endif # LIBSTUBBORN_BUILDLINK3_MK + +BUILDLINK_TREE+= -libstubborn Index: pkgsrc/devel/libstubborn/distinfo diff -u /dev/null pkgsrc/devel/libstubborn/distinfo:1.1 --- /dev/null Sun Jan 24 19:09:22 2021 +++ pkgsrc/devel/libstubborn/distinfo Sun Jan 24 19:09:21 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/01/24 19:09:21 maya Exp $ + +SHA1 (libstubborn/0.1.tar.gz) = 5650f1976bcb6b6d92a4d66afdc8fdc002f73423 +RMD160 (libstubborn/0.1.tar.gz) = 53eb1785a03e72e8fa0d0e44221b5df09853d52a +SHA512 (libstubborn/0.1.tar.gz) = 6d69581340bb91bc3906cacc953e74b460ad5e6eabdabe4a8b0b3043d5717c36bb91ad1418f546f3b4e5df97b730a5410ed5d15045c6cfb7daea99f0cc0a4033 +Size (libstubborn/0.1.tar.gz) = 1462 bytes --_----------=_1611515362134920--