Hello community, here is the log from the commit of package gyp for openSUSE:Factory checked in at 2017-11-09 13:49:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gyp (Old) and /work/SRC/openSUSE:Factory/.gyp.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gyp" Thu Nov 9 13:49:57 2017 rev:12 rq:538436 version:0+git.20171012 Changes: -------- --- /work/SRC/openSUSE:Factory/gyp/gyp.changes 2017-09-07 22:11:01.113542117 +0200 +++ /work/SRC/openSUSE:Factory/.gyp.new/gyp.changes 2017-11-09 13:49:59.592171848 +0100 @@ -1,0 +2,10 @@ +Thu Nov 2 16:04:35 UTC 2017 - [email protected] + +- Update to version 0+git.20171012: + * Remove Rietveld CQ config. + * Flip to LUCI for tryjobs. + * Provide backward compatibility for python 2.7.6 on z/OS + * Add LIBS to the link command on z/OS + * Change z/OS platform flavor name based on python 2.7.13 + +------------------------------------------------------------------- Old: ---- gyp-0+git.20170904.tar.xz New: ---- gyp-0+git.20171012.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gyp.spec ++++++ --- /var/tmp/diff_new_pack.PQ0IsD/_old 2017-11-09 13:50:00.240148249 +0100 +++ /var/tmp/diff_new_pack.PQ0IsD/_new 2017-11-09 13:50:00.240148249 +0100 @@ -18,7 +18,7 @@ Name: gyp -Version: 0+git.20170904 +Version: 0+git.20171012 Release: 0 Summary: Generate Your Projects License: BSD-3-Clause @@ -27,9 +27,9 @@ Source: %{name}-%{version}.tar.xz Patch0: gyp-rpmoptflags.patch BuildRequires: fdupes -BuildRequires: python-devel -BuildRequires: python-setuptools -Requires: python-setuptools +BuildRequires: python2-devel +BuildRequires: python2-setuptools +Requires: python2-setuptools BuildArch: noarch %description @@ -48,16 +48,15 @@ sed -i '/^#!/d' ./pylib/%{name}/generator/*.py %build -python setup.py build +python2 setup.py build %install -python setup.py install --root %{buildroot} --prefix=%{_prefix} +python2 setup.py install --root %{buildroot} --prefix=%{_prefix} %fdupes -s %{buildroot}%{python_sitelib} %files %doc AUTHORS LICENSE %{_bindir}/%{name} -%{python_sitelib}/%{name} -%{python_sitelib}/%{name}-*-py%{py_ver}.egg-info +%{python_sitelib}/* %changelog ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.PQ0IsD/_old 2017-11-09 13:50:00.284146647 +0100 +++ /var/tmp/diff_new_pack.PQ0IsD/_new 2017-11-09 13:50:00.284146647 +0100 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">https://chromium.googlesource.com/external/gyp</param> - <param name="changesrevision">c6f471687407bf28ddfc63f1a8f47aeb7bf54edc</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">5e2b3ddde7cda5eb6bc09a5546a76b00e49d888f</param></service></servicedata> \ No newline at end of file ++++++ gyp-0+git.20170904.tar.xz -> gyp-0+git.20171012.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gyp-0+git.20170904/infra/config/cq.cfg new/gyp-0+git.20171012/infra/config/cq.cfg --- old/gyp-0+git.20170904/infra/config/cq.cfg 2017-09-04 04:28:46.000000000 +0200 +++ new/gyp-0+git.20171012/infra/config/cq.cfg 2017-10-13 00:23:44.000000000 +0200 @@ -7,15 +7,8 @@ git_repo_url: "https://chromium.googlesource.com/external/gyp.git" gerrit {} -rietveld { - url: "https://codereview.chromium.org" -} verifiers { - reviewer_lgtm { - committer_list: "project-gyp-committers" - dry_run_access_list: "project-gyp-tryjob-access" - } gerrit_cq_ability { committer_list: "project-gyp-committers" dry_run_access_list: "project-gyp-tryjob-access" @@ -23,10 +16,10 @@ try_job { buckets { - name: "master.client.gyp" - builders { name: "linux_try" } - builders { name: "mac_try" } - builders { name: "win_try" } + name: "luci.gyp.try" + builders { name: "linux" } + builders { name: "mac" } + builders { name: "win" } } } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gyp-0+git.20170904/pylib/gyp/common.py new/gyp-0+git.20171012/pylib/gyp/common.py --- old/gyp-0+git.20170904/pylib/gyp/common.py 2017-09-04 04:28:46.000000000 +0200 +++ new/gyp-0+git.20171012/pylib/gyp/common.py 2017-10-13 00:23:44.000000000 +0200 @@ -429,8 +429,10 @@ return 'netbsd' if sys.platform.startswith('aix'): return 'aix' + if sys.platform.startswith('zos'): + return 'zos' if sys.platform.startswith('os390'): - return 'os390' + return 'zos' return 'linux' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gyp-0+git.20170904/pylib/gyp/generator/make.py new/gyp-0+git.20171012/pylib/gyp/generator/make.py --- old/gyp-0+git.20170904/pylib/gyp/generator/make.py 2017-09-04 04:28:46.000000000 +0200 +++ new/gyp-0+git.20171012/pylib/gyp/generator/make.py 2017-10-13 00:23:44.000000000 +0200 @@ -240,7 +240,7 @@ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^) quiet_cmd_link = LINK($(TOOLSET)) $@ -cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) +cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS) quiet_cmd_solink = SOLINK($(TOOLSET)) $@ cmd_solink = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS) -Wl,DLL @@ -2065,7 +2065,7 @@ header_params.update({ 'link_commands': LINK_COMMANDS_ANDROID, }) - elif flavor == 'os390': + elif flavor == 'zos': copy_archive_arguments = '-fPR' makedep_arguments = '-qmakedep=gcc' header_params.update({ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gyp-0+git.20170904/pylib/gyp/generator/ninja.py new/gyp-0+git.20171012/pylib/gyp/generator/ninja.py --- old/gyp-0+git.20170904/pylib/gyp/generator/ninja.py 2017-09-04 04:28:46.000000000 +0200 +++ new/gyp-0+git.20171012/pylib/gyp/generator/ninja.py 2017-10-13 00:23:44.000000000 +0200 @@ -2324,7 +2324,7 @@ 'copy', description='COPY $in $out', command='%s gyp-win-tool recursive-mirror $in $out' % sys.executable) - elif flavor == 'os390': + elif flavor == 'zos': master_ninja.rule( 'copy', description='COPY $in $out',
