[Bug 604049] New: build-compare can't handle meinproc generated files
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c0 Summary: build-compare can't handle meinproc generated files Classification: openSUSE Product: openSUSE 11.3 Version: Factory Platform: Other OS/Version: Other Status: NEW Severity: Enhancement Priority: P5 - None Component: KDE4 Workspace AssignedTo: kde-maintainers@suse.de ReportedBy: cmorve69@yahoo.es QAContact: qa@suse.de CC: aj@novell.com, coolo@novell.com Found By: Community User Blocker: --- It is somehow common to see packages from KDE:KDE4:Factory:Desktop not passing the build-compare test because of index.cache files generated by meinproc4 from docbook files. The problem is meinproc uses libxslt and a XSL file that uses the generate-id() function (http://svn.gnome.org/viewvc/libxslt/trunk/libxslt/functions.c?view=markup) Either libxslt should be patched to generate deterministics IDs or build-compare enhanced to ignore these differences. The relevant XSL files: http://websvn.kde.org/tags/KDE/4.4.3/kdelibs/kdoctools/customization/kde-chu... http://websvn.kde.org/tags/KDE/4.4.3/kdelibs/kdoctools/docbook/xsl/html/auto... -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c1 --- Comment #1 from Andreas Jaeger <aj@novell.com> 2010-05-10 07:55:04 UTC --- Cristian, could you name some packages, please? -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c2 --- Comment #2 from Stephan Kulow <coolo@novell.com> 2010-05-10 10:10:41 CEST --- Take e.g. succeeded/obs-i586/kdegames4 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c3 --- Comment #3 from Stephan Kulow <coolo@novell.com> 2010-05-10 10:13:34 CEST --- patching libxml in this case sounds very dangerous to me. The ids always have the form of e.g. "id2556008" (id + %ld), so it should be possible to sort this out for 'index.cache' files. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c4 --- Comment #4 from Andreas Jaeger <aj@novell.com> 2010-05-10 09:50:56 UTC --- Thanks for the hints! I'm testing now the following construct: /usr/share/doc/kde/HTML/*/*/index.cache) # various kde packages for f in old/$file new/$file; do sed -i -e 's|<a name="id[0-9]*">|<a name="id424242">|' $f sed -i -e 's|<a href="\(.*\)\.html#id[0-9]*">|<a href="\1#id424242">|' $f done ;; -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c5 --- Comment #5 from Stephan Kulow <coolo@novell.com> 2010-05-10 12:02:08 CEST --- not sure how many of them we still have, but this could apply to kde3 too - but I can't find any succeed log with index.cache outside your path. BTW, I thought man pages are already catched? I see this in kdelibs4: /usr/share/man/man1/kdecmake.1 differs ( troff or preprocessor input text) --- old//usr/share/man/man1/kdecmake.1 2010-05-08 07:17:15.000000000 +0000 +++ new//usr/share/man/man1/kdecmake.1 2010-05-08 07:17:15.000000000 +0000 @@ -1,4 +1,4 @@ -.TH kdecmake 1 "May 06, 2010" "cmake 2.8.1" +.TH kdecmake 1 "May 08, 2010" "cmake 2.8.1" .SH NAME .PP kdecmake \- Reference of available CMake custom modules. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c6 --- Comment #6 from Andreas Jaeger <aj@novell.com> 2010-05-10 10:07:09 UTC --- Yes, found the kdecmake one - seems the regex is not complete. I'm testing a fix for that one. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c7 --- Comment #7 from Stephan Kulow <coolo@novell.com> 2010-05-10 12:23:18 CEST --- Created an attachment (id=360820) --> (http://bugzilla.novell.com/attachment.cgi?id=360820) little check Just checked the latest "succeeded" packages for their reason to fail and removed obvious cases. There are quite some javadoc and man pages that you should be able to catch ;) -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c Andreas Jaeger <aj@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #360820|application/octet-stream |text/plain mime type| | -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c8 Andreas Jaeger <aj@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #8 from Andreas Jaeger <aj@novell.com> 2010-05-10 10:52:10 UTC --- I improved the javadoc regex now and will test that my man page change (see comment#5) will handle most of the other man-pages as well. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c9 --- Comment #9 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-10 12:08:19 UTC --- (In reply to comment #4)
I'm testing now the following construct: /usr/share/doc/kde/HTML/*/*/index.cache) # various kde packages for f in old/$file new/$file; do sed -i -e 's|<a name="id[0-9]*">|<a name="id424242">|' $f sed -i -e 's|<a href="\(.*\)\.html#id[0-9]*">|<a href="\1#id424242">|' $f done ;;
It should test for both /usr/share/doc/kde/HTML/*/*/index.cache and /usr/share/doc/kde/HTML/*/*/*/index.cache. I don't have an openSUSE at hand right now, but there are two or three packages that use the extra path (konqueror plugins?) and the cmake macro has the option of ONE subdir (so no need for /usr/share/doc/kde/HTML/*/*/*/*/index.cache). About the change itself. It will make build-compare happy, but it will break the references in the help pages, will not? It can work if the modified files are checked, but the original ones installed... it's that the way build-compare works? -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c10 --- Comment #10 from Stephan Kulow <coolo@novell.com> 2010-05-10 14:14:34 CEST --- build-compare only checks the generated rpms, it does not touch them - only extracts them. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c11 --- Comment #11 from Andreas Jaeger <aj@novell.com> 2010-05-10 12:26:08 UTC --- Thanks Cristian, will add the other case as well. As Coolo says: build-compare works on a copy of the generated rpms, so the sed is just for comparison. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c12 --- Comment #12 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-10 19:55:49 UTC --- Ok, I'm stupid :-p Yes, obviously. But I found a problem with the second regular expression. In a line as "<span class="sect2"><a href="introduction.html#id424242">Vigadest teatamine</a></span></dt><dt><span class="sect2"><a href="introduction.html#id424242">Toetus</a></span>" it fails. Since there are two "<a href=" and the regexp selects the longest match only the latest "expected match" is substituted. Digikam triggers the problem. It's ok to change sed -i -e 's|<a href="\(.*\)\.html#id[0-9]*">|<a href="\1#id424242">|' for sed -i -e 's|\.html#id[0-9]*">|.html#id424242">|g' a.log ? -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c13 --- Comment #13 from Andreas Jaeger <aj@novell.com> 2010-05-11 07:39:03 UTC --- Cristian, you're just not used to the magic of build-compare ;) Thanks a lot for your suggestions. You're perfectly right and that change is in my version now. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c14 --- Comment #14 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-11 12:16:15 UTC --- With "your version" you mean the one at "home:a_jaeger:branches:build-compare-test" or "openSUSE:Tools"? Now I don't have osc to do a diff from the previous version, but if my memory doesn't fails you just added the 'g' at the end? To make it clear. The problem is also that in <a href="introduction.html#id111111"><a href="end.html#id222222"> The \(.*\) part of the regexp doesn't matches 'introduction' and 'end' but the whole 'introduction.html#id111111"><a href="end'. So id222222 is changed but id111111 isn't. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c15 --- Comment #15 from Andreas Jaeger <aj@novell.com> 2010-05-11 12:52:38 UTC --- The one in my home project. Yes, will do the change you proposed and I only had half done ;) Thanks! -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c16 Andreas Jaeger <aj@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #16 from Andreas Jaeger <aj@novell.com> 2010-05-12 14:16:25 UTC --- I hope I fixed all cases now. Feel free to send me an email or reopen if you find further ideas. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c17 Stephan Kulow <coolo@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #17 from Stephan Kulow <coolo@novell.com> 2010-05-13 08:12:48 CEST --- kde4-l10n: /usr/share/doc/kde/HTML/nl/kmail/index.cache differs ( HTML document text) --- old//usr/share/doc/kde/HTML/nl/kmail/index.cache 2010-05-12 20:30:13.000000000 +0000 +++ new//usr/share/doc/kde/HTML/nl/kmail/index.cache 2010-05-12 20:30:13.000000000 +0000 - </span></dt><dd><p>Kent gebruikers die geïdentificeerd zijn door <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="guiitem"><span class="guilabel">Gebruikers-id</span></span> leesrechten toe voor deze map. Hiermee kunnen de mailclients e-mails als gelezen markeren en deze informatie opslaan op de server.<sup>[<a name="id2561363" href="#ftn.id2561363">2</a>]</sup> + </span></dt><dd><p>Kent gebruikers die geïdentificeerd zijn door <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="guiitem"><span class="guilabel">Gebruikers-id</span></span> leesrechten toe voor deze map. Hiermee kunnen de mailclients e-mails als gelezen markeren en deze informatie opslaan op de server.<sup>[<a name="id2561328" href="#ftn.id2561328">2</a>]</sup> kdebase4-runtime /usr/share/doc/kde/HTML/en/kcontrol/ebrowsing/index.cache differs ( HTML document text) --- old//usr/share/doc/kde/HTML/en/kcontrol/ebrowsing/index.cache 2010-05-12 18:54:33.000000000 +0000 +++ new//usr/share/doc/kde/HTML/en/kcontrol/ebrowsing/index.cache 2010-05-12 18:54:33.000000000 +0000 @@ -3,7 +3,7 @@ For example, you can click on the <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="guiitem"><span class="guimenuitem">Run</span></span> menu item or type the keyboard shortcut assigned to that command (<span><strong class="keycap">Alt</strong></span>+<span><strong class="keycap">F2</strong></span>, unless you have changed it) and type in a <span class="acronym">URI</span>. -<sup>[<a name="id246356" href="#ftn.id246356">1</a>]</sup></p><p>Web shortcuts, on the other hand, let you come up with new pseudo +<sup>[<a name="id246364" href="#ftn.id246364">1</a>]</sup></p><p>Web shortcuts, on the other hand, let you come up with new pseudo No idea why your fix does not work though -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c18 --- Comment #18 from Stephan Kulow <coolo@novell.com> 2010-05-13 08:17:00 CEST --- btw: the last rebuild was mainly a build-compare rebuild as we only checked in pam - and if you check why kde4-l10n built at all you find other targets :) coolo@desdemona#~>osc tr openSUSE:Factory kde4-l10n standard x86_64 https://api.opensuse.org openSUSE:Factory kde4-l10n standard x86_64 meta change changed keys: added libpulse-mainloop-glib0/libtdb-devel/pam-devel samba puts %release in the vendor tag and pulseaudio has some timestamp in the documentation. JFYI -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c19 Andreas Jaeger <aj@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEEDINFO InfoProvider| |lmuelle@novell.com --- Comment #19 from Andreas Jaeger <aj@novell.com> 2010-05-13 07:30:06 UTC --- Lars, could you remove %release from the vendor tag, please? See also http://lizards.opensuse.org/2009/07/14/reducing-size-of-factory-updates/ -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c20 --- Comment #20 from Andreas Jaeger <aj@novell.com> 2010-05-14 20:12:42 UTC --- pulseaudio should be fixed with the latest build-compare checkin. kdebase4-runtime and kdegames4 does not compare equal now with the KDE version string in KDE as pointed out in: http://lists.opensuse.org/opensuse-kde/2010-04/msg00149.html Who could change that one? -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c21 --- Comment #21 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-15 00:30:25 UTC --- It will still fail in your home repo, but I "fixed" the KDE version string problem with if [ '%{_project}' != KDE:KDE4:Factory:Desktop -a \ '%{_project}' != KDE:KDE4:UNSTABLE:Desktop -a \ '%{_project}' != KDE:KDE4:STABLE:Desktop -a \ '%{_project}' != openSUSE:Factory ] ; then sed -ri "s,#cmakedefine KDE_VERSION_STRING \"@KDE_VERSION_STRING@\",#cmakedefine KDE_VERSION_STRING \"@KDE_VERSION_STRING@ \\\\\"release $(echo %release | cut -d. -f-1)\\\\\"\"," kdecore/util/kdeversion.h.cmake fi Isn't pretty, but... -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c22 --- Comment #22 from Andreas Jaeger <aj@novell.com> 2010-05-15 20:28:53 UTC --- Cristian, I missed that fix. Ok, will enhance it for my test repo. Couldn't we do this as a whitelist that only does the change for maintenance? -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c23 --- Comment #23 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-15 20:50:16 UTC --- That was my first idea. But I don't know of a good way to check that. If _project is "openSUSE:[0-9]+\.[0-9].*" or "SUSE:SLE.*"? Seems fragile. Also is my fix, but I considered less important if build-compare broke. A "maintenance" flag would be nice. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c24 Lars Müller <lmuelle@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- InfoProvider|lmuelle@novell.com |aj@novell.com --- Comment #24 from Lars Müller <lmuelle@novell.com> 2010-05-17 19:04:48 UTC --- As we like to keep as much information as possible to identify a particular build from log files and other output we're looking for a way to identify from inside the spec file if the current build is for openSUSE Factory. I've checked /usr/lib/rpm/suse_macros on a current Factory system and haven't found a way to identify Factory. @Andreas: Please pass the needinfo to anyone else if you're not the right person. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c25 Lars Müller <lmuelle@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- InfoProvider|aj@novell.com |lmuelle@novell.com --- Comment #25 from Lars Müller <lmuelle@novell.com> 2010-05-17 19:54:49 UTC --- "'%{_project}' != openSUSE:Factory" as used in kdelibs4.spec of Factory will do it. Thanks Marcus! We'll implement this asap. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c26 Marcus Meissner <meissner@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |meissner@novell.com --- Comment #26 from Marcus Meissner <meissner@novell.com> 2010-05-17 20:01:14 UTC --- actually coolos tip ;) and build-compare really only triggers if the binary set is identical, so the build really hasnt changed in that case. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c Andreas Jaeger <aj@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|kde-maintainers@suse.de |aj@novell.com -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c27 Lars Müller <lmuelle@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |REOPENED InfoProvider|lmuelle@novell.com | --- Comment #27 from Lars Müller <lmuelle@novell.com> 2010-05-18 10:32:44 UTC --- Required changes merged with subversion revision 2360 and pushed to network:samba:STABLE and TESTING. Submit request ID to openSUSE Factory is 40245. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c28 Andreas Jaeger <aj@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #28 from Andreas Jaeger <aj@novell.com> 2010-05-18 12:31:03 UTC --- Thanks, Lars! Hope everything works fine now. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c29 --- Comment #29 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-19 18:10:14 UTC ---
From the last build:
- python-kde4 compare /.build.oldpackages/python-kde4-debugsource-4.4.3-144.1.x86_64.rpm /usr/src/packages/RPMS/x86_64/python-kde4-debugsource-4.4.3-144.2.x86_64.rpm /usr/src/debug/kdebindings-4.4.3/build/python/pykde4/sip/ktexteditor/sipktexteditorpart3.cpp differs ( ASCII C program text) --- old//usr/src/debug/kdebindings-4.4.3/build/python/pykde4/sip/ktexteditor/sipktexteditorpart3.cpp 2010-05-18 00:48:01.000000000 +0000 +++ new//usr/src/debug/kdebindings-4.4.3/build/python/pykde4/sip/ktexteditor/sipktexteditorpart3.cpp 2010-05-19 13:29:14.000000000 +0000 @@ -1,7 +1,7 @@ /* * Module code. * - * Generated by SIP 4.10.1 on Tue May 18 00:48:01 2010 + * Generated by SIP 4.10.1 on Wed May 19 13:29:14 2010 * * * This file is part of PyKDE4. - kdemultimedia4 Seems to use __DATE__ somewhere - kdeartwork4 "compare validated built as identical !" but still the new packages are published ¿? - kdesdk4 compare /.build.oldpackages/kde4-kapptemplate-4.4.3-117.1.x86_64.rpm /usr/src/packages/RPMS/x86_64/kde4-kapptemplate-4.4.3-117.2.x86_64.rpm tar: Record size = 8 blocks objdump: old//usr/share/kde4/apps/kdevappwizard/templates/./Messages.sh: File format not recognized objdump: new//usr/share/kde4/apps/kdevappwizard/templates/./Messages.sh: File format not recognized objdump: old//usr/share/kde4/apps/kdevappwizard/templates/./Messages.sh: File format not recognized objdump: new//usr/share/kde4/apps/kdevappwizard/templates/./Messages.sh: File format not recognized WARNING: no idea about /usr/share/kde4/apps/kdevappwizard/templates/./Messages.sh No idea of where this /usr/share/kde4/apps/kdevappwizard/templates/Messagessh file comes from (kde4-kapptemplate-4.4.3-117.2.x86_64 does NOT contain it). But seems a problem in "file". -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c30 --- Comment #30 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-19 19:55:49 UTC --- kdemultimedia4 -> SR#40392 python-sip -> SR#40393 Ideas about the other two are welcome. I can't help with them. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c31 --- Comment #31 from Andreas Jaeger <aj@novell.com> 2010-05-20 10:48:07 UTC --- Messages.sh might come from one of the tar.bz2 files in the rpm, e.g.: /usr/share/kde4/apps/kdevappwizard/templates/kofficetext.tar.bz2 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c32 --- Comment #32 from Cristian Morales Vega <cmorve69@yahoo.es> 2010-05-20 17:49:28 UTC --- kdeartwork4 was published because it was a release number resync build, no problem. And yes, Messages.sh comes from four .tar.bz2 files. Every file for which "file"/libmagic returns "*executable*|*LSB\ shared\ object*" is handled with objdump. And the first glob includes "a bash script text executable". Can *executable* be changed for *LSB executable* or there are ELF files that aren't LSB? Perhaps the word that we should be searching for is "ELF" instead of "executable" or "shared object"? It would be better "*ELF*executable*|*ELF*LSB\ shared\ object*" or just "*ELF*"? -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c33 --- Comment #33 from Andreas Jaeger <aj@novell.com> 2010-05-25 07:33:23 UTC --- Thanks Cristian for your patch! -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=604049 http://bugzilla.novell.com/show_bug.cgi?id=604049#c34 --- Comment #34 from Bernhard Wiedemann <bwiedemann@suse.com> --- This is an autogenerated message for OBS integration: This bug (604049) was mentioned in https://build.opensuse.org/request/show/39730 Tools / build-compare https://build.opensuse.org/request/show/40245 Factory / samba https://build.opensuse.org/request/show/40612 Tools / build-compare https://build.opensuse.org/request/show/40613 Factory / build-compare -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com