summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--0001-Update-css-to-gtk-3.20.patch108
-rw-r--r--PKGBUILD14
3 files changed, 123 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0a342141d7f5..7ae1e6d6fd37 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Fri Apr 8 09:58:35 UTC 2016
+# Sun Apr 10 11:30:47 UTC 2016
pkgbase = gnome-twitch
pkgdesc = Enjoy Twitch on your GNU/Linux desktop
pkgver = 0.2.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/Ippytraxx/gnome-twitch
install = gnome-twitch.install
arch = i686
@@ -24,7 +24,9 @@ pkgbase = gnome-twitch
depends = webkit2gtk
conflicts = gnome-twitch-git
source = https://github.com/Ippytraxx/gnome-twitch/archive/v0.2.0.tar.gz
+ source = 0001-Update-css-to-gtk-3.20.patch
md5sums = 984b6120aec2f4d121cce3ccb50e367a
+ md5sums = b6bbdb0cd4083336f37ce54fd6606581
pkgname = gnome-twitch
diff --git a/0001-Update-css-to-gtk-3.20.patch b/0001-Update-css-to-gtk-3.20.patch
new file mode 100644
index 000000000000..1d20e74a6e58
--- /dev/null
+++ b/0001-Update-css-to-gtk-3.20.patch
@@ -0,0 +1,108 @@
+From c4b49557dfed8465f273f2b5490002607baa5182 Mon Sep 17 00:00:00 2001
+From: Ippytraxx <ippytraxx@installgentoo.com>
+Date: Sun, 10 Apr 2016 13:03:53 +0200
+Subject: [PATCH] Update css to gtk+ 3.20
+
+---
+ data/gnome-twitch-style.css | 31 ++++++++++++++++---------------
+ 1 file changed, 16 insertions(+), 15 deletions(-)
+
+diff --git a/data/gnome-twitch-style.css b/data/gnome-twitch-style.css
+index b2f45c2..4a0b04a 100644
+--- a/data/gnome-twitch-style.css
++++ b/data/gnome-twitch-style.css
+@@ -22,28 +22,28 @@
+ border-style: none;
+ }
+
+-.gt-channels-container-child .overlay-box .favourite-button:hover GtkImage
++.gt-channels-container-child .overlay-box .favourite-button:hover image
+ {
+ transition: 150ms ease-in-out;
+ color: gold;
+ }
+
+-.gt-channels-container-child .overlay-box .favourite-button GtkImage
++.gt-channels-container-child .overlay-box .favourite-button image
+ {
+ color: rgba(109, 115, 128, 1);
+ }
+
+-.gt-channels-container-child .overlay-box .favourite-button:checked GtkImage
++.gt-channels-container-child .overlay-box .favourite-button:checked image
+ {
+ color: gold;
+ }
+
+-.gt-channels-container-child-offline GtkImage
++.gt-channels-container-child-offline image
+ {
+- -gtk-image-effect: dim;
++ -gtk-icon-effect: dim;
+ }
+
+-.gt-channels-container-child-offline .label
++.gt-channels-container-child-offline label
+ {
+ color: alpha(currentColor,0.55);
+ }
+@@ -55,46 +55,47 @@
+ opacity: 0.8;
+ }
+
+-.player-clutter .buffer-box GtkProgressBar
++.player-clutter .buffer-box progressbar
+ {
+ color: white;
+ }
+
+-.gt-chat GtkTextView
++.gt-chat textview,
++.gt-chat textview text
+ {
+ background-color: transparent;
+ }
+
+-.gt-chat GtkEntry
++.gt-chat entry
+ {
+ background-color: transparent;
+ background-image: none;
+ }
+
+-.gt-chat GtkTextView.light-theme
++.gt-chat textview.light-theme text
+ {
+ color: rgba(50, 50, 62, 1.0);
+ }
+
+-.gt-chat GtkTextView.dark-theme
++.gt-chat textview.dark-theme text
+ {
+ color: rgba(255, 255, 255, 1.0);
+ }
+
+-.gt-chat GtkTextView:selected,
+-.gt-chat GtkEntry:selected
++.gt-chat textview:selected,
++.gt-chat textview:selected
+ {
+ color: @selected_fg_color;
+ background-color: @selected_bg_color;
+ }
+
+-.gt-chat GtkEntry.light-theme
++.gt-chat entry.light-theme
+ {
+ color: rgba(0, 0, 0, 1);
+ border-color: rgba(204, 204, 204, 1.0);
+ }
+
+-.gt-chat GtkEntry.dark-theme
++.gt-chat entry.dark-theme
+ {
+ color: rgba(255, 255, 255, 1.0);
+ border-color: rgba(81, 81, 85, 1.0);
+--
+2.8.0
+
diff --git a/PKGBUILD b/PKGBUILD
index 3b95cb97ba4a..012ff56b1b5c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=gnome-twitch
pkgver=0.2.0
-pkgrel=1
+pkgrel=2
pkgdesc="Enjoy Twitch on your GNU/Linux desktop"
arch=('i686' 'x86_64')
url="https://github.com/Ippytraxx/gnome-twitch"
@@ -11,8 +11,16 @@ makedepends=('git' 'meson')
depends=('gtk3' 'libsoup' 'json-glib' 'gstreamer' 'gst-libav' 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'webkit2gtk')
conflicts=('gnome-twitch-git')
install=gnome-twitch.install
-source=("https://github.com/Ippytraxx/gnome-twitch/archive/v${pkgver}.tar.gz")
-md5sums=('984b6120aec2f4d121cce3ccb50e367a')
+source=("https://github.com/Ippytraxx/gnome-twitch/archive/v${pkgver}.tar.gz"
+ "0001-Update-css-to-gtk-3.20.patch")
+md5sums=('984b6120aec2f4d121cce3ccb50e367a'
+ 'b6bbdb0cd4083336f37ce54fd6606581')
+
+prepare()
+{
+ cd "${pkgname}-${pkgver}"
+ patch -p1 < ../0001-Update-css-to-gtk-3.20.patch
+}
build()
{