Ticket #40014: Portfile.2

File Portfile.2, 1.2 KB (added by smithsp (Sterling Smith), 11 years ago)

Improved Portfile to use github.setup

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$
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           github 1.0
6
7github.setup        irmen Serpent 1.2
8
9name                py-serpent
10
11categories          python print
12
13platforms           darwin
14supported_archs     noarch
15license             MIT
16maintainers         nomaintainer
17description         Serialization based on ast.literal_eval
18long_description    \
19    Serpent is a simple serialization library based on ast.literal_eval.  \
20    Because it only serializes literals and recreates the objects using \
21    ast.literal_eval(), the serialized data is safe to transport to other \
22    machines (over the network for instance) and de-serialize it there.
23
24checksums           md5     e09f32e932486e936e092c25925e6f3e \
25                    rmd160  c5f70941cd749e861f795226a6a33a5c49241fa6 \
26                    sha256  c3b738574b83145adf31491901a66e06eada09f05e4908bdb2765659d74a9e8f
27
28python.versions     26 27 31 32 33
29
30if {$subport != $name} {
31    depends_build-append port:py${python.version}-setuptools
32    livecheck.type       none
33}