From owner-svn-ports-all@freebsd.org Sun Mar 29 13:58:30 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EF02927FCF8; Sun, 29 Mar 2020 13:58:30 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48qxyD66pmz43Xm; Sun, 29 Mar 2020 13:58:28 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D99051542; Sun, 29 Mar 2020 13:58:21 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02TDwLB2054688; Sun, 29 Mar 2020 13:58:21 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02TDwLu1054685; Sun, 29 Mar 2020 13:58:21 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202003291358.02TDwLu1054685@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 29 Mar 2020 13:58:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529802 - in head/x11: . xtitle X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/x11: . xtitle X-SVN-Commit-Revision: 529802 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Mar 2020 13:58:31 -0000 Author: tcberner Date: Sun Mar 29 13:58:20 2020 New Revision: 529802 URL: https://svnweb.freebsd.org/changeset/ports/529802 Log: New port: x11/xtitle -- Outputs X window titles If arguments are given, outputs the title of each arguments, otherwise outputs the title of the active window and continue to output it as it changes if the snoop mode is on. WWW: https://github.com/baskerville/xtitle Added: head/x11/xtitle/ head/x11/xtitle/Makefile (contents, props changed) head/x11/xtitle/distinfo (contents, props changed) head/x11/xtitle/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sun Mar 29 12:15:51 2020 (r529801) +++ head/x11/Makefile Sun Mar 29 13:58:20 2020 (r529802) @@ -498,6 +498,7 @@ SUBDIR += xtermcontrol SUBDIR += xtermset SUBDIR += xtestpicture + SUBDIR += xtitle SUBDIR += xtoolwait SUBDIR += xtrans SUBDIR += xtrlock Added: head/x11/xtitle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xtitle/Makefile Sun Mar 29 13:58:20 2020 (r529802) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= xtitle +DISTVERSION= 0.4.4 +CATEGORIES= x11 + +MAINTAINER= tcberner@FreeBSD.org +COMMENT= Outputs X window titles + +LICENSE= UNLICENSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libxcb-ewmh.so:x11/xcb-util-wm + +USES= gmake localbase:ldflags xorg +USE_GITHUB= yes +GH_ACCOUNT= baskerville +USE_XORG= xcb + +PLIST_FILES= bin/xtitle + +.include Added: head/x11/xtitle/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xtitle/distinfo Sun Mar 29 13:58:20 2020 (r529802) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585489028 +SHA256 (baskerville-xtitle-0.4.4_GH0.tar.gz) = c2fbf403892c4e466e43528415284a458d4354855f221273881aa4388d028970 +SIZE (baskerville-xtitle-0.4.4_GH0.tar.gz) = 4847 Added: head/x11/xtitle/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xtitle/pkg-descr Sun Mar 29 13:58:20 2020 (r529802) @@ -0,0 +1,7 @@ +Outputs X window titles + +If arguments are given, outputs the title of each arguments, otherwise outputs +the title of the active window and continue to output it as it changes if the +snoop mode is on. + +WWW: https://github.com/baskerville/xtitle