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.2 |
---|
8 | |
---|
9 | name py-serpent |
---|
10 | |
---|
11 | categories python 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 e09f32e932486e936e092c25925e6f3e \ |
---|
25 | rmd160 c5f70941cd749e861f795226a6a33a5c49241fa6 \ |
---|
26 | sha256 c3b738574b83145adf31491901a66e06eada09f05e4908bdb2765659d74a9e8f |
---|
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 | } |
---|