summaryrefslogtreecommitdiff
path: root/textproc/py-cElementTree
AgeCommit message (Collapse)AuthorFilesLines
2021-10-09py-cElementTree: needs wrappers to add std=c99...nia1-1/+4
2020-01-26all: migrate homepages from http to httpsrillig1-2/+2
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
2020-01-08Always extract the full Python distfile for modules.joerg1-11/+1
This retires an old "optimisation" that over time has created more problems than it solved, including various questions from users about the ignored patch failures.
2020-01-03py-cElementTree: fixed in lang/pythonadam1-6/+1
2019-11-04textproc: align variable assignmentsrillig1-7/+7
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
2019-10-21Fix building with Python 3.8adam1-1/+5
2019-06-04Revert previous: package still necessary to provide the fast implementationprlw11-3/+0
for ElementTree to find. Pointed out by adam@
2019-06-04Note that py-cElementTree is deprecated since Python 3.3:prlw11-0/+3
https://bugs.python.org/issue13988
2016-08-28Remove unnecessary PLIST_SUBST and FILES_SUBST that are now providedwiz1-2/+1
by the infrastructure. Mark a couple more packages as not ready for python-3.x.
2015-03-15Set MAINTAINER to pkgsrc-users.hiramatsu1-2/+2
2014-03-13Set USE_GCC_RUNTIME=yes for packages which build shared libraries but dojperkin1-1/+2
not use libtool to do so. This is required to correctly depend upon a gcc runtime package (e.g. gcc47-libs) when using USE_PKGSRC_GCC_RUNTIME.
2014-01-25Mark packages as not ready for python-3.x where applicable;wiz1-4/+1
either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
2013-04-20Change version number of python buitin module packagesobache1-3/+2
form fixed `0' to main Python distribution version (PY_DISTVERSION) so that packages will be updated with main Python distribution update. no objection in tech-pkg@ for a week.
2012-10-25Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-04-08Remove python24 and all traces of it from pkgsrc.wiz1-2/+1
Remove devel/py-ctypes (only needed by and supporting python24). Remove PYTHON_VERSIONS_ACCEPTED and PYTHON_VERSIONS_INCOMPATIBLE lines that just mirror defaults now. Miscellaneous cleanup while editing all these files.
2011-12-03Tag the 28 locations that result in a Python 3.1 package as supporting so.joerg1-1/+3
Remove it from the default list for the rest.
2011-08-22Mark as not-for python-2.4 (it doesn't contain the file that is used here).wiz1-1/+2
2011-07-14Builds fine with Python 3.1 and is needed as dependency elsewhere.joerg1-3/+1
2011-05-04Install standard python modules into usual location instead of site-packages.obache2-3/+5
PR#44826. Bump PKGREVISION.
2011-02-25Let's assume for now that everything that worked with python-2.6 alsowiz1-2/+2
works with python-2.7.
2010-04-11Import py-cElementTree-0 as textproc/py-cElementTree.obache4-0/+69
The cElementTree module is a C implementation of the ElementTree API, optimized for fast parsing and low memory use. On typical documents, cElementTree is 15-20 times faster than the Python version of ElementTree, and uses 2-5 times less memory. On modern hardware, that means that documents in the 50-100 megabyte range can be manipulated in memory, and that documents in the 0-1 megabyte range load in zero time (0.0 seconds). This allows you to drastically simplify many kinds of XML applications.