>>> Building on exopi-5 under sysutils/py-pushover BDEPENDS = [lang/python/3;devel/py-setuptools;devel/py-build;devel/py-wheel;devel/py-installer] DIST = [sysutils/py-pushover:python-pushover-0.4.tar.gz] FULLPKGNAME = py3-pushover-0.4p6v0 RDEPENDS = [www/py-requests;lang/python/3] (Junk lock obtained for exopi-5 at 1735140067.16) >>> Running depends in sysutils/py-pushover at 1735140067.22 last junk was in audio/pulseaudio /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.2.post1p0 py3-installer-0.7.0p1 py3-setuptools-69.5.1p0v0 py3-wheel-0.45.1p0 was: /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.2.post1p0 py3-installer-0.7.0p1 py3-setuptools-69.5.1p0v0 py3-wheel-0.45.1p0 python-3.12.8p0 /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.2.post1p0 py3-installer-0.7.0p1 py3-setuptools-69.5.1p0v0 py3-wheel-0.45.1p0 >>> Running show-prepare-results in sysutils/py-pushover at 1735140069.24 ===> sysutils/py-pushover ===> Building from scratch py3-pushover-0.4p6v0 ===> py3-pushover-0.4p6v0 depends on: python->=3.12,<3.13 -> python-3.12.8p0 ===> py3-pushover-0.4p6v0 depends on: py3-build-* -> py3-build-1.2.2.post1p0 ===> py3-pushover-0.4p6v0 depends on: py3-installer-* -> py3-installer-0.7.0p1 ===> py3-pushover-0.4p6v0 depends on: py3-setuptools-* -> py3-setuptools-69.5.1p0v0 ===> py3-pushover-0.4p6v0 depends on: py3-wheel-* -> py3-wheel-0.45.1p0 py3-build-1.2.2.post1p0 py3-installer-0.7.0p1 py3-setuptools-69.5.1p0v0 py3-wheel-0.45.1p0 python-3.12.8p0 (Junk lock released for exopi-5 at 1735140070.40) distfiles size=19946 >>> Running build in sysutils/py-pushover at 1735140070.44 ===> sysutils/py-pushover ===> Checking files for py3-pushover-0.4p6v0 `/exopi-cvs/ports/distfiles/python-pushover-0.4.tar.gz' is up to date. >> (SHA256) all files: OK ===> Extracting for py3-pushover-0.4p6v0 ===> Patching for py3-pushover-0.4p6v0 ===> Applying OpenBSD patch patch-setup_py Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: setup.py |--- setup.py.orig |+++ setup.py -------------------------- Patching file setup.py using Plan A... Hunk #1 succeeded at 14. done cd /exopi-obj/pobj/py-pushover-0.4/python-pushover-0.4; 2to3 -w pushover.py /usr/local/bin/2to3:3: DeprecationWarning: lib2to3 package is deprecated and may not be able to parse Python 3.10+ from lib2to3.main import main RefactoringTool: Skipping optional fixer: buffer RefactoringTool: Skipping optional fixer: idioms RefactoringTool: Skipping optional fixer: set_literal RefactoringTool: Skipping optional fixer: ws_comma RefactoringTool: Refactored pushover.py RefactoringTool: Files that were modified: RefactoringTool: pushover.py --- pushover.py (original) +++ pushover.py (refactored) @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . import time -from ConfigParser import RawConfigParser, NoSectionError +from configparser import RawConfigParser, NoSectionError from argparse import ArgumentParser, RawDescriptionHelpFormatter import os @@ -133,7 +133,7 @@ self.parameters = {"expired": "expires_at", "called_back": "called_back_at", "acknowledged": "acknowledged_at"} - for param, when in self.parameters.iteritems(): + for param, when in self.parameters.items(): setattr(self, param, False) setattr(self, when, 0) @@ -161,7 +161,7 @@ if (self.receipt and not any(getattr(self, parameter) for parameter in self.parameters)): request = Request("get", RECEIPT_URL + self.receipt + ".json", {}) - for param, when in self.parameters.iteritems(): + for param, when in self.parameters.items(): setattr(self, param, bool(request.answer[param])) setattr(self, when, request.answer[when]) for param in ["last_delivered_at", "acknowledged_by", @@ -256,7 +256,7 @@ if self.device: payload["device"] = self.device - for key, value in kwords.iteritems(): + for key, value in kwords.items(): if key not in valid_keywords: raise ValueError("{0}: invalid message parameter".format(key)) @@ -292,7 +292,7 @@ if self.device: payload["device"] = self.device - for key, value in kwords.iteritems(): + for key, value in kwords.items(): if key not in valid_keywords: raise ValueError("{0}: invalid message parameter".format(key)) payload[key] = value ===> Compiler link: clang -> /usr/bin/clang ===> Compiler link: clang++ -> /usr/bin/clang++ ===> Compiler link: cc -> /usr/bin/cc ===> Compiler link: c++ -> /usr/bin/c++ ===> Generating configure for py3-pushover-0.4p6v0 ===> Configuring for py3-pushover-0.4p6v0 ===> Building for py3-pushover-0.4p6v0 * Getting build dependencies for wheel... running egg_info writing python_pushover.egg-info/PKG-INFO writing dependency_links to python_pushover.egg-info/dependency_links.txt writing entry points to python_pushover.egg-info/entry_points.txt writing requirements to python_pushover.egg-info/requires.txt writing top-level names to python_pushover.egg-info/top_level.txt reading manifest file 'python_pushover.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' adding license file 'LICENSE' adding license file 'AUTHORS.rst' writing manifest file 'python_pushover.egg-info/SOURCES.txt' * Building wheel... running bdist_wheel running build running build_py creating build creating build/lib copying pushover.py -> build/lib installing to build/bdist.openbsd-7.6-amd64/wheel running install running install_lib creating build/bdist.openbsd-7.6-amd64 creating build/bdist.openbsd-7.6-amd64/wheel copying build/lib/pushover.py -> build/bdist.openbsd-7.6-amd64/wheel running install_egg_info running egg_info writing python_pushover.egg-info/PKG-INFO writing dependency_links to python_pushover.egg-info/dependency_links.txt writing entry points to python_pushover.egg-info/entry_points.txt writing requirements to python_pushover.egg-info/requires.txt writing top-level names to python_pushover.egg-info/top_level.txt reading manifest file 'python_pushover.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' adding license file 'LICENSE' adding license file 'AUTHORS.rst' writing manifest file 'python_pushover.egg-info/SOURCES.txt' Copying python_pushover.egg-info to build/bdist.openbsd-7.6-amd64/wheel/python_pushover-0.4-py3.12.egg-info running install_scripts creating build/bdist.openbsd-7.6-amd64/wheel/python_pushover-0.4.dist-info/WHEEL creating '/exopi-obj/pobj/py-pushover-0.4/python-pushover-0.4/dist/.tmp-n9nqae16/python_pushover-0.4-py3-none-any.whl' and adding 'build/bdist.openbsd-7.6-amd64/wheel' to it adding 'pushover.py' adding 'python_pushover-0.4.dist-info/AUTHORS.rst' adding 'python_pushover-0.4.dist-info/LICENSE' adding 'python_pushover-0.4.dist-info/METADATA' adding 'python_pushover-0.4.dist-info/WHEEL' adding 'python_pushover-0.4.dist-info/entry_points.txt' adding 'python_pushover-0.4.dist-info/top_level.txt' adding 'python_pushover-0.4.dist-info/RECORD' removing build/bdist.openbsd-7.6-amd64/wheel Successfully built python_pushover-0.4-py3-none-any.whl >>> Running package in sysutils/py-pushover at 1735140073.36 ===> sysutils/py-pushover ===> Faking installation for py3-pushover-0.4p6v0 ===> Building package for py3-pushover-0.4p6v0 Create /exopi-cvs/ports/packages/amd64/all/py3-pushover-0.4p6v0.tgz Creating package py3-pushover-0.4p6v0 reading plist| checking dependencies| checking dependencies|lang/python/3,-main checking dependencies|www/py-requests checksumming| checksumming| | 0% checksumming|*** | 4% checksumming|***** | 9% checksumming|******** | 13% checksumming|*********** | 17% checksumming|************* | 22% checksumming|**************** | 26% checksumming|******************* | 30% checksumming|********************* | 35% checksumming|************************ | 39% checksumming|*************************** | 43% checksumming|***************************** | 48% checksumming|******************************** | 52% checksumming|********************************** | 57% checksumming|************************************* | 61% checksumming|**************************************** | 65% checksumming|****************************************** | 70% checksumming|********************************************* | 74% checksumming|************************************************ | 78% checksumming|************************************************** | 83% checksumming|***************************************************** | 87% checksumming|******************************************************** | 91% checksumming|********************************************************** | 96% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|************* | 20% archiving|************************* | 40% archiving|************************** | 40% archiving|************************************ | 56% archiving|************************************************************ | 94% archiving|*************************************************************** | 99% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/py3-pushover-0.4p6v0.tgz >>> Running clean in sysutils/py-pushover at 1735140075.39 ===> sysutils/py-pushover ===> Cleaning for py3-pushover-0.4p6v0 >>> Ended at 1735140075.60 max_stuck=1.04/depends=2.02/show-prepare-results=1.21/build=2.92/package=2.03/clean=0.25