git: 3be095c9e4fd - main - sysutils/archey4: new port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 20 May 2022 19:46:37 UTC
The branch main has been updated by sbz: URL: https://cgit.FreeBSD.org/ports/commit/?id=3be095c9e4fdb811ac3303d1b9a52487278e96ce commit 3be095c9e4fdb811ac3303d1b9a52487278e96ce Author: Sofian Brabez <sbz@FreeBSD.org> AuthorDate: 2022-05-20 19:39:49 +0000 Commit: Sofian Brabez <sbz@FreeBSD.org> CommitDate: 2022-05-20 19:45:20 +0000 sysutils/archey4: new port Archey is a simple system information written in Python WWW: https://github.com/HorlogeSkynet/archey4 --- sysutils/Makefile | 1 + sysutils/archey4/Makefile | 21 ++++++++++ sysutils/archey4/distinfo | 3 ++ sysutils/archey4/files/patch-archey_entries_cpu.py | 36 +++++++++++++++++ .../archey4/files/patch-archey_entries_model.py | 33 ++++++++++++++++ sysutils/archey4/files/patch-archey_entries_ram.py | 46 ++++++++++++++++++++++ sysutils/archey4/pkg-descr | 3 ++ 7 files changed, 143 insertions(+) diff --git a/sysutils/Makefile b/sysutils/Makefile index b8fbc2c5adaa..4572c5d35da8 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -55,6 +55,7 @@ SUBDIR += apcupsd SUBDIR += aptly SUBDIR += arcconf + SUBDIR += archey4 SUBDIR += archivemount SUBDIR += ascpu SUBDIR += asfsm diff --git a/sysutils/archey4/Makefile b/sysutils/archey4/Makefile new file mode 100644 index 000000000000..aea36ce51407 --- /dev/null +++ b/sysutils/archey4/Makefile @@ -0,0 +1,21 @@ +PORTNAME= archey4 +PORTVERSION= 4.13.4 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP + +MAINTAINER= sbz@FreeBSD.org +COMMENT= Simple system information tool written in Python + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}distro>=1.3:sysutils/py-distro@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}netifaces>=0.10:net/py-netifaces@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +do-test: + @${PYTHON_CMD} -m ${PORTNAME:C/[0-9]//} + +.include <bsd.port.mk> diff --git a/sysutils/archey4/distinfo b/sysutils/archey4/distinfo new file mode 100644 index 000000000000..3e077074fbc6 --- /dev/null +++ b/sysutils/archey4/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1652740178 +SHA256 (archey4-4.13.4.tar.gz) = 9813ed0a1d5131756375e4113e6b158723d299353dab3d51b6ac0420af402e2c +SIZE (archey4-4.13.4.tar.gz) = 95995 diff --git a/sysutils/archey4/files/patch-archey_entries_cpu.py b/sysutils/archey4/files/patch-archey_entries_cpu.py new file mode 100644 index 000000000000..52671cf3091b --- /dev/null +++ b/sysutils/archey4/files/patch-archey_entries_cpu.py @@ -0,0 +1,36 @@ +--- archey/entries/cpu.py.orig 2022-05-17 20:52:34 UTC ++++ archey/entries/cpu.py +@@ -47,7 +47,7 @@ class CPU(Entry): + else: + # Darwin or any other BSD-based system. + self.value = self._parse_system_profiler() or \ +- self._parse_sysctl_machdep() ++ self._parse_sysctl_machdep() or self._parse_sysctl_cpu_model() + + if not self.value: + # This test case has been built for some ARM architectures (see #29). +@@ -157,6 +157,24 @@ class CPU(Entry): + [ + 'sysctl', '-n', + 'machdep.cpu.brand_string', 'machdep.cpu.core_count' ++ ], ++ stderr=DEVNULL, universal_newlines=True ++ ) ++ except (FileNotFoundError, CalledProcessError): ++ return [] ++ ++ # `sysctl_output` should exactly contains two lines. ++ model_name, nb_cores = sysctl_output.splitlines() ++ return [{model_name: int(nb_cores)}] ++ ++ @staticmethod ++ def _parse_sysctl_cpu_model() -> List[Dict[str, int]]: ++ # Runs `sysctl` to fetch some `hw.model and hw.ncpu` keys. ++ try: ++ sysctl_output = check_output( ++ [ ++ 'sysctl', '-n', ++ 'hw.model', 'hw.ncpu' + ], + stderr=DEVNULL, universal_newlines=True + ) diff --git a/sysutils/archey4/files/patch-archey_entries_model.py b/sysutils/archey4/files/patch-archey_entries_model.py new file mode 100644 index 000000000000..7486d199dd22 --- /dev/null +++ b/sysutils/archey4/files/patch-archey_entries_model.py @@ -0,0 +1,33 @@ +--- archey/entries/model.py.orig 2022-05-17 21:03:36 UTC ++++ archey/entries/model.py +@@ -23,7 +23,8 @@ class Model(Entry): + or self._fetch_dmi_info() \ + or self._fetch_sysctl_hw() \ + or self._fetch_raspberry_pi_revision() \ +- or self._fetch_android_device_model() ++ or self._fetch_android_device_model() \ ++ or self._fetch_freebsd_model() + + def _fetch_virtual_env_info(self) -> Optional[str]: + """ +@@ -179,3 +180,20 @@ class Model(Entry): + return None + + return f'{brand} ({model})' ++ ++ @staticmethod ++ def _fetch_freebsd_model() -> Optional[str]: ++ """Retrieve `vendor` and `product` properties on FreeBSD """ ++ try: ++ vendor = check_output( ++ ['kenv', 'smbios.bios.vendor'], ++ universal_newlines=True ++ ).rstrip() ++ product = check_output( ++ ['kenv', 'smbios.system.product'], ++ universal_newlines=True ++ ).rstrip() ++ except FileNotFoundError: ++ return None ++ ++ return f'{vendor} ({product})' diff --git a/sysutils/archey4/files/patch-archey_entries_ram.py b/sysutils/archey4/files/patch-archey_entries_ram.py new file mode 100644 index 000000000000..9beb5f7857d7 --- /dev/null +++ b/sysutils/archey4/files/patch-archey_entries_ram.py @@ -0,0 +1,46 @@ +--- archey/entries/ram.py.orig 2022-02-08 18:10:31 UTC ++++ archey/entries/ram.py +@@ -1,5 +1,6 @@ + """RAM usage detection class""" + ++import os + import platform + import re + +@@ -38,6 +39,9 @@ class RAM(Entry): + if platform.system() == 'Linux': + with suppress(IndexError, FileNotFoundError): + return self._run_free_dash_m() ++ elif platform.system() == 'FreeBSD': ++ with suppress(FileNotFoundError): ++ return self._run_sysctl_mem() + else: + # Darwin or any other BSD-based system. + with suppress(FileNotFoundError): +@@ -122,6 +126,26 @@ class RAM(Entry): + ) * page_size + + return (used / 1024**2), (total / 1024**2) ++ ++ @staticmethod ++ def _run_sysctl_mem() -> Tuple[float, float]: ++ """ ++ Return used and total memory on FreeBSD ++ """ ++ output = check_output( ++ ['sysctl', '-n', 'vm.stats.vm.v_page_count', ++ 'vm.stats.vm.v_free_count', ++ 'vm.stats.vm.v_inactive_count'], ++ universal_newlines=True ++ ) ++ total, free, inactive = [float(x) for x in output.splitlines()] ++ ++ page_size = os.sysconf(os.sysconf_names['SC_PAGESIZE']) ++ ++ mem_total = total * (page_size >> 10) ++ mem_used = (total - free - inactive) * (page_size >> 10) ++ ++ return (mem_used / 1024), (mem_total / 1024) + + + def output(self, output): diff --git a/sysutils/archey4/pkg-descr b/sysutils/archey4/pkg-descr new file mode 100644 index 000000000000..5d3478cd8bf3 --- /dev/null +++ b/sysutils/archey4/pkg-descr @@ -0,0 +1,3 @@ +Archey is a simple system information written in Python + +WWW: https://github.com/HorlogeSkynet/archey4