Package Details: gort 0.9.0-3

Git Clone URL: https://aur.archlinux.org/gort.git (read-only, click to copy)
Package Base: gort
Description: Command Line Toolkit for RobotOps.
Upstream URL: http://gort.io
Keywords: bluetooth cli gort robot
Licenses: Apache
Submitter: odensc
Maintainer: None
Last Packager: odensc
Votes: 1
Popularity: 0.000000
First Submitted: 2015-06-09 04:46 (UTC)
Last Updated: 2020-02-01 10:22 (UTC)

Latest Comments

odensc commented on 2020-02-01 10:23 (UTC)

@tinhtruong - thanks, updated. I'll be disowning this package because I haven't used it in years. Feel free to take it if you want to continue maintaining.

tinhtruong commented on 2020-02-01 06:46 (UTC)

Here is the new PKGBUILD with new Gort download location:

Maintainer: Oden <ops991923 [at] gmail [dot] com>

pkgname=gort pkgver=0.9.0 pkgrel=1 pkgdesc="Command Line Toolkit for RobotOps." arch=("i686" "x86_64" "arm") url="http://gort.io" license=("Apache") depends=("bluez") source_i686=("https://github.com/hybridgroup/gort/releases/download/v${pkgver}/gort_${pkgver}linux_386.tar.gz") source_x86_64=("https://github.com/hybridgroup/gort/releases/download/v${pkgver}/gort${pkgver}linux_amd64.tar.gz") source_arm=("https://github.com/hybridgroup/gort/releases/download/v${pkgver}/gort${pkgver}_linux_arm.tar.gz")

update with updpkgsums

sha256sums_i686=('ae681d574664cc6ee50fb5047bd70b5a00aa39295b0f08e45c55bb9175126c26') sha256sums_x86_64=('4a6cf5c2177f655839adc514ed1cc118a5b98e79ff18a6ac6212872a141291f6') sha256sums_arm=('87af3cd4192e1acfaf670507ec0b8eccd1aa7adcbd384ee0ee49012332bee5c4')

package() { cd $(find . -type d -name "gort*")

mkdir -p $pkgdir/usr/bin
mv ./gort $pkgdir/usr/bin/

}

odensc commented on 2018-05-07 03:21 (UTC)

Hi @hashworks, thanks for the bug report. I've updated the package to 0.9.0 and fixed that line of code. Please let me know if it works for you now.

hashworks commented on 2018-05-06 19:02 (UTC)

PKGBUILD: line 17: cd: too many arguments

Fix: sed -i 's/\_\*/_linux_amd64/' PKGBUILD

odensc commented on 2017-03-30 04:50 (UTC)

@lyoneel Hello! Thanks for the comment. I don't use this package anymore but I appreciate the report. It looks like that code is incorrect? It uses amd64 for i686 and 386 for x64. From that line of code, I can't see a reason why it wouldn't still work - it cd's into any folder, no matter what it ends with. If you use gort, would you like me to add you as a co-maintainer of this package?

lyoneel commented on 2017-03-29 19:26 (UTC)

@thesbros https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=gort#n17 this line -> "cd ${pkgname}_${pkgver}_*" not working, i fixed with this codition: if [ "${arch}" == "i686" ]; then cd ${pkgname}_${pkgver}_linux_amd64; elif [ "${arch}" == "x86_64" ]; then cd ${pkgname}_${pkgver}_linux_386; fi

odensc commented on 2016-01-20 17:56 (UTC)

@roadev, when I made this package, the latest version, 0.3.0, wasn't compatible with BlueZ 5 and required BlueZ 4. Now I see the latest version, 0.4.1, is compatible with BlueZ 5. I have updated to the latest version and changed the dependency. Thank you.

roadev commented on 2016-01-17 19:52 (UTC)

The bluez4 package is not maintained or developed, must change the dependency to bluez5 (package bluez) https://www.archlinux.org/packages/?name=bluez When I've changed it for bluez at local, the installation and the program worked for me.