Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Dec 2018 09:09:20 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r488081 - in head: devel/meson x11/terminology/files
Message-ID:  <201812220909.wBM99Kdc013232@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kwm
Date: Sat Dec 22 09:09:20 2018
New Revision: 488081
URL: https://svnweb.freebsd.org/changeset/ports/488081

Log:
  Update meson to 0.49.0.
  
  Exp-run by antoine@
  
  PR:		234075

Added:
  head/x11/terminology/files/
  head/x11/terminology/files/patch-data_themes_meson.build   (contents, props changed)
Modified:
  head/devel/meson/Makefile
  head/devel/meson/distinfo

Modified: head/devel/meson/Makefile
==============================================================================
--- head/devel/meson/Makefile	Sat Dec 22 09:07:34 2018	(r488080)
+++ head/devel/meson/Makefile	Sat Dec 22 09:09:20 2018	(r488081)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	meson
-PORTVERSION=	0.48.2
+PORTVERSION=	0.49.0
 CATEGORIES=	devel python
 MASTER_SITES=	https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/
 

Modified: head/devel/meson/distinfo
==============================================================================
--- head/devel/meson/distinfo	Sat Dec 22 09:07:34 2018	(r488080)
+++ head/devel/meson/distinfo	Sat Dec 22 09:09:20 2018	(r488081)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1541844428
-SHA256 (meson-0.48.2.tar.gz) = 39ead8bfd0dc9c7b0af15e23ea975c864600bf871fba279c9918625bb9a85506
-SIZE (meson-0.48.2.tar.gz) = 1310363
+TIMESTAMP = 1544951931
+SHA256 (meson-0.49.0.tar.gz) = fb0395c4ac208eab381cd1a20571584bdbba176eb562a7efa9cb17cace0e1551
+SIZE (meson-0.49.0.tar.gz) = 1338583

Added: head/x11/terminology/files/patch-data_themes_meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/terminology/files/patch-data_themes_meson.build	Sat Dec 22 09:09:20 2018	(r488081)
@@ -0,0 +1,27 @@
+This file is from release 1.3.1 which works with meson 0.49.0.
+
+--- data/themes/meson.build.orig	2018-05-14 20:20:41 UTC
++++ data/themes/meson.build
+@@ -22,16 +22,16 @@ edje_install_dir = join_paths(get_option('datadir'),
+                               meson.project_name(), 'themes')
+ 
+ foreach to_compile: edje_to_compile
+-  out = to_compile[0] + '.edj'
+-  in = to_compile[0] + '.edc'
+-  edj_targets += [custom_target(out,
++  output = to_compile[0] + '.edj'
++  input = to_compile[0] + '.edc'
++  edj_targets += [custom_target(output,
+                                 install:true,
+                                 install_dir: edje_install_dir,
+                                 depend_files: files(to_compile[1]),
+                                 command: command,
+-                                input: in,
+-                                output: out)]
+-  edj_files += [join_paths(edje_install_dir, out)]
++                                input: input,
++                                output: output)]
++  edj_files += [join_paths(edje_install_dir, output)]
+ endforeach
+ 
+ subdir('nyanology')



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