From owner-svn-ports-all@freebsd.org Fri Feb 19 23:53:23 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 01349545139; Fri, 19 Feb 2021 23:53:23 +0000 (UTC) (envelope-from romain@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 4Dj7gk6jNrz3pPn; Fri, 19 Feb 2021 23:53:22 +0000 (UTC) (envelope-from romain@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 D9448153AB; Fri, 19 Feb 2021 23:53:22 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11JNrMUs005761; Fri, 19 Feb 2021 23:53:22 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11JNrMtX005757; Fri, 19 Feb 2021 23:53:22 GMT (envelope-from romain@FreeBSD.org) Message-Id: <202102192353.11JNrMtX005757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Fri, 19 Feb 2021 23:53:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566124 - in head/irc: . catgirl X-SVN-Group: ports-head X-SVN-Commit-Author: romain X-SVN-Commit-Paths: in head/irc: . catgirl X-SVN-Commit-Revision: 566124 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: Fri, 19 Feb 2021 23:53:23 -0000 Author: romain Date: Fri Feb 19 23:53:21 2021 New Revision: 566124 URL: https://svnweb.freebsd.org/changeset/ports/566124 Log: New port: irc/catgirl catgirl is a TLS-only terminal IRC client with tab-complete, nick coloring, URL detection, message filtering and split scrolling. WWW: https://git.causal.agency/catgirl/ PR: 246818 Submitted by: june@causal.agency Added: head/irc/catgirl/ head/irc/catgirl/Makefile (contents, props changed) head/irc/catgirl/distinfo (contents, props changed) head/irc/catgirl/pkg-descr (contents, props changed) Modified: head/irc/Makefile Modified: head/irc/Makefile ============================================================================== --- head/irc/Makefile Fri Feb 19 23:47:53 2021 (r566123) +++ head/irc/Makefile Fri Feb 19 23:53:21 2021 (r566124) @@ -15,6 +15,7 @@ SUBDIR += bitlbee-steam SUBDIR += bnc SUBDIR += bopm + SUBDIR += catgirl SUBDIR += cgiirc SUBDIR += ctrlproxy SUBDIR += cwirc Added: head/irc/catgirl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/catgirl/Makefile Fri Feb 19 23:53:21 2021 (r566124) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= catgirl +DISTVERSION= 1.6 +CATEGORIES= irc +MASTER_SITES= https://git.causal.agency/catgirl/snapshot/ + +MAINTAINER= june@causal.agency +COMMENT= TLS-only terminal IRC client + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= ncurses pkgconfig ssl + +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man + +PLIST_FILES= bin/catgirl \ + man/man1/catgirl.1.gz + +.include + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/catgirl + +.if ${SSL_DEFAULT} == base || ${SSL_DEFAULT} == openssl +LIB_DEPENDS+= libtls.so:security/libretls +.endif + +.include Added: head/irc/catgirl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/catgirl/distinfo Fri Feb 19 23:53:21 2021 (r566124) @@ -0,0 +1,3 @@ +TIMESTAMP = 1613763583 +SHA256 (catgirl-1.6.tar.gz) = 3b32ee3b57cab5fa29b0a6cb9d21a4a5e5f41efd4a698cb9df15e316bf000f6a +SIZE (catgirl-1.6.tar.gz) = 58524 Added: head/irc/catgirl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/catgirl/pkg-descr Fri Feb 19 23:53:21 2021 (r566124) @@ -0,0 +1,4 @@ +catgirl is a TLS-only terminal IRC client with tab-complete, nick +coloring, URL detection, message filtering and split scrolling. + +WWW: https://git.causal.agency/catgirl/