summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Fontenelle2017-01-05 06:05:57 -0200
committerRafael Fontenelle2017-01-05 06:05:57 -0200
commit219fed20b6e398f210620aa01b0f5a536e0dab75 (patch)
tree445d663b6906e852c6d5208fa0731a7390358de5
parent7200c849ac0a002418d9772f6912a90628e2c8f2 (diff)
downloadaur-219fed20b6e398f210620aa01b0f5a536e0dab75.tar.gz
Update to 8
Also added python-gobject, as gi lib is needed
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD12
2 files changed, 6 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 86e992b55fda..f473fde8d635 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Mon Dec 26 06:53:35 UTC 2016
+# Thu Jan 5 08:04:18 UTC 2017
pkgbase = chrome-gnome-shell-git
pkgdesc = Native connector for integration with extensions.gnome.org
- pkgver = 7.2.r56.gaa9d96b
+ pkgver = 8.r0.gdd8f3d4
pkgrel = 1
url = https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome
arch = any
@@ -12,6 +12,7 @@ pkgbase = chrome-gnome-shell-git
makedepends = jq
depends = gnome-shell
depends = python-requests
+ depends = python-gobject
provides = chrome-gnome-shell
conflicts = gs-chrome-connector
conflicts = chrome-gnome-shell
diff --git a/PKGBUILD b/PKGBUILD
index e553697d44fe..b17a2f87868a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,13 +3,13 @@
_name=chrome-gnome-shell
pkgname=$_name-git
-pkgver=7.2.r56.gaa9d96b
+pkgver=8.r0.gdd8f3d4
pkgrel=1
pkgdesc="Native connector for integration with extensions.gnome.org"
arch=('any')
url="https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome"
license=('GPL')
-depends=('gnome-shell' 'python-requests')
+depends=('gnome-shell' 'python-requests' 'python-gobject')
makedepends=('git' 'cmake' 'jq')
provides=("$_name")
replaces=('gs-chrome-connector') # Old name
@@ -19,13 +19,7 @@ md5sums=('SKIP')
pkgver() {
cd "$srcdir/$_name"
-
- # git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
- _tag=$(git describe --abbrev=0)
- v=$(grep 'set(PROJECT_VERSION' CMakeLists.txt | cut -d'"' -f2)
- r="$(git rev-list --count $_tag..HEAD)"
- h="$(git rev-parse --short HEAD)"
- printf $v.r$r.g$h
+ git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
}
prepare() {