summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kasak2018-02-04 22:13:16 +0100
committerDenis Kasak2018-02-04 22:13:16 +0100
commitde8e8dff36206d36f336cef91d05e70feeb1e328 (patch)
tree36dbd6074ebd67686d50fc9cb4b5bc1fd3036232
parent141cceb261edb5734358b142b8413578ee1efa90 (diff)
downloadaur-de8e8dff36206d36f336cef91d05e70feeb1e328.tar.gz
Correct python shebang to python2.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0e4d028baf94..779452901c37 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Feb 3 22:28:12 UTC 2018
+# Sun Feb 4 21:12:17 UTC 2018
pkgbase = vowpal_wabbit
pkgdesc = Vowpal Wabbit is a machine learning system which pushes the frontier of ML with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning. Includes extra utilities.
pkgver = 8.5.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/JohnLangford/vowpal_wabbit
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 4d83ee6e0e55..ad5b5517c0d3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=vowpal_wabbit
pkgver=8.5.0
-pkgrel=1
+pkgrel=2
pkgdesc="Vowpal Wabbit is a machine learning system which pushes the frontier of ML with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning. Includes extra utilities."
arch=(i686 x86_64)
url='https://github.com/JohnLangford/vowpal_wabbit'
@@ -21,6 +21,8 @@ build() {
./autogen.sh
./configure --prefix=/usr
make
+
+ sed -i '1 s|python|python2|' utl/vw-csv2bin
}
package() {