From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-python/cx_Freeze/Manifest | 3 +++ dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild | 22 +++++++++++++++ dev-python/cx_Freeze/cx_Freeze-4.3.2.ebuild | 22 +++++++++++++++ dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild | 21 +++++++++++++++ .../files/cx_Freeze-4.3.2-buildsystem.patch | 31 ++++++++++++++++++++++ dev-python/cx_Freeze/metadata.xml | 12 +++++++++ 6 files changed, 111 insertions(+) create mode 100644 dev-python/cx_Freeze/Manifest create mode 100644 dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild create mode 100644 dev-python/cx_Freeze/cx_Freeze-4.3.2.ebuild create mode 100644 dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild create mode 100644 dev-python/cx_Freeze/files/cx_Freeze-4.3.2-buildsystem.patch create mode 100644 dev-python/cx_Freeze/metadata.xml (limited to 'dev-python/cx_Freeze') diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest new file mode 100644 index 000000000000..894f6219fde8 --- /dev/null +++ b/dev-python/cx_Freeze/Manifest @@ -0,0 +1,3 @@ +DIST cx_Freeze-4.3.1.tar.gz 53441 SHA256 11f8818ab4e1754c81c1226ce3430f29e6ba231a22a153ce3794a5cc464fa11b SHA512 3fbd179e6b0dcdc926c8827745dfe52df01c0ba1a36f5ae01240d977a251517ce9dba6b6f276a2a292f4a0bd91e923899da1bbd08671cee687a912980481e9e9 WHIRLPOOL dcbc2d29eafd4e3f4361da7a6501fa929bd1bd66b0f29b0d9cd717609b30150ea43387468565d41e663d1f8425f7889122da929c8b160473cb0580d2630e02a5 +DIST cx_Freeze-4.3.2.tar.gz 55816 SHA256 d634aae1e1d20b660d24245450b8a5ea3ad9c443cd735d8fbe17c1d93b8b23df SHA512 2ff4d695ac5ff23b68d0ee32c94948beef7c6be9a2b606e43c77bf954fe96c0dba6fa5186e3995c2937c6b5862fb3b0dd3e21c518626c1905a13b6d0abdcd3ec WHIRLPOOL e3ee3cc1b893f18b3afea645bdb7d5c72d5363380aa18a2416d2693c9f185a57442083f4bf19760ffdf7fe8e587ab835c2dbe56ed713c3bf59679a0d92bb1fca +DIST cx_Freeze-4.3.3.tar.gz 58975 SHA256 eaac9ab61117c64371384766e0b9c6603d3bdb23cf306b257f31b8a3a5740729 SHA512 a707d5acca4a01a762d6ba9fde35e47405c03d769c15bf828bfa16bacb48f41c75f28d08cefb7e1825e2b9c85fae46f7728ecd9d095a11e2740286cc2d798d52 WHIRLPOOL 9a5623705842c08b7e9efb67829abac164224170f513c8f021e9f6da36c83a9faf966e763dc2fe8ad8e4c2622cbbcfa9ce0f370cd01735741e3807b113b1520a diff --git a/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild b/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild new file mode 100644 index 000000000000..5635f916386e --- /dev/null +++ b/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python{2_7,3_3} ) +inherit distutils-r1 + +DESCRIPTION="Create standalone executables from Python scripts" +HOMEPAGE="http://cx-freeze.sourceforge.net" +SRC_URI="mirror://sourceforge/cx-freeze/${P}.tar.gz" + +LICENSE="PYTHON" +SLOT="0" +KEYWORDS="amd64 x86" + +DOCS=( README.txt ) + +PATCHES=( + "${FILESDIR}/${PN}-4.3.2-buildsystem.patch" # bug #491602 +) diff --git a/dev-python/cx_Freeze/cx_Freeze-4.3.2.ebuild b/dev-python/cx_Freeze/cx_Freeze-4.3.2.ebuild new file mode 100644 index 000000000000..effe661d5afe --- /dev/null +++ b/dev-python/cx_Freeze/cx_Freeze-4.3.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python{2_7,3_3} ) +inherit distutils-r1 + +DESCRIPTION="Create standalone executables from Python scripts" +HOMEPAGE="http://cx-freeze.sourceforge.net" +SRC_URI="mirror://sourceforge/cx-freeze/${P}.tar.gz" + +LICENSE="PYTHON" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS=( README.txt ) + +PATCHES=( + "${FILESDIR}/${P}-buildsystem.patch" # bug #491602 +) diff --git a/dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild b/dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild new file mode 100644 index 000000000000..8f62d8769d07 --- /dev/null +++ b/dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +inherit distutils-r1 + +DESCRIPTION="Create standalone executables from Python scripts" +HOMEPAGE="http://cx-freeze.sourceforge.net" +SRC_URI="mirror://sourceforge/cx-freeze/${P}.tar.gz" + +LICENSE="PYTHON" +SLOT="0" +KEYWORDS="amd64 x86" + +PATCHES=( + "${FILESDIR}/${PN}-4.3.2-buildsystem.patch" # bug #491602 +) +# test folder missing half the source content. diff --git a/dev-python/cx_Freeze/files/cx_Freeze-4.3.2-buildsystem.patch b/dev-python/cx_Freeze/files/cx_Freeze-4.3.2-buildsystem.patch new file mode 100644 index 000000000000..288443bba495 --- /dev/null +++ b/dev-python/cx_Freeze/files/cx_Freeze-4.3.2-buildsystem.patch @@ -0,0 +1,31 @@ +From: Julian Ospald +Date: Tue Nov 19 11:20:21 UTC 2013 + +Respect LDFLAGS, remove stripping. +Fixes Gentoo bug #491602 + +--- a/cx_Freeze-4.3.2/setup.py ++++ b/cx_Freeze-4.3.2/setup.py +@@ -78,11 +78,12 @@ + extraArgs = ext.extra_link_args or [] + if sys.platform != "win32": + vars = distutils.sysconfig.get_config_vars() ++ if vars["LINKFORSHARED"] and sys.platform != "darwin": ++ vars["LINKFORSHARED"] = vars["LINKFORSHARED"] + " " + os.environ["LDFLAGS"] ++ extraArgs.extend(vars["LINKFORSHARED"].split()) + if not vars.get("Py_ENABLE_SHARED", 0): + libraryDirs.append(vars["LIBPL"]) + libraries.append("python%s.%s" % sys.version_info[:2]) +- if vars["LINKFORSHARED"] and sys.platform != "darwin": +- extraArgs.extend(vars["LINKFORSHARED"].split()) + if vars["LIBS"]: + extraArgs.extend(vars["LIBS"].split()) + if vars["LIBM"]: +@@ -91,7 +92,6 @@ + extraArgs.extend(vars["BASEMODLIBS"].split()) + if vars["LOCALMODLIBS"]: + extraArgs.extend(vars["LOCALMODLIBS"].split()) +- extraArgs.append("-s") + elif ext.name.find("Win32GUI") > 0 \ + and self.compiler.compiler_type == "mingw32": + extraArgs.append("-mwindows") diff --git a/dev-python/cx_Freeze/metadata.xml b/dev-python/cx_Freeze/metadata.xml new file mode 100644 index 000000000000..277c7f1ba6a8 --- /dev/null +++ b/dev-python/cx_Freeze/metadata.xml @@ -0,0 +1,12 @@ + + + + python + + pinkbyte@gentoo.org + Sergey Popov + + + cx-freeze + + -- cgit v1.2.3-65-gdbad