summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnatol Pomozov2016-06-24 08:43:52 -0700
committerAnatol Pomozov2016-06-24 08:43:52 -0700
commit199186fdd981600d4c54fdb93b3f07ea05b2a016 (patch)
treebba76cf199077ae51bece96237cb61ff10783eee
parentfbe8e19da4d416a96ab82dfb652d29321e91a58f (diff)
downloadaur-199186fdd981600d4c54fdb93b3f07ea05b2a016.tar.gz
Use python3 instead of python2
Upstream made the script python3 compatible
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
2 files changed, 5 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e9d5a6769d3c..a6db43d52935 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
# Generated by mksrcinfo v8
-# Tue May 24 19:04:06 UTC 2016
+# Fri Jun 24 15:43:47 UTC 2016
pkgbase = adb-sync-git
pkgdesc = A tool to synchronize files between a PC and an Android device using the ADB
pkgver = r16.012b326
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/google/adb-sync
arch = any
license = Apache
- depends = python2
+ depends = python
source = git+https://github.com/google/adb-sync
sha1sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 9dc0c523703c..d5f4bc7443d5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,11 +2,11 @@
pkgname=adb-sync-git
pkgver=r16.012b326
-pkgrel=1
+pkgrel=2
pkgdesc='A tool to synchronize files between a PC and an Android device using the ADB'
url='https://github.com/google/adb-sync'
arch=(any)
-depends=(python2)
+depends=(python)
license=(Apache)
source=(git+https://github.com/google/adb-sync)
sha1sums=('SKIP')
@@ -16,10 +16,6 @@ pkgver() {
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
-prepare() {
- sed 's|^#!/usr/bin/python|#!/usr/bin/python2|' -i adb-sync/adb-sync
-}
-
package() {
cd adb-sync
install -m755 -d "$pkgdir/usr/bin"