mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
devel/libconfig: update to 1.7.3
- Chase shared library bump across dependant ports. - Fetch releases rather than tags from GitHub. [1] - Properly depend on makeinfo, adding an INFO knob. - Refresh pkg-descr and COMMENT accordingly. PR: 261062 Reported by: dizzy [1] Approved by: maintainer timeout
This commit is contained in:
parent
f001878b3e
commit
8c30deb681
27 changed files with 47 additions and 37 deletions
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= siril
|
||||
DISTVERSION= 0.99.10.1
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= astro graphics
|
||||
MASTER_SITES= https://free-astro.org/download/
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= shairport-sync
|
||||
DISTVERSION= 3.3.9
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
MAINTAINER= ehaupt@FreeBSD.org
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= umurmur
|
||||
DISTVERSION= 0.2.17
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio net
|
||||
|
||||
MAINTAINER= ayu@commun.jp
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= ateam_mysql57_ldap_auth
|
||||
PORTVERSION= 1.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= ganbold@FreeBSD.org
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= ateam_mysql_ldap_auth
|
||||
PORTVERSION= 1.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= ganbold@FreeBSD.org
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
PORTNAME= libzbxpgsql
|
||||
PORTVERSION= 1.1.0
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= databases
|
||||
PKGNAMEPREFIX= zabbix3-
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= dfshow
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.9.4-beta
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= deskutils
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
@ -1,28 +1,26 @@
|
|||
# Created by: Nikos Ntarmos <ntarmos@ceid.upatras.gr>
|
||||
|
||||
PORTNAME= libconfig
|
||||
PORTVERSION= 1.7.2
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 1.7.3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://github.com/hyperrealm/${PORTNAME}/releases/download/v${PORTVERSION}/
|
||||
|
||||
MAINTAINER= ntarmos@ceid.upatras.gr
|
||||
COMMENT= Simple library for manipulating structured configuration files
|
||||
COMMENT= Simple library for processing structured configuration files
|
||||
|
||||
LICENSE= LGPL21
|
||||
|
||||
BUILD_DEPENDS= makeinfo:print/texinfo
|
||||
|
||||
USES= autoreconf libtool pathfix
|
||||
GNU_CONFIGURE= yes
|
||||
USES= autoreconf libtool pathfix
|
||||
USE_LDCONFIG= yes
|
||||
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
||||
|
||||
USE_GITHUB= YES
|
||||
GH_ACCOUNT= hyperrealm
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFLICTS= wand-libconfig
|
||||
|
||||
INFO= libconfig
|
||||
OPTIONS_DEFINE= INFO
|
||||
OPTIONS_DEFAULT=INFO
|
||||
|
||||
INFO_INFO= libconfig
|
||||
INFO_CONFIGURE_OFF= --disable-doc
|
||||
INFO_USES= makeinfo
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1532431556
|
||||
SHA256 (hyperrealm-libconfig-v1.7.2_GH0.tar.gz) = f67ac44099916ae260a6c9e290a90809e7d782d96cdd462cac656ebc5b685726
|
||||
SIZE (hyperrealm-libconfig-v1.7.2_GH0.tar.gz) = 3017891
|
||||
TIMESTAMP = 1641838254
|
||||
SHA256 (libconfig-1.7.3.tar.gz) = 545166d6cac037744381d1e9cc5a5405094e7bfad16a411699bcff40bbb31ee7
|
||||
SIZE (libconfig-1.7.3.tar.gz) = 730800
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
Libconfig is a simple library for manipulating structured configuration
|
||||
files. The file format is more compact and more readable than XML. And
|
||||
Libconfig is a simple library for processing structured configuration
|
||||
files. This file format is more compact and more readable than XML. And
|
||||
unlike XML, it is type-aware, so it is not necessary to do string
|
||||
parsing in application code.
|
||||
|
||||
Libconfig is very compact -- just 25K for the stripped C shared library
|
||||
(one-fifth the size of the expat XML parser library) and 39K for the
|
||||
stripped C++ shared library. This makes it well-suited for
|
||||
memory-constrained systems like handheld devices.
|
||||
Libconfig is very compact - a fraction of the size of the expat XML
|
||||
parser library. This makes it well-suited for memory-constrained systems
|
||||
like handheld devices.
|
||||
|
||||
The library includes bindings for both the C and C++ languages. It works
|
||||
on POSIX-compliant UNIX systems (GNU/Linux, Mac OS X, Solaris, FreeBSD)
|
||||
and Windows (2000, XP and later).
|
||||
on POSIX-compliant UNIX and UNIX-like systems (GNU/Linux, Mac OS X,
|
||||
Solaris, FreeBSD), Android, and Windows (2000, XP and later).
|
||||
|
||||
WWW: http://www.hyperrealm.com/libconfig/libconfig.html
|
||||
WWW: https://www.hyperrealm.com/libconfig/libconfig.html
|
||||
|
|
|
@ -5,10 +5,10 @@ lib/cmake/libconfig/libconfigConfig.cmake
|
|||
lib/libconfig++.a
|
||||
lib/libconfig++.so
|
||||
lib/libconfig++.so.11
|
||||
lib/libconfig++.so.11.0.2
|
||||
lib/libconfig++.so.11.1.0
|
||||
lib/libconfig.a
|
||||
lib/libconfig.so
|
||||
lib/libconfig.so.11
|
||||
lib/libconfig.so.11.0.2
|
||||
lib/libconfig.so.11.1.0
|
||||
libdata/pkgconfig/libconfig++.pc
|
||||
libdata/pkgconfig/libconfig.pc
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= srain
|
||||
DISTVERSION= 1.3.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= irc
|
||||
|
||||
MAINTAINER= ashish@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= ldc
|
||||
PORTVERSION= 1.23.0
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang
|
||||
|
||||
MAINTAINER= acm@FreeBSD.org
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= lms
|
||||
DISTVERSION= 3.25.2
|
||||
PORTREVISION= 1
|
||||
MASTER_SITES= https://github.com/epoupon/lms/archive/refs/tags/v${DISTVERSION}${EXTRACT_SUFX}?dummy=/
|
||||
CATEGORIES= multimedia
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= telegram-cli
|
||||
DISTVERSION= 20200106
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net-im
|
||||
|
||||
MAINTAINER= 0mp@FreeBSD.org
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
PORTNAME= toxcore
|
||||
PORTVERSION= 0.2.13
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= net-im net-p2p
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
PORTNAME= toxic
|
||||
PORTVERSION= 0.11.3
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net-im
|
||||
|
||||
MAINTAINER= thierry@FreeBSD.org
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
PORTNAME= sslh
|
||||
PORTVERSION= 1.22c
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net
|
||||
|
||||
MAINTAINER= olivier@FreeBSD.org
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
PORTNAME= cvechecker
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.9
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= security
|
||||
|
||||
MAINTAINER= se@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= api
|
||||
PORTVERSION= 0.5.0
|
||||
PORTREVISION= 8
|
||||
PORTREVISION= 9
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= SF/razorbacktm/API
|
||||
PKGNAMEPREFIX= razorback-
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= glewlwyd
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.6.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= GH
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= janus
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.11.6
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= www
|
||||
|
||||
MAINTAINER= vanilla@FreeBSD.org
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= ot-recorder
|
||||
PORTVERSION= 0.8.4
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= www
|
||||
|
||||
MAINTAINER= dvl@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= compton
|
||||
PORTVERSION= 20160907
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= x11-wm
|
||||
|
||||
MAINTAINER= femc7488@gmail.com
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= picom
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 8.2
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= x11-wm
|
||||
|
||||
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= compton-conf
|
||||
PORTVERSION= 0.16.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= LXQT/${PORTNAME}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= xob
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11
|
||||
|
||||
MAINTAINER= lcook@FreeBSD.org
|
||||
|
|
Loading…
Add table
Reference in a new issue