Ticket #47946: Portfile

File Portfile, 1.2 KB (added by smithsp (Sterling Smith), 9 years ago)

Initial Portfile for py-mdsplus

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6PortGroup           github 1.0
7
8name                py-mdsplus
9
10#https://github.com/MDSplus/mdsplus/archive/stable_release-7-0-9.tar.gz
11github.setup        MDSplus mdsplus 7-0-9 stable_release-
12github.tarball_from tags
13git.branch          master
14name                py-mdsplus
15
16python.versions     26 27
17python.default_version 27
18
19categories-append   databases science
20platforms           darwin
21maintainers         fusion.gat.com:smithsp openmaintainer
22description         python bindings for the MDSplus libraries
23long_description    python bindings for the MDSplus libraries
24
25license             MIT-like
26maintainers         fusion.gat.com:smithsp
27homepage            http://www.mdsplus.org/
28
29checksums           rmd160  1188031516ab540b5d16101e58d652fd17a2ce3d \
30                    sha256  b0d879733ae50e9ea5cf5a4afba08ea0bcf8b0c4f7e3628623fe0c13869d4f7c
31
32worksrcdir           mdsplus-${version}/mdsobjects/python
33
34if {${name} ne ${subport}} {
35    depends_build-append port:py${python.version}-setuptools
36    livecheck.type       none
37    depends_lib-append   port:mdsplus
38}