Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-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 E33671A921F for ; Thu, 12 Nov 2020 09:05:15 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 31D6184D37; Thu, 12 Nov 2020 09:05:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6CB4184D29 for ; Thu, 12 Nov 2020 09:05: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 t3Qh98neHjvE for ; Thu, 12 Nov 2020 09:05:13 +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 C918684CE3 for ; Thu, 12 Nov 2020 09:05:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BC9E3FB28; Thu, 12 Nov 2020 09:05:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1605171913221100" MIME-Version: 1.0 Date: Thu, 12 Nov 2020 09:05:13 +0000 From: "pin" Subject: CVS commit: pkgsrc/sysutils/tiramisu To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20201112090513.BC9E3FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1605171913221100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Thu Nov 12 09:05:13 UTC 2020 Added Files: pkgsrc/sysutils/tiramisu: DESCR Makefile PLIST distinfo Log Message: sysutils/tiramisu: import package Desktop notifications, the UNIX way. tiramisu is a notification daemon based on dunst that outputs notifications to STDOUT in order to allow the user to process notifications any way they prefer. By allowing users to determine what is done with notifications, there is infinitely more possibilities presented to the end-user than a simple notification daemon that displays a block of text on the screen and nothing more. Users could have notifications display in a pre-existing bar, make a control panel of some sort that shows notifications, push notifications to their phone if their computer has been idle for an amount of time, make notifications more accessible with text-to-speech, and so much more. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/tiramisu/DESCR \ pkgsrc/sysutils/tiramisu/Makefile pkgsrc/sysutils/tiramisu/PLIST \ pkgsrc/sysutils/tiramisu/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1605171913221100 Content-Disposition: inline Content-Length: 3058 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/sysutils/tiramisu/DESCR diff -u /dev/null pkgsrc/sysutils/tiramisu/DESCR:1.1 --- /dev/null Thu Nov 12 09:05:13 2020 +++ pkgsrc/sysutils/tiramisu/DESCR Thu Nov 12 09:05:13 2020 @@ -0,0 +1,14 @@ +Desktop notifications, the UNIX way. +tiramisu is a notification daemon based on dunst that outputs notifications +to STDOUT in order to allow the user to process notifications any way they +prefer. + +By allowing users to determine what is done with notifications, there is +infinitely more possibilities presented to the end-user than a simple +notification daemon that displays a block of text on the screen and nothing +more. + +Users could have notifications display in a pre-existing bar, make a control +panel of some sort that shows notifications, push notifications to their phone +if their computer has been idle for an amount of time, make notifications more +accessible with text-to-speech, and so much more. Index: pkgsrc/sysutils/tiramisu/Makefile diff -u /dev/null pkgsrc/sysutils/tiramisu/Makefile:1.1 --- /dev/null Thu Nov 12 09:05:13 2020 +++ pkgsrc/sysutils/tiramisu/Makefile Thu Nov 12 09:05:13 2020 @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1 2020/11/12 09:05:13 pin Exp $ + +DISTNAME= tiramisu-1.0 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_GITHUB:=Sweets/} +#Build from a specific commit until upstream provides a new release +#Patch by Leonardo Taccari upstreamed and merged but, not included +#in the tag release +GITHUB_PROJECT= tiramisu +GITHUB_TAG= 8eb946dae0e2f98d3850d89e1bb535640e8c3266 + +MAINTAINER= pin@NetBSD.org +HOMEPAGE= https://github.com/Sweets/tiramisu/ +COMMENT= Desktop notifications, the UNIX way +LICENSE= mit + +USE_TOOLS+= pkg-config gmake + +INSTALLATION_DIRS+= share/doc/tiramisu +MAKE_ENV+= PREFIX=${PREFIX} + +post-install: + ${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/tiramisu + +.include "../../devel/glib2/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/sysutils/tiramisu/PLIST diff -u /dev/null pkgsrc/sysutils/tiramisu/PLIST:1.1 --- /dev/null Thu Nov 12 09:05:13 2020 +++ pkgsrc/sysutils/tiramisu/PLIST Thu Nov 12 09:05:13 2020 @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1 2020/11/12 09:05:13 pin Exp $ +bin/tiramisu +share/doc/tiramisu/README.md Index: pkgsrc/sysutils/tiramisu/distinfo diff -u /dev/null pkgsrc/sysutils/tiramisu/distinfo:1.1 --- /dev/null Thu Nov 12 09:05:13 2020 +++ pkgsrc/sysutils/tiramisu/distinfo Thu Nov 12 09:05:13 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/11/12 09:05:13 pin Exp $ + +SHA1 (tiramisu-1.0-8eb946dae0e2f98d3850d89e1bb535640e8c3266.tar.gz) = 8bb28f2d1f2d8859a5005ebece8df32923fc0595 +RMD160 (tiramisu-1.0-8eb946dae0e2f98d3850d89e1bb535640e8c3266.tar.gz) = 9c33a61b3a59f3f8853f28228ea7fa939920b272 +SHA512 (tiramisu-1.0-8eb946dae0e2f98d3850d89e1bb535640e8c3266.tar.gz) = 7f8c978e6ead387fc9ccfb9eb15c73f237e10b14c8eb53e537a869402897e89451af371eabdf76506b9fcf51d6080b21d97863978de5e5e43af2b25578535b1d +Size (tiramisu-1.0-8eb946dae0e2f98d3850d89e1bb535640e8c3266.tar.gz) = 3063380 bytes --_----------=_1605171913221100--