Ticket #14373: yaml.diff

File yaml.diff, 2.5 KB (added by ebgssth@…, 16 years ago)

yaml patch

  • py-yaml/Portfile

     
    33PortSystem 1.0
    44PortGroup python24 1.0
    55name                            py-yaml
    6 version                         3.04
     6version                         3.05
    77categories-append       devel
    88maintainers                     yuhei@pop21.odn.ne.jp
    99description                     YAML 1.1 parser and emitter for Python
     
    1818master_sites            http://pyyaml.org/download/pyyaml/
    1919distname                        PyYAML-${version}
    2020
    21 checksums                       md5 93adc394611672afa44f44f57dff9589
    22 
     21checksums                       md5 04ebb924a571cfb26d8143069068ce86 \
     22                                sha1 facf11bc9f6988b76538e46a7ce8a379a9296cb0 \
     23                                rmd160 1848e00b3b46c93fdd383092a3db8728b6b8bae0
    2324post-destroot {
    2425        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
    2526        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}/examples
     
    2930        xinstall -m 644 -W ${worksrcpath}/examples/yaml-highlight yaml_hl.cfg yaml_hl.py \
    3031            ${destroot}${prefix}/share/doc/${name}/examples/yaml-highlight
    3132}
    32 
  • py25-yaml/Portfile

     
     1# $Id: Portfile 24142 2007-04-17 10:28:26Z ryandesign@macports.org $
     2
     3PortSystem 1.0
     4PortGroup python25 1.0
     5name                            py25-yaml
     6version                         3.05
     7categories-append       devel
     8maintainers                     yuhei@pop21.odn.ne.jp
     9description                     YAML 1.1 parser and emitter for Python
     10long_description \
     11    PyYAML is a YAML parser and emitter for Python, which supports YAML 1.1, \
     12    unicode input and output, low-level event-based parser and emitter API, \
     13    high-level API for serializing and deserializing native Python objects.
     14
     15platforms                       darwin
     16
     17homepage                        http://pyyaml.org/wiki/PyYAML
     18master_sites            http://pyyaml.org/download/pyyaml/
     19distname                        PyYAML-${version}
     20
     21checksums                       md5 04ebb924a571cfb26d8143069068ce86 \
     22                                sha1 facf11bc9f6988b76538e46a7ce8a379a9296cb0 \
     23                                rmd160 1848e00b3b46c93fdd383092a3db8728b6b8bae0
     24post-destroot {
     25        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
     26        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}/examples
     27        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}/examples/yaml-highlight
     28        xinstall -m 644 -W ${worksrcpath} LICENSE README \
     29                ${destroot}${prefix}/share/doc/${name}
     30        xinstall -m 644 -W ${worksrcpath}/examples/yaml-highlight yaml_hl.cfg yaml_hl.py \
     31            ${destroot}${prefix}/share/doc/${name}/examples/yaml-highlight
     32}