Package Details: python-slycot-git 517.a40505a-1

Git Clone URL: https://aur.archlinux.org/python-slycot-git.git (read-only, click to copy)
Package Base: python-slycot-git
Description: Python wrapper for selected SLICOT routines, notably including solvers for Riccati, Lyapunov and Sylvester equations.
Upstream URL: http://github.com/python-control/Slycot
Licenses: GPL2
Conflicts: python-slycot
Provides: python-slycot
Submitter: calcmogul
Maintainer: None
Last Packager: calcmogul
Votes: 3
Popularity: 0.000000
First Submitted: 2015-09-08 01:05 (UTC)
Last Updated: 2021-03-22 21:58 (UTC)

Required by (5)

Sources (1)

Latest Comments

<deleted-account> commented on 2015-10-31 15:28 (UTC)

Thanks.

calcmogul commented on 2015-10-31 10:24 (UTC)

I originally got this package from the AUR mirror after it was abandoned during the AUR4 upgrade; I didn't change much, including the source URL. I changed the URL and pkgver() function based on your suggestions.

<deleted-account> commented on 2015-10-31 09:57 (UTC)

Thanks for uploading the PKGBUILD. A couple comments if you don't mind: 1) pkgver() is not listing the appropriate commit (it needs to checkout something other than the current commit if it is going to use a tag). It would be best not to checkout a tag with a known segfault anyway. Below I have pasted a diff that will list the master branch sha. 2) It appears that the latest code is available from here (https://github.com/jgoppert/Slycot). The current git url hasn't had any updates since 2014. The jgoppert also is the link from the python-control website. Here is the diff: diff --git a/PKGBUILD b/PKGBUILD index 7ff8d82..e8d0e07 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,24 +3,25 @@ pkgname=python-slycot-git _gitname=Slycot -pkgver=tb04ad_segfault.r72.g7b674d1 +pkgver=9bec0d28fae09a188f9d93f5851e7e2f045a1440 pkgrel=1 pkgdesc="Python wrapper for selected SLICOT routines, notably including solvers for Riccati, Lyapunov and Sylvester equations." arch=('i686' 'x86_64') -url="http://github.com/johannes-scharlach/Slycot" +url="http://github.com/jgoppert/Slycot" license=('GPL2') depends=('python-numpy') makedepends=('git' 'gcc-fortran') optdepends=() provides=('python-slycot') conflicts=('python-slycot') -source=(git+https://github.com/johannes-scharlach/Slycot.git) +source=(git+https://github.com/jgoppert/Slycot.git) md5sums=('SKIP') pkgver() { cd "$srcdir/$_gitname" # Use the tag of the last commit - git describe --long | sed -E 's/([^-]*-g)/r\1/;s/-/./g' + git checkout master > /dev/null + git log -1 --format=%H }