Ticket #40014: Portfile.3

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

Latest update of Portfile to update to v1.3.

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.3 v
8
9name                py-serpent
10
11categories-append   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     b18f6aa49792104430e42e92cf0e36c4 \
25                    rmd160  483659a9e64076aa3c511b38bff73aa090b97b18 \
26                    sha256  5e62451f9cd9cf6f7ad1f89406190bde89cda87d537550878caf35a9bbac0b63
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}