File: 005.fixed-error-sintaxe-bash.patch

package info (click to toggle)
pyenv 2.6.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,496 kB
  • sloc: sh: 4,914; python: 410; makefile: 161; ansic: 60
file content (18 lines) | stat: -rw-r--r-- 666 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Fixed Bash-specific advanced globbing syntax mismatch bug
Author: Josenilson Ferreira da Silva <nilsonfsilva@hotmail.com>
Forwarded: not-needed
Last-Update: 2024-12-10

Index: pyenv/plugins/python-build/bin/python-build
===================================================================
--- pyenv.orig/plugins/python-build/bin/python-build
+++ pyenv/plugins/python-build/bin/python-build
@@ -2008,7 +2008,7 @@ build_package_auto_tcltk() {
 
 package_is_python() {
   case "$1" in
-    Python-* | jython-* | pypy-* | pypy[0-9].+([0-9])-* | stackless-* )
+    Python-* | jython-* | pypy-* | pypy[0-9]*-* | stackless-* )
       return 0
       ;;
   esac