summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Polatel <hawking@gentoo.org>2008-01-03 20:02:42 +0000
committerAli Polatel <hawking@gentoo.org>2008-01-03 20:02:42 +0000
commit0d7b3931236128547b36920694a6481ee02be51d (patch)
treecbd5bbcc11b8de5b729e97349a3166632caefbbd /dev-python/pyx/files
parentVersion bump (diff)
downloadgentoo-2-0d7b3931236128547b36920694a6481ee02be51d.tar.gz
gentoo-2-0d7b3931236128547b36920694a6481ee02be51d.tar.bz2
gentoo-2-0d7b3931236128547b36920694a6481ee02be51d.zip
Removed old versions, quoting
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'dev-python/pyx/files')
-rw-r--r--dev-python/pyx/files/digest-pyx-0.6.33
-rw-r--r--dev-python/pyx/files/digest-pyx-0.7.13
-rw-r--r--dev-python/pyx/files/digest-pyx-0.8.13
-rw-r--r--dev-python/pyx/files/digest-pyx-0.93
-rw-r--r--dev-python/pyx/files/pyx-0.7.1.patch101
-rw-r--r--dev-python/pyx/files/pyx-0.8.1.patch179
-rw-r--r--dev-python/pyx/files/pyx-0.9.patch138
7 files changed, 0 insertions, 430 deletions
diff --git a/dev-python/pyx/files/digest-pyx-0.6.3 b/dev-python/pyx/files/digest-pyx-0.6.3
deleted file mode 100644
index e1d37fe48afd..000000000000
--- a/dev-python/pyx/files/digest-pyx-0.6.3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 ff3427b4deb265c448da8aec8cbd7e77 PyX-0.6.3.tar.gz 1323242
-RMD160 c7bf85dfa4cb9a4ab1b3e328be53b0586e6973dd PyX-0.6.3.tar.gz 1323242
-SHA256 c34836fe74761bcc4cb48764974e1c68339096b89764449c849245103d15356d PyX-0.6.3.tar.gz 1323242
diff --git a/dev-python/pyx/files/digest-pyx-0.7.1 b/dev-python/pyx/files/digest-pyx-0.7.1
deleted file mode 100644
index 15b71e7704d2..000000000000
--- a/dev-python/pyx/files/digest-pyx-0.7.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 5ee6e9f24e27ef8ac4c715420136d747 PyX-0.7.1.tar.gz 278059
-RMD160 52c7b44a5d3495368452156a796c352fac7c26b1 PyX-0.7.1.tar.gz 278059
-SHA256 1b0763d0650d7ddb8c029d90704889afe0d799ee91053773159cf4b2bdb5b992 PyX-0.7.1.tar.gz 278059
diff --git a/dev-python/pyx/files/digest-pyx-0.8.1 b/dev-python/pyx/files/digest-pyx-0.8.1
deleted file mode 100644
index 1896a1da6055..000000000000
--- a/dev-python/pyx/files/digest-pyx-0.8.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 5e751cef8d62774a6fc659cc9a03c231 PyX-0.8.1.tar.gz 335245
-RMD160 58516fb366d84cca2aa23a2d97a5e902e895f8bb PyX-0.8.1.tar.gz 335245
-SHA256 f68c98ca24961172341cbea349fddbccdbc9019be65b1f95b00b12a852fc3a8a PyX-0.8.1.tar.gz 335245
diff --git a/dev-python/pyx/files/digest-pyx-0.9 b/dev-python/pyx/files/digest-pyx-0.9
deleted file mode 100644
index 2a0957a10191..000000000000
--- a/dev-python/pyx/files/digest-pyx-0.9
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 c90c59e257e713cae1dc99677100ffeb PyX-0.9.tar.gz 351451
-RMD160 095148e1cf5af028724ba3abf52794741e72d084 PyX-0.9.tar.gz 351451
-SHA256 01430a4216350febb438e6520665cdcb11202db8ce879691844fe7f696952fec PyX-0.9.tar.gz 351451
diff --git a/dev-python/pyx/files/pyx-0.7.1.patch b/dev-python/pyx/files/pyx-0.7.1.patch
deleted file mode 100644
index c682c8bf4827..000000000000
--- a/dev-python/pyx/files/pyx-0.7.1.patch
+++ /dev/null
@@ -1,101 +0,0 @@
---- setup.py 2004-05-12 05:13:55.000000000 -0300
-+++ setup.new.py 2004-12-19 23:47:03.810170032 -0200
-@@ -56,49 +56,6 @@
- ("/etc", ["pyxrc"])]
-
- #
--# pyx_build_py
--#
--# pyx/siteconfig.py is not copied from the source directory,
--# but generated from the directory data obtained from install_data
--#
--
--class pyx_build_py(build_py):
--
-- def run(self):
-- # siteconfig depends on install_data:
-- self.run_command('install_data')
-- build_py.run(self)
--
-- def build_module(self, module, module_file, package):
-- if package == "pyx" and module == "siteconfig":
-- # generate path information as the original build_module does it
-- outfile = self.get_module_outfile(self.build_lib, [package], module)
-- dir = os.path.dirname(outfile)
-- self.mkpath(dir)
--
-- # we do not copy pyx/siteconfig.py, but generate it
-- # using the pyx_install_data instance
-- install_data = self.distribution.command_obj["install_data"]
-- f = open(outfile, "w")
-- f.write("lfsdir = %r\n" % install_data.pyx_lfsdir)
-- f.write("sharedir = %r\n" % install_data.pyx_sharedir)
-- f.write("pyxrc = %r\n" % install_data.pyx_pyxrc)
-- f.close()
-- else:
-- return build_py.build_module(self, module, module_file, package)
--
--#
--# install_data
--#
--
--class pyx_install_data(install_data):
--
-- def run(self):
-- install_data.run(self)
-- self.pyx_lfsdir = self.pyx_sharedir = os.path.join(self.install_dir, "share", "pyx")
-- self.pyx_pyxrc = os.path.join(self.root or "/", "etc", "pyxrc")
--
--#
- # additional package metadata (only available in Python 2.3 and above)
- #
-
-@@ -135,6 +92,4 @@
- packages=["pyx", "pyx/graph", "pyx/graph/axis", "pyx/t1strip", "pyx/pykpathsea"],
- ext_modules=ext_modules,
- data_files=data_files,
-- cmdclass = {"build_py": pyx_build_py,
-- "install_data": pyx_install_data},
- **addargs)
---- pyx/siteconfig.py 2004-12-20 00:21:36.982999856 -0200
-+++ siteconfig.new.py 2004-12-20 00:21:33.312557848 -0200
-@@ -1,36 +1,5 @@
- #!/usr/bin/env python
- # -*- coding: ISO-8859-1 -*-
--#
--#
--# Copyright (C) 2004 André Wobst <wobsta@users.sourceforge.net>
--#
--# This file is part of PyX (http://pyx.sourceforge.net/).
--#
--# PyX is free software; you can redistribute it and/or modify
--# it under the terms of the GNU General Public License as published by
--# the Free Software Foundation; either version 2 of the License, or
--# (at your option) any later version.
--#
--# PyX is distributed in the hope that it will be useful,
--# but WITHOUT ANY WARRANTY; without even the implied warranty of
--# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--# GNU General Public License for more details.
--#
--# You should have received a copy of the GNU General Public License
--# along with PyX; if not, write to the Free Software
--# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
--# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--# This file configures PyX search paths relative to the current
--# position, e.g. for local usage. When installing PyX via distutils
--# the contents of this file is not copied to the PyX installation.
--# Instead the correct information about the paths from the installation
--# process are used.
--# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--
--import os
--
--lfsdir = os.path.join(os.path.dirname(__file__), "lfs")
--sharedir = os.path.join(os.path.dirname(__file__), "..", "contrib")
--pyxrc = os.path.join(os.path.dirname(__file__), "..", "pyxrc")
--
-+lfsdir = "/usr/share/pyx"
-+sharedir = "/usr/share/pyx"
-+pyxrc = "/etc/pyxrc"
diff --git a/dev-python/pyx/files/pyx-0.8.1.patch b/dev-python/pyx/files/pyx-0.8.1.patch
deleted file mode 100644
index 566fb4ef425c..000000000000
--- a/dev-python/pyx/files/pyx-0.8.1.patch
+++ /dev/null
@@ -1,179 +0,0 @@
-diff -ruaN PyX-0.8.1/pyx/siteconfig.py PyX-0.8.1.new/pyx/siteconfig.py
---- PyX-0.8.1/pyx/siteconfig.py 2005-07-14 00:02:12.000000000 +1000
-+++ PyX-0.8.1.new/pyx/siteconfig.py 2005-08-19 16:53:35.000000000 +1000
-@@ -1,36 +1,4 @@
--#!/usr/bin/env python
--# -*- coding: ISO-8859-1 -*-
--#
--#
--# Copyright (C) 2004-2005 André Wobst <wobsta@users.sourceforge.net>
--#
--# This file is part of PyX (http://pyx.sourceforge.net/).
--#
--# PyX is free software; you can redistribute it and/or modify
--# it under the terms of the GNU General Public License as published by
--# the Free Software Foundation; either version 2 of the License, or
--# (at your option) any later version.
--#
--# PyX is distributed in the hope that it will be useful,
--# but WITHOUT ANY WARRANTY; without even the implied warranty of
--# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--# GNU General Public License for more details.
--#
--# You should have received a copy of the GNU General Public License
--# along with PyX; if not, write to the Free Software
--# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
--
--# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--# This file configures PyX search paths relative to the current
--# position, e.g. for local usage. When installing PyX via distutils
--# the contents of this file is not copied to the PyX installation.
--# Instead the correct information about the paths from the installation
--# process are used.
--# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--
--import os
--
--lfsdir = os.path.join(os.path.dirname(__file__), "lfs")
--sharedir = os.path.join(os.path.dirname(__file__), "..", "contrib")
--pyxrcdir = os.path.join(os.path.dirname(__file__), "..")
-+lfsdir = "/usr/share/pyx"
-+sharedir = "/usr/share/pyx"
-+pyxrcdir = "/etc/pyxrc"
-
-diff -ruaN PyX-0.8.1/pyx/siteconfig.py.orig PyX-0.8.1.new/pyx/siteconfig.py.orig
---- PyX-0.8.1/pyx/siteconfig.py.orig 1970-01-01 10:00:00.000000000 +1000
-+++ PyX-0.8.1.new/pyx/siteconfig.py.orig 2005-08-19 16:49:15.000000000 +1000
-@@ -0,0 +1,36 @@
-+#!/usr/bin/env python
-+# -*- coding: ISO-8859-1 -*-
-+#
-+#
-+# Copyright (C) 2004-2005 André Wobst <wobsta@users.sourceforge.net>
-+#
-+# This file is part of PyX (http://pyx.sourceforge.net/).
-+#
-+# PyX is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# PyX is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with PyX; if not, write to the Free Software
-+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
-+
-+# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-+# This file configures PyX search paths relative to the current
-+# position, e.g. for local usage. When installing PyX via distutils
-+# the contents of this file is not copied to the PyX installation.
-+# Instead the correct information about the paths from the installation
-+# process are used.
-+# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-+
-+import os
-+
-+lfsdir = os.path.join(os.path.dirname(__file__), "lfs")
-+sharedir = os.path.join(os.path.dirname(__file__), "..", "contrib")
-+pyxrcdir = os.path.join(os.path.dirname(__file__), "..")
-+
-diff -ruaN PyX-0.8.1/setup.py PyX-0.8.1.new/setup.py
---- PyX-0.8.1/setup.py 2005-08-13 22:32:46.000000000 +1000
-+++ PyX-0.8.1.new/setup.py 2005-08-19 16:49:02.000000000 +1000
-@@ -77,84 +77,6 @@
- # we put the global pyxrc into the share directory as well.
- adddatafiles("pyxrcdir", os.name != "nt" and "/etc" or "share/pyx", ["pyxrc"])
-
--################################################################################
--# extend install commands to overwrite siteconfig.py during build and install
--#
--
--
--class pyx_build_py(build_py):
--
-- def build_module(self, module, module_file, package):
-- if package == "pyx" and module == "siteconfig":
-- # generate path information as the original build_module does it
-- outfile = self.get_module_outfile(self.build_lib, [package], module)
-- outdir = os.path.dirname(outfile)
-- self.mkpath(outdir)
--
-- if log:
-- log.info("creating proper %s" % outfile)
--
-- # create the additional relative path parts to be inserted into the
-- # os.path.join methods in the original siteconfig.py
-- indir = os.path.dirname(module_file)
-- addjoinstring = ", ".join(["'..'" for d in outdir.split(os.path.sep)] +
-- ["'%s'" % d for d in indir.split(os.path.sep)])
--
-- # write a modifed version of siteconfig.py
-- fin = open(module_file, "r")
-- fout = open(outfile, "w")
-- for line in fin.readlines():
-- fout.write(line.replace("os.path.join(os.path.dirname(__file__), ",
-- "os.path.join(os.path.dirname(__file__), %s, " % addjoinstring))
-- fin.close()
-- fout.close()
-- else:
-- return build_py.build_module(self, module, module_file, package)
--
--
--class pyx_install_data(install_data):
--
-- def run(self):
-- self.siteconfiglines = []
-- for dir, files in self.data_files:
-- # append siteconfiglines by "<siteconfigname> = <dir>"
--
-- # get the install directory
-- # (the following four lines are copied from within the install_data.run loop)
-- dir = convert_path(dir)
-- if not os.path.isabs(dir):
-- dir = os.path.join(self.install_dir, dir)
-- elif self.root:
-- dir = change_root(self.root, dir)
--
-- self.siteconfiglines.append("%s = '%s'\n" % (siteconfignames[files], dir))
--
-- install_data.run(self)
--
--
--class pyx_install_lib(install_lib):
--
-- def run(self):
-- # siteconfig.py depends on install_data:
-- self.run_command('install_data')
-- install_lib.run(self)
--
-- def install(self):
-- # first we perform the tree_copy
-- result = install_lib.install(self)
--
-- # siteconfiglines have been created by install_data
-- siteconfiglines = self.distribution.command_obj["install_data"].siteconfiglines
--
-- # such that we can easily overwrite siteconfig.py
-- outfile = os.path.join(self.install_dir, "pyx", "siteconfig.py")
-- if log:
-- log.info("creating proper %s" % outfile)
-- f = open(outfile, "w")
-- f.writelines(siteconfiglines)
-- f.close()
--
-- return result
-
- ################################################################################
- # additional package metadata (only available in Python 2.3 and above)
-@@ -193,7 +115,4 @@
- packages=["pyx", "pyx/graph", "pyx/graph/axis", "pyx/t1strip", "pyx/pykpathsea"],
- ext_modules=ext_modules,
- data_files=data_files,
-- cmdclass = {"build_py": pyx_build_py,
-- "install_data": pyx_install_data,
-- "install_lib": pyx_install_lib},
- **addargs)
diff --git a/dev-python/pyx/files/pyx-0.9.patch b/dev-python/pyx/files/pyx-0.9.patch
deleted file mode 100644
index d7be7ec78b5b..000000000000
--- a/dev-python/pyx/files/pyx-0.9.patch
+++ /dev/null
@@ -1,138 +0,0 @@
-diff -urN PyX-0.9.orig/pyx/siteconfig.py PyX-0.9/pyx/siteconfig.py
---- PyX-0.9.orig/pyx/siteconfig.py 2006-09-23 18:35:45.000000000 -0700
-+++ PyX-0.9/pyx/siteconfig.py 2006-09-23 18:36:28.000000000 -0700
-@@ -1,35 +1,3 @@
--# -*- coding: ISO-8859-1 -*-
--#
--#
--# Copyright (C) 2004-2005 André Wobst <wobsta@users.sourceforge.net>
--#
--# This file is part of PyX (http://pyx.sourceforge.net/).
--#
--# PyX is free software; you can redistribute it and/or modify
--# it under the terms of the GNU General Public License as published by
--# the Free Software Foundation; either version 2 of the License, or
--# (at your option) any later version.
--#
--# PyX is distributed in the hope that it will be useful,
--# but WITHOUT ANY WARRANTY; without even the implied warranty of
--# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--# GNU General Public License for more details.
--#
--# You should have received a copy of the GNU General Public License
--# along with PyX; if not, write to the Free Software
--# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
--
--# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--# This file configures PyX search paths relative to the current
--# position, e.g. for local usage. When installing PyX via distutils
--# the contents of this file is not copied to the PyX installation.
--# Instead the correct information about the paths from the installation
--# process are used.
--# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--
--import os
--
--lfsdir = os.path.join(os.path.dirname(__file__), "lfs")
--sharedir = os.path.join(os.path.dirname(__file__), "..", "contrib")
--pyxrcdir = os.path.join(os.path.dirname(__file__), "..")
--
-+lfsdir = "/usr/share/pyx"
-+sharedir = "/usr/share/pyx"
-+pyxrcdir = "/etc/pyxrc"
-diff -urN PyX-0.9.orig/setup.py PyX-0.9/setup.py
---- PyX-0.9.orig/setup.py 2006-09-23 18:35:45.000000000 -0700
-+++ PyX-0.9/setup.py 2006-09-23 18:37:02.000000000 -0700
-@@ -77,84 +77,6 @@
- # we put the global pyxrc into the share directory as well.
- adddatafiles("pyxrcdir", os.name != "nt" and "/etc" or "share/pyx", ["pyxrc"])
-
--################################################################################
--# extend install commands to overwrite siteconfig.py during build and install
--#
--
--
--class pyx_build_py(build_py):
--
-- def build_module(self, module, module_file, package):
-- if package == "pyx" and module == "siteconfig":
-- # generate path information as the original build_module does it
-- outfile = self.get_module_outfile(self.build_lib, [package], module)
-- outdir = os.path.dirname(outfile)
-- self.mkpath(outdir)
--
-- if log:
-- log.info("creating proper %s" % outfile)
--
-- # create the additional relative path parts to be inserted into the
-- # os.path.join methods in the original siteconfig.py
-- indir = os.path.dirname(module_file)
-- addjoinstring = ", ".join(["'..'" for d in outdir.split(os.path.sep)] +
-- ["'%s'" % d for d in indir.split(os.path.sep)])
--
-- # write a modifed version of siteconfig.py
-- fin = open(module_file, "r")
-- fout = open(outfile, "w")
-- for line in fin.readlines():
-- fout.write(line.replace("os.path.join(os.path.dirname(__file__), ",
-- "os.path.join(os.path.dirname(__file__), %s, " % addjoinstring))
-- fin.close()
-- fout.close()
-- else:
-- return build_py.build_module(self, module, module_file, package)
--
--
--class pyx_install_data(install_data):
--
-- def run(self):
-- self.siteconfiglines = []
-- for dir, files in self.data_files:
-- # append siteconfiglines by "<siteconfigname> = <dir>"
--
-- # get the install directory
-- # (the following four lines are copied from within the install_data.run loop)
-- dir = convert_path(dir)
-- if not os.path.isabs(dir):
-- dir = os.path.join(self.install_dir, dir)
-- elif self.root:
-- dir = change_root(self.root, dir)
--
-- self.siteconfiglines.append("%s = '%s'\n" % (siteconfignames[files], dir))
--
-- install_data.run(self)
--
--
--class pyx_install_lib(install_lib):
--
-- def run(self):
-- # siteconfig.py depends on install_data:
-- self.run_command('install_data')
-- install_lib.run(self)
--
-- def install(self):
-- # first we perform the tree_copy
-- result = install_lib.install(self)
--
-- # siteconfiglines have been created by install_data
-- siteconfiglines = self.distribution.command_obj["install_data"].siteconfiglines
--
-- # such that we can easily overwrite siteconfig.py
-- outfile = os.path.join(self.install_dir, "pyx", "siteconfig.py")
-- if log:
-- log.info("creating proper %s" % outfile)
-- f = open(outfile, "w")
-- f.writelines(siteconfiglines)
-- f.close()
--
-- return result
-
- ################################################################################
- # additional package metadata (only available in Python 2.3 and above)
-@@ -193,7 +115,4 @@
- packages=["pyx", "pyx/graph", "pyx/graph/axis", "pyx/font", "pyx/pykpathsea"],
- ext_modules=ext_modules,
- data_files=data_files,
-- cmdclass = {"build_py": pyx_build_py,
-- "install_data": pyx_install_data,
-- "install_lib": pyx_install_lib},
- **addargs)