Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Dec 2019 11:44:24 +0000 (UTC)
From:      Roman Bogorodskiy <novel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r519296 - in head/sysutils/osinfo-db-tools: . files
Message-ID:  <201912081144.xB8BiOE4076701@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: novel
Date: Sun Dec  8 11:44:24 2019
New Revision: 519296
URL: https://svnweb.freebsd.org/changeset/ports/519296

Log:
  sysutils/osinfo-db-tools: update to 1.7.0
  
  Major change in this version is switching to the meson build system.
  NLS is no longer conditional, so remove the option.

Added:
  head/sysutils/osinfo-db-tools/files/
  head/sysutils/osinfo-db-tools/files/patch-meson.build   (contents, props changed)
  head/sysutils/osinfo-db-tools/files/patch-tests_meson.build   (contents, props changed)
  head/sysutils/osinfo-db-tools/files/patch-tools_meson.build   (contents, props changed)
Modified:
  head/sysutils/osinfo-db-tools/Makefile
  head/sysutils/osinfo-db-tools/distinfo
  head/sysutils/osinfo-db-tools/pkg-plist

Modified: head/sysutils/osinfo-db-tools/Makefile
==============================================================================
--- head/sysutils/osinfo-db-tools/Makefile	Sun Dec  8 11:42:20 2019	(r519295)
+++ head/sysutils/osinfo-db-tools/Makefile	Sun Dec  8 11:44:24 2019	(r519296)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	osinfo-db-tools
-PORTVERSION=	1.6.0
+PORTVERSION=	1.7.0
 CATEGORIES=	sysutils
 MASTER_SITES=	https://releases.pagure.org/libosinfo/
 
@@ -15,14 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libjson-glib-1.0.so:devel/json-glib \
 		libsoup-2.4.so:devel/libsoup
 
-USES=		gettext gmake gnome libarchive pkgconfig
+USES=		gettext gmake gnome libarchive pkgconfig tar:xz meson
 USE_GNOME=	glib20 intltool libxml2 libxslt
-
-GNU_CONFIGURE=	yes
-
-OPTIONS_DEFINE=	NLS
-OPTIONS_SUB=	yes
-
-NLS_CONFIGURE_ENABLE=	nls
 
 .include <bsd.port.mk>

Modified: head/sysutils/osinfo-db-tools/distinfo
==============================================================================
--- head/sysutils/osinfo-db-tools/distinfo	Sun Dec  8 11:42:20 2019	(r519295)
+++ head/sysutils/osinfo-db-tools/distinfo	Sun Dec  8 11:44:24 2019	(r519296)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1564555791
-SHA256 (osinfo-db-tools-1.6.0.tar.gz) = d0d5b1196d73a7abed051be48d0e5b4aa196aac4cdbf8ddf52f57c0c492b2574
-SIZE (osinfo-db-tools-1.6.0.tar.gz) = 547189
+TIMESTAMP = 1575780477
+SHA256 (osinfo-db-tools-1.7.0.tar.xz) = 4bddbec5f407436e0b62f0d7657e866adc980709acf5321aa0d4c3eb54aea823
+SIZE (osinfo-db-tools-1.7.0.tar.xz) = 66584

Added: head/sysutils/osinfo-db-tools/files/patch-meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/osinfo-db-tools/files/patch-meson.build	Sun Dec  8 11:44:24 2019	(r519296)
@@ -0,0 +1,11 @@
+--- meson.build.orig	2019-12-08 05:53:25 UTC
++++ meson.build
+@@ -76,7 +76,7 @@ osinfo_db_tools_cflags += [
+ ]
+ 
+ #  gettext package name
+-osinfo_db_tools_cflags += ['-DGETTEXT_PACKAGE="0"'.format(meson.project_name())]
++osinfo_db_tools_cflags += ['-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name())]
+ 
+ #  cflags to check whether the compiler supports them or not
+ osinfo_db_tools_check_cflags = [

Added: head/sysutils/osinfo-db-tools/files/patch-tests_meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/osinfo-db-tools/files/patch-tests_meson.build	Sun Dec  8 11:44:24 2019	(r519296)
@@ -0,0 +1,11 @@
+--- tests/meson.build.orig	2019-12-08 07:18:10 UTC
++++ tests/meson.build
+@@ -9,7 +9,7 @@ test(
+ 
+ python = import('python')
+ 
+-python3 = python.find_installation('python3')
++python3 = python.find_installation('python3', required: false)
+ if python3.found()
+     tests = {
+         'export-import': 'test_osinfo_db_export_import.py',

Added: head/sysutils/osinfo-db-tools/files/patch-tools_meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/osinfo-db-tools/files/patch-tools_meson.build	Sun Dec  8 11:44:24 2019	(r519296)
@@ -0,0 +1,11 @@
+--- tools/meson.build.orig	2019-12-08 05:33:14 UTC
++++ tools/meson.build
+@@ -90,7 +90,7 @@ if pod2man.found()
+             output: file + '.1',
+             input: file + '.c',
+             install: true,
+-            install_dir: join_paths(osinfo_db_tools_datadir, 'man', 'man1'),
++            install_dir: join_paths(osinfo_db_tools_mandir, 'man1'),
+             build_by_default: true,
+             command: [
+                 pod2man,

Modified: head/sysutils/osinfo-db-tools/pkg-plist
==============================================================================
--- head/sysutils/osinfo-db-tools/pkg-plist	Sun Dec  8 11:42:20 2019	(r519295)
+++ head/sysutils/osinfo-db-tools/pkg-plist	Sun Dec  8 11:44:24 2019	(r519296)
@@ -6,98 +6,98 @@ man/man1/osinfo-db-export.1.gz
 man/man1/osinfo-db-import.1.gz
 man/man1/osinfo-db-path.1.gz
 man/man1/osinfo-db-validate.1.gz
-%%NLS%%share/locale/af/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/am/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/anp/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ar/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/as/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ast/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/bal/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/be/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/bg/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/bn/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/bn_IN/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/bo/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/br/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/brx/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/bs/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/cy/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/da/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/de/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/de_CH/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/el/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/en_GB/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/eo/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/es/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/et/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/eu/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/fa/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/fi/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/gl/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/gu/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/he/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/hi/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/hr/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/hu/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ia/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/id/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ilo/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/is/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/it/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ka/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/kk/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/km/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/kn/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/kw/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/kw@kkcor/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/kw@uccor/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/kw_GB/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ky/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/lt/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/lv/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/mai/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/mk/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ml/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/mn/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/mr/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ms/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/nb/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/nds/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ne/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/nl/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/nn/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/nso/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/or/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/pa/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ro/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/si/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/sk/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/sl/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/sq/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/sr@latin/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ta/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/te/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/tg/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/th/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/tw/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/uk/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/ur/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/vi/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/wba/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/yo/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/zh_HK/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/osinfo-db-tools.mo
-%%NLS%%share/locale/zu/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/af/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/am/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/anp/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ar/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/as/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ast/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/bal/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/be/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/bg/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/bn/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/bn_IN/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/bo/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/br/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/brx/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/bs/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ca/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/cs/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/cy/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/da/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/de/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/de_CH/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/el/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/en_GB/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/eo/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/es/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/et/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/eu/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/fa/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/fi/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/fr/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/gl/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/gu/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/he/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/hi/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/hr/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/hu/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ia/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/id/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ilo/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/is/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/it/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ja/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ka/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/kk/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/km/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/kn/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ko/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/kw/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/kw@kkcor/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/kw@uccor/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/kw_GB/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ky/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/lt/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/lv/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/mai/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/mk/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ml/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/mn/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/mr/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ms/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/nb/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/nds/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ne/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/nl/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/nn/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/nso/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/or/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/pa/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/pl/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/pt/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/pt_BR/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ro/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ru/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/si/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/sk/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/sl/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/sq/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/sr/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/sr@latin/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/sv/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ta/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/te/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/tg/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/th/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/tr/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/tw/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/uk/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/ur/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/vi/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/wba/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/yo/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/zh_CN/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/zh_HK/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/zh_TW/LC_MESSAGES/osinfo-db-tools.mo
+share/locale/zu/LC_MESSAGES/osinfo-db-tools.mo



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