From owner-dev-commits-ports-all@freebsd.org Mon Apr 19 01:43:43 2021 Return-Path: Delivered-To: dev-commits-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 65AF75DE2E6; Mon, 19 Apr 2021 01:43:43 +0000 (UTC) (envelope-from git@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 4FNqNH2Qyvz4mk4; Mon, 19 Apr 2021 01:43:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 46288169CB; Mon, 19 Apr 2021 01:43:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13J1hh7L097597; Mon, 19 Apr 2021 01:43:43 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13J1hhHU097596; Mon, 19 Apr 2021 01:43:43 GMT (envelope-from git) Date: Mon, 19 Apr 2021 01:43:43 GMT Message-Id: <202104190143.13J1hhHU097596@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Kevin Bowling Subject: git: ee6b45a8e562 - main - sysutils/byobu: fix color definitions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: kbowling X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ee6b45a8e5625eb92c7af126f2b00fdbe21f3079 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Apr 2021 01:43:43 -0000 The branch main has been updated by kbowling: URL: https://cgit.FreeBSD.org/ports/commit/?id=ee6b45a8e5625eb92c7af126f2b00fdbe21f3079 commit ee6b45a8e5625eb92c7af126f2b00fdbe21f3079 Author: Kevin Bowling AuthorDate: 2021-04-19 00:40:04 +0000 Commit: Kevin Bowling CommitDate: 2021-04-19 00:41:52 +0000 sysutils/byobu: fix color definitions PR: 255190 Approved by: Connor Sheridan (maintainer) --- sysutils/byobu/Makefile | 4 ++-- .../byobu/files/patch-usr_lib_byobu_include_colors | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/sysutils/byobu/Makefile b/sysutils/byobu/Makefile index 4a17708893a2..c38384a267a2 100644 --- a/sysutils/byobu/Makefile +++ b/sysutils/byobu/Makefile @@ -2,12 +2,12 @@ PORTNAME= byobu PORTVERSION= 5.133 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/ DISTNAME= ${PORTNAME}_${PORTVERSION}.orig -MAINTAINER= jcoffman@xsecure.io +MAINTAINER= cws@cybersecu.red COMMENT= Profile and configuration utilities for GNU Screen and/or tmux LICENSE= GPLv3 diff --git a/sysutils/byobu/files/patch-usr_lib_byobu_include_colors b/sysutils/byobu/files/patch-usr_lib_byobu_include_colors new file mode 100644 index 000000000000..12f3a3783fb7 --- /dev/null +++ b/sysutils/byobu/files/patch-usr_lib_byobu_include_colors @@ -0,0 +1,20 @@ +--- usr/lib/byobu/include/colors.orig 2021-04-18 17:01:25 UTC ++++ usr/lib/byobu/include/colors +@@ -22,13 +22,13 @@ + # Inspired by http://design.ubuntu.com/brand/colour-palette + + # Cool grey +-export BYOBU_DARK="\#333333" ++export BYOBU_DARK="#333333" + + # Warm white +-export BYOBU_LIGHT="\#EEEEEE" ++export BYOBU_LIGHT="#EEEEEE" + + # Aubergine +-export BYOBU_ACCENT="\#75507B" ++export BYOBU_ACCENT="#75507B" + + # Ubuntu orange +-export BYOBU_HIGHLIGHT="\#DD4814" ++export BYOBU_HIGHLIGHT="#DD4814"