Date: Fri, 18 Sep 2020 09:39:26 +0000 (UTC) From: =?UTF-8?Q?Stefan_E=c3=9fer?= <se@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548880 - in head/mail: . tmpmail Message-ID: <202009180939.08I9dQjk064543@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: se Date: Fri Sep 18 09:39:26 2020 New Revision: 548880 URL: https://svnweb.freebsd.org/changeset/ports/548880 Log: New port for tmpmail, a CLI to create and use temporary mail addresses Added: head/mail/tmpmail/ head/mail/tmpmail/Makefile (contents, props changed) head/mail/tmpmail/distinfo (contents, props changed) head/mail/tmpmail/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Fri Sep 18 09:36:54 2020 (r548879) +++ head/mail/Makefile Fri Sep 18 09:39:26 2020 (r548880) @@ -691,6 +691,7 @@ SUBDIR += thunderbird-dictionaries SUBDIR += tlb SUBDIR += tmda + SUBDIR += tmpmail SUBDIR += tpop3d SUBDIR += trojita SUBDIR += tumgreyspf Added: head/mail/tmpmail/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/tmpmail/Makefile Fri Sep 18 09:39:26 2020 (r548880) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= tmpmail +DISTVERSION= 1.0.3 +CATEGORIES= mail + +MAINTAINER= se@FreeBSD.org +COMMENT= CLI for the creation and use of temporary mail addresses + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= bash:shells/bash \ + w3m:www/w3m \ + curl:ftp/curl \ + jq:textproc/jq + +NO_BUILD= yes +NO_ARCH= yes + +USE_GITHUB= yes +GH_ACCOUNT= sdushantha +GH_TAGNAME= 39d0bac + +PLIST_FILES= bin/tmpmail + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/tmpmail ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/mail/tmpmail/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/tmpmail/distinfo Fri Sep 18 09:39:26 2020 (r548880) @@ -0,0 +1,3 @@ +TIMESTAMP = 1600417645 +SHA256 (sdushantha-tmpmail-1.0.3-39d0bac_GH0.tar.gz) = 5b7fec32470ef78ab8de551a430e4d7bbdd92497b4b22ae016887a5495a3b3b5 +SIZE (sdushantha-tmpmail-1.0.3-39d0bac_GH0.tar.gz) = 96312 Added: head/mail/tmpmail/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/tmpmail/pkg-descr Fri Sep 18 09:39:26 2020 (r548880) @@ -0,0 +1,10 @@ +tmpmail is a command line utility that allows you to create a temporary +email address and receive emails to the temporary email address. It uses +1secmail's API to receive emails. + +By default w3m is used to render the HTML emails on the terminal. But if +you prefer another text based web browser or would rather view the email +in a GUI web browser such as Firefox, simply use the --browser argument +followed by the command needed to launch the web browser of your choice. + +WWW: https://github.com/sdushantha/tmpmail
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009180939.08I9dQjk064543>