svn commit: r548880 - in head/mail: . tmpmail

Stefan Eßer se at FreeBSD.org
Fri Sep 18 09:39:27 UTC 2020


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 at 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


More information about the svn-ports-all mailing list