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/, dev-python/cx_Freeze/files/
Date: Fri, 26 Feb 2016 18:37:40
Message-Id: 1456511850.76ac6ee89b19ea61e3706e243694384e8cae6d1a.pinkbyte@gentoo
1 commit: 76ac6ee89b19ea61e3706e243694384e8cae6d1a
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 26 18:36:38 2016 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 18:37:30 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ac6ee8
7
8 dev-python/cx_Freeze: version bump
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/cx_Freeze/Manifest | 1 +
13 dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild | 21 +++++++++++++++++++++
14 .../files/cx_Freeze-4.3.4-buildsystem.patch | 16 ++++++++++++++++
15 3 files changed, 38 insertions(+)
16
17 diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest
18 index b59295e..83c866b 100644
19 --- a/dev-python/cx_Freeze/Manifest
20 +++ b/dev-python/cx_Freeze/Manifest
21 @@ -1 +1,2 @@
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.4.ebuild b/dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild
26 new file mode 100644
27 index 0000000..9aad3f9
28 --- /dev/null
29 +++ b/dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild
30 @@ -0,0 +1,21 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_4} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Create standalone executables from Python scripts"
41 +HOMEPAGE="http://cx-freeze.sourceforge.net"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="PYTHON"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +PATCHES=(
49 + "${FILESDIR}/${P}-buildsystem.patch" # bug #491602
50 +)
51 +# test folder missing half the source content.
52
53 diff --git a/dev-python/cx_Freeze/files/cx_Freeze-4.3.4-buildsystem.patch b/dev-python/cx_Freeze/files/cx_Freeze-4.3.4-buildsystem.patch
54 new file mode 100644
55 index 0000000..e55d0d3
56 --- /dev/null
57 +++ b/dev-python/cx_Freeze/files/cx_Freeze-4.3.4-buildsystem.patch
58 @@ -0,0 +1,16 @@
59 +From: Julian Ospald <hasufell@g.o>
60 +Date: Tue Nov 19 11:20:21 UTC 2013
61 +
62 +Respect LDFLAGS, remove stripping.
63 +Fixes Gentoo bug #491602
64 +
65 +--- a/setup.py
66 ++++ b/setup.py
67 +@@ -94,7 +94,6 @@
68 + extraArgs.extend(vars["BASEMODLIBS"].split())
69 + if vars["LOCALMODLIBS"]:
70 + extraArgs.extend(vars["LOCALMODLIBS"].split())
71 +- extraArgs.append("-s")
72 + self.compiler.link_executable(objects, fullName,
73 + libraries = libraries,
74 + library_dirs = libraryDirs,