summaryrefslogtreecommitdiffstats
path: root/packaging/macosx/ports/lang/python26/files
diff options
context:
space:
mode:
authorMichael Soegtrop <MSoegtrop@yahoo.de>2017-06-05 13:56:11 +0000
committerMichael Soegtrop <MSoegtrop@yahoo.de>2017-06-05 13:56:11 +0000
commit132e83fd6f6124731dc773ae2978d115ca492ef2 (patch)
treeb561a4dbbacd7eecbdbae3fa220a353375ccecf8 /packaging/macosx/ports/lang/python26/files
parentupdated to trunk (diff)
parent[Bug #1695016] Xaml export misses some radialGradients. (diff)
downloadinkscape-132e83fd6f6124731dc773ae2978d115ca492ef2.tar.gz
inkscape-132e83fd6f6124731dc773ae2978d115ca492ef2.zip
merged with latest version of lpe-bool and trunk
(bzr r14862.2.3)
Diffstat (limited to 'packaging/macosx/ports/lang/python26/files')
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-Lib-cgi.py.diff18
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-Lib-distutils-dist.py.diff51
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-Mac-IDLE-Makefile.in.diff11
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-Mac-Makefile.in.diff11
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-Mac-PythonLauncher-Makefile.in.diff11
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-Mac-Tools-Doc-setup.py.diff11
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-Makefile.pre.in.diff31
-rw-r--r--packaging/macosx/ports/lang/python26/files/patch-setup.py.diff16
-rw-r--r--packaging/macosx/ports/lang/python26/files/pyconfig.ed2
-rw-r--r--packaging/macosx/ports/lang/python26/files/python2612
-rw-r--r--packaging/macosx/ports/lang/python26/files/version.plist16
11 files changed, 0 insertions, 190 deletions
diff --git a/packaging/macosx/ports/lang/python26/files/patch-Lib-cgi.py.diff b/packaging/macosx/ports/lang/python26/files/patch-Lib-cgi.py.diff
deleted file mode 100644
index fb861bc82..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-Lib-cgi.py.diff
+++ /dev/null
@@ -1,18 +0,0 @@
---- Lib/cgi.py.orig 2006-08-10 19:41:07.000000000 +0200
-+++ Lib/cgi.py 2007-08-21 15:36:54.000000000 +0200
-@@ -1,13 +1,6 @@
--#! /usr/local/bin/python
-+#! @@PREFIX@@/bin/python2.6
-
--# NOTE: the above "/usr/local/bin/python" is NOT a mistake. It is
--# intentionally NOT "/usr/bin/env python". On many systems
--# (e.g. Solaris), /usr/local/bin is not in $PATH as passed to CGI
--# scripts, and /usr/local/bin is the default directory where Python is
--# installed, so /usr/bin/env would be unable to find python. Granted,
--# binary installations by Linux vendors often install Python in
--# /usr/bin. So let those vendors patch cgi.py to match their choice
--# of installation.
-+# NOTE: /usr/local/bin/python patched for MacPorts installation
-
- """Support module for CGI (Common Gateway Interface) scripts.
-
diff --git a/packaging/macosx/ports/lang/python26/files/patch-Lib-distutils-dist.py.diff b/packaging/macosx/ports/lang/python26/files/patch-Lib-distutils-dist.py.diff
deleted file mode 100644
index 45276c555..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-Lib-distutils-dist.py.diff
+++ /dev/null
@@ -1,51 +0,0 @@
---- Lib/distutils/dist.py.orig 2008-09-03 05:13:56.000000000 -0600
-+++ Lib/distutils/dist.py 2008-10-03 18:33:47.000000000 -0600
-@@ -60,6 +60,7 @@
- ('quiet', 'q', "run quietly (turns verbosity off)"),
- ('dry-run', 'n', "don't actually do anything"),
- ('help', 'h', "show detailed help message"),
-+ ('no-user-cfg', None,'ignore pydistutils.cfg in your home directory'),
- ]
-
- # 'common_usage' is a short (2-3 line) string describing the common
-@@ -267,6 +268,12 @@
- else:
- sys.stderr.write(msg + "\n")
-
-+ # no-user-cfg is handled before other command line args
-+ # because other args override the config files, and this
-+ # one is needed before we can load the config files.
-+ # If attrs['script_args'] wasn't passed, assume false.
-+ self.want_user_cfg = '--no-user-cfg' not in (self.script_args or [])
-+
- self.finalize_options()
-
- # __init__ ()
-@@ -327,6 +334,9 @@
- Distutils __inst__.py file lives), a file in the user's home
- directory named .pydistutils.cfg on Unix and pydistutils.cfg
- on Windows/Mac, and setup.cfg in the current directory.
-+
-+ The file in the user's home directory can be disabled with the
-+ --no-user-cfg option.
- """
- files = []
- check_environ()
-@@ -347,7 +357,7 @@
-
- # And look for the user config file
- user_file = os.path.join(os.path.expanduser('~'), user_filename)
-- if os.path.isfile(user_file):
-+ if self.want_user_cfg and os.path.isfile(user_file):
- files.append(user_file)
-
- # All platforms support local setup.cfg
-@@ -355,6 +365,8 @@
- if os.path.isfile(local_file):
- files.append(local_file)
-
-+ if DEBUG:
-+ print "using config files: %s" % ', '.join(files)
- return files
-
- # find_config_files ()
diff --git a/packaging/macosx/ports/lang/python26/files/patch-Mac-IDLE-Makefile.in.diff b/packaging/macosx/ports/lang/python26/files/patch-Mac-IDLE-Makefile.in.diff
deleted file mode 100644
index bafcf4715..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-Mac-IDLE-Makefile.in.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- Mac/IDLE/Makefile.in.orig 2008-07-17 23:48:03.000000000 -0600
-+++ Mac/IDLE/Makefile.in 2008-10-04 19:50:50.000000000 -0600
-@@ -22,7 +22,7 @@
-
- BUNDLEBULDER=$(srcdir)/../../Lib/plat-mac/bundlebuilder.py
-
--PYTHONAPPSDIR=/Applications/$(PYTHONFRAMEWORK) $(VERSION)
-+PYTHONAPPSDIR=@@APPLICATIONS_DIR@@/$(PYTHONFRAMEWORK) $(VERSION)
-
- all: IDLE.app
-
diff --git a/packaging/macosx/ports/lang/python26/files/patch-Mac-Makefile.in.diff b/packaging/macosx/ports/lang/python26/files/patch-Mac-Makefile.in.diff
deleted file mode 100644
index cfa5f88ff..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-Mac-Makefile.in.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- Mac/Makefile.in.orig 2008-07-22 01:06:33.000000000 -0600
-+++ Mac/Makefile.in 2008-10-04 19:51:40.000000000 -0600
-@@ -18,7 +18,7 @@
-
- # These are normally glimpsed from the previous set
- bindir=$(prefix)/bin
--PYTHONAPPSDIR=/Applications/$(PYTHONFRAMEWORK) $(VERSION)
-+PYTHONAPPSDIR=@@APPLICATIONS_DIR@@/$(PYTHONFRAMEWORK) $(VERSION)
- APPINSTALLDIR=$(prefix)/Resources/Python.app
-
- # Variables for installing the "normal" unix binaries
diff --git a/packaging/macosx/ports/lang/python26/files/patch-Mac-PythonLauncher-Makefile.in.diff b/packaging/macosx/ports/lang/python26/files/patch-Mac-PythonLauncher-Makefile.in.diff
deleted file mode 100644
index be74da903..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-Mac-PythonLauncher-Makefile.in.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- Mac/PythonLauncher/Makefile.in.orig 2008-05-02 13:58:56.000000000 -0600
-+++ Mac/PythonLauncher/Makefile.in 2008-10-04 19:52:27.000000000 -0600
-@@ -21,7 +21,7 @@
-
- BUNDLEBULDER=$(srcdir)/../../Lib/plat-mac/bundlebuilder.py
-
--PYTHONAPPSDIR=/Applications/$(PYTHONFRAMEWORK) $(VERSION)
-+PYTHONAPPSDIR=@@APPLICATIONS_DIR@@/$(PYTHONFRAMEWORK) $(VERSION)
- OBJECTS=FileSettings.o MyAppDelegate.o MyDocument.o PreferencesWindowController.o doscript.o main.o
-
- all: Python\ Launcher.app
diff --git a/packaging/macosx/ports/lang/python26/files/patch-Mac-Tools-Doc-setup.py.diff b/packaging/macosx/ports/lang/python26/files/patch-Mac-Tools-Doc-setup.py.diff
deleted file mode 100644
index 63e4e11d2..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-Mac-Tools-Doc-setup.py.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- Mac/Tools/Doc/setup.py.diff 2008-03-29 09:24:25.000000000 -0600
-+++ Mac/Tools/Doc/setup.py 2008-10-04 19:53:40.000000000 -0600
-@@ -30,7 +30,7 @@
-
- MAJOR_VERSION='2.4'
- MINOR_VERSION='2.4.1'
--DESTDIR='/Applications/MacPython-%s/PythonIDE.app/Contents/Resources/English.lproj/PythonDocumentation' % MAJOR_VERSION
-+DESTDIR='@@APPLICATIONS_DIR@@/MacPython-%s/PythonIDE.app/Contents/Resources/English.lproj/PythonDocumentation' % MAJOR_VERSION
-
- class DocBuild(build):
- def initialize_options(self):
diff --git a/packaging/macosx/ports/lang/python26/files/patch-Makefile.pre.in.diff b/packaging/macosx/ports/lang/python26/files/patch-Makefile.pre.in.diff
deleted file mode 100644
index 60cd69706..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-Makefile.pre.in.diff
+++ /dev/null
@@ -1,31 +0,0 @@
---- Makefile.pre.in.orig 2008-06-19 20:47:03.000000000 -0600
-+++ Makefile.pre.in 2008-07-28 19:57:15.000000000 -0600
-@@ -394,8 +394,8 @@
- # Build the shared modules
- sharedmods: $(BUILDPYTHON)
- @case $$MAKEFLAGS in \
-- *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
-- *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
-+ *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q --no-user-cfg build;; \
-+ *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py --no-user-cfg build;; \
- esac
-
- # Build static library
-@@ -993,7 +993,7 @@
- # Install the dynamically loadable modules
- # This goes into $(exec_prefix)
- sharedinstall:
-- $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
-+ $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py --no-user-cfg install \
- --prefix=$(prefix) \
- --install-scripts=$(BINDIR) \
- --install-platlib=$(DESTSHARED) \
-@@ -1073,7 +1073,7 @@
- # This installs a few of the useful scripts in Tools/scripts
- scriptsinstall:
- SRCDIR=$(srcdir) $(RUNSHARED) \
-- ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
-+ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py --no-user-cfg install \
- --prefix=$(prefix) \
- --install-scripts=$(BINDIR) \
- --root=/$(DESTDIR)
diff --git a/packaging/macosx/ports/lang/python26/files/patch-setup.py.diff b/packaging/macosx/ports/lang/python26/files/patch-setup.py.diff
deleted file mode 100644
index 3acb4ac2b..000000000
--- a/packaging/macosx/ports/lang/python26/files/patch-setup.py.diff
+++ /dev/null
@@ -1,16 +0,0 @@
---- setup.py.orig 2008-09-29 18:15:45.000000000 -0600
-+++ setup.py 2008-11-30 23:13:09.000000000 -0700
-@@ -1506,13 +1506,7 @@
- def detect_tkinter(self, inc_dirs, lib_dirs):
- # The _tkinter module.
-
-- # Rather than complicate the code below, detecting and building
-- # AquaTk is a separate method. Only one Tkinter will be built on
-- # Darwin - either AquaTk, if it is found, or X11 based Tk.
- platform = self.get_platform()
-- if (platform == 'darwin' and
-- self.detect_tkinter_darwin(inc_dirs, lib_dirs)):
-- return
-
- # Assume we haven't found any of the libraries or include files
- # The versions with dots are used on Unix, and the versions without
diff --git a/packaging/macosx/ports/lang/python26/files/pyconfig.ed b/packaging/macosx/ports/lang/python26/files/pyconfig.ed
deleted file mode 100644
index 671d0d560..000000000
--- a/packaging/macosx/ports/lang/python26/files/pyconfig.ed
+++ /dev/null
@@ -1,2 +0,0 @@
-g,.*\(HAVE_POLL[_A-Z]*\).*,s,,/* #undef \1 */,
-w
diff --git a/packaging/macosx/ports/lang/python26/files/python26 b/packaging/macosx/ports/lang/python26/files/python26
deleted file mode 100644
index 5be5fa655..000000000
--- a/packaging/macosx/ports/lang/python26/files/python26
+++ /dev/null
@@ -1,12 +0,0 @@
-bin/python2.6
-bin/pythonw2.6
-bin/python2.6-config
-bin/idle2.6
-bin/pydoc2.6
-bin/smtpd2.6.py
--
-share/man/man1/python2.6.1.gz
-${frameworks_dir}/Library/Frameworks/Python.framework/Versions/2.6
-${frameworks_dir}/Library/Frameworks/Python.framework/Versions/2.6/Headers
-${frameworks_dir}/Library/Frameworks/Python.framework/Versions/2.6/Resources
-${frameworks_dir}/Library/Frameworks/Python.framework/Versions/2.6/Python
diff --git a/packaging/macosx/ports/lang/python26/files/version.plist b/packaging/macosx/ports/lang/python26/files/version.plist
deleted file mode 100644
index acdfe5bac..000000000
--- a/packaging/macosx/ports/lang/python26/files/version.plist
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>BuildVersion</key>
- <string>1</string>
- <key>CFBundleShortVersionString</key>
- <string>2.6.1</string>
- <key>CFBundleVersion</key>
- <string>2.6.1</string>
- <key>ProjectName</key>
- <string>Python</string>
- <key>SourceVersion</key>
- <string>2.6.1</string>
-</dict>
-</plist>