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

package info (click to toggle)
pyenv 2.5.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 8,264 kB
  • sloc: sh: 4,722; python: 402; makefile: 76; ansic: 60
file content (18 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (2)
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-2.5.1/plugins/python-build/bin/python-build
===================================================================
--- pyenv-2.5.1.orig/plugins/python-build/bin/python-build
+++ pyenv-2.5.1/plugins/python-build/bin/python-build
@@ -1802,7 +1802,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