mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-13 07:10:05 +02:00
67 lines
1.9 KiB
Plaintext
67 lines
1.9 KiB
Plaintext
SUMMARY="iniparse is a INI parser for Python"
|
|
DESCRIPTION="
|
|
iniparse is a INI parser for Python which is:
|
|
|
|
* Compatiable with ConfigParser: Backward compatible implementations
|
|
of ConfigParser, RawConfigParser, and SafeConfigParser are included
|
|
that are API-compatible with the Python standard library. They pass
|
|
all the unit tests included with Python.
|
|
|
|
* Preserves structure of INI files: Order of sections & options,
|
|
indentation, comments, and blank lines are preserved as far as
|
|
possible when data is updated.
|
|
|
|
* More convenient: Values can be accessed using dotted notation
|
|
(cfg.user.name), or using container syntax (cfg['user']['name']).
|
|
|
|
* It is very useful for config files that are updated both by users
|
|
and by programs, since it is very disorienting for a user to have
|
|
her config file completely rearranged whenever a program changes
|
|
it. iniparse also allows making the order of entries in a config
|
|
file significant, which is desirable in applications like image
|
|
galleries.
|
|
"
|
|
HOMEPAGE="http://code.google.com/p/iniparse/"
|
|
SRC_URI="http://iniparse.googlecode.com/files/iniparse-0.4.tar.gz"
|
|
CHECKSUM_MD5="5e573e9e9733d97623881ce9bbe5eca6"
|
|
COPYRIGHT="2001-2008 Python Software Foundation
|
|
2004-2009 Paramjit Oberoi
|
|
2007 Tim Lauridsen"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86 ?x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86 ?x86_gcc2"
|
|
|
|
SOURCE_DIR="iniparse-0.4"
|
|
|
|
PROVIDES="
|
|
iniparse$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix >= $haikuVersion
|
|
cmd:python$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:python$secondaryArchSuffix
|
|
"
|
|
|
|
PATCHES="iniparse-0.4.patchset"
|
|
|
|
BUILD()
|
|
{
|
|
$portPackageLinksDir/cmd~python/bin/python setup.py build
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
$portPackageLinksDir/cmd~python/bin/python setup.py install \
|
|
--prefix=$prefix \
|
|
--install-data=$docDir
|
|
}
|