From owner-freebsd-questions@freebsd.org Sun Aug 29 18:25:35 2021 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 30525662CE5 for ; Sun, 29 Aug 2021 18:25:35 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (ns.dreamchaser.org [66.109.141.57]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "dreamchaser.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GyMML1LsZz4kpN for ; Sun, 29 Aug 2021 18:25:34 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from breakaway.dreamchaser.org (breakaway [192.168.151.122]) by nightmare.dreamchaser.org (8.15.2/8.15.2) with ESMTP id 17TIPPqI059953 for ; Sun, 29 Aug 2021 12:25:25 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) To: FreeBSD Mailing List Reply-To: freebsd@dreamchaser.org From: Gary Aitken Subject: py38-pyside2-tools? Message-ID: Date: Sun, 29 Aug 2021 12:25:25 -0600 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:78.0) Gecko/20100101 Thunderbird/78.6.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (nightmare.dreamchaser.org [192.168.151.101]); Sun, 29 Aug 2021 12:25:25 -0600 (MDT) X-Rspamd-Queue-Id: 4GyMML1LsZz4kpN X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of freebsd@dreamchaser.org designates 66.109.141.57 as permitted sender) smtp.mailfrom=freebsd@dreamchaser.org X-Spamd-Result: default: False [-2.30 / 15.00]; HAS_REPLYTO(0.00)[freebsd@dreamchaser.org]; ARC_NA(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; REPLYTO_ADDR_EQ_FROM(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000]; SUBJECT_ENDS_QUESTION(1.00)[]; TO_DN_ALL(0.00)[]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_NA(0.00)[dreamchaser.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; RCVD_TLS_LAST(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; ASN(0.00)[asn:21947, ipnet:66.109.128.0/19, country:US]; MAILMAN_DEST(0.00)[freebsd-questions] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2021 18:25:35 -0000 I'm trying to build a development version of FreeCAD, so have a modified Makefile... With USES= "...python:3.6+..." it builds ok and uses py37-pyside2-5.15.2. It's supposed to be built using python 3.8, so I changed USES to python:3.8+. However, that results in: ===> FreeCAD-m depends on package: py38-pyside2-tools>5.14.0 - not found ===> py38-pyside2-tools-5.15.2 Unknown flavor 'py38', possible flavors: py37. The Makefile specifies: BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyside2-tools>5.14.0:devel/pyside2-tools@${PY_FLAVOR} ... and LIB_DEPENDS= ... libpyside2.cpython-${PYTHON_SUFFIX}${PYTHON_ABIVER}.so:devel/pyside2@${PY_FLAVOR} I tried looking in devel and see: pyside2 pyside2-tools pkg info | grep py37 shows a boatload (79) files, including: py37-pyside2-5.15.2 Python Qt bindings for Qt 5.12+ py37-pyside2-tools-5.15.2 Pyside2 development tools pkg info | grep py38 shows only $ pkg info | grep py38 py38-cython-0.29.21 Compiler for Writing C Extensions for the Python Language py38-numpy-1.16.6,1 The New Numeric Extension to Python py38-setuptools-44.0.0 Python packages installer py38-sqlite3-3.8.7_7 Standard Python binding to the SQLite3 library (Python 3.8) py38-tkinter-3.8.7_6 Python bindings to the Tk widget set (Python 3.8) I don't know squat about how python works... Hints? I'm on amd64 11.4 RELEASE Gary