mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
markdown: add recipes for version 2.6.8.
This commit is contained in:
51
dev-python/markdown/python3_markdown-2.6.8.recipe
Normal file
51
dev-python/markdown/python3_markdown-2.6.8.recipe
Normal file
@@ -0,0 +1,51 @@
|
||||
SUMMARY="Python implementation of Markdown"
|
||||
DESCRIPTION="This is a Python implementation of John Gruber’s Markdown. \
|
||||
It is almost completely compliant with the reference implementation, though \
|
||||
there are a few known issues."
|
||||
HOMEPAGE="https://pythonhosted.org/Markdown/
|
||||
https://pypi.python.org/pypi/Markdown/"
|
||||
COPYRIGHT="2007, 2008 The Python Markdown Project
|
||||
2004, 2005, 2006 Yuri Takhteyev
|
||||
2004 Manfred Stienstra"
|
||||
LICENSE="BSD (3-clause)"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://pypi.python.org/packages/1d/25/3f6d2cb31ec42ca5bd3bfbea99b63892b735d76e26f20dd2dcc34ffe4f0d/Markdown-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="0ac8a81e658167da95d063a9279c9c1b2699f37c7c4153256a458b3a43860e33"
|
||||
SOURCE_DIR="Markdown-$portVersion"
|
||||
|
||||
ARCHITECTURES="x86 ?x86_gcc2 x86_64"
|
||||
|
||||
PROVIDES="
|
||||
python3_markdown = $portVersion
|
||||
cmd:markdown_py
|
||||
"
|
||||
REQUIRES="
|
||||
haiku
|
||||
cmd:python3
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku_devel
|
||||
python3_setuptools
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:python3
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
$portPackageLinksDir/cmd~python3/bin/python3 setup.py build
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
# GENERIC: all python_setuptools-based installs need this
|
||||
python=$portPackageLinksDir/cmd~python3/bin/python3
|
||||
pythonVersion=$($python --version 2>&1 | sed 's/Python //' | head -c3)
|
||||
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
|
||||
export PYTHONPATH=$installLocation:$PYTHONPATH
|
||||
mkdir -p $installLocation
|
||||
|
||||
$python setup.py install \
|
||||
--root=/ --prefix=$prefix
|
||||
}
|
||||
51
dev-python/markdown/python_markdown-2.6.8.recipe
Normal file
51
dev-python/markdown/python_markdown-2.6.8.recipe
Normal file
@@ -0,0 +1,51 @@
|
||||
SUMMARY="Python implementation of Markdown"
|
||||
DESCRIPTION="This is a Python implementation of John Gruber’s Markdown. \
|
||||
It is almost completely compliant with the reference implementation, though \
|
||||
there are a few known issues."
|
||||
HOMEPAGE="https://pythonhosted.org/Markdown/
|
||||
https://pypi.python.org/pypi/Markdown/"
|
||||
COPYRIGHT="2007, 2008 The Python Markdown Project
|
||||
2004, 2005, 2006 Yuri Takhteyev
|
||||
2004 Manfred Stienstra"
|
||||
LICENSE="BSD (3-clause)"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://pypi.python.org/packages/1d/25/3f6d2cb31ec42ca5bd3bfbea99b63892b735d76e26f20dd2dcc34ffe4f0d/Markdown-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="0ac8a81e658167da95d063a9279c9c1b2699f37c7c4153256a458b3a43860e33"
|
||||
SOURCE_DIR="Markdown-$portVersion"
|
||||
|
||||
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
||||
|
||||
PROVIDES="
|
||||
python_markdown = $portVersion
|
||||
cmd:markdown_py
|
||||
"
|
||||
REQUIRES="
|
||||
haiku
|
||||
cmd:python2
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku_devel
|
||||
python_setuptools
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:python2
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
$portPackageLinksDir/cmd~python2/bin/python2 setup.py build
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
# GENERIC: all python_setuptools-based installs need this
|
||||
python=$portPackageLinksDir/cmd~python2/bin/python2
|
||||
pythonVersion=$($python --version 2>&1 | sed 's/Python //' | head -c3)
|
||||
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
|
||||
export PYTHONPATH=$installLocation:$PYTHONPATH
|
||||
mkdir -p $installLocation
|
||||
|
||||
$python setup.py install \
|
||||
--root=/ --prefix=$prefix
|
||||
}
|
||||
Reference in New Issue
Block a user