summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schreiner2019-04-15 00:36:50 +0200
committerAndreas Schreiner2019-04-15 00:36:50 +0200
commite86492da451ce2e3b0cf656243f065024ceb554e (patch)
tree3635642aa57dfaaf841212699be3f7df4252ec3e
parente3f6ba3dbccc3afb9ff5f06c20a9d6691b7b47fe (diff)
downloadaur-e86492da451ce2e3b0cf656243f065024ceb554e.tar.gz
Update to version 4.1.37
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD18
-rw-r--r--quisk.patch11
3 files changed, 10 insertions, 29 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3a7b61d7d912..486a17805aef 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Sun Mar 24 21:04:45 UTC 2019
+# Sun Apr 14 22:35:56 UTC 2019
pkgbase = quisk
pkgdesc = Software defined radio (SDR)
- pkgver = 4.1.36
+ pkgver = 4.1.37
pkgrel = 1
url = http://james.ahlstrom.name/quisk/
arch = i686
@@ -13,14 +13,12 @@ pkgbase = quisk
depends = portaudio
depends = wxpython
optdepends = codec2: Enable digital voice communication with FreeDV
- source = https://files.pythonhosted.org/packages/a0/0e/4b29f1da73bf48b83324836f3ff45d013147126adfa24be5788c3f9bce88/quisk-4.1.36.tar.gz
+ source = https://files.pythonhosted.org/packages/05/ab/087dfa8acd5381c415362651820d8861dcee7c63fcab1028320084551d0d/quisk-4.1.37.tar.gz
source = quisk
source = quisk.desktop
- source = quisk.patch
- sha512sums = f595ab1664b1867c165ac6af1e55a3597e6f5c9bced223829cf9598c0d03ef15b828a6c4ce947adb021f2b316fb823346684b028e0cf7ee0e9b3a8ca90ad3bfc
+ sha512sums = 8f0707a75d13b973031ad81f2c98d02f62c9d78257a6bc553022d6224ca3ecba645b9ce3716ae908d43d550004980e6e30017f7f1701dcbcb58d07be186b7902
sha512sums = 94f09cc0e847e308ca66bf90c8f729924273f66524fed8bc63565c8060113ae8dcae6ed3f14075e03a7168da182059b3279c0315a1d2d00cf4292e4d68cf7871
sha512sums = 3ad02f730b4a4033b86a2ce510865c13c2f2e228304283cae0bb389442f7ab49a5d530cd94e32460e19b53da24037abc855027ce34c93fdabcd1faf8a91852b1
- sha512sums = 716af9ee6bf13a6344a13a5150a37b207c1497eddcf1fc9fa7693868bad589de4724cf1f6822ad2bd371368ba8ca9f87b73594c78667931b94a113cb18904d55
pkgname = quisk
diff --git a/PKGBUILD b/PKGBUILD
index be1731736b61..5dc5d9836a19 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Andreas Schreiner <andreas.schreiner@sonnenmulde.at>
# Contributor: Mike WB2FKO <mph at sportscliche dot com>
pkgname=quisk
-pkgver=4.1.36
+pkgver=4.1.37
pkgrel=1
pkgdesc="Software defined radio (SDR)"
arch=('i686' 'x86_64')
@@ -9,21 +9,15 @@ url="http://james.ahlstrom.name/quisk/"
license=('GPL')
depends=('python2' 'fftw' 'portaudio' 'wxpython')
optdepends=('codec2: Enable digital voice communication with FreeDV')
-source=(https://files.pythonhosted.org/packages/a0/0e/4b29f1da73bf48b83324836f3ff45d013147126adfa24be5788c3f9bce88/quisk-4.1.36.tar.gz
+source=(https://files.pythonhosted.org/packages/05/ab/087dfa8acd5381c415362651820d8861dcee7c63fcab1028320084551d0d/quisk-4.1.37.tar.gz
$pkgname
- $pkgname.desktop
- $pkgname.patch)
-sha512sums=('f595ab1664b1867c165ac6af1e55a3597e6f5c9bced223829cf9598c0d03ef15b828a6c4ce947adb021f2b316fb823346684b028e0cf7ee0e9b3a8ca90ad3bfc'
+ $pkgname.desktop)
+sha512sums=('8f0707a75d13b973031ad81f2c98d02f62c9d78257a6bc553022d6224ca3ecba645b9ce3716ae908d43d550004980e6e30017f7f1701dcbcb58d07be186b7902'
'94f09cc0e847e308ca66bf90c8f729924273f66524fed8bc63565c8060113ae8dcae6ed3f14075e03a7168da182059b3279c0315a1d2d00cf4292e4d68cf7871'
- '3ad02f730b4a4033b86a2ce510865c13c2f2e228304283cae0bb389442f7ab49a5d530cd94e32460e19b53da24037abc855027ce34c93fdabcd1faf8a91852b1'
- '716af9ee6bf13a6344a13a5150a37b207c1497eddcf1fc9fa7693868bad589de4724cf1f6822ad2bd371368ba8ca9f87b73594c78667931b94a113cb18904d55')
+ '3ad02f730b4a4033b86a2ce510865c13c2f2e228304283cae0bb389442f7ab49a5d530cd94e32460e19b53da24037abc855027ce34c93fdabcd1faf8a91852b1')
build() {
- # use python2 instead python for compilation
- cd $srcdir
- patch -p1 < $pkgname.patch
-
cd "$srcdir/$pkgname-$pkgver"
- make
+ python2 setup.py build_ext --force --inplace
}
package() {
diff --git a/quisk.patch b/quisk.patch
deleted file mode 100644
index 8db2cb7c3327..000000000000
--- a/quisk.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -aur a/quisk-4.1.1/makefile b/quisk-4.1.1/makefile
---- a/quisk-4.1.36/makefile 2014-10-29 13:12:20.000000000 +0200
-+++ b/quisk-4.1.36/makefile 2014-10-29 23:57:32.359350909 +0100
-@@ -1,6 +1,6 @@
-
- all:
-- python setup.py build_ext --force --inplace
-+ python2 setup.py build_ext --force --inplace
-
- win:
- C:/Python27/python.exe setup.py build_ext -c mingw32 --inplace --force