>>> Building on exopi-2 under sysutils/py-pushover,python3 BDEPENDS = [devel/py-wheel,python3;devel/py-build,python3;devel/py-setuptools,python3;lang/python/3.10;devel/py-installer,python3] DIST = [sysutils/py-pushover,python3:python-pushover-0.4.tar.gz] FULLPKGNAME = py3-pushover-0.4p4v0 RDEPENDS = [www/py-requests,python3;lang/python/3.10] (Junk lock obtained for exopi-2 at 1711448118.07) >>> Running depends in sysutils/py-pushover,python3 at 1711448118.14 last junk was in textproc/py-pykwalify,python3 /usr/sbin/pkg_add -aI -Drepair py3-build-1.1.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 python-3.10.13p2 was: /usr/sbin/pkg_add -aI -Drepair py3-build-1.1.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 python-3.10.13p2 /usr/sbin/pkg_add -aI -Drepair py3-build-1.1.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 python-3.10.13p2 >>> Running show-prepare-results in sysutils/py-pushover,python3 at 1711448120.39 ===> sysutils/py-pushover,python3 ===> Building from scratch py3-pushover-0.4p4v0 ===> py3-pushover-0.4p4v0 depends on: python->=3.10,<3.11 -> python-3.10.13p2 ===> py3-pushover-0.4p4v0 depends on: py3-build-* -> py3-build-1.1.1 ===> py3-pushover-0.4p4v0 depends on: py3-installer-* -> py3-installer-0.7.0 ===> py3-pushover-0.4p4v0 depends on: py3-setuptools-* -> py3-setuptools-68.0.0v0 ===> py3-pushover-0.4p4v0 depends on: py3-wheel-* -> py3-wheel-0.43.0 py3-build-1.1.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 python-3.10.13p2 (Junk lock released for exopi-2 at 1711448121.84) distfiles size=19946 >>> Running build in sysutils/py-pushover,python3 at 1711448121.89 ===> sysutils/py-pushover,python3 ===> Checking files for py3-pushover-0.4p4v0 `/exopi-cvs/ports/distfiles/python-pushover-0.4.tar.gz' is up to date. >> (SHA256) python-pushover-0.4.tar.gz: OK ===> Extracting for py3-pushover-0.4p4v0 ===> Patching for py3-pushover-0.4p4v0 ===> 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-python3/python-pushover-0.4; 2to3 -w pushover.py 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.4p4v0 ===> Configuring for py3-pushover-0.4p4v0 ===> Building for py3-pushover-0.4p4v0 * 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.5-amd64/wheel running install running install_lib creating build/bdist.openbsd-7.5-amd64 creating build/bdist.openbsd-7.5-amd64/wheel copying build/lib/pushover.py -> build/bdist.openbsd-7.5-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.5-amd64/wheel/python_pushover-0.4-py3.10.egg-info running install_scripts creating build/bdist.openbsd-7.5-amd64/wheel/python_pushover-0.4.dist-info/WHEEL creating '/exopi-obj/pobj/py-pushover-0.4-python3/python-pushover-0.4/dist/.tmp-ddtouo50/python_pushover-0.4-py3-none-any.whl' and adding 'build/bdist.openbsd-7.5-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.5-amd64/wheel Successfully built python_pushover-0.4-py3-none-any.whl >>> Running package in sysutils/py-pushover,python3 at 1711448124.90 ===> sysutils/py-pushover,python3 ===> Faking installation for py3-pushover-0.4p4v0 ===> Building package for py3-pushover-0.4p4v0 Create /exopi-cvs/ports/packages/amd64/all/py3-pushover-0.4p4v0.tgz Creating package py3-pushover-0.4p4v0 reading plist| checking dependencies| checking dependencies|lang/python/3.10,-main checking dependencies|www/py-requests,python3 checksumming| checksumming| | 0% checksumming|*** | 5% checksumming|****** | 9% checksumming|******** | 14% checksumming|*********** | 18% checksumming|************** | 23% checksumming|***************** | 27% checksumming|******************* | 32% checksumming|********************** | 36% checksumming|************************* | 41% checksumming|**************************** | 45% checksumming|******************************* | 50% checksumming|********************************* | 55% checksumming|************************************ | 59% checksumming|*************************************** | 64% checksumming|****************************************** | 68% checksumming|******************************************** | 73% checksumming|*********************************************** | 77% checksumming|************************************************** | 82% checksumming|***************************************************** | 86% checksumming|******************************************************* | 91% checksumming|********************************************************** | 95% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|*********** | 17% archiving|********************* | 33% archiving|********************** | 34% archiving|************************* | 39% archiving|************************* | 40% archiving|************************** | 40% archiving|***************************************************** | 82% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/py3-pushover-0.4p4v0.tgz >>> Running clean in sysutils/py-pushover,python3 at 1711448127.22 ===> sysutils/py-pushover,python3 ===> Cleaning for py3-pushover-0.4p4v0 >>> Ended at 1711448127.54 max_stuck=1.79/depends=1.97/show-prepare-results=1.80/build=3.02/package=2.31/clean=0.37