Hello community,

here is the log from the commit of package gyp for openSUSE:Factory checked in 
at 2016-06-29 15:03:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gyp (Old)
 and      /work/SRC/openSUSE:Factory/.gyp.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gyp"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gyp/gyp.changes  2016-05-19 12:03:29.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.gyp.new/gyp.changes     2016-06-29 
15:03:45.000000000 +0200
@@ -1,0 +2,15 @@
+Tue Jun 14 07:51:05 UTC 2016 - [email protected]
+
+- Update to version 0+git.20160513:
+  * Fix mac_tool.py copy-bundle-resource errors.
+  * [iOS/OS X] Copy file instead of hard-linking them.
+  * gyp-win-tool: Let LinkWrapper only transmogrify / when the host platform 
is Windows.
+  * gyp-win-tool: Fix regression from my last change.
+  * gyp-win-tool: Don't use shell=True on non-Windows hosts.
+  * Fix header map nextPowerOf2 method.
+  * [ios-ninja] Support xctests in devices in release.
+  * Adds support for a new target spec: 'mac_xcuitest_bundle'. This allows us 
to create UI testing bundles.
+  * Enabling /ZW (CompileAsWinRT) option for msvs
+  * ninja/mac: Add horrible workaround for horrible Xcode 7.3 ld bug.
+
+-------------------------------------------------------------------

Old:
----
  gyp-0+git.20160504.tar.xz

New:
----
  gyp-0+git.20160513.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gyp.spec ++++++
--- /var/tmp/diff_new_pack.pz0Ds5/_old  2016-06-29 15:03:46.000000000 +0200
+++ /var/tmp/diff_new_pack.pz0Ds5/_new  2016-06-29 15:03:46.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           gyp
-Version:        0+git.20160504
+Version:        0+git.20160513
 Release:        0
 Summary:        Generate Your Projects
 License:        BSD-3-Clause

++++++ _service ++++++
--- /var/tmp/diff_new_pack.pz0Ds5/_old  2016-06-29 15:03:46.000000000 +0200
+++ /var/tmp/diff_new_pack.pz0Ds5/_new  2016-06-29 15:03:46.000000000 +0200
@@ -1,14 +1,14 @@
 <services>
-  <service mode="localonly" name="tar_scm">
+  <service mode="disabled" name="tar_scm">
     <param name="url">https://chromium.googlesource.com/external/gyp</param>
     <param name="scm">git</param>
     <param name="filename">gyp</param>
     <param name="changesgenerate">enable</param>
     <param name="versionformat">0+git.%cd</param>
   </service>
-  <service mode="localonly" name="recompress">
+  <service mode="disabled" name="recompress">
     <param name="file">*.tar</param>
     <param name="compression">xz</param>
   </service>
-  <service mode="localonly" name="set_version"/>
+  <service mode="disabled" name="set_version"/>
 </services>

++++++ gyp-0+git.20160504.tar.xz -> gyp-0+git.20160513.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gyp-0+git.20160504/pylib/gyp/xcode_emulation.py 
new/gyp-0+git.20160513/pylib/gyp/xcode_emulation.py
--- old/gyp-0+git.20160504/pylib/gyp/xcode_emulation.py 2016-05-05 
16:11:24.000000000 +0200
+++ new/gyp-0+git.20160513/pylib/gyp/xcode_emulation.py 2016-06-14 
09:51:04.000000000 +0200
@@ -848,7 +848,8 @@
     ldflags.append('-arch ' + archs[0])
 
     # Xcode adds the product directory by default.
-    ldflags.append('-L' + product_dir)
+    # Rewrite -L. to -L./ to work around http://www.openradar.me/25313838
+    ldflags.append('-L' + (product_dir if product_dir != '.' else './'))
 
     install_name = self.GetInstallName()
     if install_name and self.spec['type'] != 'loadable_module':


Reply via email to