Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Mar 2020 08:18:01 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529233 - in head/graphics/minder: . files
Message-ID:  <202003270818.02R8I19Q042859@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Fri Mar 27 08:18:01 2020
New Revision: 529233
URL: https://svnweb.freebsd.org/changeset/ports/529233

Log:
  graphics/minder: Update to 1.7.2
  
  Changes:	https://github.com/phase1geo/Minder/releases/tag/1.7.1
  Changes:	https://github.com/phase1geo/Minder/releases/tag/1.7.2

Added:
  head/graphics/minder/files/
  head/graphics/minder/files/patch-meson.build   (contents, props changed)
Modified:
  head/graphics/minder/Makefile
  head/graphics/minder/distinfo

Modified: head/graphics/minder/Makefile
==============================================================================
--- head/graphics/minder/Makefile	Fri Mar 27 07:35:00 2020	(r529232)
+++ head/graphics/minder/Makefile	Fri Mar 27 08:18:01 2020	(r529233)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	minder
-PORTVERSION=	1.7.0
+PORTVERSION=	1.7.2
 CATEGORIES=	graphics
 # avoid PKGBASE collision with net-p2p/minder
 PKGNAMESUFFIX=	-app

Modified: head/graphics/minder/distinfo
==============================================================================
--- head/graphics/minder/distinfo	Fri Mar 27 07:35:00 2020	(r529232)
+++ head/graphics/minder/distinfo	Fri Mar 27 08:18:01 2020	(r529233)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1584843889
-SHA256 (phase1geo-Minder-1.7.0_GH0.tar.gz) = 260a3bf7c8c28903d5621da01bd892753cdb505cd06c7491ee6e10ed0bccb51a
-SIZE (phase1geo-Minder-1.7.0_GH0.tar.gz) = 1059567
+TIMESTAMP = 1585291347
+SHA256 (phase1geo-Minder-1.7.2_GH0.tar.gz) = 15c5df656dc69d60112c0f327c26e55e5d3daa3646d92986601cc626d3a71e5c
+SIZE (phase1geo-Minder-1.7.2_GH0.tar.gz) = 1059737

Added: head/graphics/minder/files/patch-meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/minder/files/patch-meson.build	Fri Mar 27 08:18:01 2020	(r529233)
@@ -0,0 +1,24 @@
+Broken with Vala 0.40:
+
+../src/exports/ExportPortableMinder.vala:72.24-72.38: error: The type name `Archive.int64_t' could not be found
+      entry.set_size( (Archive.int64_t)file_info.get_size() );
+                       ^^^^^^^^^^^^^^^
+../src/exports/ExportPortableMinder.vala:170.7-170.21: error: The type name `Archive.int64_t' could not be found
+      Archive.int64_t offset;
+      ^^^^^^^^^^^^^^^
+Compilation failed: 2 error(s), 0 warning(s)
+
+Drop after lang/vala is updated to >=0.44.
+
+--- meson.build.orig	2020-03-26 23:38:24 UTC
++++ meson.build
+@@ -41,7 +41,8 @@ endif
+ 
+ # If the libarchive version is greater than ???, add a define for cross-compile purposes
+ archive_dep = dependency('libarchive')
+-if archive_dep.version().version_compare('>=3.4.0')
++vapigen_dep = dependency('vapigen')
++if archive_dep.version().version_compare('>=3.4.0') and vapigen_dep.version().version_compare('>=0.44.0')
+   add_project_arguments(['--define=LIBARCHIVE340'], language: 'vala')
+   warning('Using LIBARCHIVE: ' + archive_dep.version())
+ endif



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