Revision: 122891 https://trac.macports.org/changeset/122891 Author: stromnov@macports.org Date: 2014-08-01 13:37:36 -0700 (Fri, 01 Aug 2014) Log Message: ----------- py-bokeh: update to version 0.5.1 Modified Paths: -------------- trunk/dports/python/py-bokeh/Portfile trunk/dports/python/py-bokeh/files/patch-setup.py.diff Modified: trunk/dports/python/py-bokeh/Portfile =================================================================== --- trunk/dports/python/py-bokeh/Portfile 2014-08-01 20:36:17 UTC (rev 122890) +++ trunk/dports/python/py-bokeh/Portfile 2014-08-01 20:37:36 UTC (rev 122891) @@ -5,7 +5,7 @@ PortGroup github 1.0 PortGroup python 1.0 -github.setup ContinuumIO bokeh 0.5.0 +github.setup ContinuumIO bokeh 0.5.1 name py-bokeh revision 0 @@ -25,8 +25,8 @@ homepage https://github.com/ContinuumIO/Bokeh -checksums rmd160 5c96da92935e3571a831e743ef0f4aa742cdf287 \ - sha256 78bc812b5a2e37b7bc8a5ef9f98065b49af846401485377edd4ed7d5ac96bd87 +checksums rmd160 e5e6ba043648cfb685da0638e632e405c17a64cb \ + sha256 352600784ee758fc6d1d5aa5ce6a88d559d2525961796fdbe7846170f2263d18 if {${name} ne ${subport}} { depends_lib-append port:py${python.version}-flask \ Modified: trunk/dports/python/py-bokeh/files/patch-setup.py.diff =================================================================== --- trunk/dports/python/py-bokeh/files/patch-setup.py.diff 2014-08-01 20:36:17 UTC (rev 122890) +++ trunk/dports/python/py-bokeh/files/patch-setup.py.diff 2014-08-01 20:37:36 UTC (rev 122891) @@ -1,11 +1,14 @@ ---- setup.py.orig 2014-07-09 12:22:59.000000000 +0200 -+++ setup.py 2014-07-09 12:23:33.000000000 +0200 -@@ -253,12 +253,6 @@ +--- setup.py.orig 2014-07-23 20:23:58.000000000 +0400 ++++ setup.py 2014-07-24 00:13:13.000000000 +0400 +@@ -253,15 +253,6 @@ site_packages = getsitepackages()[0] bokeh_path = join(site_packages, "bokeh") -if exists(bokeh_path) and isdir(bokeh_path): -- val = raw_input("found existing bokeh install, remove it?[y|N]") +- if sys.version_info[0] < 3: +- val = raw_input("found existing bokeh install, remove it?[y|N]") +- else: +- val = input("found existing bokeh install, remove it?[y|N]") - if val == "y": - print ("removing old bokeh install") - shutil.rmtree(bokeh_path)