Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Feb 2021 18:03:18 +0000 (UTC)
From:      =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r564054 - in head: devel/libsysctlmibinfo sysutils/nsysctl
Message-ID:  <202102041803.114I3Jnv030925@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: fernape
Date: Thu Feb  4 18:03:18 2021
New Revision: 564054
URL: https://svnweb.freebsd.org/changeset/ports/564054

Log:
  devel/libsysctlmibinfo: Update to 1.0.1
  
  Bumping dependency's PORTEREVISION.
  
  PR:	253213
  Submitted by:	alfix86@gmail.com (maintainer)

Modified:
  head/devel/libsysctlmibinfo/Makefile
  head/devel/libsysctlmibinfo/distinfo
  head/devel/libsysctlmibinfo/pkg-descr
  head/sysutils/nsysctl/Makefile

Modified: head/devel/libsysctlmibinfo/Makefile
==============================================================================
--- head/devel/libsysctlmibinfo/Makefile	Thu Feb  4 17:30:37 2021	(r564053)
+++ head/devel/libsysctlmibinfo/Makefile	Thu Feb  4 18:03:18 2021	(r564054)
@@ -1,34 +1,34 @@
 # $FreeBSD$
 
 PORTNAME=	libsysctlmibinfo
-DISTVERSION=	1.0
+DISTVERSION=	1.0.1
 CATEGORIES=	devel
 
 MAINTAINER=	alfix86@gmail.com
-COMMENT=	API to get sysctl MIB info
+COMMENT=	Sysctl MIB-Tree API
 
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USE_LDCONFIG=	yes
-
 USE_GITLAB=	yes
 
 GL_ACCOUNT=	alfix
 GL_PROJECT=	sysctlmibinfo
-GL_COMMIT=	c2cee0cea2fff405e6dc0ab1aed484abab5dc7c7
+GL_COMMIT=	941706f663a1fe17f2c1f5cfbf3c7211c8f41e53
 
+USE_LDCONFIG=	yes
+
 PLIST_FILES=	include/sysctlmibinfo.h \
 		lib/libsysctlmibinfo.a \
 		lib/libsysctlmibinfo.so \
-		lib/libsysctlmibinfo.so.1 \
+		lib/libsysctlmibinfo.so.1.0.1 \
 		man/man3/sysctlmibinfo.3.gz
 
 do-install:
 	${INSTALL_DATA} ${WRKSRC}/sysctlmibinfo.h ${STAGEDIR}${PREFIX}/include
 	${INSTALL_DATA} ${WRKSRC}/libsysctlmibinfo.a ${STAGEDIR}${PREFIX}/lib
-	${INSTALL_LIB} ${WRKSRC}/libsysctlmibinfo.so.1 ${STAGEDIR}${PREFIX}/lib
-	${RLN} ${STAGEDIR}${PREFIX}/lib/libsysctlmibinfo.so.1 ${STAGEDIR}${PREFIX}/lib/libsysctlmibinfo.so
+	${INSTALL_LIB} ${WRKSRC}/libsysctlmibinfo.so.1.0.1 ${STAGEDIR}${PREFIX}/lib
+	${RLN} ${STAGEDIR}${PREFIX}/lib/libsysctlmibinfo.so.1.0.1 ${STAGEDIR}${PREFIX}/lib/libsysctlmibinfo.so
 	${INSTALL_MAN} ${WRKSRC}/sysctlmibinfo.3.gz ${STAGEDIR}${MAN3PREFIX}/man/man3
 
 .include <bsd.port.mk>

Modified: head/devel/libsysctlmibinfo/distinfo
==============================================================================
--- head/devel/libsysctlmibinfo/distinfo	Thu Feb  4 17:30:37 2021	(r564053)
+++ head/devel/libsysctlmibinfo/distinfo	Thu Feb  4 18:03:18 2021	(r564054)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1552612768
-SHA256 (alfix-sysctlmibinfo-c2cee0cea2fff405e6dc0ab1aed484abab5dc7c7_GL0.tar.gz) = 0422c5e0452a5d6b3321d4e475432c044d885963f3f97f4a85b877314c386cdd
-SIZE (alfix-sysctlmibinfo-c2cee0cea2fff405e6dc0ab1aed484abab5dc7c7_GL0.tar.gz) = 9351
+TIMESTAMP = 1612365342
+SHA256 (alfix-sysctlmibinfo-941706f663a1fe17f2c1f5cfbf3c7211c8f41e53_GL0.tar.gz) = 76db992660bcd0938a341a65f00865a0aa1022f3c8dbdeaa19558601b77051aa
+SIZE (alfix-sysctlmibinfo-941706f663a1fe17f2c1f5cfbf3c7211c8f41e53_GL0.tar.gz) = 11228

Modified: head/devel/libsysctlmibinfo/pkg-descr
==============================================================================
--- head/devel/libsysctlmibinfo/pkg-descr	Thu Feb  4 17:30:37 2021	(r564053)
+++ head/devel/libsysctlmibinfo/pkg-descr	Thu Feb  4 18:03:18 2021	(r564054)
@@ -1,13 +1,11 @@
-sysctlmibinfo is an open source library for FreeBSD:
+The sysctlmibinfo library provides an API to explore the sysctl
+MIB-Tree and to get the properties of an object, therefore it is
+useful to handle an object correctly and to build a sysctl-like
+utility.
 
- * provides a C API to wrap kern_sysctl.c undocumented interface
- * defines and builds a handy mib-object
- * builds object-list and object-tree in userspace
-
-The advantages to use sysctlmibinfo are:
-
- * an easy userspace API to the kernel sysctl mib-tree
- * building quickly a custom sysctl(8) tool
- * changes to kern_sysctl.c interface won't upset userspace tools
+It implements wrappers around an undocumented kernel interface
+to provide a more easy interface, moreover it defines a
+'struct sysctlmif_object' and provides a convenient API to build
+data structures of sysctlmif_object.
 
 WWW: https://gitlab.com/alfix/sysctlmibinfo/

Modified: head/sysutils/nsysctl/Makefile
==============================================================================
--- head/sysutils/nsysctl/Makefile	Thu Feb  4 17:30:37 2021	(r564053)
+++ head/sysutils/nsysctl/Makefile	Thu Feb  4 18:03:18 2021	(r564054)
@@ -2,7 +2,7 @@
 
 PORTNAME=	nsysctl
 DISTVERSION=	1.2.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils
 
 MAINTAINER=	alfix86@gmail.com



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102041803.114I3Jnv030925>