commit: cb22679d8ce281be1a563a240f58c1147bbad54c
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 24 21:31:05 2020 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Jan 24 21:31:38 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb22679d
app-shells/kshdb: bump to 1.1.0
Package-Manager: Portage-2.3.85_p2, Repoman-2.3.20_p36
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
app-shells/kshdb/Manifest | 2 +-
.../kshdb-1.0.0-remove-COLORFGBG-message.patch | 47 ----------------------
.../{kshdb-1.0.0.ebuild => kshdb-1.1.0.ebuild} | 10 ++---
3 files changed, 6 insertions(+), 53 deletions(-)
diff --git a/app-shells/kshdb/Manifest b/app-shells/kshdb/Manifest
index 88cb0b05759..d295150f7d0 100644
--- a/app-shells/kshdb/Manifest
+++ b/app-shells/kshdb/Manifest
@@ -1 +1 @@
-DIST kshdb-1.0.0.tar.gz 153633 BLAKE2B
91e5d77e1a74f98149ef4c953c34b6a4ac43f68c930092bde6f5313be6d581072fb8ef39a500204e5eb544e1e6bc53d1f5f7800ba1d333020f6908bbde2268f6
SHA512
f010b3b739f1a9fdead52c251a536405f8cbae67882c554b034ef115a9d9ecd60438d883d51dd282a747068e108ad8e5d9442380b6563a2aa262c35b423ee1dd
+DIST kshdb-1.1.0.tar.gz 154189 BLAKE2B
23aabb6e5058de6d66b5834f4d61c6d1cc41894278f563bd329c4879e9c7aa955d7f690e13229c24b67182ea59bc214db42b56aba6ed9b932d7c61f618db8ee1
SHA512
c09a459cd99351ed058d4e248f628970d905bc4a0d08632a0e819331290001189d8b6ac3795ec94c2459df51a73941e4b46ac58daaef4378774a8d46ff50248e
diff --git a/app-shells/kshdb/files/kshdb-1.0.0-remove-COLORFGBG-message.patch
b/app-shells/kshdb/files/kshdb-1.0.0-remove-COLORFGBG-message.patch
deleted file mode 100644
index 48db4dbccfd..00000000000
--- a/app-shells/kshdb/files/kshdb-1.0.0-remove-COLORFGBG-message.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From a989aef80767d6608f3c3c9db007c5aafd022358 Mon Sep 17 00:00:00 2001
-From: rocky <[email protected]>
-Date: Sun, 3 Nov 2019 18:23:07 -0500
-Subject: [PATCH] Remove COLORFGBG message from term-background.sh
-
----
- init/term-background.sh | 12 ++++--------
- 1 file changed, 4 insertions(+), 8 deletions(-)
-
-diff --git a/init/term-background.sh b/init/term-background.sh
-index 63f6e7d..716bb04 100644
---- a/init/term-background.sh
-+++ b/init/term-background.sh
-@@ -57,9 +57,9 @@ get_default_bg() {
- # Pass as parameters R G B values in hex
- # On return, variable is_dark_bg is set
- is_dark_rgb() {
-- typeset r g b
-+ typeset -i r g b
- r=$1; g=$2; b=$3
-- if (( (16#$r + 16#$g + 16#$b) < $TERMINAL_COLOR_MIDPOINT )) ; then
-+ if (( (16#r + 16#g + 16#b) < TERMINAL_COLOR_MIDPOINT )) ; then
- is_dark_bg=1
- else
- is_dark_bg=0
-@@ -172,11 +172,7 @@ if (( !success )) && [[ -n $TERM ]] ; then
- fi
-
- if (( success )) ; then
-- if (( is_dark_bg == 1 )) ; then
-- echo "Dark background from ${method}"
-- else
-- echo "Light background from ${method}"
-- fi
-+ :
- elif [[ -n $COLORFGBG ]] ; then
- # Note that this can be wrong if
- # COLORFGBG was set prior invoking a terminal
-@@ -196,7 +192,7 @@ fi
- # some environment variables
- if is_sourced ; then
- if (( exitrc == 0 )) ; then
-- if (( $is_dark_bg == 1 )) ; then
-+ if (( is_dark_bg == 1 )) ; then
- export DARK_BG=1
- [[ -z $COLORFGBG ]] && export COLORFGBG='0;15'
- else
diff --git a/app-shells/kshdb/kshdb-1.0.0.ebuild
b/app-shells/kshdb/kshdb-1.1.0.ebuild
similarity index 77%
rename from app-shells/kshdb/kshdb-1.0.0.ebuild
rename to app-shells/kshdb/kshdb-1.1.0.ebuild
index e2a594debad..540d278b34a 100644
--- a/app-shells/kshdb/kshdb-1.0.0.ebuild
+++ b/app-shells/kshdb/kshdb-1.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -15,11 +15,11 @@ KEYWORDS="~amd64"
RDEPEND="app-shells/ksh"
-PATCHES=(
- "${FILESDIR}"/kshdb-1.0.0-remove-COLORFGBG-message.patch
-)
-
src_prepare() {
default
eautoreconf
}
+
+src_test() {
+ emake check-unit
+}