mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Use portable python shebangs
* In conda or Gentoo Prefix, we don't want to use the system python and instead rely on PATH lookup.
This commit is contained in:
parent
f2987a295f
commit
a62b31f43f
@ -1,4 +1,4 @@
|
|||||||
#! /usr/bin/env python
|
#!/usr/bin/env python
|
||||||
###
|
###
|
||||||
#
|
#
|
||||||
# build_glob.py : Build the global_functions.h and global_functions.c
|
# build_glob.py : Build the global_functions.h and global_functions.c
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# This is the API builder, it parses the C sources and build the
|
# This is the API builder, it parses the C sources and build the
|
||||||
# API formal description in XML.
|
# API formal description in XML.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# Indexes the examples and build an XML description
|
# Indexes the examples and build an XML description
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# Portions of this script have been (shamelessly) stolen from the
|
# Portions of this script have been (shamelessly) stolen from the
|
||||||
# prior work of Daniel Veillard (genUnicode.py)
|
# prior work of Daniel Veillard (genUnicode.py)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# Original script modified in November 2003 to take advantage of
|
# Original script modified in November 2003 to take advantage of
|
||||||
# the character-validation range routines, and updated to the
|
# the character-validation range routines, and updated to the
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# generate a tester program for the API
|
# generate a tester program for the API
|
||||||
#
|
#
|
||||||
|
@ -99,7 +99,7 @@ at parse time or later once the document has been modified.
|
|||||||
|
|
||||||
mkdir py3doc
|
mkdir py3doc
|
||||||
cp doc/*.py py3doc
|
cp doc/*.py py3doc
|
||||||
sed -i 's|#!/usr/bin/python |#!%{__python3} |' py3doc/*.py
|
sed -i 's|#!/usr/bin/env python|#!/usr/bin/env %{__python3}|' py3doc/*.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# generate python wrappers from the XML API description
|
# generate python wrappers from the XML API description
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# Setup script for libxml2 and libxslt if found
|
# Setup script for libxml2 and libxslt if found
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# This test exercise the redirection of error messages with a
|
# This test exercise the redirection of error messages with a
|
||||||
# functions defined in Python.
|
# functions defined in Python.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# This test exercise the redirection of error messages with a
|
# This test exercise the redirection of error messages with a
|
||||||
# functions defined in Python.
|
# functions defined in Python.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
try:
|
try:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
# -*- coding: ISO-8859-1 -*-
|
# -*- coding: ISO-8859-1 -*-
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# This tests custom input callbacks
|
# This tests custom input callbacks
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this test exercise the XPath basic engine, parser, etc, and
|
# this test exercise the XPath basic engine, parser, etc, and
|
||||||
# allows to detect memory leaks
|
# allows to detect memory leaks
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
try:
|
try:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
# -*- coding: ISO-8859-1 -*-
|
# -*- coding: ISO-8859-1 -*-
|
||||||
#
|
#
|
||||||
# this tests the basic APIs of the XmlTextReader interface
|
# this tests the basic APIs of the XmlTextReader interface
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# this tests the DTD validation with the XmlTextReader interface
|
# this tests the DTD validation with the XmlTextReader interface
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the entities substitutions with the XmlTextReader interface
|
# this tests the entities substitutions with the XmlTextReader interface
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the basic APIs of the XmlTextReader interface
|
# this tests the basic APIs of the XmlTextReader interface
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the Expand() API of the xmlTextReader interface
|
# this tests the Expand() API of the xmlTextReader interface
|
||||||
# this extract the Dragon bibliography entries from the XML specification
|
# this extract the Dragon bibliography entries from the XML specification
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the entities substitutions with the XmlTextReader interface
|
# this tests the entities substitutions with the XmlTextReader interface
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the entities substitutions with the XmlTextReader interface
|
# this tests the entities substitutions with the XmlTextReader interface
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the entities substitutions with the XmlTextReader interface
|
# this tests the entities substitutions with the XmlTextReader interface
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the basic APIs of the XmlTextReader interface
|
# this tests the basic APIs of the XmlTextReader interface
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
# -*- coding: ISO-8859-1 -*-
|
# -*- coding: ISO-8859-1 -*-
|
||||||
#
|
#
|
||||||
# this tests the next API of the XmlTextReader interface
|
# this tests the next API of the XmlTextReader interface
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
# Memory debug specific
|
# Memory debug specific
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
try:
|
try:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import string, sys, time
|
import string, sys, time
|
||||||
try:
|
try:
|
||||||
from _thread import get_ident
|
from _thread import get_ident
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys, unittest
|
import sys, unittest
|
||||||
|
|
||||||
import libxml2
|
import libxml2
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import libxml2
|
import libxml2
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this tests the entities substitutions with the XmlTextReader interface
|
# this tests the entities substitutions with the XmlTextReader interface
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# this test exercise the XPath basic engine, parser, etc, and
|
# this test exercise the XPath basic engine, parser, etc, and
|
||||||
# allows to detect memory leaks
|
# allows to detect memory leaks
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
import sys, libxml2
|
import sys, libxml2
|
||||||
|
|
||||||
libxml2.debugMemory(True)
|
libxml2.debugMemory(True)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
import libxml2
|
import libxml2
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python -u
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import sys, os
|
import sys, os
|
||||||
import libxml2
|
import libxml2
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<xsl:output method="text"/>
|
<xsl:output method="text"/>
|
||||||
|
|
||||||
<xsl:template match="/">
|
<xsl:template match="/">
|
||||||
<xsl:text>#!/usr/bin/python -u
|
<xsl:text>#!/usr/bin/env python
|
||||||
# -*- coding: UTF-8 -*-
|
# -*- coding: UTF-8 -*-
|
||||||
#
|
#
|
||||||
# This file is generated from the W3C test suite description file.
|
# This file is generated from the W3C test suite description file.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user