Gentoo Archives: gentoo-commits

From: Sergey Popov <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cx_Freeze/files/, dev-python/cx_Freeze/
Date: Tue, 01 Aug 2017 12:18:30
Message-Id: 1501589899.e61542298a5c16bdd054c113f385a79d41b921b6.pinkbyte@gentoo
1 commit: e61542298a5c16bdd054c113f385a79d41b921b6
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 12:12:29 2017 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 1 12:18:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6154229
7
8 dev-python/cx_Freeze: drop old version
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 dev-python/cx_Freeze/Manifest | 1 -
13 dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild | 20 --------------
14 .../files/cx_Freeze-4.3.2-buildsystem.patch | 31 ----------------------
15 3 files changed, 52 deletions(-)
16
17 diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest
18 index 83c866bd5b2..4dddee303f2 100644
19 --- a/dev-python/cx_Freeze/Manifest
20 +++ b/dev-python/cx_Freeze/Manifest
21 @@ -1,2 +1 @@
22 -DIST cx_Freeze-4.3.3.tar.gz 58975 SHA256 eaac9ab61117c64371384766e0b9c6603d3bdb23cf306b257f31b8a3a5740729 SHA512 a707d5acca4a01a762d6ba9fde35e47405c03d769c15bf828bfa16bacb48f41c75f28d08cefb7e1825e2b9c85fae46f7728ecd9d095a11e2740286cc2d798d52 WHIRLPOOL 9a5623705842c08b7e9efb67829abac164224170f513c8f021e9f6da36c83a9faf966e763dc2fe8ad8e4c2622cbbcfa9ce0f370cd01735741e3807b113b1520a
23 DIST cx_Freeze-4.3.4.tar.gz 60172 SHA256 40c7bbfa107e139d105fdf79d1a7540dbb9f84aaf0fecdd03420bf37f0031be2 SHA512 b523322c8199757245f3af2d9e3d68397708cfc8f318761f1eec6e011bd07ec12d3b748a60d33f43f0849f68ec064a729fb3250747216b90b8dd700d0a83699f WHIRLPOOL 829c5c017bdb0b07bbe3e941426d01e798db173fd68ce9b3ad2b96b610bb07262e71fb378fce83857233fd319fa1eb7fdb44477a354b39aa0a9bd1085897ba9c
24
25 diff --git a/dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild b/dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild
26 deleted file mode 100644
27 index 5aca64e2ff6..00000000000
28 --- a/dev-python/cx_Freeze/cx_Freeze-4.3.3.ebuild
29 +++ /dev/null
30 @@ -1,20 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="5"
35 -
36 -PYTHON_COMPAT=( python{2_7,3_4} )
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Create standalone executables from Python scripts"
40 -HOMEPAGE="http://cx-freeze.sourceforge.net"
41 -SRC_URI="mirror://sourceforge/cx-freeze/${P}.tar.gz"
42 -
43 -LICENSE="PYTHON"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -
47 -PATCHES=(
48 - "${FILESDIR}/${PN}-4.3.2-buildsystem.patch" # bug #491602
49 -)
50 -# test folder missing half the source content.
51
52 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
53 deleted file mode 100644
54 index 288443bba49..00000000000
55 --- a/dev-python/cx_Freeze/files/cx_Freeze-4.3.2-buildsystem.patch
56 +++ /dev/null
57 @@ -1,31 +0,0 @@
58 -From: Julian Ospald <hasufell@g.o>
59 -Date: Tue Nov 19 11:20:21 UTC 2013
60 -
61 -Respect LDFLAGS, remove stripping.
62 -Fixes Gentoo bug #491602
63 -
64 ---- a/cx_Freeze-4.3.2/setup.py
65 -+++ b/cx_Freeze-4.3.2/setup.py
66 -@@ -78,11 +78,12 @@
67 - extraArgs = ext.extra_link_args or []
68 - if sys.platform != "win32":
69 - vars = distutils.sysconfig.get_config_vars()
70 -+ if vars["LINKFORSHARED"] and sys.platform != "darwin":
71 -+ vars["LINKFORSHARED"] = vars["LINKFORSHARED"] + " " + os.environ["LDFLAGS"]
72 -+ extraArgs.extend(vars["LINKFORSHARED"].split())
73 - if not vars.get("Py_ENABLE_SHARED", 0):
74 - libraryDirs.append(vars["LIBPL"])
75 - libraries.append("python%s.%s" % sys.version_info[:2])
76 -- if vars["LINKFORSHARED"] and sys.platform != "darwin":
77 -- extraArgs.extend(vars["LINKFORSHARED"].split())
78 - if vars["LIBS"]:
79 - extraArgs.extend(vars["LIBS"].split())
80 - if vars["LIBM"]:
81 -@@ -91,7 +92,6 @@
82 - extraArgs.extend(vars["BASEMODLIBS"].split())
83 - if vars["LOCALMODLIBS"]:
84 - extraArgs.extend(vars["LOCALMODLIBS"].split())
85 -- extraArgs.append("-s")
86 - elif ext.name.find("Win32GUI") > 0 \
87 - and self.compiler.compiler_type == "mingw32":
88 - extraArgs.append("-mwindows")