Hello community,

here is the log from the commit of package gyp for openSUSE:Factory checked in 
at 2016-07-20 09:16:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-06-29 15:03:45.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.gyp.new/gyp.changes     2016-07-20 
09:16:05.000000000 +0200
@@ -1,0 +2,7 @@
+Wed Jul 06 12:16:00 UTC 2016 - [email protected]
+
+- Update to version 0+git.20160620:
+  * [gyp-ninja] Set simulator and device SDKROOT for iOS.
+  * Ignore more Xcode stderr logging information.
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ gyp.spec ++++++
--- /var/tmp/diff_new_pack.4U7XY0/_old  2016-07-20 09:16:06.000000000 +0200
+++ /var/tmp/diff_new_pack.4U7XY0/_new  2016-07-20 09:16:06.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           gyp
-Version:        0+git.20160513
+Version:        0+git.20160620
 Release:        0
 Summary:        Generate Your Projects
 License:        BSD-3-Clause

++++++ gyp-0+git.20160513.tar.xz -> gyp-0+git.20160620.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gyp-0+git.20160513/pylib/gyp/xcode_emulation.py 
new/gyp-0+git.20160620/pylib/gyp/xcode_emulation.py
--- old/gyp-0+git.20160513/pylib/gyp/xcode_emulation.py 2016-06-14 
09:51:04.000000000 +0200
+++ new/gyp-0+git.20160620/pylib/gyp/xcode_emulation.py 2016-07-06 
14:15:59.000000000 +0200
@@ -1712,11 +1712,12 @@
   for target_dict in targets.itervalues():
     toolset = target_dict['toolset']
     configs = target_dict['configurations']
-    for config_name, config_dict in dict(configs).iteritems():
-      iphoneos_config_dict = copy.deepcopy(config_dict)
+    for config_name, simulator_config_dict in dict(configs).iteritems():
+      iphoneos_config_dict = copy.deepcopy(simulator_config_dict)
       configs[config_name + '-iphoneos'] = iphoneos_config_dict
-      configs[config_name + '-iphonesimulator'] = config_dict
+      configs[config_name + '-iphonesimulator'] = simulator_config_dict
       if toolset == 'target':
+        simulator_config_dict['xcode_settings']['SDKROOT'] = 'iphonesimulator'
         iphoneos_config_dict['xcode_settings']['SDKROOT'] = 'iphoneos'
   return targets
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gyp-0+git.20160513/test/ios/app-bundle/test-archs.gyp 
new/gyp-0+git.20160620/test/ios/app-bundle/test-archs.gyp
--- old/gyp-0+git.20160513/test/ios/app-bundle/test-archs.gyp   2016-06-14 
09:51:04.000000000 +0200
+++ new/gyp-0+git.20160620/test/ios/app-bundle/test-archs.gyp   2016-07-06 
14:15:59.000000000 +0200
@@ -21,7 +21,7 @@
         '-fobjc-abi-version=2',
       ],
       'CODE_SIGNING_REQUIRED': 'NO',
-      'SDKROOT': 'iphonesimulator',  # -isysroot
+      'SDKROOT': 'iphoneos',  # -isysroot
       'TARGETED_DEVICE_FAMILY': '1,2',
       'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist',
       'IPHONEOS_DEPLOYMENT_TARGET': '7.0',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gyp-0+git.20160513/test/ios/deployment-target/deployment-target.gyp 
new/gyp-0+git.20160620/test/ios/deployment-target/deployment-target.gyp
--- old/gyp-0+git.20160513/test/ios/deployment-target/deployment-target.gyp     
2016-06-14 09:51:04.000000000 +0200
+++ new/gyp-0+git.20160620/test/ios/deployment-target/deployment-target.gyp     
2016-07-06 14:15:59.000000000 +0200
@@ -8,51 +8,27 @@
   ],
   'targets': [
     {
-      'target_name': 'iphoneos-version-min-4.3',
+      'target_name': 'version-min-4.3',
       'type': 'static_library',
       'sources': [ 'check-version-min.c', ],
       'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
       'xcode_settings': {
         'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
-        'ARCHS': [ 'armv7' ],
         'SDKROOT': 'iphoneos',
         'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
       },
     },
     {
-      'target_name': 'iphoneos-version-min-5.0',
+      'target_name': 'version-min-5.0',
       'type': 'static_library',
       'sources': [ 'check-version-min.c', ],
       'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
       'xcode_settings': {
         'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
-        'ARCHS': [ 'armv7' ],
         'SDKROOT': 'iphoneos',
         'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
       },
-    },
-    {
-      'target_name': 'iphonesimulator-version-min-4.3',
-      'type': 'static_library',
-      'sources': [ 'check-version-min.c', ],
-      'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
-      'xcode_settings': {
-        'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
-        'SDKROOT': 'iphonesimulator',
-        'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
-      },
-    },
-    {
-      'target_name': 'iphonesimulator-version-min-5.0',
-      'type': 'static_library',
-      'sources': [ 'check-version-min.c', ],
-      'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
-      'xcode_settings': {
-        'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
-        'SDKROOT': 'iphonesimulator',
-        'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
-      },
-    },
+    }
   ],
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gyp-0+git.20160513/test/lib/TestGyp.py 
new/gyp-0+git.20160620/test/lib/TestGyp.py
--- old/gyp-0+git.20160513/test/lib/TestGyp.py  2016-06-14 09:51:04.000000000 
+0200
+++ new/gyp-0+git.20160620/test/lib/TestGyp.py  2016-07-06 14:15:59.000000000 
+0200
@@ -1050,7 +1050,9 @@
           expected = expected.split('\n')
         actual = [a for a in actual
                     if 'No recorder, buildTask: <Xcode3BuildTask:' not in a and
-                       'Beginning test session' not in a]
+                       'Beginning test session' not in a and
+                       'Writing diagnostic log' not in a and
+                       'Logs/Test/' not in a]
       return match(actual, expected)
     kw['match'] = match_filter_xcode
 


Reply via email to