From owner-svn-ports-all@freebsd.org Wed Jan 20 05:37:26 2021 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 AFA954EA67B; Wed, 20 Jan 2021 05:37:26 +0000 (UTC) (envelope-from ygy@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DLDn23PhNz3jYJ; Wed, 20 Jan 2021 05:37:26 +0000 (UTC) (envelope-from ygy@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 6787614115; Wed, 20 Jan 2021 05:37:26 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10K5bQEM004734; Wed, 20 Jan 2021 05:37:26 GMT (envelope-from ygy@FreeBSD.org) Received: (from ygy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10K5bPaO004731; Wed, 20 Jan 2021 05:37:25 GMT (envelope-from ygy@FreeBSD.org) Message-Id: <202101200537.10K5bPaO004731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ygy set sender to ygy@FreeBSD.org using -f From: Guangyuan Yang Date: Wed, 20 Jan 2021 05:37:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562110 - head/x11/sprop X-SVN-Group: ports-head X-SVN-Commit-Author: ygy X-SVN-Commit-Paths: head/x11/sprop X-SVN-Commit-Revision: 562110 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.34 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: Wed, 20 Jan 2021 05:37:26 -0000 Author: ygy (doc committer) Date: Wed Jan 20 05:37:25 2021 New Revision: 562110 URL: https://svnweb.freebsd.org/changeset/ports/562110 Log: new port: x11/sprop: Simple X property utility Submitted by: kfv@irbug.org Approved by: lwhsu Differential Revision: https://reviews.freebsd.org/D28173 Added: head/x11/sprop/ head/x11/sprop/Makefile (contents, props changed) head/x11/sprop/distinfo (contents, props changed) head/x11/sprop/pkg-descr (contents, props changed) Added: head/x11/sprop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sprop/Makefile Wed Jan 20 05:37:25 2021 (r562110) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= sprop +PORTVERSION= 0.1 +CATEGORIES= x11 +MASTER_SITES= https://dl.suckless.org/tools/ + +MAINTAINER= kfv@kfv.io +COMMENT= Simple X property utility + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= xorg +USE_XORG= x11 + +MAKE_ARGS= PREFIX="${PREFIX}" X11LIB="${LOCALBASE}/lib" \ + X11INC="${LOCALBASE}/include" CC="${CC}" +PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz + +.include Added: head/x11/sprop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sprop/distinfo Wed Jan 20 05:37:25 2021 (r562110) @@ -0,0 +1,3 @@ +TIMESTAMP = 1610693399 +SHA256 (sprop-0.1.tar.gz) = c1b786d9fbd81a57addd7e21a34c5a121543cbf9f38fe309e7b452ba94b69ab5 +SIZE (sprop-0.1.tar.gz) = 2750 Added: head/x11/sprop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sprop/pkg-descr Wed Jan 20 05:37:25 2021 (r562110) @@ -0,0 +1,8 @@ +sprop is a simple X property utility. Less is more. + +The sprop utility prints the value of the property atom of the window with the +given xid, or alternatively sets it to value if given. It doesn't have the same +arguments as xprop and can only interact with atoms which are strings. +An example of using this utility could be replacing xprop in surf's config.h. + +WWW: https://tools.suckless.org/x/sprop