summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuo Teramoto2017-11-26 12:02:33 -0200
committerKazuo Teramoto2017-11-26 12:02:33 -0200
commita84585190e06a7214ddbacd50012fcd160c899e3 (patch)
tree661444ff9c82b71f267098d48a6b2f0e74bdea04
parenta8f8582157f712aa6fb9704edf93b1a167b95fdc (diff)
downloadaur-a84585190e06a7214ddbacd50012fcd160c899e3.tar.gz
Changed branch from dev to master.
Removed xdg patch, upstream changed xdg -> pyxdg. Added new optdep `python-pprofile`.
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD11
2 files changed, 8 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 902a18476bf9..6036b15536e1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = stig-git
pkgdesc = TUI and CLI client for the Transmission daemon
- pkgver = 0.7.3a.r524.b763aca
+ pkgver = 0.8.0a.r0.a85c8e2
pkgrel = 1
url = https://github.com/rndusr/stig
arch = any
@@ -15,12 +15,11 @@ pkgbase = stig-git
depends = python-blinker
depends = python-natsort
optdepends = python-geoip: shows country codes in peer lists
+ optdepends = python-pprofile: profiling
provides = stig
conflicts = stig
- source = git+https://github.com/rndusr/stig.git#branch=dev
- source = fix_xdg_dep_on_arch.patch
+ source = git+https://github.com/rndusr/stig.git
sha256sums = SKIP
- sha256sums = 274f56f53c8eeb582c26dba53cf01cd8a91bec88d24f80a9fc72c423064fb479
pkgname = stig-git
diff --git a/PKGBUILD b/PKGBUILD
index 5b8f41db9f96..b2ae11f4e0a3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,21 +2,21 @@
pkgbase=('stig-git')
pkgname=('stig-git')
-pkgver=0.7.3a.r524.b763aca
+pkgver=0.8.0a.r0.a85c8e2
pkgrel=1
pkgdesc='TUI and CLI client for the Transmission daemon'
url='https://github.com/rndusr/stig'
depends=('python' 'python-urwid' 'python-urwidtrees-git' 'python-aiohttp'
'python-xdg' 'python-blinker' 'python-natsort')
makedepends=('git' 'python-setuptools')
-optdepends=('python-geoip: shows country codes in peer lists')
+optdepends=('python-geoip: shows country codes in peer lists'
+ 'python-pprofile: profiling')
license=('GPL')
arch=('any')
provides=('stig')
conflicts=('stig')
-source=("git+https://github.com/rndusr/stig.git#branch=dev" "fix_xdg_dep_on_arch.patch")
-sha256sums=('SKIP'
- '274f56f53c8eeb582c26dba53cf01cd8a91bec88d24f80a9fc72c423064fb479')
+source=("git+https://github.com/rndusr/stig.git")
+sha256sums=('SKIP')
pkgver() {
cd stig
@@ -25,7 +25,6 @@ pkgver() {
build() {
cd stig
- patch -p1 -i "${srcdir}/fix_xdg_dep_on_arch.patch"
python setup.py build
}