Files
haikuports/dev-python/dulwich/dulwich-0.12.0.recipe
Jerome Duval fc0936b040 Bump revisions for x86_64 rebuild after time_t change.
* a few apps needed build fix for time_t.
* disable compatibility packages for x86_64.
2017-06-27 15:46:25 +02:00

46 lines
1.1 KiB
Bash

SUMMARY="Simple Python implementation of the Git file formats and protocols"
DESCRIPTION="Dulwich is a simple Python implementation of the Git file \
formats and protocols. All functionality is available in pure Python.\
Optional C extensions can be built for improved performance."
HOMEPAGE="http://www.samba.org/~jelmer/dulwich/"
COPYRIGHT="2008-2013 Jelmer Vernooij"
LICENSE="GNU GPL v2"
REVISION="2"
SOURCE_URI="https://pypi.python.org/packages/source/d/dulwich/dulwich-$portVersion.tar.gz"
CHECKSUM_SHA256="8f9070f37eec6175aab60d7064246b5b6453b2fab342589101f1c8feda0a0cc6"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
dulwich = $portVersion
cmd:dul_daemon = $portVersion
cmd:dul_receive_pack = $portVersion
cmd:dul_upload_pack = $portVersion
cmd:dul_web = $portVersion
cmd:dulwich = $portVersion
"
REQUIRES="
haiku
cmd:python2
lib:libpython2.7
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:python2
cmd:gcc
"
BUILD()
{
$portPackageLinksDir/cmd~python2/bin/python2 setup.py build
}
INSTALL()
{
$portPackageLinksDir/cmd~python2/bin/python2 setup.py install \
--prefix=$prefix
}