diff options
author | wiz <wiz@pkgsrc.org> | 2014-01-25 10:29:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-01-25 10:29:56 +0000 |
commit | 26edaca7bb13575eca053bdeadc74df68dbe5b03 (patch) | |
tree | 3bbaa4e1a32886abb417eed9e3a6c4c742388c9a /meta-pkgs | |
parent | 064b605d8ade40e0dc1d43f538b1bdc8a0e5233b (diff) | |
download | pkgsrc-26edaca7bb13575eca053bdeadc74df68dbe5b03.tar.gz |
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.
Diffstat (limited to 'meta-pkgs')
-rw-r--r-- | meta-pkgs/bulk-large/Makefile | 4 | ||||
-rw-r--r-- | meta-pkgs/bulk-medium/Makefile | 4 | ||||
-rw-r--r-- | meta-pkgs/gnome/Makefile | 4 | ||||
-rw-r--r-- | meta-pkgs/py-gnome-bindings/Makefile | 4 |
4 files changed, 12 insertions, 4 deletions
diff --git a/meta-pkgs/bulk-large/Makefile b/meta-pkgs/bulk-large/Makefile index 7b584598225..f67ca10a25f 100644 --- a/meta-pkgs/bulk-large/Makefile +++ b/meta-pkgs/bulk-large/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2013/12/02 19:14:02 minskim Exp $ +# $NetBSD: Makefile,v 1.10 2014/01/25 10:30:13 wiz Exp $ DISTNAME= bulk-large-20130223 PKGREVISION= 2 @@ -15,6 +15,8 @@ RESTRICTED= Just for test build purpose NO_BIN_ON_CDROM= ${RESTRICTED} NO_BIN_ON_FTP= ${RESTRICTED} +PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-gtk2 + # # Note: the primary purpose of this package is to build the most # popular/useful packages out of the set of all packages in pkgsrc. diff --git a/meta-pkgs/bulk-medium/Makefile b/meta-pkgs/bulk-medium/Makefile index a07aa5e04b5..ec12f072141 100644 --- a/meta-pkgs/bulk-medium/Makefile +++ b/meta-pkgs/bulk-medium/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2014/01/21 10:55:15 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2014/01/25 10:30:13 wiz Exp $ DISTNAME= bulk-medium-20140121 CATEGORIES= meta-pkgs @@ -10,6 +10,8 @@ COMMENT= Meta-package for a standard medium-sized limited bulk build META_PACKAGE= yes +PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-postgresql, py-matplotlib-gtk2 + RESTRICTED= Just for test build purpose NO_BIN_ON_CDROM= ${RESTRICTED} NO_BIN_ON_FTP= ${RESTRICTED} diff --git a/meta-pkgs/gnome/Makefile b/meta-pkgs/gnome/Makefile index 349309eac63..a1295385868 100644 --- a/meta-pkgs/gnome/Makefile +++ b/meta-pkgs/gnome/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.128 2013/06/26 22:06:17 joerg Exp $ +# $NetBSD: Makefile,v 1.129 2014/01/25 10:30:14 wiz Exp $ DISTNAME= gnome-2.26.2 PKGREVISION= 4 @@ -11,6 +11,8 @@ COMMENT= Meta-package for the GNOME desktop META_PACKAGE= yes +PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-ORBit via py-gnome2 + .include "../../lang/python/pyversion.mk" PKG_OPTIONS_VAR= PKG_OPTIONS.gnome diff --git a/meta-pkgs/py-gnome-bindings/Makefile b/meta-pkgs/py-gnome-bindings/Makefile index b082a22d7a3..e08ca2d4ad0 100644 --- a/meta-pkgs/py-gnome-bindings/Makefile +++ b/meta-pkgs/py-gnome-bindings/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2012/04/08 19:09:07 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2014/01/25 10:30:14 wiz Exp $ DISTNAME= ${PYPKGPREFIX}-gnome-bindings-2.26.2 CATEGORIES= meta-pkgs x11 gnome @@ -10,6 +10,8 @@ COMMENT= Meta-package for Python bindings for the GNOME desktop META_PACKAGE= yes +PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-ORBit, py-gnome2, py-gtk2 + .include "../../lang/python/pyversion.mk" # see http://ftp.gnome.org/pub/GNOME/bindings/2.26/2.26.2/sources/python/ |