Received: by mail.netbsd.org (Postfix, from userid 605) id C166484DEA; Wed, 18 Mar 2020 13:47:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 489BA84DE5 for ; Wed, 18 Mar 2020 13:47:14 +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 Tz9IOIJFdHuT for ; Wed, 18 Mar 2020 13:47:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B424E84DE0 for ; Wed, 18 Mar 2020 13:47:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AE239FB27; Wed, 18 Mar 2020 13:47:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584539233206730" MIME-Version: 1.0 Date: Wed, 18 Mar 2020 13:47:13 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/news/bystand To: pkgsrc-changes@NetBSD.org Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20200318134713.AE239FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1584539233206730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Wed Mar 18 13:47:13 UTC 2020 Added Files: pkgsrc/news/bystand: DESCR Makefile PLIST distinfo Log Message: news/bystand: import bystand-1.0.1 The bystand program is a NNTP client program (a newsreader). It is built on top of a SQLite database. There is no MIME support yet. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/news/bystand/DESCR pkgsrc/news/bystand/Makefile \ pkgsrc/news/bystand/PLIST pkgsrc/news/bystand/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584539233206730 Content-Disposition: inline Content-Length: 3147 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/news/bystand/DESCR diff -u /dev/null pkgsrc/news/bystand/DESCR:1.1 --- /dev/null Wed Mar 18 13:47:13 2020 +++ pkgsrc/news/bystand/DESCR Wed Mar 18 13:47:13 2020 @@ -0,0 +1,4 @@ +The bystand program is a NNTP client program (a newsreader). + +It is built on top of a SQLite database. +There is no MIME support yet. Index: pkgsrc/news/bystand/Makefile diff -u /dev/null pkgsrc/news/bystand/Makefile:1.1 --- /dev/null Wed Mar 18 13:47:13 2020 +++ pkgsrc/news/bystand/Makefile Wed Mar 18 13:47:13 2020 @@ -0,0 +1,47 @@ +# $NetBSD: Makefile,v 1.1 2020/03/18 13:47:13 micha Exp $ + +DISTNAME= bystand-1.0.1 +CATEGORIES= news +MASTER_SITES= http://zzo38computer.org/prog/bystand/ +EXTRACT_SUFX= .zip + +MAINTAINER= micha@NetBSD.org +HOMEPAGE= http://zzo38computer.org/fossil/bystand.ui/ +COMMENT= NNTP client software with command-line interface +LICENSE= public-domain + +USE_LANGUAGES+= c99 + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "Linux" || ${OPSYS} == "GNUkFreeBSD" +# Makefile for GNU userland +BYSTAND_MAKEFILE= Makefile +.else +# This Makefile builds a GNU compatibility module +BYSTAND_MAKEFILE= Makefile.BSD +.endif + +INSTALLATION_DIRS= bin share/doc/bystand share/doc/bystand/setup + +do-build: + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ + ${MAKE} ${MAKE_FLAGS} -f ${BYSTAND_MAKEFILE} + +do-install: + cd ${WRKSRC} && ${INSTALL_PROGRAM} ${WRKSRC}/bystand \ + ${DESTDIR}${PREFIX}/bin/bystand + cd ${WRKSRC} && ${INSTALL_DATA} ${WRKSRC}/bystand.doc \ + ${DESTDIR}${PREFIX}/share/doc/bystand/bystand.doc + cd ${WRKSRC} && ${INSTALL_DATA} ${WRKSRC}/setup/README \ + ${DESTDIR}${PREFIX}/share/doc/bystand/setup/README + cd ${WRKSRC} && ${INSTALL_DATA} ${WRKSRC}/setup/schema \ + ${DESTDIR}${PREFIX}/share/doc/bystand/setup/schema + cd ${WRKSRC} && ${INSTALL_DATA} ${WRKSRC}/setup/template \ + ${DESTDIR}${PREFIX}/share/doc/bystand/setup/template + +# Builtin version of NetBSD 7 is not sufficient +# Minimum required API version is undocumented (use tested one) +BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.29.0 +.include "../../databases/sqlite3/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/news/bystand/PLIST diff -u /dev/null pkgsrc/news/bystand/PLIST:1.1 --- /dev/null Wed Mar 18 13:47:13 2020 +++ pkgsrc/news/bystand/PLIST Wed Mar 18 13:47:13 2020 @@ -0,0 +1,6 @@ +@comment $NetBSD: PLIST,v 1.1 2020/03/18 13:47:13 micha Exp $ +bin/bystand +share/doc/bystand/bystand.doc +share/doc/bystand/setup/README +share/doc/bystand/setup/schema +share/doc/bystand/setup/template Index: pkgsrc/news/bystand/distinfo diff -u /dev/null pkgsrc/news/bystand/distinfo:1.1 --- /dev/null Wed Mar 18 13:47:13 2020 +++ pkgsrc/news/bystand/distinfo Wed Mar 18 13:47:13 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/03/18 13:47:13 micha Exp $ + +SHA1 (bystand-1.0.1.zip) = 490072cb6f565118a91cff70aef4d5cd50eb7955 +RMD160 (bystand-1.0.1.zip) = d2bc64a17db2623f4bfdc1d1953871a4e8185739 +SHA512 (bystand-1.0.1.zip) = 42460006b45ca27f6f3c5c556fd6bcca37353467665e5261caf74ada4ba50f9c04f33431a46300a18ac4dd145b9370b270a86583cd5c40a42dbd698db0bdc926 +Size (bystand-1.0.1.zip) = 33071 bytes --_----------=_1584539233206730--