>>> Building on exopi-6 under sysutils/py-pushover,python3 BDEPENDS = [devel/py-setuptools,python3;devel/py-build,python3;devel/py-installer,python3;devel/py-wheel,python3;lang/python/3] DIST = [sysutils/py-pushover,python3:python-pushover-0.4.tar.gz] FULLPKGNAME = py3-pushover-0.4p5v0 RDEPENDS = [lang/python/3;www/py-requests,python3] (Junk lock obtained for exopi-6 at 1731968131.18) >>> Running depends in sysutils/py-pushover,python3 at 1731968131.22 last junk was in databases/py-pickleshare,python3 /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.2.post1 py3-installer-0.7.0p0 py3-setuptools-69.5.1v0 py3-wheel-0.45.0 was: /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.2.post1 py3-installer-0.7.0p0 py3-setuptools-69.5.1v0 py3-wheel-0.45.0 python-3.11.10p1 /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.2.post1 py3-installer-0.7.0p0 py3-setuptools-69.5.1v0 py3-wheel-0.45.0 >>> Running show-prepare-results in sysutils/py-pushover,python3 at 1731968132.57 ===> sysutils/py-pushover,python3 ===> Building from scratch py3-pushover-0.4p5v0 ===> py3-pushover-0.4p5v0 depends on: python->=3.11,<3.12 -> python-3.11.10p1 ===> py3-pushover-0.4p5v0 depends on: py3-build-* -> py3-build-1.2.2.post1 ===> py3-pushover-0.4p5v0 depends on: py3-installer-* -> py3-installer-0.7.0p0 ===> py3-pushover-0.4p5v0 depends on: py3-setuptools-* -> py3-setuptools-69.5.1v0 ===> py3-pushover-0.4p5v0 depends on: py3-wheel-* -> py3-wheel-0.45.0 py3-build-1.2.2.post1 py3-installer-0.7.0p0 py3-setuptools-69.5.1v0 py3-wheel-0.45.0 python-3.11.10p1 (Junk lock released for exopi-6 at 1731968133.54) distfiles size=19946 >>> Running build in sysutils/py-pushover,python3 at 1731968133.57 ===> sysutils/py-pushover,python3 ===> Checking files for py3-pushover-0.4p5v0 `/exopi-cvs/ports/distfiles/python-pushover-0.4.tar.gz' is up to date. >> (SHA256) all files: OK ===> Extracting for py3-pushover-0.4p5v0 ===> Patching for py3-pushover-0.4p5v0 ===> 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 /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.4p5v0 ===> Configuring for py3-pushover-0.4p5v0 ===> Building for py3-pushover-0.4p5v0 * 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.11.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-python3/python-pushover-0.4/dist/.tmp-edcuzddp/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,python3 at 1731968135.58 ===> sysutils/py-pushover,python3 ===> Faking installation for py3-pushover-0.4p5v0 ===> Building package for py3-pushover-0.4p5v0 Create /exopi-cvs/ports/packages/amd64/all/py3-pushover-0.4p5v0.tgz Creating package py3-pushover-0.4p5v0 reading plist| checking dependencies| checking dependencies|lang/python/3,-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|************* | 21% archiving|*************************** | 42% archiving|*************************** | 43% archiving|****************************** | 47% archiving|****************************** | 48% archiving|****************************************************** | 84% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/py3-pushover-0.4p5v0.tgz >>> Running clean in sysutils/py-pushover,python3 at 1731968137.26 ===> sysutils/py-pushover,python3 ===> Cleaning for py3-pushover-0.4p5v0 >>> Ended at 1731968137.51 max_stuck=0.90/depends=1.36/show-prepare-results=0.99/build=2.01/package=1.68/clean=0.28