2014-01-25 11:30:32 by Thomas Klausner | Files touched by this commit (533) | |
Log message:
Mark packages as not ready for python-3.x where applicable;
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.
|
2012-10-03 18:08:34 by Aleksej Saushev | Files touched by this commit (35) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
|
2011-12-16 13:51:56 by Greg Troxel | Files touched by this commit (2) |
Log message:
Use egg.mk, not distutils.mk.
This package can use either setuptools (egg.mk) or distutils
(distutils.mk), but it prefers setuptools and thus should be built
with our egg.mk support. Adjust PLIST for egg.mk (different)
variables and drop eggfile conditionalization, as eggs always have
egg-info directories.
Thanks to dholland@ and obache@ for noticing/suggesting.
|
2011-12-16 02:10:29 by Greg Troxel | Files touched by this commit (1) |
Log message:
Conditionalize EGG_FILE in PLIST, for pre-eggfile versions of python.
|
2011-12-16 02:07:23 by Greg Troxel | Files touched by this commit (2) |
Log message:
Fix PLIST not to have PYVERSION encoded.
No PKGREVISION++, because no change in the case when it built.
Adjust whitespace around LICENSE=.
|
2011-12-16 01:50:47 by Greg Troxel | Files touched by this commit (6) |
Log message:
Update to 0.2.1. Note in DESCR that this is what GNU/Linux calls
"fuse-python".
Upstream does not provide NEWS. Perusal of Changelog leads to the
conclusion that there are many bugfixes and minor enhancements, but no
major changes.
(Tested with "bup fuse" and ../fuse-wikipediafs on NetBSD 5.1_STABLE.)
|
2011-03-11 12:29:42 by Zafer Aydogan | Files touched by this commit (1) |
Log message:
service suspended. prevent time out. fetch from backup.
|
2010-02-10 20:17:48 by Joerg Sonnenberger | Files touched by this commit (205) |
Log message:
Bump revision for PYTHON_VERSION_DEFAULT change.
|
2009-06-14 19:51:59 by Joerg Sonnenberger | Files touched by this commit (8) |
Log message:
Remove @dirrm entries from PLISTs
|
2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|