Changeset 117739 for trunk/dports


Ignore:
Timestamp:
Mar 10, 2014, 3:48:23 PM (10 years ago)
Author:
snc@…
Message:

igraph, py-igraph: update to 0.7, #42772

Location:
trunk/dports
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/math/igraph/Portfile

    r103970 r117739  
    55
    66name                igraph
    7 version             0.6.5
    8 revision            0
     7version             0.7.0
    98
    109categories          math devel
     
    1413long_description    high performance graph library, primarily aimed \
    1514                    at complex network research and analysis.
    16 homepage            http://igraph.sourceforge.net
     15homepage            http://igraph.org
    1716
    1817platforms           darwin
    1918depends_lib         port:gmp
    2019
    21 master_sites        sourceforge
     20master_sites        ${homepage}/nightly/get/c
    2221
    23 checksums           rmd160  e331f3b4ae74f1a924e58ff0d70fd8b9503a0a8c \
    24                     sha256  7d1f8da9ebb6dd7acc648d9c7d6f4c490e998c5ca54ddf85db0017de3cc73fa2
     22checksums           rmd160  700385dc64760e6aa04d38f0058067d0a1fe316f \
     23                    sha256  d6cd4b88005d08210da1b7d5a861093a595fd7a5c422c6a2fcdea3ec8c8f57bc
    2524
    2625test.run            yes
  • trunk/dports/python/py-igraph/Portfile

    r116974 r117739  
    66
    77name                py-igraph
    8 version             0.6.5
    9 revision            0
     8version             0.7
    109categories-append   math
    1110platforms           darwin
    1211license             GPL-2+
    1312
    14 python.versions     25 26 27 32 33 34
     13python.versions     26 27 32 33 34
    1514
    1615maintainers         snc openmaintainer
     
    2726dist_subdir         python/${distname}/1/
    2827
    29 checksums           rmd160  31d615f8ad6da520cefa2105d91d8d2fbfa719f4 \
    30                     sha256  a2478c3a3f2107961cb78b39a09056a92ac4fcd9b43db6ea75a0400bd4edc077
     28checksums           rmd160  0d843b17da829ee531336e9bbc5dbf064a270a5e \
     29                    sha256  f155bca04d5e500cb3cc087d25ac9e09077959392d245b3cab588bd9b541f0d0
    3130
    3231if {${name} ne ${subport}} {
    33     depends_build       port:py${python.version}-setuptools
     32    depends_build       port:pkgconfig port:py${python.version}-setuptools
    3433    depends_lib-append  port:igraph
    3534
  • trunk/dports/python/py-igraph/files/patch-setup.cfg.diff

    r103971 r117739  
    1 --- setup.cfg.orig      2013-03-11 13:24:21.000000000 +0400
    2 +++ setup.cfg   2013-03-11 13:25:47.000000000 +0400
     1--- setup.cfg.orig      2014-03-10 09:52:16.000000000 -0400
     2+++ setup.cfg   2014-03-10 09:52:30.000000000 -0400
    33@@ -1,6 +1,6 @@
    44 [build_ext]
    5 -include_dirs = ../../build/include:../../include:/usr/local/include:/usr/include
     5-include_dirs = ../../build/include:../../include:/usr/local/include/igraph:/usr/include/igraph
    66-library_dirs = ../../build/src/.libs:../../src/.libs:/usr/local/lib:/usr/lib
    77+include_dirs = ../../build/include:../../include:@PREFIX@/include
  • trunk/dports/python/py-igraph/files/patch-setup.py.diff

    r103971 r117739  
    1 --- setup.py.orig       2013-03-11 13:26:20.000000000 +0400
    2 +++ setup.py    2013-03-11 13:28:17.000000000 +0400
    3 @@ -19,7 +19,7 @@
    4  from shutil import copy2
    5  from subprocess import Popen, PIPE
     1--- setup.py.orig       2013-11-30 18:55:31.000000000 -0500
     2+++ setup.py    2014-03-10 09:54:35.000000000 -0400
     3@@ -44,7 +44,7 @@
     4 
     5 ###########################################################################
    66 
    77-LIBIGRAPH_FALLBACK_INCLUDE_DIRS = ['/usr/include/igraph', '/usr/local/include/igraph']
     
    1010 LIBIGRAPH_FALLBACK_LIBRARY_DIRS = []
    1111 
    12 @@ -151,11 +151,11 @@
    13      ]
     12@@ -639,11 +639,11 @@
     13     }
    1414 )
    1515 
    16 -if "macosx" in plat and "bdist_mpkg" in argv:
     16-if "macosx" in get_platform() and "bdist_mpkg" in sys.argv:
    1717-    # OS X specific stuff to build the .mpkg installer
    1818-    options["data_files"] = [ \
    1919-            ('/usr/local/lib', [os.path.join('..', '..', 'fatbuild', 'libigraph.0.dylib')])
    2020-    ]
    21 +#if "macosx" in plat and "bdist_mpkg" in argv:
     21+#if "macosx" in get_platform() and "bdist_mpkg" in sys.argv:
    2222+#    # OS X specific stuff to build the .mpkg installer
    2323+#    options["data_files"] = [ \
     
    2525+#    ]
    2626 
    27  if version_info > (3, 0):
     27 if sys.version_info > (3, 0):
    2828     if build_py is None:
Note: See TracChangeset for help on using the changeset viewer.