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 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup irmen Serpent 1.3 v |
---|
8 | |
---|
9 | name py-serpent |
---|
10 | |
---|
11 | categories-append print |
---|
12 | |
---|
13 | platforms darwin |
---|
14 | supported_archs noarch |
---|
15 | license MIT |
---|
16 | maintainers nomaintainer |
---|
17 | description Serialization based on ast.literal_eval |
---|
18 | long_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 | |
---|
24 | checksums md5 b18f6aa49792104430e42e92cf0e36c4 \ |
---|
25 | rmd160 483659a9e64076aa3c511b38bff73aa090b97b18 \ |
---|
26 | sha256 5e62451f9cd9cf6f7ad1f89406190bde89cda87d537550878caf35a9bbac0b63 |
---|
27 | |
---|
28 | python.versions 26 27 31 32 33 |
---|
29 | |
---|
30 | if {$subport != $name} { |
---|
31 | depends_build-append port:py${python.version}-setuptools |
---|
32 | livecheck.type none |
---|
33 | } |
---|