Commit d9dfd13d authored by Rene Ladan's avatar Rene Ladan
Browse files

benchmarks/py-naarad: Remove expired port

2026-07-30 benchmarks/py-naarad: Upstream last activity was in 2016, and the project has been moved to the LinkedInAttic GitHub account.
parent d3d5c7de
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5517,3 +5517,4 @@ benchmarks/py-zopkio||2026-07-28|Has expired: Upstream last activity was in 2016
archivers/quazip@qt5||2026-07-29|Unflavorize, remove Qt5 flavor
archivers/quazip@qt6|archivers/quazip|2026-07-29|Unflavorize
graphics/libkdcraw-qt5||2026-07-30|Removed: the last consumer has been switched to Qt6-based libkdcraw
benchmarks/py-naarad||2026-07-31|Has expired: Upstream last activity was in 2016, and the project has been moved to the LinkedInAttic GitHub account
+0 −1
Original line number Diff line number Diff line
@@ -80,7 +80,6 @@
    SUBDIR += py-asv-runner
    SUBDIR += py-locust
    SUBDIR += py-locust-cloud
    SUBDIR += py-naarad
    SUBDIR += py-reframe-hpc
    SUBDIR += py-throughpy
    SUBDIR += raidtest

benchmarks/py-naarad/Makefile

deleted100644 → 0
+0 −35
Original line number Diff line number Diff line
PORTNAME=	naarad
PORTVERSION=	1.0.15
PORTREVISION=	7
DISTVERSIONPREFIX=	v
CATEGORIES=	benchmarks python
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Framework for performance analysis
WWW=		https://github.com/LinkedInAttic/naarad

LICENSE=	APACHE20
LICENSE_FILE=	${WRKSRC}/LICENSE

DEPRECATED=		Upstream last activity was in 2016, and the project has been moved to the LinkedInAttic GitHub account.
EXPIRATION_DATE=	2026-07-30

RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytz>=2013.8,1:devel/py-pytz@${PY_FLAVOR} \
	${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \
	${PYTHON_PKGNAMEPREFIX}luminol>0:math/py-luminol@${PY_FLAVOR} \
	bash:shells/bash \
	gawk:lang/gawk

USES=		shebangfix python

SHEBANG_LANG=	gawk
SHEBANG_FILES=	bin/naarad_metric_collector.sh bin/PrintGCStats

USE_PYTHON=	autoplist concurrent distutils
USE_GITHUB=	yes
GH_ACCOUNT=	linkedin

NO_ARCH=	yes

.include <bsd.port.mk>

benchmarks/py-naarad/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (linkedin-naarad-v1.0.15_GH0.tar.gz) = e943f3f3973bd25bd058a3ca49a1efe1d69a6bc9ae38227c2779002e89f0dfec
SIZE (linkedin-naarad-v1.0.15_GH0.tar.gz) = 4295132
+0 −9
Original line number Diff line number Diff line
--- src/naarad/run_steps/local_cmd.py.orig	2015-04-23 21:55:51 UTC
+++ src/naarad/run_steps/local_cmd.py
@@ -82,5 +82,5 @@ class Local_Cmd(Run_Step):
       if self.process.poll() is None:
         self.process.kill()
         logger.warning('Waited %d seconds for run_step to terminate. Killing now....', CONSTANTS.SECONDS_TO_KILL_AFTER_SIGTERM)
-    except OSError, e:
+    except OSError as e:
       logger.error('Error while trying to kill the subprocess: %s', e)
Loading