From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0043C1388C0 for ; Fri, 26 Feb 2016 18:37:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B020DE0854; Fri, 26 Feb 2016 18:37:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 231ADE0854 for ; Fri, 26 Feb 2016 18:37:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0759340CA5 for ; Fri, 26 Feb 2016 18:37:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 157BE1B8A for ; Fri, 26 Feb 2016 18:37:35 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1456511850.76ac6ee89b19ea61e3706e243694384e8cae6d1a.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cx_Freeze/, dev-python/cx_Freeze/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cx_Freeze/Manifest dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild dev-python/cx_Freeze/files/cx_Freeze-4.3.4-buildsystem.patch X-VCS-Directories: dev-python/cx_Freeze/files/ dev-python/cx_Freeze/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: 76ac6ee89b19ea61e3706e243694384e8cae6d1a X-VCS-Branch: master Date: Fri, 26 Feb 2016 18:37:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6d2b57cf-9420-4173-a04c-5ba11f604c78 X-Archives-Hash: 014430df70e888870fbb8b7b3a1807a1 commit: 76ac6ee89b19ea61e3706e243694384e8cae6d1a Author: Sergey Popov gentoo org> AuthorDate: Fri Feb 26 18:36:38 2016 +0000 Commit: Sergey Popov gentoo org> CommitDate: Fri Feb 26 18:37:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ac6ee8 dev-python/cx_Freeze: version bump Package-Manager: portage-2.2.27 dev-python/cx_Freeze/Manifest | 1 + dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild | 21 +++++++++++++++++++++ .../files/cx_Freeze-4.3.4-buildsystem.patch | 16 ++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest index b59295e..83c866b 100644 --- a/dev-python/cx_Freeze/Manifest +++ b/dev-python/cx_Freeze/Manifest @@ -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 diff --git a/dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild b/dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild new file mode 100644 index 0000000..9aad3f9 --- /dev/null +++ b/dev-python/cx_Freeze/cx_Freeze-4.3.4.ebuild @@ -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. 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 new file mode 100644 index 0000000..e55d0d3 --- /dev/null +++ b/dev-python/cx_Freeze/files/cx_Freeze-4.3.4-buildsystem.patch @@ -0,0 +1,16 @@ +From: Julian Ospald +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,