summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Elkouby2016-01-10 02:08:34 +0200
committerDan Elkouby2016-01-10 02:08:34 +0200
commit7b21f6429c2a7ac07e5bb4a377eee8b98a4d9f01 (patch)
treee4443bd2456c6db6a2c00b0e61c8b8e347abd7cf
parent37fd35b30f5d1f83a667b245d0044a9b16c37530 (diff)
downloadaur-7b21f6429c2a7ac07e5bb4a377eee8b98a4d9f01.tar.gz
Don't attempt to fix background colors
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD4
-rw-r--r--intensity.patch9
3 files changed, 5 insertions, 14 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cd5f535024c3..3b7aaba023c2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Jan 9 23:54:48 UTC 2016
+# Sun Jan 10 00:08:07 UTC 2016
pkgbase = rxvt-unicode-intensityfix
pkgdesc = A unicode enabled rxvt-clone terminal emulator (urxvt), patched to avoid intense colors on 256 color escape codes
pkgver = 9.21
- pkgrel = 1
+ pkgrel = 2
url = http://software.schmorp.de/pkg/rxvt-unicode.html
arch = i686
arch = x86_64
@@ -24,7 +24,7 @@ pkgbase = rxvt-unicode-intensityfix
md5sums = fec94dc986fa37ec380079d81de3e0b2
md5sums = fac55f0a8404c86dad3e702146762332
md5sums = 8a5599197568c63720e282b9722a7990
- md5sums = 9e10a3a8b2caebb9d9ff21a5610bb2bb
+ md5sums = 9e2ccfa07aafa6aeaf1dbdd005437af7
pkgname = rxvt-unicode-intensityfix
diff --git a/PKGBUILD b/PKGBUILD
index a29dc2b9c12c..bb22d8f383fb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_pkgname=rxvt-unicode
pkgname=rxvt-unicode-intensityfix
pkgver=9.21
-pkgrel=1
+pkgrel=2
pkgdesc='A unicode enabled rxvt-clone terminal emulator (urxvt), patched to avoid intense colors on 256 color escape codes'
arch=('i686' 'x86_64')
url='http://software.schmorp.de/pkg/rxvt-unicode.html'
@@ -23,7 +23,7 @@ md5sums=('a9a06c608258c5fd247c3725d8f44582'
'fec94dc986fa37ec380079d81de3e0b2'
'fac55f0a8404c86dad3e702146762332'
'8a5599197568c63720e282b9722a7990'
- '9e10a3a8b2caebb9d9ff21a5610bb2bb')
+ '9e2ccfa07aafa6aeaf1dbdd005437af7')
build() {
cd $_pkgname-$pkgver
diff --git a/intensity.patch b/intensity.patch
index 4fab53cfcdad..72cbb4f752bf 100644
--- a/intensity.patch
+++ b/intensity.patch
@@ -9,15 +9,6 @@
i += 2;
}
break;
-@@ -3987,7 +3987,7 @@
- case 48: // set bg color, ISO 8613-6
- if (nargs > i + 2 && arg[i + 1] == 5)
- {
-- scr_color ((unsigned int) (minCOLOR + arg[i + 2]), Color_bg);
-+ scr_color ((unsigned int) (((arg[i + 2] < 8) ? TOTAL_COLORS + 1 : minCOLOR) + arg[i + 2]), Color_bg);
- i += 2;
- }
- break;
--- src/rxvt.h
+++ src/rxvt.h
@@ -1450,6 +1450,8 @@