diff options
author | Mark Wright <gienah@gentoo.org> | 2012-07-02 14:20:07 +0000 |
---|---|---|
committer | Mark Wright <gienah@gentoo.org> | 2012-07-02 14:20:07 +0000 |
commit | 6a7f60bd1b0085eec4da8b7c546a81160becf61f (patch) | |
tree | 2b68de8806998c1f5c103dee69cfa2e175ca42fe /sci-mathematics/p9m4 | |
parent | Bump eric:4 too. (diff) | |
download | gentoo-2-6a7f60bd1b0085eec4da8b7c546a81160becf61f.tar.gz gentoo-2-6a7f60bd1b0085eec4da8b7c546a81160becf61f.tar.bz2 gentoo-2-6a7f60bd1b0085eec4da8b7c546a81160becf61f.zip |
Remove py2app, fixes bug 423555 - sci-mathematics/p9m4-05: tries to use network during install. Thanks to Diego Elio Petteno (flameeyes) for reporting.
(Portage version: 2.1.11.3/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/p9m4')
-rw-r--r-- | sci-mathematics/p9m4/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/p9m4/files/p9m4-v05-package.patch | 13 |
2 files changed, 15 insertions, 5 deletions
diff --git a/sci-mathematics/p9m4/ChangeLog b/sci-mathematics/p9m4/ChangeLog index dfe3c3091e75..aba59b1e6440 100644 --- a/sci-mathematics/p9m4/ChangeLog +++ b/sci-mathematics/p9m4/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/p9m4 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/p9m4/ChangeLog,v 1.4 2012/06/25 22:37:59 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/p9m4/ChangeLog,v 1.5 2012/07/02 14:20:07 gienah Exp $ + + 02 Jul 2012; Mark Wright <gienah@gentoo.org> files/p9m4-v05-package.patch: + Remove py2app, fixes bug 423555 - sci-mathematics/p9m4-05: tries to use + network during install. Thanks to Diego Elio Petteno (flameeyes) for + reporting. 25 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> metadata.xml: Fix typo. diff --git a/sci-mathematics/p9m4/files/p9m4-v05-package.patch b/sci-mathematics/p9m4/files/p9m4-v05-package.patch index bf7acd8d7f34..9ca737ce2ffe 100644 --- a/sci-mathematics/p9m4/files/p9m4-v05-package.patch +++ b/sci-mathematics/p9m4/files/p9m4-v05-package.patch @@ -1,6 +1,6 @@ --- p9m4-v05-orig/setup.py 2007-11-17 09:31:26.000000000 +1100 -+++ p9m4-v05/setup.py 2012-01-08 20:02:53.917240674 +1100 -@@ -26,23 +26,21 @@ ++++ p9m4-v05/setup.py 2012-07-02 23:48:21.753760992 +1000 +@@ -26,23 +26,24 @@ from setuptools import setup @@ -22,6 +22,8 @@ setup( - app=APP, - data_files=DATA_FILES, +- options={'py2app': OPTIONS}, +- setup_requires=['py2app'], + name='p9m4', + version='05', + scripts=['prover9-mace4.py'], @@ -34,8 +36,11 @@ + 'p9m4.partition_input', + 'p9m4.my_setup', + 'p9m4.control'], - options={'py2app': OPTIONS}, - setup_requires=['py2app'], ++ # remove py2app ++ # https://bugs.gentoo.org/show_bug.cgi?id=423555 ++ # sci-mathematics/p9m4-05: tries to use network during install ++ # options={'py2app': OPTIONS}, ++ # setup_requires=['py2app'], ) --- p9m4-v05-orig/prover9-mace4.py 2007-12-08 03:27:13.000000000 +1100 +++ p9m4-v05/prover9-mace4.py 2012-01-08 18:12:09.970620044 +1100 |