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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-dulwich |
---|
8 | version 0.8.5 |
---|
9 | categories python devel |
---|
10 | maintainers yahoo.com.au:mail_ben_schmidt \ |
---|
11 | openmaintainer |
---|
12 | description Pure-Python Git Library |
---|
13 | long_description Simple Pure-Python implementation of the Git file \ |
---|
14 | formats and protocols. Dulwich is the place where \ |
---|
15 | Mr. and Mrs. Git live in one of the Monty Python sketches. |
---|
16 | license GPLv2 |
---|
17 | homepage http://samba.org/~jelmer/dulwich/ |
---|
18 | platforms darwin |
---|
19 | master_sites ${homepage} |
---|
20 | license GPL-2+ |
---|
21 | distname dulwich-${version} |
---|
22 | |
---|
23 | checksums rmd160 37381881d08bae0c6ed353d5c6edbb179828641c \ |
---|
24 | sha256 546d2840199500dc270da5bda456df68de4d1733f8b184bf425c5e560f988b6a |
---|
25 | |
---|
26 | patchfiles patch-strnlen-lion.diff |
---|
27 | |
---|
28 | python.versions 26 27 |
---|
29 | python.default_version 27 |
---|
30 | |
---|
31 | if {$subport != $name} { |
---|
32 | |
---|
33 | build.target-append build_ext |
---|
34 | build.args --inplace |
---|
35 | |
---|
36 | } |
---|