pyyaml: remove long_desc.

This commit is contained in:
Juan RP 2014-02-17 17:01:08 +01:00
parent 879cfeda03
commit 935c73df60
1 changed files with 3 additions and 18 deletions

View File

@ -1,30 +1,15 @@
# Template file for 'pyyaml' # Template file for 'pyyaml'
pkgname=pyyaml pkgname=pyyaml
version=3.10 version=3.10
revision=1 revision=2
wrksrc="PyYAML-${version}" wrksrc="PyYAML-${version}"
build_style=python-module build_style=python-module
hostmakedepends="python"
makedepends="libyaml-devel python-devel" makedepends="libyaml-devel python-devel"
pycompile_module="pyyaml" pycompile_module="pyyaml"
short_desc="YAML parser and emitter for Python." short_desc="YAML parser and emitter for Python"
maintainer="davehome <davehome@redthumb.info.tm>" maintainer="davehome <davehome@redthumb.info.tm>"
homepage="http://pyyaml.org/wiki/PyYAML" homepage="http://pyyaml.org/wiki/PyYAML"
license="MIT" license="MIT"
distfiles="http://${pkgname}.org/download/${pkgname}/PyYAML-${version}.tar.gz" distfiles="http://${pkgname}.org/download/${pkgname}/PyYAML-${version}.tar.gz"
checksum=e713da45c96ca53a3a8b48140d4120374db622df16ab71759c9ceb5b8d46fe7c checksum=e713da45c96ca53a3a8b48140d4120374db622df16ab71759c9ceb5b8d46fe7c
long_desc="
PyYAML is a YAML parser and emitter for the Python programming language.
PyYAML features:
- a complete YAML 1.1 parser. In particular, PyYAML can parse all examples
from the specification. The parsing algorithm is simple enough to be a
reference for YAML parser implementors.
- Unicode support including UTF-8/UTF-16 input/output and escape sequences.
- low-level event-based parser and emitter API (like SAX).
- high-level API for serializing and deserializing native Python objects (like
DOM or pickle).
- support for all types from the YAML types repository. A simple extension API
is provided.
- both pure-Python and fast LibYAML-based parsers and emitters.
- relatively sensible error messages."