Package Details: pyenv-git 1:2.0.0.r0.g1270ca6b-1

Git Clone URL: https://aur.archlinux.org/pyenv-git.git (read-only, click to copy)
Package Base: pyenv-git
Description: Easily switch between multiple versions of Python (Git)
Upstream URL: https://github.com/pyenv/pyenv
Keywords: management pyenv python version
Licenses: MIT
Conflicts: pyenv
Provides: pyenv
Submitter: sigma
Maintainer: ronin
Last Packager: ronin
Votes: 7
Popularity: 0.000000
First Submitted: 2016-01-12 12:05 (UTC)
Last Updated: 2021-05-26 01:18 (UTC)

Required by (5)

Sources (1)

Pinned Comments

ronin commented on 2021-05-15 00:41 (UTC) (edited on 2021-05-15 00:41 (UTC) by ronin)

No need to flag this package out of date since this is a git version of it after all. Just notify me if I missed some breaking changes.

Latest Comments

« First ‹ Previous 1 2

matthias.lisin commented on 2018-08-23 12:53 (UTC)

Can you update your package to use the new Github URL. As well as properly installing things like completions and LICENSE. And if don't put all useless repository files inside.

If you no longer want to maintain this package, I'd appreciate it if I could take over as the new maintainer.

0x647262 commented on 2017-09-14 01:46 (UTC)

``` pkgver() { cd "$pkgname" # Get the first part of the latest tag and append the current revision echo "$(git describe --long --tags | sed 's/\(^.*\)-.*.*/\1/;s/-/./g').r$(git log --pretty=format:'%h' -n 1)" } ``` should be changed to: ``` pkgver() { cd "$pkgname" git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } ``` To remove the 'v' from the version string. I feel bad for nitpicking something so small... :(