Hello community, here is the log from the commit of package geda-gaf for openSUSE:Factory checked in at 2018-02-07 18:41:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/geda-gaf (Old) and /work/SRC/openSUSE:Factory/.geda-gaf.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "geda-gaf" Wed Feb 7 18:41:04 2018 rev:8 rq:573403 version:1.8.2 Changes: -------- --- /work/SRC/openSUSE:Factory/geda-gaf/geda-gaf.changes 2015-03-05 18:16:20.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.geda-gaf.new/geda-gaf.changes 2018-02-07 18:41:08.284956176 +0100 @@ -1,0 +2,6 @@ +Sat Feb 3 08:46:15 UTC 2018 - [email protected] + +- Add patch fix-gxyrs-utility.patch to fix the failed unittest + when building for factory + +------------------------------------------------------------------- New: ---- fix-gxyrs-utility.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ geda-gaf.spec ++++++ --- /var/tmp/diff_new_pack.N3LQli/_old 2018-02-07 18:41:09.140916097 +0100 +++ /var/tmp/diff_new_pack.N3LQli/_new 2018-02-07 18:41:09.144915909 +0100 @@ -1,7 +1,7 @@ # # spec file for package geda-gaf # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -30,6 +30,8 @@ Patch0: gschem-doc-path.patch # PATCH-FIX-OPENSUSE grenum-no-build-time.patch -- fix "W: file-contains-date-and-time" Patch1: grenum-no-build-time.patch +# PATCH-FIX-UPSTREAM fix-gxyrs-utility.patch bnc#1078838 -- fix unittests on tumbleweed +Patch2: fix-gxyrs-utility.patch BuildRequires: bison BuildRequires: cairo-devel @@ -107,7 +109,6 @@ Summary: Basic Library that is Used by Several gEDA Programs License: GPL-2.0+ Group: Development/Libraries/C and C++ -# Requires: freetype2-devel Requires: glib2-devel Requires: gtk2-devel Requires: guile-devel @@ -222,6 +223,7 @@ %setup -q %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build # export LDFLAGS="-lm $LDFLAGS" ++++++ fix-gxyrs-utility.patch ++++++ >From 9b3bf135f2ceb372e3f04c6a70ca8e68bb92112f Mon Sep 17 00:00:00 2001 From: Roland Lutz <[email protected]> Date: Sun, 5 Mar 2017 17:34:52 +0100 Subject: [PATCH] Fix `gxyrs' utility --- utils/gxyrs/gxyrs.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/gxyrs/gxyrs.pl b/utils/gxyrs/gxyrs.pl index 3b7f21d92..5957f055e 100644 --- a/utils/gxyrs/gxyrs.pl +++ b/utils/gxyrs/gxyrs.pl @@ -321,6 +321,10 @@ sub usage { usage(); } + if (defined $adjust_file && substr($adjust_file, 0, 1) ne "/") { + $adjust_file = "./" . $adjust_file; + } + if ($file_in !~ '^-$') { open(FILE_IN, $file_in) || die ("Can't open input file $file_in: $!");
