Received: by mail.netbsd.org (Postfix, from userid 605) id 8197884DAD; Wed, 28 Jun 2017 16:06:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0F7D884D87 for ; Wed, 28 Jun 2017 16:06:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id SsR-YxjDsmgg for ; Wed, 28 Jun 2017 16:06:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6C86084D82 for ; Wed, 28 Jun 2017 16:06:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 668C2FAE8; Wed, 28 Jun 2017 16:06:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149866599041490" MIME-Version: 1.0 Date: Wed, 28 Jun 2017 16:06:30 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/graphics/eom To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170628160630.668C2FAE8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_149866599041490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Jun 28 16:06:30 UTC 2017 Modified Files: pkgsrc/graphics/eom: options.mk Log Message: Remove python as a supported option, it is logically impossible at present as all versions are marked as incompatible. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/eom/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149866599041490 Content-Disposition: inline Content-Length: 1136 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/eom/options.mk diff -u pkgsrc/graphics/eom/options.mk:1.3 pkgsrc/graphics/eom/options.mk:1.4 --- pkgsrc/graphics/eom/options.mk:1.3 Sun Jan 1 14:43:42 2017 +++ pkgsrc/graphics/eom/options.mk Wed Jun 28 16:06:30 2017 @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.3 2017/01/01 14:43:42 wiz Exp $ +# $NetBSD: options.mk,v 1.4 2017/06/28 16:06:30 jperkin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.eog -PKG_SUPPORTED_OPTIONS= dbus exif jpeg lcms python rsvg xmp -PKG_SUGGESTED_OPTIONS= dbus exif jpeg lcms python rsvg xmp +PKG_SUPPORTED_OPTIONS= dbus exif jpeg lcms rsvg xmp +PKG_SUGGESTED_OPTIONS= dbus exif jpeg lcms rsvg xmp .include "../../mk/bsd.options.mk" @@ -35,6 +35,9 @@ CONFIGURE_ARGS+= --with-cms CONFIGURE_ARGS+= --without-cms .endif +# The python option is logically impossible right now. This option sets python +# 3.x as being incompatible, yet eom depends on libpeas which itself sets 2.x +# as being incompatible, leaving us with no remaining choices. .if !empty(PKG_OPTIONS:Mpython) PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # py-gtk2 .include "../../lang/python/extension.mk" --_----------=_149866599041490--