Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Mar 2020 17:32:22 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r528993 - in head/x11: . clipman
Message-ID:  <202003231732.02NHWMpw012286@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Mar 23 17:32:22 2020
New Revision: 528993
URL: https://svnweb.freebsd.org/changeset/ports/528993

Log:
  x11/clipman: add new port
  
  A basic clipboard manager for Wayland, with support for persisting
  copy buffers after an application exits.
  
  https://github.com/yory8/clipman

Added:
  head/x11/clipman/
  head/x11/clipman/Makefile   (contents, props changed)
  head/x11/clipman/distinfo   (contents, props changed)
  head/x11/clipman/pkg-descr   (contents, props changed)
Modified:
  head/x11/Makefile   (contents, props changed)

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Mon Mar 23 17:21:20 2020	(r528992)
+++ head/x11/Makefile	Mon Mar 23 17:32:22 2020	(r528993)
@@ -37,6 +37,7 @@
     SUBDIR += cinnamon-session
     SUBDIR += cl-clx
     SUBDIR += cl-clx-sbcl
+    SUBDIR += clipman
     SUBDIR += compton-conf
     SUBDIR += conlecterm
     SUBDIR += controllermap

Added: head/x11/clipman/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/clipman/Makefile	Mon Mar 23 17:32:22 2020	(r528993)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	clipman
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.4.0
+CATEGORIES=	x11
+
+MAINTAINER=	jbeich@FreeBSD.org
+COMMENT=	Simple clipboard manager for Wayland
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+RUN_DEPENDS=	wl-copy:x11/wl-clipboard
+
+USES=		go:modules
+USE_GITHUB=	yes
+GH_ACCOUNT=	yory8
+GH_TUPLE=	alecthomas:kingpin:v2.2.6:alecthomas_kingpin/vendor/gopkg.in/alecthomas/kingpin.v2 \
+		alecthomas:template:fb15b899a751:alecthomas_template/vendor/github.com/alecthomas/template \
+		alecthomas:units:f65c72e2690d:alecthomas_units/vendor/github.com/alecthomas/units \
+		kballard:go-shellquote:95032a82bc51:kballard_go_shellquote/vendor/github.com/kballard/go-shellquote
+PLIST_FILES=	bin/${PORTNAME} \
+		share/man/man1/${PORTNAME}.1.gz
+
+post-install:
+	${INSTALL_MAN} ${WRKSRC}/docs/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1
+
+.include <bsd.port.mk>

Added: head/x11/clipman/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/clipman/distinfo	Mon Mar 23 17:32:22 2020	(r528993)
@@ -0,0 +1,11 @@
+TIMESTAMP = 1582665896
+SHA256 (yory8-clipman-v1.4.0_GH0.tar.gz) = 345ff5c4bab6a7354343ddc25b3b2b3e1c2de1b8042f23633c7c7066b384dcad
+SIZE (yory8-clipman-v1.4.0_GH0.tar.gz) = 19614
+SHA256 (alecthomas-kingpin-v2.2.6_GH0.tar.gz) = 4624eae43489de8a71ea60efaf6744c581b6bd62909f7514c484c1ea0efaba5a
+SIZE (alecthomas-kingpin-v2.2.6_GH0.tar.gz) = 44383
+SHA256 (alecthomas-template-fb15b899a751_GH0.tar.gz) = 2e2a44375eca48ce941182504b5d13aa98182b9a3f64ace33bfda52208bd0f5e
+SIZE (alecthomas-template-fb15b899a751_GH0.tar.gz) = 55339
+SHA256 (alecthomas-units-f65c72e2690d_GH0.tar.gz) = ece06024b01821e013bd7158dfe8ec8cc697f586ce8d3cfaa22edde8c2f022c3
+SIZE (alecthomas-units-f65c72e2690d_GH0.tar.gz) = 4925
+SHA256 (kballard-go-shellquote-95032a82bc51_GH0.tar.gz) = dde336eb697f7f9c26cf6d1467f75b6cf559262c1b0b110d28fff29790f76bc5
+SIZE (kballard-go-shellquote-95032a82bc51_GH0.tar.gz) = 4328

Added: head/x11/clipman/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/clipman/pkg-descr	Mon Mar 23 17:32:22 2020	(r528993)
@@ -0,0 +1,4 @@
+A basic clipboard manager for Wayland, with support for persisting
+copy buffers after an application exits.
+
+WWW: https://github.com/yory8/clipman



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003231732.02NHWMpw012286>