Ticket #35262: Portfile.2

File Portfile.2, 1.2 KB (added by deric@…, 12 years ago)

Port updated to 0.8.5 and unified.

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