[yast-commit] [ci_new_pac] JFYI yast2-devtools -> sle12
Script 'mail_helper' called by ro Hello packager, This is just FYI. Your package was checked in in distribution "sle12" by autobuild-member: ro. Here comes the log... ---------------------------%<------------------------------ Hi, here is the log from ci_new_pac /mounts/work_src_done/SLE12/yast2-devtools -> sle12 Changes: -------- --- /work/SRC/SUSE:SLE-12:GA/yast2-devtools/yast2-devtools.changes 2014-01-17 14:16:28.000000000 +0100 +++ /mounts/work_src_done/SLE12/yast2-devtools/yast2-devtools.changes 2014-02-14 10:09:38.000000000 +0100 @@ -1,0 +2,6 @@ +Fri Feb 14 08:59:05 UTC 2014 - jreidinger@suse.com + +- return back gettextdomains to allow generating translations +- 3.1.16 + +------------------------------------------------------------------- calling whatdependson for sle12-i586 Packages directly triggered for rebuild: - yast2-devtools - at least 103 other packages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/SUSE:SLE-12:GA/yast2-devtools (Old) and /mounts/work_src_done/SLE12/yast2-devtools (BS:build ID:32733 MAIL:yast-commit@opensuse.org) (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-devtools", Maintainer is "yast-commit@opensuse.org" Old: ---- yast2-devtools-3.1.15.tar.bz2 New: ---- yast2-devtools-3.1.16.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-devtools.spec ++++++ --- /var/tmp/diff_new_pack.31SaWi/_old 2014-02-14 16:08:20.000000000 +0100 +++ /var/tmp/diff_new_pack.31SaWi/_new 2014-02-14 16:08:20.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-devtools -Version: 3.1.15 +Version: 3.1.16 Release: 0 Url: http://github.com/yast/yast-devtools @@ -46,7 +46,6 @@ %package -n yast2-buildtools Summary: Minimal set of tools needed to build yast module -Group: System/YaST Requires: perl Requires: perl-XML-Writer @@ -72,6 +71,7 @@ # weak dependency, "make pot" is usually not needed Suggests: rubygem-gettext + %description -n yast2-buildtools Scripts and templates required for rebuilding the existing YaST2 modules and components (both ruby and C++). @@ -141,8 +141,10 @@ %{_datadir}/YaST2/data/devtools/bin/showy2log %{_datadir}/YaST2/data/devtools/bin/tagversion %{_datadir}/YaST2/data/devtools/bin/y2makepot +%{_datadir}/YaST2/data/devtools/bin/gettextdomains %{_datadir}/YaST2/data/devtools/bin/ycp_puttext + %files -n yast2-buildtools %defattr(-,root,root) %{_sysconfdir}/rpm/macros.yast @@ -164,4 +166,7 @@ %{_datadir}/YaST2/data/devtools/bin/y2autoconf %{_datadir}/YaST2/data/devtools/bin/y2automake + + + %changelog ++++++ yast2-devtools-3.1.15.tar.bz2 -> yast2-devtools-3.1.16.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-3.1.15/build-tools/scripts/Makefile.am new/yast2-devtools-3.1.16/build-tools/scripts/Makefile.am --- old/yast2-devtools-3.1.15/build-tools/scripts/Makefile.am 2013-12-19 10:13:41.000000000 +0100 +++ new/yast2-devtools-3.1.16/build-tools/scripts/Makefile.am 2014-02-14 10:12:26.000000000 +0100 @@ -8,6 +8,7 @@ pkgdata_SCRIPTS = \ y2autoconf \ y2automake \ - y2makepot + y2makepot \ + gettextdomains EXTRA_DIST = $(bin_SCRIPTS) $(pkgdata_SCRIPTS) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-3.1.15/build-tools/scripts/gettextdomains new/yast2-devtools-3.1.16/build-tools/scripts/gettextdomains --- old/yast2-devtools-3.1.15/build-tools/scripts/gettextdomains 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-devtools-3.1.16/build-tools/scripts/gettextdomains 2014-02-14 10:12:26.000000000 +0100 @@ -0,0 +1,63 @@ +### sourced by 'check-textdomain' and 'y2makepot' ### -*- sh -*- + +# +# get_domains_and_err(): +# Argument: $1 -> directory to search +# Returns: $DOMAINS -> all text-domains found in $SRCDIR +# $ERR -> filenames without text-domain, but using [_]_tr() +# + +function get_domains_and_err() +{ + if [ -z "$1" ]; then + echo `basename $0`": argument missing" + fi + SRCDIR=$1 + + # search for sourcecode-files + SRCFILES=`find $SRCDIR -type d -name testsuite -prune , \ + -type d -name .svn -prune , \ + -type f -name "*.ycp" \ + -o -name "*.pm" \ + -o -name "*.c" \ + -o -name "*.cc" \ + -o -name "*.cpp" \ + -o -name "*.rb" ` + + if test "$?" != "0"; then + echo "Error: check-pot terminated unexpected." + exit 1 + fi + + for F in $SRCFILES; do + # strip comments from the files and match [_]_( "..." ) + # 1. perl: strip one-line-comments + # 2. perl: strip C comments (multiline too) + # 3. perl: match for _( "...") and __("..." ) (multiline too) + # problems left: + # - false matches of comments inside strings + # - uncaught _( at line beginning + MATCH=`perl -n -e 'print "$ARGV: $_" if not /(\/\/|#)/' $F | \ + perl -n -e 'print "$_" if not /\/\*/../\*\//' | \ + perl -n -e 'print "$_" if /[^[:alnum:]_"<](_|__|gettext)\(/../\)/'` + if [ -n "$MATCH" ]; then + TR_FILES="$F $TR_FILES" ; + fi + done + + # we can specify additional files to .pot creation + POTFILES=`test -e $SRCDIR/POTFILES && grep -v '^$' $SRCDIR/POTFILES | sed "s,^,$SRCDIR/," ` + + DOMAINS="" ; + for F in $TR_FILES $POTFILES; do + D=`egrep '^[[:space:]]*<?[Tt]extdomain>?' $F | head -n 1 | \ + sed 's/^[[:space:]]*<\?[Tt]extdomain[[:space:]]*[=: \ + "(>]*[[:space:]]*\([-_a-zA-Z0-9]*\).*/\1/'`; + if [ -z $D ]; then + ERR="$PWD/$F $ERR" ; + else + DOMAINS="$D:$F\n$DOMAINS" ; + fi ; + done +} + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-3.1.15/jenkins-tools/config.xml new/yast2-devtools-3.1.16/jenkins-tools/config.xml --- old/yast2-devtools-3.1.15/jenkins-tools/config.xml 2013-12-19 10:13:41.000000000 +0100 +++ new/yast2-devtools-3.1.16/jenkins-tools/config.xml 2014-02-14 10:12:26.000000000 +0100 @@ -8,7 +8,7 @@ <configVersion>2</configVersion> <userRemoteConfigs> <hudson.plugins.git.UserRemoteConfig> - <url>https://github.com/yast/yast-yast2.git</url> + <url>https://github.com/yast/yast-apparmor.git</url> </hudson.plugins.git.UserRemoteConfig> </userRemoteConfigs> <branches> @@ -20,6 +20,7 @@ <submoduleCfg class="list"/> <extensions> <hudson.plugins.git.extensions.impl.CleanCheckout/> + <hudson.plugins.git.extensions.impl.DisableRemotePoll/> </extensions> </scm> <assignedNode>yast-jenkins</assignedNode> @@ -40,7 +41,7 @@ </hudson.tasks.Shell> </builders> <publishers> - <hudson.tasks.Mailer plugin="mailer@1.5"> + <hudson.tasks.Mailer plugin="mailer@1.6"> <recipients>yast-commit@opensuse.org</recipients> <dontNotifyEveryUnstableBuild>true</dontNotifyEveryUnstableBuild> <sendToIndividuals>true</sendToIndividuals> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-3.1.15/jenkins-tools/yast-jenkins-list-jobs.rb new/yast2-devtools-3.1.16/jenkins-tools/yast-jenkins-list-jobs.rb --- old/yast2-devtools-3.1.15/jenkins-tools/yast-jenkins-list-jobs.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-devtools-3.1.16/jenkins-tools/yast-jenkins-list-jobs.rb 2014-02-14 10:12:26.000000000 +0100 @@ -0,0 +1,20 @@ +#! /usr/bin/env ruby +require "rexml/document" + +# script for geting all yast jobs matching JOB_NAME_REGEXP where parens enclosed are name + +JOB_NAME_REGEXP = /\Ayast-(.*)-master\z/ + +#test if module already exist +all_modules = `curl -sL http://ci.opensuse.org/view/Yast/api/xml` + +raise "module list cannot load" if $?.exitstatus != 0 + +doc = REXML::Document.new all_modules + +names = doc.root.elements.to_a("//name"). + map(&:get_text). + select{ |n| n.to_s =~ JOB_NAME_REGEXP}. + map{ |n| n.to_s.sub(JOB_NAME_REGEXP, "\\1") } + +print names.join("\n") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-3.1.15/package/yast2-devtools.changes new/yast2-devtools-3.1.16/package/yast2-devtools.changes --- old/yast2-devtools-3.1.15/package/yast2-devtools.changes 2013-12-19 10:13:41.000000000 +0100 +++ new/yast2-devtools-3.1.16/package/yast2-devtools.changes 2014-02-14 10:12:26.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Feb 14 08:59:05 UTC 2014 - jreidinger@suse.com + +- return back gettextdomains to allow generating translations +- 3.1.16 + +------------------------------------------------------------------- Wed Dec 18 09:14:21 UTC 2013 - lslezak@suse.cz - added @ylibdir@ and @controldir@ automake macros diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-3.1.15/package/yast2-devtools.spec new/yast2-devtools-3.1.16/package/yast2-devtools.spec --- old/yast2-devtools-3.1.15/package/yast2-devtools.spec 2013-12-19 10:13:41.000000000 +0100 +++ new/yast2-devtools-3.1.16/package/yast2-devtools.spec 2014-02-14 10:12:26.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-devtools -Version: 3.1.15 +Version: 3.1.16 Release: 0 Url: http://github.com/yast/yast-devtools @@ -141,6 +141,7 @@ %{_datadir}/YaST2/data/devtools/bin/showy2log %{_datadir}/YaST2/data/devtools/bin/tagversion %{_datadir}/YaST2/data/devtools/bin/y2makepot +%{_datadir}/YaST2/data/devtools/bin/gettextdomains %{_datadir}/YaST2/data/devtools/bin/ycp_puttext continue with "q"... Checked in at Fri Feb 14 16:08:26 CET 2014 by ro Remember to have fun... -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
ro