Date: Wed, 10 Jul 2019 07:44:32 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506336 - in head/www: . bugzilla2atom Message-ID: <201907100744.x6A7iW8W004585@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Wed Jul 10 07:44:31 2019 New Revision: 506336 URL: https://svnweb.freebsd.org/changeset/ports/506336 Log: New port: www/bugzilla2atom A small filter program to convert Bugzilla bugs into Atom feeds to be able to subscribe to individual bugs in your RSS reader. WWW: https://github.com/t6/bugzilla2atom Added: head/www/bugzilla2atom/ head/www/bugzilla2atom/Makefile (contents, props changed) head/www/bugzilla2atom/distinfo (contents, props changed) head/www/bugzilla2atom/pkg-descr (contents, props changed) head/www/bugzilla2atom/pkg-message (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Jul 10 07:15:02 2019 (r506335) +++ head/www/Makefile Wed Jul 10 07:44:31 2019 (r506336) @@ -53,6 +53,7 @@ SUBDIR += boa SUBDIR += bolt SUBDIR += bozohttpd + SUBDIR += bugzilla2atom SUBDIR += buku SUBDIR += butterfly SUBDIR += c-icap Added: head/www/bugzilla2atom/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bugzilla2atom/Makefile Wed Jul 10 07:44:31 2019 (r506336) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= bugzilla2atom +PORTVERSION= g20190710 +CATEGORIES= www + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Convert Bugzilla bugs into Atom feeds + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules +USE_GITHUB= yes +GH_ACCOUNT= t6 +GH_TAGNAME= 56126912bf314a80744827758d582e5e60e7178c +GH_TUPLE= golang:tools:7b25e351ac0e:golang_tools/vendor/golang.org/x/tools + +GO_TARGET= ./cmd/bugzilla2atom + +PLIST_FILES= bin/bugzilla2atom + +.include <bsd.port.mk> Added: head/www/bugzilla2atom/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bugzilla2atom/distinfo Wed Jul 10 07:44:31 2019 (r506336) @@ -0,0 +1,5 @@ +TIMESTAMP = 1562743844 +SHA256 (t6-bugzilla2atom-g20190710-56126912bf314a80744827758d582e5e60e7178c_GH0.tar.gz) = c48dd894f7c14a4179688cd07a69e900f1edb952931f48e52fd3b7aa0139f567 +SIZE (t6-bugzilla2atom-g20190710-56126912bf314a80744827758d582e5e60e7178c_GH0.tar.gz) = 4180 +SHA256 (golang-tools-7b25e351ac0e_GH0.tar.gz) = 9ddc57affaec237ee0a031ce71e09b84795813b3a906532cc039199bd327768e +SIZE (golang-tools-7b25e351ac0e_GH0.tar.gz) = 2178836 Added: head/www/bugzilla2atom/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bugzilla2atom/pkg-descr Wed Jul 10 07:44:31 2019 (r506336) @@ -0,0 +1,4 @@ +A small filter program to convert Bugzilla bugs into Atom feeds to +be able to subscribe to individual bugs in your RSS reader. + +WWW: https://github.com/t6/bugzilla2atom Added: head/www/bugzilla2atom/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bugzilla2atom/pkg-message Wed Jul 10 07:44:31 2019 (r506336) @@ -0,0 +1,11 @@ +[ +{ type: install, + message: <<EOD +Add this to your ~/.newsboat/urls to follow Bugzilla bugs with Newsboat: + +filter:bugzilla2atom:https://bugs.freebsd.org/bugzilla/show_bug.cgi?ctype=xml&id=XYZ + +where XYZ is the bug id. +EOD +} +]
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907100744.x6A7iW8W004585>