mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-python/cx_Freeze: version bump
Package-Manager: portage-2.2.27
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST cx_Freeze-4.3.3.tar.gz 58975 SHA256 eaac9ab61117c64371384766e0b9c6603d3bdb23cf306b257f31b8a3a5740729 SHA512 a707d5acca4a01a762d6ba9fde35e47405c03d769c15bf828bfa16bacb48f41c75f28d08cefb7e1825e2b9c85fae46f7728ecd9d095a11e2740286cc2d798d52 WHIRLPOOL 9a5623705842c08b7e9efb67829abac164224170f513c8f021e9f6da36c83a9faf966e763dc2fe8ad8e4c2622cbbcfa9ce0f370cd01735741e3807b113b1520a
|
||||
DIST cx_Freeze-4.3.4.tar.gz 60172 SHA256 40c7bbfa107e139d105fdf79d1a7540dbb9f84aaf0fecdd03420bf37f0031be2 SHA512 b523322c8199757245f3af2d9e3d68397708cfc8f318761f1eec6e011bd07ec12d3b748a60d33f43f0849f68ec064a729fb3250747216b90b8dd700d0a83699f WHIRLPOOL 829c5c017bdb0b07bbe3e941426d01e798db173fd68ce9b3ad2b96b610bb07262e71fb378fce83857233fd319fa1eb7fdb44477a354b39aa0a9bd1085897ba9c
|
||||
|
||||
21
dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild
Normal file
21
dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_4} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Create standalone executables from Python scripts"
|
||||
HOMEPAGE="http://cx-freeze.sourceforge.net"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="PYTHON"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-buildsystem.patch" # bug #491602
|
||||
)
|
||||
# test folder missing half the source content.
|
||||
16
dev-python/cx_Freeze/files/cx_Freeze-4.3.4-buildsystem.patch
Normal file
16
dev-python/cx_Freeze/files/cx_Freeze-4.3.4-buildsystem.patch
Normal file
@@ -0,0 +1,16 @@
|
||||
From: Julian Ospald <hasufell@gentoo.org>
|
||||
Date: Tue Nov 19 11:20:21 UTC 2013
|
||||
|
||||
Respect LDFLAGS, remove stripping.
|
||||
Fixes Gentoo bug #491602
|
||||
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -94,7 +94,6 @@
|
||||
extraArgs.extend(vars["BASEMODLIBS"].split())
|
||||
if vars["LOCALMODLIBS"]:
|
||||
extraArgs.extend(vars["LOCALMODLIBS"].split())
|
||||
- extraArgs.append("-s")
|
||||
self.compiler.link_executable(objects, fullName,
|
||||
libraries = libraries,
|
||||
library_dirs = libraryDirs,
|
||||
Reference in New Issue
Block a user