--- a/etc/apache2/conf.d/jpoker Sat Aug 16 01:35:15 2008 +0000 +++ b/etc/apache2/conf.d/jpoker Sat Aug 16 03:33:09 2008 +0000 @@ -1,4 +1,4 @@ -<Location /REST> +<Location /POKER_REST> # # The poker server does not honor KeepAlive and the # proxy must be set accordingly, otherwise it will
--- a/etc/apache2/sites-available/jpoker.dpkg-dist Sat Aug 16 01:35:15 2008 +0000 +++ b/etc/apache2/sites-available/jpoker.dpkg-dist Sat Aug 16 03:33:09 2008 +0000 @@ -4,8 +4,6 @@ Order deny,allow Allow from all </Proxy> -ProxyPass /REST http://pokersource.eu/REST -ProxyPassReverse /REST http://pokersource.eu/REST ProxyPass /POKER_REST http://pokersource.eu/POKER_REST ProxyPassReverse /POKER_REST http://pokersource.eu/POKER_REST ProxyPass /AVATAR http://pokersource.eu/AVATAR
--- a/home/www/ideas.html Sat Aug 16 01:35:15 2008 +0000 +++ b/home/www/ideas.html Sat Aug 16 03:33:09 2008 +0000 @@ -522,7 +522,7 @@ ---- such a user exists but he currently has no dedicated possibilities (such as kicking a user out of the table)</pre> </div> -<div title="Another user is in PLAY state" modifier="loic" modified="200808160029" created="200807300652" tags="toRSS Bugs" changecount="2"> +<div title="Another user is in PLAY state" modifier="loic" modified="200808160312" created="200807300652" tags="toRSS Done" changecount="3"> <pre>I receive this strange error many times when registering: "Another user is in PLAY state". No one was playing on the table at that point. Even if they did, it should not stop me from registering. </pre> </div>
--- a/root/.bash_history Sat Aug 16 01:35:15 2008 +0000 +++ b/root/.bash_history Sat Aug 16 03:33:09 2008 +0000 @@ -1875,3 +1875,9 @@ apt-get install python-poker-network apt-get install --reinstall python-poker-network ps -fA | grep twist +fg +fg +fg +/etc/init.d/apache2 restart +/etc/init.d/python-poker-network restart +/etc/init.d/apache2 restart
--- a/usr/share/doc/jpoker/README.Debian Sat Aug 16 01:35:15 2008 +0000 +++ b/usr/share/doc/jpoker/README.Debian Sat Aug 16 03:33:09 2008 +0000 @@ -3,7 +3,7 @@ Jpoker requires access to a poker server in order to work. The poker server is provided by the python-poker-network package. By default the -URL points to http://pokersource.eu/REST, it can be changed +URL points to http://pokersource.eu/POKER_REST, it can be changed in /etc/jpoker.conf. On first installation the jpoker software is autmatically enabled using @@ -14,5 +14,5 @@ If you want to disable it you can run a2dissite jpoker - -- Loic Dachary (OuoU) <loic@debian.org>, Wed, 28 May 2008 14:48:10 +0200 + -- Loic Dachary (OuoU) <loic@debian.org>, Sat, 16 Aug 2008 03:26:30 +0200 -- Ola Lundqvist <opal@debian.org>, Mon, 28 Jan 2008 20:08:06 +0100
--- a/usr/share/jpoker/js/jquery.jpoker.js Sat Aug 16 01:35:15 2008 +0000 +++ b/usr/share/jpoker/js/jquery.jpoker.js Sat Aug 16 03:33:09 2008 +0000 @@ -528,8 +528,6 @@ blocked: false, - session: 'session=clear', - lag: 0, high: ['PacketPokerChat', 'PacketPokerMessage', 'PacketPokerGameMessage'], @@ -542,6 +540,7 @@ jpoker.watchable.prototype.init.call(this); this.queues = {}; this.delays = {}; + this.session = 'name=' + jpoker.url2hash(this.url); this.reset(); }, @@ -559,20 +558,6 @@ return this.cookie().indexOf(this.sessionName()) >= 0; }, - clearSession: function() { - this.session = 'session=clear&name=' + jpoker.url2hash(this.url); - }, - - setSession: function() { - this.session = 'session=yes&name=' + jpoker.url2hash(this.url); - }, - - ensureSession: function() { - if(this.session.indexOf('session=clear') === 0) { - this.setSession(); - } - }, - reset: function() { this.clearTimeout(this.pingTimer); this.pingTimer = -1; @@ -584,7 +569,6 @@ this.queues = {}; this.delays = {}; this.connectionState = 'disconnected'; - this.clearSession(); }, error: function(reason) { @@ -958,7 +942,6 @@ reconnect: function() { this.setState(this.RECONNECT); - this.setSession(); // // the answer to PacketPokerGetPlayerInfo gives back the serial, if and // only if the session is still valid. Otherwise it returns an error @@ -971,7 +954,6 @@ server.rejoin(); return false; } else if(packet.type == 'PacketError') { - server.clearSession(); if(packet.other_type != jpoker.packetName2Type.POKER_GET_PLAYER_INFO) { jpoker.error('unexpected error while reconnecting ' + JSON.stringify(packet)); } @@ -1092,7 +1074,6 @@ throw _("{url} attempt to login {name} although serial is {serial} instead of 0").supplant({ 'url': this.url, 'name': name, 'serial': this.serial}); } this.setState(this.LOGIN); - this.ensureSession(); this.userInfo.name = name; this.sendPacket({ type: 'PacketLogin', @@ -1143,7 +1124,6 @@ this.userInfo = {}; var packet = { type: 'PacketLogout' }; this.sendPacket(packet); - this.clearSession(); // // LOGOUT IMPLIES ALL TABLES ARE DESTROYED INSTEAD // @@ -1184,7 +1164,6 @@ tableJoin: function(game_id) { this.queueRunning(function(server) { server.setState(server.TABLE_JOIN); - server.ensureSession(); server.sendPacket({ 'type': 'PacketPokerTableJoin', 'game_id': game_id }); server.ping();
--- a/usr/share/jpoker/js/test-jpoker.js Sat Aug 16 01:35:15 2008 +0000 +++ b/usr/share/jpoker/js/test-jpoker.js Sat Aug 16 03:33:09 2008 +0000 @@ -95,9 +95,6 @@ jpoker.verbose = 1; // activate the code parts that depends on verbosity jpoker.sound = 'span'; // using embed for test purposes triggers too many problems -jpoker.server.prototype.sessionName = function() { - return 'NO SESSION'; -}; // // jpoker @@ -481,7 +478,7 @@ }); test("jpoker.server.reconnect failure", function(){ - expect(3); + expect(2); stop(); var PokerServer = function() {}; @@ -501,7 +498,6 @@ equals(server.state, expected); if(expected == server.RECONNECT) { expected = server.RUNNING; - equals(server.session.indexOf('clear') >= 0, true, 'session is not set'); start_and_cleanup(); } } @@ -586,7 +582,7 @@ }); test("jpoker.server.rejoin", function(){ - expect(5); + expect(4); stop(); var server = jpoker.serverCreate({ url: 'url' }); @@ -628,7 +624,6 @@ if(expected == server.MY) { expected = server.RUNNING; } else if(expected == server.RUNNING) { - equals(server.session.indexOf('clear') >= 0, true, 'session is not set'); start_and_cleanup(); } } @@ -677,7 +672,7 @@ }); test("jpoker.server.login", function(){ - expect(12); + expect(9); stop(); var server = jpoker.serverCreate({ url: 'url' }); @@ -688,7 +683,7 @@ var PokerServer = function() {}; PokerServer.prototype = { - outgoing: '[{"type": "PacketAuthOk"}, {"type": "PacketPokerRoles"}, {"type": "PacketSerial", "serial": 1}]', + outgoing: '[{"type": "PacketAuthOk"}, {"type": "PacketSerial", "serial": 1}]', handle: function(packet) { packets.push(packet); } }; @@ -696,14 +691,11 @@ ActiveXObject.prototype.server = new PokerServer(); var logname = "name"; - equals(server.session.indexOf('session=clear'), 0, "does not have session"); server.login(logname, "password"); server.registerUpdate(function(server, what, packet) { switch(packet.type) { case "PacketSerial": - equals(packets[0].indexOf('PacketPokerExplain') >= 0, true, 'Explain'); - equals(packets[1].indexOf('PacketPokerSetRole') >= 0, true, 'SetRole'); - equals(packets[2].indexOf('PacketLogin') >= 0, true, 'Login'); + equals(packets[0].indexOf('PacketLogin') >= 0, true, 'Login'); equals(server.loggedIn(), true, "loggedIn"); equals(server.userInfo.name, logname, "logname"); equals(server.pinging(), true, "pinging"); @@ -769,58 +761,6 @@ jpoker.dialog = function(message) { equals(message.indexOf("already logged") >= 0, true, "already logged"); jpoker.dialog = dialog; - start_and_cleanup(); - }; - server.login("name", "password"); - }); - -test("jpoker.server.login: POKER_SET_ROLE error", function(){ - expect(1); - stop(); - - var server = jpoker.serverCreate({ url: 'url' }); - - var PokerServer = function() {}; - - var refused = "not good"; - PokerServer.prototype = { - outgoing: '[{"type": "PacketError", "other_type": ' + jpoker.packetName2Type.POKER_SET_ROLE + ' ,"message": "poker set role error"}]', - - handle: function(packet) { } - }; - - ActiveXObject.prototype.server = new PokerServer(); - - dialog = jpoker.dialog; - jpoker.dialog = function(message) { - equals(message.indexOf("poker set role error") >= 0, true, "poker set role error"); - jpoker.dialog = dialog; - start_and_cleanup(); - }; - server.login("name", "password"); - }); - -test("jpoker.server.login: PacketSerial error", function(){ - expect(1); - stop(); - - var server = jpoker.serverCreate({ url: 'url' }); - - var PokerServer = function() {}; - - var refused = "not good"; - PokerServer.prototype = { - outgoing: '[{"type": "PacketSerial"}]', - - handle: function(packet) { } - }; - - ActiveXObject.prototype.server = new PokerServer(); - - error = jpoker.dialog; - jpoker.error = function(reason) { - equals(reason.indexOf("expected PacketPokerRoles before") >= 0, true, "expected PacketPokerRoles before"); - jpoker.error = error; start_and_cleanup(); }; server.login("name", "password"); @@ -858,7 +798,7 @@ }); test("jpoker.server.logout", function(){ - expect(5); + expect(4); stop(); var server = jpoker.serverCreate({ url: 'url' }); @@ -871,7 +811,6 @@ equals(server.loggedIn(), false); equals(server.userInfo.name, null, "logname"); equals(packet.type, "PacketLogout"); - equals(server.session.indexOf('session=clear'), 0, "does not have session"); start_and_cleanup(); }); server.logout(); @@ -4339,11 +4278,6 @@ cleanup(); }); -test("jpoker coverage left overs", function() { - expect(1); - equals('TWISTED_SESSION', jpoker.connection.prototype.sessionName(), 'sessionName coverage'); - }); - test("profileEnd", function(){ try { console.profileEnd();
Binary file usr/src/upstream/jpoker_1.0.14-1.diff.gz has changed
--- a/usr/src/upstream/jpoker_1.0.14-1.dsc Sat Aug 16 01:35:15 2008 +0000 +++ b/usr/src/upstream/jpoker_1.0.14-1.dsc Sat Aug 16 03:33:09 2008 +0000 @@ -8,11 +8,11 @@ Standards-Version: 3.7.3 Build-Depends: debhelper (>= 5), cdbs, gettext, python, python-simplejson, python-libxml2, tidy, ruby, rubygems | rubygems1.8, wget, inkscape Checksums-Sha1: - c201c3fbb581bbeb00fbcf908241e3e69d04e139 5240556 jpoker_1.0.14.orig.tar.gz - 2a08b75643b8c66246d3693466e5aab6d17ff4fe 4827 jpoker_1.0.14-1.diff.gz + 11249cfbc46e0974ca7c2995484ec2547dd2c329 5239920 jpoker_1.0.14.orig.tar.gz + d381eb750af36baf60e47ac6b03cf9086d48e29c 4820 jpoker_1.0.14-1.diff.gz Checksums-Sha256: - d2cb968144362e43205773f99c1fe8b5bdb1459a1b24318c76b2fc950086f87d 5240556 jpoker_1.0.14.orig.tar.gz - bf21ad0c2f52fbc519839bfbfe438ec4be4cbcedb0edbd06297a8e1aba556d31 4827 jpoker_1.0.14-1.diff.gz + 8a1594eb4f28aaf30483f3aa5556d7f55bb893f25292ed32a06250b835577400 5239920 jpoker_1.0.14.orig.tar.gz + 3e702bc84ee34cc2e45780c46c2e907e294cc6a0f556c9a74751e93c527ce159 4820 jpoker_1.0.14-1.diff.gz Files: - 270c52914a17e219b5b49e706e40be2d 5240556 jpoker_1.0.14.orig.tar.gz - 38ddf4988943096394100a122c555af3 4827 jpoker_1.0.14-1.diff.gz + 4449243319579ee80d0e9962f75323de 5239920 jpoker_1.0.14.orig.tar.gz + 8fb20f9bd43ad7f5c9687e4412cb0350 4820 jpoker_1.0.14-1.diff.gz
Binary file usr/src/upstream/jpoker_1.0.14-1_all.deb has changed
--- a/usr/src/upstream/jpoker_1.0.14-1_i386.build Sat Aug 16 01:35:15 2008 +0000 +++ b/usr/src/upstream/jpoker_1.0.14-1_i386.build Sat Aug 16 03:33:09 2008 +0000 @@ -43,79 +43,79 @@ mkdir -p `dirname jpoker/css/images/jpoker_table/avatar.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/avatar.png jpoker/images/avatar.svg -(inkscape:2207): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14111): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2207): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14111): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:90:64 exported to 90 x 64 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/avatar.png mkdir -p `dirname jpoker/css/images/jpoker_table/background.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/background.png jpoker/images/background.svg -(inkscape:2211): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14115): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2211): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14115): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:800:600 exported to 800 x 600 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/background.png mkdir -p `dirname jpoker/css/images/jpoker_table/bet.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/bet.png jpoker/images/bet.svg -(inkscape:2215): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14119): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2215): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14119): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:48:48 exported to 48 x 48 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/bet.png mkdir -p `dirname jpoker/css/images/jpoker_table/dealer.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/dealer.png jpoker/images/dealer.svg -(inkscape:2219): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14123): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2219): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14123): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:31.547:31.547 exported to 32 x 32 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/dealer.png mkdir -p `dirname jpoker/css/images/jpoker_table/pot.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/pot.png jpoker/images/pot.svg -(inkscape:2223): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14127): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2223): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14127): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:48:48 exported to 48 x 48 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/pot.png mkdir -p `dirname jpoker/css/images/jpoker_table/seat.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/seat.png jpoker/images/seat.svg -(inkscape:2227): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14131): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2227): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14131): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:102:101 exported to 102 x 101 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/seat.png mkdir -p `dirname jpoker/css/images/jpoker_table/table.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/table.png jpoker/images/table.svg -(inkscape:2231): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14135): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2231): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14135): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:588.414:295.672 exported to 588 x 296 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/table.png inkscape --without-gui --vacuum-defs --export-plain-svg=jpoker/images/mockup_plain.svg jpoker/images/mockup.svg -(inkscape:2232): Gtk-WARNING **: Locale not supported by C library. +(inkscape:14136): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:2232): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:14136): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed perl -pi -e 's/xmlns="http:\/\/www.w3.org\/2000\/svg"//' jpoker/images/mockup_plain.svg perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: @@ -154,10 +154,10 @@ rm -fr tests ; jscoverage jpoker tests cd tests ; x-www-browser jscoverage.html?test-jpoker.html # replace with jaxer when http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474050 closed -(firefox-bin:2254): Gtk-WARNING **: Locale not supported by C library. +(firefox-bin:14156): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(firefox-bin:2254): Gtk-WARNING **: cannot open display: +(firefox-bin:14156): Gtk-WARNING **: cannot open display: make[1]: [check] Error 1 (ignored) cd jpoker ; x-www-browser index.html || true perl: warning: Setting locale failed. @@ -168,10 +168,10 @@ are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). -(firefox-bin:2261): Gtk-WARNING **: Locale not supported by C library. +(firefox-bin:14163): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(firefox-bin:2261): Gtk-WARNING **: cannot open display: +(firefox-bin:14163): Gtk-WARNING **: cannot open display: make[1]: Leaving directory `/usr/src/upstream/upstream' touch debian/stamp-makefile-build DEB_MAKE_CHECK_TARGET unset, not running checks
--- a/usr/src/upstream/jpoker_1.0.14-1_i386.changes Sat Aug 16 01:35:15 2008 +0000 +++ b/usr/src/upstream/jpoker_1.0.14-1_i386.changes Sat Aug 16 03:33:09 2008 +0000 @@ -15,17 +15,17 @@ . * New upstream version. Checksums-Sha1: - 2b24c01c8929d9284d187a4a1722d2923d7765fc 904 jpoker_1.0.14-1.dsc - c201c3fbb581bbeb00fbcf908241e3e69d04e139 5240556 jpoker_1.0.14.orig.tar.gz - 2a08b75643b8c66246d3693466e5aab6d17ff4fe 4827 jpoker_1.0.14-1.diff.gz - b9c219e5e1b99759eb28d7fac069689028d2c741 1081464 jpoker_1.0.14-1_all.deb + 0e7b4dd970185357c36ea022f231c2f350cfb63d 904 jpoker_1.0.14-1.dsc + 11249cfbc46e0974ca7c2995484ec2547dd2c329 5239920 jpoker_1.0.14.orig.tar.gz + d381eb750af36baf60e47ac6b03cf9086d48e29c 4820 jpoker_1.0.14-1.diff.gz + df70510162dd32a82c6fcce8023072611323b908 1081042 jpoker_1.0.14-1_all.deb Checksums-Sha256: - 22f3de2467d5745ffcd6384c493e188099c29fd5d4a059f53a2faa6c4a78e368 904 jpoker_1.0.14-1.dsc - d2cb968144362e43205773f99c1fe8b5bdb1459a1b24318c76b2fc950086f87d 5240556 jpoker_1.0.14.orig.tar.gz - bf21ad0c2f52fbc519839bfbfe438ec4be4cbcedb0edbd06297a8e1aba556d31 4827 jpoker_1.0.14-1.diff.gz - 3f4791c54d1103f6d91036dcecd8bd0e04a9d234594938a8480736f0272b26da 1081464 jpoker_1.0.14-1_all.deb + ecbf7bb49550a9082816f576bc1d61bfd572f9d6811882d7976676f211739e48 904 jpoker_1.0.14-1.dsc + 8a1594eb4f28aaf30483f3aa5556d7f55bb893f25292ed32a06250b835577400 5239920 jpoker_1.0.14.orig.tar.gz + 3e702bc84ee34cc2e45780c46c2e907e294cc6a0f556c9a74751e93c527ce159 4820 jpoker_1.0.14-1.diff.gz + 65820e5b89c184926624e550ed450ce188743ec17d27514b331f1b4e2f3a8485 1081042 jpoker_1.0.14-1_all.deb Files: - 29a359468afa94610d1912888a0ba0c6 904 web optional jpoker_1.0.14-1.dsc - 270c52914a17e219b5b49e706e40be2d 5240556 web optional jpoker_1.0.14.orig.tar.gz - 38ddf4988943096394100a122c555af3 4827 web optional jpoker_1.0.14-1.diff.gz - bed3daae369368ec38a93bb0721c636e 1081464 web optional jpoker_1.0.14-1_all.deb + 3fc308a028863fa07b7070de89879246 904 web optional jpoker_1.0.14-1.dsc + 4449243319579ee80d0e9962f75323de 5239920 web optional jpoker_1.0.14.orig.tar.gz + 8fb20f9bd43ad7f5c9687e4412cb0350 4820 web optional jpoker_1.0.14-1.diff.gz + 5e0b3aed3c008d887bcb08c77072eb88 1081042 web optional jpoker_1.0.14-1_all.deb
Binary file usr/src/upstream/jpoker_1.0.14.orig.tar.gz has changed
--- a/var/lib/dpkg/available Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/dpkg/available Sat Aug 16 03:33:09 2008 +0000 @@ -4423,13 +4423,13 @@ Package: jpoker Priority: optional Section: web -Installed-Size: 3808 +Installed-Size: 3804 Maintainer: Johan Euphrosine (proppy) <proppy@aminche.com> Architecture: all Version: 1.0.14-1 Depends: apache2 Suggests: python-poker-network -Size: 1081464 +Size: 1081042 Description: javascript online poker client http://jspoker.pokersource.info/jpoker/ is a javascript client for playing online poker. It displays the list of poker tables and when
--- a/var/lib/dpkg/available-old Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/dpkg/available-old Sat Aug 16 03:33:09 2008 +0000 @@ -4429,7 +4429,7 @@ Version: 1.0.14-1 Depends: apache2 Suggests: python-poker-network -Size: 1081602 +Size: 1081464 Description: javascript online poker client http://jspoker.pokersource.info/jpoker/ is a javascript client for playing online poker. It displays the list of poker tables and when
--- a/var/lib/dpkg/info/jpoker.md5sums Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/dpkg/info/jpoker.md5sums Sat Aug 16 03:33:09 2008 +0000 @@ -3,7 +3,7 @@ 24df57200d043d2ce0d26ee0ed1f30e4 usr/share/doc/jpoker/changelog.gz 9dece3488df41f23e26dc8892b695288 usr/share/doc/jpoker/copyright 735f92b9955bb5902704fc1bd3652f01 usr/share/doc/jpoker/changelog.Debian.gz -ec116fbc4f862624919d6d404cd6e6e6 usr/share/doc/jpoker/README.Debian +0e8864c796cb7d5c0055ef25822671f9 usr/share/doc/jpoker/README.Debian 01edee8d21749f687e39e0a85b1785e4 usr/share/jpoker/README 4112f8bc1af9a44e8b9193aa8ada6323 usr/share/jpoker/css/jpoker_server_status.css b7bbde1ea05325cfe84f7ebd79e8e428 usr/share/jpoker/css/jpoker_regular_tourney_list.css @@ -159,13 +159,13 @@ 929e4ae7a43e9e0e37774d9ad3636a41 usr/share/jpoker/js/jquery.ajaxQueue.js 2b6fcfab656b43eebb29a3ef3542a2c0 usr/share/jpoker/js/env.js 8542b5b0741709563c73c2599c8213f2 usr/share/jpoker/js/json2.js -857a32ca69cd4d1e0b03d6de5682eca1 usr/share/jpoker/js/jquery.jpoker.js +97e1d1b7b143c7f14aabb4e8c3750999 usr/share/jpoker/js/jquery.jpoker.js 09945ff179bd1d15d084fec48e485d4d usr/share/jpoker/js/deferred.js 7c97c94e11b90d41b010385f5287df34 usr/share/jpoker/js/jquery.form.js 384772142d1907d7d3aea3ac11fad9d0 usr/share/jpoker/js/jquery.cookie.js f04415617f1d5afae91c4d9f63084a92 usr/share/jpoker/js/jquery.gettext.js 0619c7a937a919c50886e55d5d3bcec0 usr/share/jpoker/js/testrunner.js -172af3d83597c1837653d82476866be1 usr/share/jpoker/js/test-jpoker.js +92e847625747555b3229a19f73b18277 usr/share/jpoker/js/test-jpoker.js 7840bef2d65c0df820b094ad8cf0096c usr/share/jpoker/js/jquery.tablesorter.js e8716421dd239b1b4a4cfaf67bc533c6 usr/share/jpoker/js/testrunner.css d30e2952392e6da9cafe90c3700332f0 usr/share/jpoker/index.html
--- a/var/lib/dpkg/status Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/dpkg/status Sat Aug 16 03:33:09 2008 +0000 @@ -4663,15 +4663,15 @@ Status: install ok installed Priority: optional Section: web -Installed-Size: 3808 +Installed-Size: 3804 Maintainer: Johan Euphrosine (proppy) <proppy@aminche.com> Architecture: all Version: 1.0.14-1 Depends: apache2 Suggests: python-poker-network Conffiles: - /etc/apache2/conf.d/jpoker 2a0a28154802d2a854e8b7265bcb0517 - /etc/apache2/sites-available/jpoker 8d62b48391c87d14fc02d9f25fa2564d + /etc/apache2/conf.d/jpoker 72671ed383ff74b82c4a5394e349ccbf + /etc/apache2/sites-available/jpoker 5ee09a018cf9aef3430650b5c574a629 Description: javascript online poker client http://jspoker.pokersource.info/jpoker/ is a javascript client for playing online poker. It displays the list of poker tables and when
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/Packages.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/Sources.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/jpoker_1.0.14-1.diff.gz has changed
--- a/var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/jpoker_1.0.14-1.dsc Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/jpoker_1.0.14-1.dsc Sat Aug 16 03:33:09 2008 +0000 @@ -8,11 +8,11 @@ Standards-Version: 3.7.3 Build-Depends: debhelper (>= 5), cdbs, gettext, python, python-simplejson, python-libxml2, tidy, ruby, rubygems | rubygems1.8, wget, inkscape Checksums-Sha1: - d5ab8ebe03f981d472292fcab0d04cc534cd7507 15110558 jpoker_1.0.14.orig.tar.gz - 81e3234feffbeeff03b004e7e13d74a98b53eb59 4656 jpoker_1.0.14-1.diff.gz + 511d46275512b5507daae720ff4f3a6c34469ce4 15110397 jpoker_1.0.14.orig.tar.gz + ff06347337cc1825ae5a9992af8c596d63b75394 4648 jpoker_1.0.14-1.diff.gz Checksums-Sha256: - 1f9a65c7a8a2c299176d76d20daeb11738b54b7086526e94391f46d9886e2945 15110558 jpoker_1.0.14.orig.tar.gz - 1944d308597d23ccc9de1090c7f4546d92664639bc9d4aaafd35c161d492de0a 4656 jpoker_1.0.14-1.diff.gz + aea3ada889ca72977c2bf9d12ad4c455413b66a799fcc333b6d7955fc0159cc9 15110397 jpoker_1.0.14.orig.tar.gz + 97323c2f26b23988638d13def59162144bfb282ed185026beecb1e45c685aaf6 4648 jpoker_1.0.14-1.diff.gz Files: - 2fa84067430935cbca991e4a80d93854 15110558 jpoker_1.0.14.orig.tar.gz - e6818d20bf562f515b6684373a9cf864 4656 jpoker_1.0.14-1.diff.gz + 57611de8c8f6e65dad9ce747a54e76c5 15110397 jpoker_1.0.14.orig.tar.gz + c979adf542fa024fc1ae63b3c9969a6d 4648 jpoker_1.0.14-1.diff.gz
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/jpoker_1.0.14-1_all.deb has changed
--- a/var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/jpoker_1.0.14-1_i386.changes Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/jpoker_1.0.14-1_i386.changes Sat Aug 16 03:33:09 2008 +0000 @@ -15,7 +15,7 @@ . * New upstream version. Files: - eea5ae7639cdd23631dd74fa1aceb158 907 web optional jpoker_1.0.14-1.dsc - 2fa84067430935cbca991e4a80d93854 15110558 web optional jpoker_1.0.14.orig.tar.gz - e6818d20bf562f515b6684373a9cf864 4656 web optional jpoker_1.0.14-1.diff.gz - 13caf3dbc3cebeda6ac310afb8765abd 1081476 web optional jpoker_1.0.14-1_all.deb + 832505f7a32fa8916dd784a345b655aa 907 web optional jpoker_1.0.14-1.dsc + 57611de8c8f6e65dad9ce747a54e76c5 15110397 web optional jpoker_1.0.14.orig.tar.gz + c979adf542fa024fc1ae63b3c9969a6d 4648 web optional jpoker_1.0.14-1.diff.gz + 740e6a0461291bf2743566e8506ee5c5 1081060 web optional jpoker_1.0.14-1_all.deb
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/etch/src/jpoker_1.0.14.orig.tar.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/Packages.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/Sources.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/jpoker_1.0.14-1.diff.gz has changed
--- a/var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/jpoker_1.0.14-1.dsc Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/jpoker_1.0.14-1.dsc Sat Aug 16 03:33:09 2008 +0000 @@ -8,11 +8,11 @@ Standards-Version: 3.7.3 Build-Depends: debhelper (>= 5), cdbs, gettext, python, python-simplejson, python-libxml2, tidy, ruby, rubygems | rubygems1.8, wget, inkscape Checksums-Sha1: - d5ab8ebe03f981d472292fcab0d04cc534cd7507 15110558 jpoker_1.0.14.orig.tar.gz - 81e3234feffbeeff03b004e7e13d74a98b53eb59 4656 jpoker_1.0.14-1.diff.gz + 511d46275512b5507daae720ff4f3a6c34469ce4 15110397 jpoker_1.0.14.orig.tar.gz + ff06347337cc1825ae5a9992af8c596d63b75394 4648 jpoker_1.0.14-1.diff.gz Checksums-Sha256: - 1f9a65c7a8a2c299176d76d20daeb11738b54b7086526e94391f46d9886e2945 15110558 jpoker_1.0.14.orig.tar.gz - 1944d308597d23ccc9de1090c7f4546d92664639bc9d4aaafd35c161d492de0a 4656 jpoker_1.0.14-1.diff.gz + aea3ada889ca72977c2bf9d12ad4c455413b66a799fcc333b6d7955fc0159cc9 15110397 jpoker_1.0.14.orig.tar.gz + 97323c2f26b23988638d13def59162144bfb282ed185026beecb1e45c685aaf6 4648 jpoker_1.0.14-1.diff.gz Files: - 2fa84067430935cbca991e4a80d93854 15110558 jpoker_1.0.14.orig.tar.gz - e6818d20bf562f515b6684373a9cf864 4656 jpoker_1.0.14-1.diff.gz + 57611de8c8f6e65dad9ce747a54e76c5 15110397 jpoker_1.0.14.orig.tar.gz + c979adf542fa024fc1ae63b3c9969a6d 4648 jpoker_1.0.14-1.diff.gz
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/jpoker_1.0.14-1_all.deb has changed
--- a/var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/jpoker_1.0.14-1_i386.changes Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/jpoker_1.0.14-1_i386.changes Sat Aug 16 03:33:09 2008 +0000 @@ -15,7 +15,7 @@ . * New upstream version. Files: - eea5ae7639cdd23631dd74fa1aceb158 907 web optional jpoker_1.0.14-1.dsc - 2fa84067430935cbca991e4a80d93854 15110558 web optional jpoker_1.0.14.orig.tar.gz - e6818d20bf562f515b6684373a9cf864 4656 web optional jpoker_1.0.14-1.diff.gz - 8fe050f6832d2876a8e13ec6f46f05cd 1061614 web optional jpoker_1.0.14-1_all.deb + 832505f7a32fa8916dd784a345b655aa 907 web optional jpoker_1.0.14-1.dsc + 57611de8c8f6e65dad9ce747a54e76c5 15110397 web optional jpoker_1.0.14.orig.tar.gz + c979adf542fa024fc1ae63b3c9969a6d 4648 web optional jpoker_1.0.14-1.diff.gz + 42f0efb48eb5473660ccf565a8475e4c 1061304 web optional jpoker_1.0.14-1_all.deb
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/hardy/src/jpoker_1.0.14.orig.tar.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/Packages.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/Sources.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/jpoker_1.0.14-1.diff.gz has changed
--- a/var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/jpoker_1.0.14-1.dsc Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/jpoker_1.0.14-1.dsc Sat Aug 16 03:33:09 2008 +0000 @@ -8,11 +8,11 @@ Standards-Version: 3.7.3 Build-Depends: debhelper (>= 5), cdbs, gettext, python, python-simplejson, python-libxml2, tidy, ruby, rubygems | rubygems1.8, wget, inkscape Checksums-Sha1: - d5ab8ebe03f981d472292fcab0d04cc534cd7507 15110558 jpoker_1.0.14.orig.tar.gz - 81e3234feffbeeff03b004e7e13d74a98b53eb59 4656 jpoker_1.0.14-1.diff.gz + 511d46275512b5507daae720ff4f3a6c34469ce4 15110397 jpoker_1.0.14.orig.tar.gz + ff06347337cc1825ae5a9992af8c596d63b75394 4648 jpoker_1.0.14-1.diff.gz Checksums-Sha256: - 1f9a65c7a8a2c299176d76d20daeb11738b54b7086526e94391f46d9886e2945 15110558 jpoker_1.0.14.orig.tar.gz - 1944d308597d23ccc9de1090c7f4546d92664639bc9d4aaafd35c161d492de0a 4656 jpoker_1.0.14-1.diff.gz + aea3ada889ca72977c2bf9d12ad4c455413b66a799fcc333b6d7955fc0159cc9 15110397 jpoker_1.0.14.orig.tar.gz + 97323c2f26b23988638d13def59162144bfb282ed185026beecb1e45c685aaf6 4648 jpoker_1.0.14-1.diff.gz Files: - 2fa84067430935cbca991e4a80d93854 15110558 jpoker_1.0.14.orig.tar.gz - e6818d20bf562f515b6684373a9cf864 4656 jpoker_1.0.14-1.diff.gz + 57611de8c8f6e65dad9ce747a54e76c5 15110397 jpoker_1.0.14.orig.tar.gz + c979adf542fa024fc1ae63b3c9969a6d 4648 jpoker_1.0.14-1.diff.gz
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/jpoker_1.0.14-1_all.deb has changed
--- a/var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/jpoker_1.0.14-1_i386.changes Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/jpoker_1.0.14-1_i386.changes Sat Aug 16 03:33:09 2008 +0000 @@ -15,17 +15,17 @@ . * New upstream version. Checksums-Sha1: - 53918c5db75bb9729871938bdd068d85263a3a64 907 jpoker_1.0.14-1.dsc - d5ab8ebe03f981d472292fcab0d04cc534cd7507 15110558 jpoker_1.0.14.orig.tar.gz - 81e3234feffbeeff03b004e7e13d74a98b53eb59 4656 jpoker_1.0.14-1.diff.gz - 226a358206dc27dd84e7a02e85d3ee44a9e6ae23 1081446 jpoker_1.0.14-1_all.deb + 1c54129b8cc5dcf255ed3fb1cd9b827673c538bd 907 jpoker_1.0.14-1.dsc + 511d46275512b5507daae720ff4f3a6c34469ce4 15110397 jpoker_1.0.14.orig.tar.gz + ff06347337cc1825ae5a9992af8c596d63b75394 4648 jpoker_1.0.14-1.diff.gz + cad0f44ad677f83712d5143423dbb1d93a2d4764 1081028 jpoker_1.0.14-1_all.deb Checksums-Sha256: - 82f2569d844b8c9d3bf86f316633130e53eb3dd68624d2641dc369da828d28e2 907 jpoker_1.0.14-1.dsc - 1f9a65c7a8a2c299176d76d20daeb11738b54b7086526e94391f46d9886e2945 15110558 jpoker_1.0.14.orig.tar.gz - 1944d308597d23ccc9de1090c7f4546d92664639bc9d4aaafd35c161d492de0a 4656 jpoker_1.0.14-1.diff.gz - ec4843d55cfd62180640636a1f07c0db2a7474c19d61736bf6c4ddbe52bb1616 1081446 jpoker_1.0.14-1_all.deb + 7b667eecb014f5380005fe1360ea30377a9c765a0f688d289a3f55b6510549bf 907 jpoker_1.0.14-1.dsc + aea3ada889ca72977c2bf9d12ad4c455413b66a799fcc333b6d7955fc0159cc9 15110397 jpoker_1.0.14.orig.tar.gz + 97323c2f26b23988638d13def59162144bfb282ed185026beecb1e45c685aaf6 4648 jpoker_1.0.14-1.diff.gz + cf30252d42896f0794bf29636a42ebbe0d7b99559bafba4994647d2c0803b6c9 1081028 jpoker_1.0.14-1_all.deb Files: - eea5ae7639cdd23631dd74fa1aceb158 907 web optional jpoker_1.0.14-1.dsc - 2fa84067430935cbca991e4a80d93854 15110558 web optional jpoker_1.0.14.orig.tar.gz - e6818d20bf562f515b6684373a9cf864 4656 web optional jpoker_1.0.14-1.diff.gz - ebe5b17570db8945a8e9ab9eeedff850 1081446 web optional jpoker_1.0.14-1_all.deb + 832505f7a32fa8916dd784a345b655aa 907 web optional jpoker_1.0.14-1.dsc + 57611de8c8f6e65dad9ce747a54e76c5 15110397 web optional jpoker_1.0.14.orig.tar.gz + c979adf542fa024fc1ae63b3c9969a6d 4648 web optional jpoker_1.0.14-1.diff.gz + 05bd965b4e94dd31bea181557665efd4 1081028 web optional jpoker_1.0.14-1_all.deb
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/lenny/src/jpoker_1.0.14.orig.tar.gz has changed
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/unstable/src/jpoker_1.0.14-1.diff.gz has changed
--- a/var/lib/packaging-farm/jpoker/gnulinux/debian/unstable/src/jpoker_1.0.14-1.dsc Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/gnulinux/debian/unstable/src/jpoker_1.0.14-1.dsc Sat Aug 16 03:33:09 2008 +0000 @@ -8,11 +8,11 @@ Standards-Version: 3.7.3 Build-Depends: debhelper (>= 5), cdbs, gettext, python, python-simplejson, python-libxml2, tidy, ruby, rubygems | rubygems1.8, wget, inkscape Checksums-Sha1: - d5ab8ebe03f981d472292fcab0d04cc534cd7507 15110558 jpoker_1.0.14.orig.tar.gz - 81e3234feffbeeff03b004e7e13d74a98b53eb59 4656 jpoker_1.0.14-1.diff.gz + 511d46275512b5507daae720ff4f3a6c34469ce4 15110397 jpoker_1.0.14.orig.tar.gz + ff06347337cc1825ae5a9992af8c596d63b75394 4648 jpoker_1.0.14-1.diff.gz Checksums-Sha256: - 1f9a65c7a8a2c299176d76d20daeb11738b54b7086526e94391f46d9886e2945 15110558 jpoker_1.0.14.orig.tar.gz - 1944d308597d23ccc9de1090c7f4546d92664639bc9d4aaafd35c161d492de0a 4656 jpoker_1.0.14-1.diff.gz + aea3ada889ca72977c2bf9d12ad4c455413b66a799fcc333b6d7955fc0159cc9 15110397 jpoker_1.0.14.orig.tar.gz + 97323c2f26b23988638d13def59162144bfb282ed185026beecb1e45c685aaf6 4648 jpoker_1.0.14-1.diff.gz Files: - 2fa84067430935cbca991e4a80d93854 15110558 jpoker_1.0.14.orig.tar.gz - e6818d20bf562f515b6684373a9cf864 4656 jpoker_1.0.14-1.diff.gz + 57611de8c8f6e65dad9ce747a54e76c5 15110397 jpoker_1.0.14.orig.tar.gz + c979adf542fa024fc1ae63b3c9969a6d 4648 jpoker_1.0.14-1.diff.gz
Binary file var/lib/packaging-farm/jpoker/gnulinux/debian/unstable/src/jpoker_1.0.14.orig.tar.gz has changed
--- a/var/lib/packaging-farm/jpoker/html/build/etch.out Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/html/build/etch.out Sat Aug 16 03:33:09 2008 +0000 @@ -38,7 +38,6 @@ deleting etc/perl/CPAN/ deleting etc/perl/ deleting etc/Net -etc/hosts etc/ld.so.cache etc/ld.so.hwcappkgs etc/locale.gen @@ -5880,7 +5879,7 @@ usr/share/zoneinfo/right/SystemV/PST8 => usr/share/zoneinfo/right/Pacific/Pitcairn usr/share/zoneinfo/right/Pacific/Yap => usr/share/zoneinfo/right/Pacific/Truk -sent 29835776 bytes received 75303 bytes 1329381.29 bytes/sec +sent 29835716 bytes received 75284 bytes 1329377.78 bytes/sec total size is 156558017 speedup is 5.23 mkdir -p /usr/src/jpoker/build/debian/etch/proc cp /etc/resolv.conf /usr/src/jpoker/build/debian/etch/etc/resolv.conf @@ -5960,7 +5959,7 @@ Get:1 http://ftp.fr.debian.org etch Release.gpg [386B] Get:2 http://ftp.fr.debian.org etch Release [58.2kB] Get:3 http://ftp.fr.debian.org etch/main Packages [5624kB] -Fetched 5683kB in 2s (2606kB/s) +Fetched 5683kB in 2s (2397kB/s) Reading package lists... Reading package lists... Building dependency tree... @@ -5983,8 +5982,8 @@ Unpacking replacement tzdata ... Setting up tzdata (2007k-1etch1) ... Current default timezone: 'Europe/Paris'. -Local time is now: Sat Aug 16 02:57:59 CEST 2008. -Universal Time is now: Sat Aug 16 00:57:59 UTC 2008. +Local time is now: Sat Aug 16 05:03:07 CEST 2008. +Universal Time is now: Sat Aug 16 03:03:07 UTC 2008. Run 'tzconfig' if you wish to change it. (Reading database ... 10086 files and directories currently installed.) @@ -6129,10 +6128,16 @@ jpoker-1.0.14/.hg/store/00manifest.d jpoker-1.0.14/.hg/store/00manifest.i jpoker-1.0.14/.hg/store/undo -jpoker-1.0.14/.hg/store/data/jpoker/_jpoker_plugin/_jpoker_plugin.tiddler.i +jpoker-1.0.14/.hg/store/data/debian/_r_e_a_d_m_e._debian.i +jpoker-1.0.14/.hg/store/data/debian/apache2/conf.d.hg/jpoker.i +jpoker-1.0.14/.hg/store/data/debian/apache2/sites-available/jpoker.i jpoker_1.0.14.orig.tar.gz => jpoker-1.0.14.tar.gz jpoker-1.0.14/.hg/store/data/jpoker/js/jquery.jpoker.js.i +jpoker-1.0.14/.hg/store/data/jpoker/js/test-jpoker.js.i jpoker-1.0.14/debian/ +jpoker-1.0.14/debian/README.Debian +jpoker-1.0.14/debian/apache2/conf.d/jpoker +jpoker-1.0.14/debian/apache2/sites-available/jpoker jpoker-1.0.14/jpoker-binary-1.0.14/ jpoker-1.0.14/jpoker-binary-1.0.14/README jpoker-1.0.14/jpoker-binary-1.0.14/index-en.html @@ -6153,17 +6158,18 @@ jpoker-1.0.14/jpoker-binary-1.0.14/jquery/ jpoker-1.0.14/jpoker-binary-1.0.14/js/jquery.jpoker.js jpoker-1.0.14/jpoker-binary-1.0.14/js/mockup.js +jpoker-1.0.14/jpoker-binary-1.0.14/js/test-jpoker.js jpoker-1.0.14/jpoker-binary-1.0.14/l10n/ jpoker-1.0.14/jpoker/ -jpoker-1.0.14/jpoker/JpokerPlugin/JpokerPlugin.tiddler jpoker-1.0.14/jpoker/css/jpoker_table_layout.css jpoker-1.0.14/jpoker/css/images/jpoker_table/ jpoker-1.0.14/jpoker/images/ jpoker-1.0.14/jpoker/js/jquery.jpoker.js jpoker-1.0.14/jpoker/js/mockup.js - -sent 18647587 bytes received 976 bytes 12432375.33 bytes/sec -total size is 52116817 speedup is 2.79 +jpoker-1.0.14/jpoker/js/test-jpoker.js + +sent 19106974 bytes received 1109 bytes 12738722.00 bytes/sec +total size is 52112006 speedup is 2.73 # # Make sure no update occur less than 1 seconds after the end of the rsync. # If an update can occur within less than 1 second, the -c (checksum) rsync option @@ -6204,8 +6210,8 @@ jpoker_1.0.14-1.dsc jpoker_1.0.14.orig.tar.gz -sent 30230663 bytes received 88 bytes 60461502.00 bytes/sec -total size is 30226679 speedup is 1.00 +sent 30230333 bytes received 88 bytes 60460842.00 bytes/sec +total size is 30226349 speedup is 1.00 make[2]: Leaving directory `/usr/src/jpoker' make[2]: Entering directory `/usr/src/jpoker' umount /usr/src/jpoker/build/debian/etch/proc > /dev/null 2>&1 @@ -6780,79 +6786,79 @@ mkdir -p `dirname jpoker/css/images/jpoker_table/avatar.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/avatar.png jpoker/images/avatar.svg -(inkscape:7188): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19231): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7188): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19231): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:90:64 exported to 90 x 64 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/avatar.png mkdir -p `dirname jpoker/css/images/jpoker_table/background.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/background.png jpoker/images/background.svg -(inkscape:7192): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19235): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7192): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19235): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:800:600 exported to 800 x 600 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/background.png mkdir -p `dirname jpoker/css/images/jpoker_table/bet.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/bet.png jpoker/images/bet.svg -(inkscape:7196): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19239): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7196): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19239): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:48:48 exported to 48 x 48 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/bet.png mkdir -p `dirname jpoker/css/images/jpoker_table/dealer.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/dealer.png jpoker/images/dealer.svg -(inkscape:7201): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19243): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7201): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19243): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:31.547:31.547 exported to 32 x 32 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/dealer.png mkdir -p `dirname jpoker/css/images/jpoker_table/pot.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/pot.png jpoker/images/pot.svg -(inkscape:7205): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19247): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7205): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19247): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:48:48 exported to 48 x 48 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/pot.png mkdir -p `dirname jpoker/css/images/jpoker_table/seat.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/seat.png jpoker/images/seat.svg -(inkscape:7209): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19251): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7209): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19251): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:102:101 exported to 102 x 101 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/seat.png mkdir -p `dirname jpoker/css/images/jpoker_table/table.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/table.png jpoker/images/table.svg -(inkscape:7215): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19255): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7215): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19255): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:588.414:295.672 exported to 588 x 296 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/table.png inkscape --without-gui --vacuum-defs --export-plain-svg=jpoker/images/mockup_plain.svg jpoker/images/mockup.svg -(inkscape:7216): Gtk-WARNING **: Locale not supported by C library. +(inkscape:19256): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:7216): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:19256): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed perl -pi -e 's/xmlns="http:\/\/www.w3.org\/2000\/svg"//' jpoker/images/mockup_plain.svg perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: @@ -6879,13 +6885,13 @@ python test-svg2html.py ... ---------------------------------------------------------------------- -Ran 3 tests in 0.016s +Ran 3 tests in 0.013s OK python test-svgflatten.py . ---------------------------------------------------------------------- -Ran 1 test in 0.003s +Ran 1 test in 0.002s OK rm -fr tests ; jscoverage jpoker tests @@ -19292,7 +19298,7 @@ deleting var/log/aptitude var/log/dpkg.log -sent 29835866 bytes received 75434 bytes 920347.69 bytes/sec +sent 29835866 bytes received 75434 bytes 1087683.64 bytes/sec total size is 156558017 speedup is 5.23 mkdir -p /usr/src/jpoker/build/debian/etch/proc cp /etc/resolv.conf /usr/src/jpoker/build/debian/etch/etc/resolv.conf @@ -19372,7 +19378,7 @@ Get:1 http://ftp.fr.debian.org etch Release.gpg [386B] Get:2 http://ftp.fr.debian.org etch Release [58.2kB] Get:3 http://ftp.fr.debian.org etch/main Packages [5624kB] -Fetched 5683kB in 1s (2932kB/s) +Fetched 5683kB in 1s (4407kB/s) Reading package lists... Reading package lists... Building dependency tree... @@ -19395,8 +19401,8 @@ Unpacking replacement tzdata ... Setting up tzdata (2007k-1etch1) ... Current default timezone: 'Europe/Paris'. -Local time is now: Sat Aug 16 03:01:29 CEST 2008. -Universal Time is now: Sat Aug 16 01:01:29 UTC 2008. +Local time is now: Sat Aug 16 05:06:25 CEST 2008. +Universal Time is now: Sat Aug 16 03:06:25 UTC 2008. Run 'tzconfig' if you wish to change it. (Reading database ... 10086 files and directories currently installed.)
--- a/var/lib/packaging-farm/jpoker/html/build/f8.out Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/html/build/f8.out Sat Aug 16 03:33:09 2008 +0000 @@ -56,7 +56,6 @@ bin/uname bin/unlink etc/ -etc/hosts etc/ld.so.cache etc/libaudit.conf etc/bash_completion.d/ @@ -3610,6 +3609,7 @@ usr/lib/python2.5/idlelib/AutoComplete.py usr/lib/python2.5/idlelib/AutoComplete.pyc usr/lib/python2.5/idlelib/AutoCompleteWindow.py +usr/lib/python2.5/Bastion.pyo => usr/lib/python2.5/Bastion.pyc usr/lib/python2.5/idlelib/AutoCompleteWindow.pyc usr/lib/python2.5/idlelib/AutoCompleteWindow.pyo usr/lib/python2.5/idlelib/AutoExpand.py @@ -3746,7 +3746,6 @@ usr/lib/python2.5/idlelib/testcode.pyo usr/lib/python2.5/idlelib/textView.py usr/lib/python2.5/idlelib/textView.pyc -usr/lib/python2.5/Bastion.pyo => usr/lib/python2.5/Bastion.pyc usr/lib/python2.5/CGIHTTPServer.pyo => usr/lib/python2.5/CGIHTTPServer.pyc usr/lib/python2.5/ConfigParser.pyo => usr/lib/python2.5/ConfigParser.pyc usr/lib/python2.5/Cookie.pyo => usr/lib/python2.5/Cookie.pyc @@ -4410,6 +4409,7 @@ usr/lib/python2.5/idlelib/run.pyo => usr/lib/python2.5/idlelib/run.pyc usr/lib/python2.5/idlelib/tabpage.pyo => usr/lib/python2.5/idlelib/tabpage.pyc usr/lib/python2.5/idlelib/testcode.pyc => usr/lib/python2.5/idlelib/testcode.pyo +usr/lib/python2.5/idlelib/textView.pyo => usr/lib/python2.5/idlelib/textView.pyc usr/sbin/chroot usr/share/doc/ deleting usr/share/doc/yum-utils-1.1.14/yum-util-cli-template @@ -4440,7 +4440,6 @@ deleting usr/share/doc/curl-7.18.2/CHANGES deleting usr/share/doc/curl-7.18.2/BUGS deleting usr/share/doc/curl-7.18.2/ -usr/lib/python2.5/idlelib/textView.pyo => usr/lib/python2.5/idlelib/textView.pyc usr/lib/python2.5/logging/config.pyo => usr/lib/python2.5/logging/config.pyc usr/lib/python2.5/logging/handlers.pyo => usr/lib/python2.5/logging/handlers.pyc usr/lib/python2.5/plat-linux2/CDROM.pyo => usr/lib/python2.5/plat-linux2/CDROM.pyc @@ -6629,9 +6628,6 @@ usr/share/zoneinfo/Mideast/Riyadh89 => usr/share/zoneinfo/Asia/Riyadh89 usr/share/zoneinfo/Asia/Thimphu => usr/share/zoneinfo/Asia/Thimbu usr/share/zoneinfo/Asia/Ulan_Bator => usr/share/zoneinfo/Asia/Ulaanbaatar -usr/share/zoneinfo/right/America/ -deleting usr/share/zoneinfo/right/America/Santarem -usr/share/zoneinfo/right/America/Adak usr/share/zoneinfo/Atlantic/Faroe => usr/share/zoneinfo/Atlantic/Faeroe usr/share/zoneinfo/Australia/Canberra => usr/share/zoneinfo/Australia/ACT usr/share/zoneinfo/Australia/NSW => usr/share/zoneinfo/Australia/ACT @@ -6791,6 +6787,9 @@ usr/share/zoneinfo/posix/Europe/Mariehamn => usr/share/zoneinfo/posix/Europe/Helsinki usr/share/zoneinfo/posix/Europe/San_Marino => usr/share/zoneinfo/posix/Europe/Rome usr/share/zoneinfo/posix/Europe/Vatican => usr/share/zoneinfo/posix/Europe/Rome +usr/share/zoneinfo/right/America/ +deleting usr/share/zoneinfo/right/America/Santarem +usr/share/zoneinfo/right/America/Adak usr/share/zoneinfo/right/America/Anchorage usr/share/zoneinfo/right/America/Anguilla usr/share/zoneinfo/right/America/Antigua @@ -7244,8 +7243,6 @@ usr/share/zoneinfo/right/US/Alaska => usr/share/zoneinfo/right/America/Anchorage usr/share/zoneinfo/right/America/Coral_Harbour => usr/share/zoneinfo/right/America/Atikokan usr/share/zoneinfo/right/America/Argentina/Buenos_Aires => usr/share/zoneinfo/right/America/Buenos_Aires -usr/share/zoneinfo/right/America/Argentina/Catamarca => usr/share/zoneinfo/right/America/Catamarca -usr/share/zoneinfo/right/America/Argentina/ComodRivadavia => usr/share/zoneinfo/right/America/Catamarca var/cache/yum/updates/ var/cache/yum/updates/cachecookie var/cache/yum/updates/mirrorlist.txt @@ -7269,6 +7266,8 @@ var/log/yum.log var/run/ var/tmp/ +usr/share/zoneinfo/right/America/Argentina/Catamarca => usr/share/zoneinfo/right/America/Catamarca +usr/share/zoneinfo/right/America/Argentina/ComodRivadavia => usr/share/zoneinfo/right/America/Catamarca usr/share/zoneinfo/right/US/Central => usr/share/zoneinfo/right/America/Chicago usr/share/zoneinfo/right/America/Rosario => usr/share/zoneinfo/right/America/Cordoba usr/share/zoneinfo/right/America/Argentina/Cordoba => usr/share/zoneinfo/right/America/Cordoba @@ -7350,7 +7349,7 @@ usr/share/zoneinfo/right/US/Samoa => usr/share/zoneinfo/right/Pacific/Pago_Pago usr/share/zoneinfo/right/Pacific/Yap => usr/share/zoneinfo/right/Pacific/Truk -sent 39554399 bytes received 152956 bytes 1260550.95 bytes/sec +sent 39554332 bytes received 152939 bytes 1260548.29 bytes/sec total size is 518285545 speedup is 13.05 mkdir -p /usr/src/jpoker/build/fedora/f8/proc cp /etc/resolv.conf /usr/src/jpoker/build/fedora/f8/etc/resolv.conf @@ -7360,7 +7359,7 @@ __db.002 __db.003 -sent 567976 bytes received 69 bytes 1136090.00 bytes/sec +sent 567976 bytes received 69 bytes 378696.67 bytes/sec total size is 13586432 speedup is 23.92 # # Make sure no update occur less than 1 seconds after the end of the rsync. @@ -7434,152 +7433,9 @@ mkdir -p $overlaydir ; \ : ; \ fi -make chroot-umounts -make[3]: Entering directory `/usr/src/jpoker' -umount /usr/src/jpoker/build/fedora/f8/proc > /dev/null 2>&1 -umount /usr/src/jpoker/build/fedora/f8/dev/pts > /dev/null 2>&1 -if [ fedora = debian ] ; then \ - umount /usr/src/jpoker/build/fedora/f8/var/cache/apt/archives > /dev/null 2>&1 ; \ - elif [ fedora = fedora ] ; then \ - : ; \ - elif [ fedora = gentoo ] ; then \ - umount /usr/src/jpoker/build/fedora/f8/usr/local/distdir > /dev/null 2>&1 ; \ - umount /usr/src/jpoker/build/fedora/f8/usr/portage/packages > /dev/null 2>&1 ; \ - umount /usr/src/jpoker/build/fedora/f8/usr/portage > /dev/null 2>&1 ; \ - fi -umount /usr/src/jpoker/build/fedora/f8/usr/src > /dev/null 2>&1 -if [ fedora = gentoo ] ; then \ - umount /usr/src/jpoker/build/fedora/f8/var/tmp/portage/homedir/.ccache > /dev/null 2>&1 ; \ - else \ - umount /usr/src/jpoker/build/fedora/f8/root/.ccache > /dev/null 2>&1 ; \ - fi -make[3]: Leaving directory `/usr/src/jpoker' +Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. Please verify its path and try again +Could not retrieve mirrorlist http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-8&arch=i386 error was +[Errno 14] HTTP Error 503: Service Temporarily Unavailable +removing mirrorlist with no valid mirrors: //var/cache/yum/fedora/mirrorlist.txt +make[2]: *** [chroot-dist-upgrade] Error 1 make[2]: Leaving directory `/usr/src/jpoker' -make[2]: Entering directory `/usr/src/jpoker' -mkdir -p "/var/cache/packaging-farm/sources/jpoker" -rsync --delete -avH /var/cache/packaging-farm/sources/jpoker/ jpoker/ -sending incremental file list - -sent 44474 bytes received 166 bytes 29760.00 bytes/sec -total size is 52116817 speedup is 1167.49 -# -# Make sure no update occur less than 1 seconds after the end of the rsync. -# If an update can occur within less than 1 second, the -c (checksum) rsync option -# *must* be used to ensure that the rsync is accurate and this slows down -# the rsync a great deal. By loosing a second here you can save many seconds -# later because rsync can rely on the file date and size to figure out which -# files are identical. -# -sleep 1 -: -: Copy the patches to current directory and include the -: package name in their file name -: -eval tarbal=jpoker/jpoker*[0-9].tar.gz ; \ - version=$(expr $tarbal : '.*-\(.*\).tar.gz') ; \ - if [ -f jpoker/jpoker-*[0-9]/debian/patches/00list ] ; then \ - for patch in jpoker/jpoker-*[0-9]/debian/patches/*.dpatch ; do \ - base=$(basename $patch) ; \ - cp -a $patch jpoker ; \ - cp -a $patch jpoker/jpoker-debian-$base ; \ - done ; \ - fi -/usr/lib/packaging-farm/fedora/get.sh jpoker f8 -+ PACKAGE=jpoker -+ DISTRIBUTION=f8 -+ '[' -z jpoker -o -z f8 ']' -++ packaging-farm --var DISTRIBUTION=f8 DISTTYPE -+ DISTTYPE=fedora -++ packaging-farm --var DISTRIBUTION=f8 OSTYPE -+ OSTYPE=gnulinux -+ mkdir -p gnulinux/fedora/f8/src/redhat/SOURCES -+ mkdir -p gnulinux/fedora/f8/src/redhat/SPECS -++ echo jpoker/jpoker-1.0.14.tar.gz -+ tarbal=jpoker/jpoker-1.0.14.tar.gz -+ rsync_done=/bin/false -+ '[' '!' -f jpoker/jpoker-1.0.14.tar.gz ']' -+ PATCH_MAGIC=333 -+ MAINTAINER='Loic Dachary <loic at gnu.org>' -++ date '+%a %b %d %Y' -+ CHANGELOG_HEADER='* Sat Aug 16 2008 Loic Dachary <loic at gnu.org> -' -+ /bin/false -+ rsync -a --delete '--include=*jpoker*[0-9].tar.gz' '--include=*-debian-*' '--exclude=*' jpoker/ gnulinux/fedora/f8/src/redhat/SOURCES/ -+ spec=gnulinux/fedora/f8/src/redhat/SPECS/jpoker.spec -++ grep '^Version:' -++ sed -e 's/.*:[ ]*//' -e 's/[ ]*//g' -+ current_version=1.0.14 -++ expr jpoker/jpoker-1.0.14.tar.gz : '.*-\(.*\).tar.gz' -+ new_version=1.0.14 -+ echo 'Source version is 1.0.14' -Source version is 1.0.14 -+ '[' 1.0.14 '!=' 1.0.14 ']' -+ patches_pattern='jpoker-debian-*.dpatch' -++ ls 'gnulinux/fedora/f8/src/redhat/SOURCES/jpoker-debian-*.dpatch' -+ patches= -+ /bin/true -+ grep '^%patch333' gnulinux/fedora/f8/src/redhat/SPECS/jpoker.spec -+ patches_in_spec=/bin/false -+ update_spec=/bin/false -+ /bin/false -+ '[' '' ']' -+ /bin/false -+ '[' '' ']' -make[2]: Leaving directory `/usr/src/jpoker' -make[2]: Entering directory `/usr/src/jpoker' -umount /usr/src/jpoker/build/fedora/f8/proc > /dev/null 2>&1 -make[2]: [pre-chroot-umounts] Error 1 (ignored) -umount /usr/src/jpoker/build/fedora/f8/dev/pts > /dev/null 2>&1 -make[2]: [pre-chroot-umounts] Error 1 (ignored) -if [ fedora = debian ] ; then \ - umount /usr/src/jpoker/build/fedora/f8/var/cache/apt/archives > /dev/null 2>&1 ; \ - elif [ fedora = fedora ] ; then \ - : ; \ - elif [ fedora = gentoo ] ; then \ - umount /usr/src/jpoker/build/fedora/f8/usr/local/distdir > /dev/null 2>&1 ; \ - umount /usr/src/jpoker/build/fedora/f8/usr/portage/packages > /dev/null 2>&1 ; \ - umount /usr/src/jpoker/build/fedora/f8/usr/portage > /dev/null 2>&1 ; \ - fi -umount /usr/src/jpoker/build/fedora/f8/usr/src > /dev/null 2>&1 -make[2]: [pre-chroot-umounts] Error 1 (ignored) -if [ fedora = gentoo ] ; then \ - umount /usr/src/jpoker/build/fedora/f8/var/tmp/portage/homedir/.ccache > /dev/null 2>&1 ; \ - else \ - umount /usr/src/jpoker/build/fedora/f8/root/.ccache > /dev/null 2>&1 ; \ - fi -make[2]: [pre-chroot-umounts] Error 1 (ignored) -mount -t proc proc /usr/src/jpoker/build/fedora/f8/proc -mount -t devpts devpts /usr/src/jpoker/build/fedora/f8/dev/pts -if [ fedora = debian ] ; then \ - mkdir -p gnulinux/fedora/f8/archives/partial ; \ - mount --bind gnulinux/fedora/f8/archives /usr/src/jpoker/build/fedora/f8/var/cache/apt/archives ; \ - elif [ fedora = gentoo ] ; then \ - mkdir -p /var/cache/packaging-farm/fedora/distdir /usr/src/jpoker/build/fedora/f8/usr/local/distdir ; \ - mount --bind /var/cache/packaging-farm/fedora/distdir /usr/src/jpoker/build/fedora/f8/usr/local/distdir ; \ - fi -if [ fedora = gentoo ] ; then \ - mkdir -p /var/cache/packaging-farm/fedora/portage /usr/src/jpoker/build/fedora/f8/usr/portage ; \ - mount --bind /var/cache/packaging-farm/fedora/portage /usr/src/jpoker/build/fedora/f8/usr/portage ; \ - fi -mkdir -p gnulinux/fedora/f8/src -mount --bind gnulinux/fedora/f8/src /usr/src/jpoker/build/fedora/f8/usr/src -if [ fedora = gentoo ] ; then \ - mkdir -p /root/.ccache /usr/src/jpoker/build/fedora/f8/var/tmp/portage/homedir/.ccache ; \ - mount --bind /root/.ccache /usr/src/jpoker/build/fedora/f8/var/tmp/portage/homedir/.ccache ; \ - else \ - mkdir -p /root/.ccache /usr/src/jpoker/build/fedora/f8/root/.ccache ; \ - mount --bind /root/.ccache /usr/src/jpoker/build/fedora/f8/root/.ccache ; \ - fi -cp -a /usr/lib/packaging-farm/fedora/rpmbuild.sh /usr/src/jpoker/build/fedora/f8/usr/src -chroot /usr/src/jpoker/build/fedora/f8 sh -c "cd /usr/src && DISTRIBUTION=f8 PACKAGE=jpoker ./rpmbuild.sh" -+ rm -fr redhat/BUILD redhat/RPMS/i386 redhat/RPMS/noarch redhat/SRPMS -+ mkdir -p redhat/BUILD redhat/RPMS/i386 redhat/RPMS/noarch redhat/SRPMS -+ USER=root.root -+ chown root.root redhat/SOURCES/jpoker-1.0.14.tar.gz redhat/SPECS/jpoker.spec -+ cd redhat/SPECS -++ sed -n -e 's/[><=][><=]*[ ]*[^ ][^ ]*//g; s/^BuildRequires:[ ]*//p' -+ DEPS= -+ '[' '' ']' -+ rpmbuild -ba jpoker.spec -error: File /usr/src/redhat/SOURCES/jpoker-1.0.14.tar_0.gz: No such file or directory -make[2]: *** [build/fedora] Error 1 -make[2]: Leaving directory `/usr/src/jpoker'
--- a/var/lib/packaging-farm/jpoker/html/build/hardy.out Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/html/build/hardy.out Sat Aug 16 03:33:09 2008 +0000 @@ -27,8 +27,6 @@ fi ; \ rsync --delete $exclude --exclude=/proc --exclude=/etc/resolv.conf -z -avH --numeric-ids /chroot/debian/hardy/ /usr/src/jpoker/build/debian/hardy/ sending incremental file list -etc/ -etc/hosts root/ deleting root/.ccache/ var/cache/apt/ @@ -40,7 +38,7 @@ var/lib/apt/lists/partial/ var/lib/dpkg/lock -sent 4737909 bytes received 1387 bytes 631906.13 bytes/sec +sent 4737694 bytes received 1365 bytes 861647.09 bytes/sec total size is 260934182 speedup is 55.06 mkdir -p /usr/src/jpoker/build/debian/hardy/proc cp /etc/resolv.conf /usr/src/jpoker/build/debian/hardy/etc/resolv.conf @@ -160,8 +158,8 @@ rsync --delete -avH /var/cache/packaging-farm/sources/jpoker/ jpoker/ sending incremental file list -sent 44474 bytes received 166 bytes 29760.00 bytes/sec -total size is 52116817 speedup is 1167.49 +sent 44462 bytes received 166 bytes 29752.00 bytes/sec +total size is 52112006 speedup is 1167.70 # # Make sure no update occur less than 1 seconds after the end of the rsync. # If an update can occur within less than 1 second, the -c (checksum) rsync option @@ -202,8 +200,8 @@ jpoker_1.0.14-1.dsc jpoker_1.0.14.orig.tar.gz -sent 30230663 bytes received 88 bytes 20153834.00 bytes/sec -total size is 30226679 speedup is 1.00 +sent 30230333 bytes received 88 bytes 60460842.00 bytes/sec +total size is 30226349 speedup is 1.00 make[2]: Leaving directory `/usr/src/jpoker' make[2]: Entering directory `/usr/src/jpoker' umount /usr/src/jpoker/build/debian/hardy/proc > /dev/null 2>&1 @@ -971,79 +969,79 @@ mkdir -p `dirname jpoker/css/images/jpoker_table/avatar.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/avatar.png jpoker/images/avatar.svg -(inkscape:6699): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1173): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6699): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1173): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:90:64 exported to 90 x 64 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/avatar.png mkdir -p `dirname jpoker/css/images/jpoker_table/background.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/background.png jpoker/images/background.svg -(inkscape:6703): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1177): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6703): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1177): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:800:600 exported to 800 x 600 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/background.png mkdir -p `dirname jpoker/css/images/jpoker_table/bet.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/bet.png jpoker/images/bet.svg -(inkscape:6707): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1181): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6707): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1181): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:48:48 exported to 48 x 48 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/bet.png mkdir -p `dirname jpoker/css/images/jpoker_table/dealer.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/dealer.png jpoker/images/dealer.svg -(inkscape:6711): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1185): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6711): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1185): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:31.547:31.547 exported to 32 x 32 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/dealer.png mkdir -p `dirname jpoker/css/images/jpoker_table/pot.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/pot.png jpoker/images/pot.svg -(inkscape:6715): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1189): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6715): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1189): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:48:48 exported to 48 x 48 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/pot.png mkdir -p `dirname jpoker/css/images/jpoker_table/seat.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/seat.png jpoker/images/seat.svg -(inkscape:6719): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1193): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6719): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1193): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:102:101 exported to 102 x 101 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/seat.png mkdir -p `dirname jpoker/css/images/jpoker_table/table.png` inkscape --without-gui --export-png=jpoker/css/images/jpoker_table/table.png jpoker/images/table.svg -(inkscape:6723): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1197): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6723): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1197): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed Background RRGGBBAA: ffffff00 Area 0:0:588.414:295.672 exported to 588 x 296 pixels (90 dpi) Bitmap saved as: jpoker/css/images/jpoker_table/table.png inkscape --without-gui --vacuum-defs --export-plain-svg=jpoker/images/mockup_plain.svg jpoker/images/mockup.svg -(inkscape:6724): Gtk-WARNING **: Locale not supported by C library. +(inkscape:1198): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. -(inkscape:6724): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed +(inkscape:1198): Gdk-CRITICAL **: gdk_display_list_devices: assertion `GDK_IS_DISPLAY (display)' failed perl -pi -e 's/xmlns="http:\/\/www.w3.org\/2000\/svg"//' jpoker/images/mockup_plain.svg perl: warning: Setting locale failed. perl: warning: Please check that your locale settings:
--- a/var/lib/packaging-farm/jpoker/html/build/lenny.out Sat Aug 16 01:35:15 2008 +0000 +++ b/var/lib/packaging-farm/jpoker/html/build/lenny.out Sat Aug 16 03:33:09 2008 +0000 @@ -28,8 +28,10 @@ rsync --delete $exclude --exclude=/proc --exclude=/etc/resolv.conf -z -avH --numeric-ids /chroot/debian/lenny/ /usr/src/jpoker/build/debian/lenny/ sending incremental file list bin/ +bin/login bin/mountpoint bin/nano +bin/su bin/tar etc/ deleting etc/dhcp3/dhclient-exit-hooks.d/rfc3442-classless-routes @@ -39,11 +41,12 @@ deleting etc/dhcp3/dhclient-enter-hooks.d/ deleting etc/dhcp3/dhclient.conf deleting etc/dhcp3/ -etc/hosts etc/ld.so.cache etc/locale.gen etc/localtime +etc/login.defs etc/mke2fs.conf +etc/securetty etc/timezone etc/alternatives/ etc/cron.daily/ @@ -55,6 +58,7 @@ etc/logrotate.d/ etc/network/if-up.d/ etc/pam.d/ +etc/pam.d/login etc/perl/Net/ etc/rc0.d/ etc/rc1.d/ @@ -112,6 +116,8 @@ lib/libuuid.so.1.2 lib/init/ lib/init/readlink +lib/lsb/ +lib/lsb/init-functions lib/security/ lib/security/pam_access.so lib/security/pam_debug.so @@ -324,6 +330,7 @@ sbin/pam_tally sbin/resize2fs sbin/runlevel +sbin/shadowconfig sbin/shutdown sbin/startpar sbin/sulogin @@ -337,7 +344,10 @@ usr/bin/aptitude-run-state-bundle usr/bin/c2ph usr/bin/catchsegv +usr/bin/chage usr/bin/chattr +usr/bin/chfn +usr/bin/chsh usr/bin/clear usr/bin/config_data usr/bin/corelist @@ -347,10 +357,13 @@ usr/bin/cpanp-run-perl usr/bin/dprofpp usr/bin/enc2xs +usr/bin/expiry +usr/bin/faillog usr/bin/find2perl usr/bin/gencat usr/bin/getconf usr/bin/getent +usr/bin/gpasswd usr/bin/gpg usr/bin/gpg-convert-from-106 usr/bin/gpg-zip @@ -362,6 +375,7 @@ usr/bin/infocmp usr/bin/instmodsh usr/bin/last +usr/bin/lastlog usr/bin/ldd usr/bin/libnetcfg usr/bin/locale @@ -372,6 +386,8 @@ usr/bin/mtrace usr/bin/ncurses5-config usr/bin/ncursesw5-config +usr/bin/newgrp +usr/bin/passwd usr/bin/perl usr/bin/perlbug usr/bin/perldoc @@ -2405,15 +2421,33 @@ usr/lib/xen/librt.a usr/lib/xen/libutil.a usr/sbin/ +usr/sbin/chgpasswd +usr/sbin/chpasswd +usr/sbin/cppw usr/sbin/filefrag +usr/sbin/groupadd +usr/sbin/groupdel +usr/sbin/groupmod +usr/sbin/grpck +usr/sbin/grpconv +usr/sbin/grpunconv usr/sbin/iconvconfig usr/sbin/invoke-rc.d usr/sbin/iptables-xml usr/sbin/mklost+found +usr/sbin/newusers +usr/sbin/nologin usr/sbin/pam_getenv +usr/sbin/pwck +usr/sbin/pwconv +usr/sbin/pwunconv usr/sbin/rmt-tar usr/sbin/update-rc.d +usr/sbin/useradd +usr/sbin/userdel +usr/sbin/usermod usr/sbin/uuidd +usr/sbin/vipw usr/sbin/zic usr/share/aptitude/ usr/share/aptitude/FAQ @@ -2681,6 +2715,14 @@ usr/share/doc/locales/NEWS.Debian.gz usr/share/doc/locales/README.Debian usr/share/doc/locales/changelog.Debian.gz +usr/share/doc/login/ +usr/share/doc/login/NEWS.Debian.gz +usr/share/doc/login/changelog.Debian.gz +usr/share/doc/login/copyright +usr/share/doc/lsb-base/ +usr/share/doc/lsb-base/README.Debian.gz +usr/share/doc/lsb-base/changelog.Debian.gz +usr/share/doc/lsb-base/copyright usr/share/doc/manpages/ deleting usr/share/doc/manpages/man-pages-3.05.Announce usr/share/doc/manpages/changelog.Debian.gz @@ -2698,6 +2740,13 @@ usr/share/doc/nano/changelog.gz usr/share/doc/nano/changelog.l10n.gz usr/share/doc/nano/copyright +usr/share/doc/passwd/ +usr/share/doc/passwd/NEWS.Debian.gz +usr/share/doc/passwd/README.Debian +usr/share/doc/passwd/changelog.Debian.gz +usr/share/doc/passwd/copyright +usr/share/doc/passwd/examples/ +usr/share/doc/passwd/examples/passwd.expire.cron usr/share/doc/perl/ usr/share/doc/perl/Contract.gz usr/share/doc/perl/Documentation @@ -3255,6 +3304,8 @@ usr/share/initscripts/ usr/share/linda/overrides/ usr/share/linda/overrides/initscripts +usr/share/linda/overrides/login +usr/share/linda/overrides/passwd usr/share/linda/overrides/sysv-rc usr/share/lintian/overrides/ deleting usr/share/lintian/overrides/dhcp3-client @@ -3263,7 +3314,9 @@ usr/share/lintian/overrides/libc6-dev usr/share/lintian/overrides/libpam-modules usr/share/lintian/overrides/libpam0g +usr/share/lintian/overrides/login usr/share/lintian/overrides/manpages +usr/share/lintian/overrides/passwd usr/share/lintian/overrides/sysv-rc usr/share/locale/ usr/share/locale/ar/LC_MESSAGES/ @@ -3289,6 +3342,7 @@ usr/share/locale/bs/LC_MESSAGES/aptitude.mo usr/share/locale/bs/LC_MESSAGES/debian-tasks.mo usr/share/locale/bs/LC_MESSAGES/newt.mo +usr/share/locale/bs/LC_MESSAGES/shadow.mo usr/share/locale/bs/LC_MESSAGES/tasksel.mo usr/share/locale/ca/LC_MESSAGES/ usr/share/locale/ca/LC_MESSAGES/aptitude.mo @@ -3298,6 +3352,7 @@ usr/share/locale/ca/LC_MESSAGES/libc.mo usr/share/locale/ca/LC_MESSAGES/nano.mo usr/share/locale/ca/LC_MESSAGES/newt.mo +usr/share/locale/ca/LC_MESSAGES/shadow.mo usr/share/locale/ca/LC_MESSAGES/tasksel.mo usr/share/locale/cs/LC_MESSAGES/ usr/share/locale/cs/LC_MESSAGES/Linux-PAM.mo @@ -3308,6 +3363,7 @@ usr/share/locale/cs/LC_MESSAGES/libc.mo usr/share/locale/cs/LC_MESSAGES/nano.mo usr/share/locale/cs/LC_MESSAGES/newt.mo +usr/share/locale/cs/LC_MESSAGES/shadow.mo usr/share/locale/cs/LC_MESSAGES/tar.mo usr/share/locale/cs/LC_MESSAGES/tasksel.mo usr/share/locale/cy/LC_MESSAGES/ @@ -3321,6 +3377,7 @@ usr/share/locale/da/LC_MESSAGES/libc.mo usr/share/locale/da/LC_MESSAGES/nano.mo usr/share/locale/da/LC_MESSAGES/newt.mo +usr/share/locale/da/LC_MESSAGES/shadow.mo usr/share/locale/da/LC_MESSAGES/tar.mo usr/share/locale/da/LC_MESSAGES/tasksel.mo usr/share/locale/de/LC_MESSAGES/ @@ -3332,11 +3389,13 @@ usr/share/locale/de/LC_MESSAGES/libc.mo usr/share/locale/de/LC_MESSAGES/nano.mo usr/share/locale/de/LC_MESSAGES/newt.mo +usr/share/locale/de/LC_MESSAGES/shadow.mo usr/share/locale/de/LC_MESSAGES/tar.mo usr/share/locale/de/LC_MESSAGES/tasksel.mo usr/share/locale/dz/LC_MESSAGES/ usr/share/locale/dz/LC_MESSAGES/debian-tasks.mo usr/share/locale/dz/LC_MESSAGES/newt.mo +usr/share/locale/dz/LC_MESSAGES/shadow.mo usr/share/locale/dz/LC_MESSAGES/tasksel.mo usr/share/locale/el/LC_MESSAGES/ usr/share/locale/el/LC_MESSAGES/aptitude.mo @@ -3344,6 +3403,7 @@ usr/share/locale/el/LC_MESSAGES/gnupg.mo usr/share/locale/el/LC_MESSAGES/libc.mo usr/share/locale/el/LC_MESSAGES/newt.mo +usr/share/locale/el/LC_MESSAGES/shadow.mo usr/share/locale/el/LC_MESSAGES/tar.mo usr/share/locale/el/LC_MESSAGES/tasksel.mo usr/share/locale/en@boldquot/LC_MESSAGES/ @@ -3366,6 +3426,7 @@ usr/share/locale/es/LC_MESSAGES/libc.mo usr/share/locale/es/LC_MESSAGES/nano.mo usr/share/locale/es/LC_MESSAGES/newt.mo +usr/share/locale/es/LC_MESSAGES/shadow.mo usr/share/locale/es/LC_MESSAGES/tar.mo usr/share/locale/es/LC_MESSAGES/tasksel.mo usr/share/locale/et/LC_MESSAGES/ @@ -3379,6 +3440,7 @@ usr/share/locale/eu/LC_MESSAGES/debian-tasks.mo usr/share/locale/eu/LC_MESSAGES/nano.mo usr/share/locale/eu/LC_MESSAGES/newt.mo +usr/share/locale/eu/LC_MESSAGES/shadow.mo usr/share/locale/eu/LC_MESSAGES/tar.mo usr/share/locale/eu/LC_MESSAGES/tasksel.mo usr/share/locale/fa/LC_MESSAGES/ @@ -3391,6 +3453,7 @@ usr/share/locale/fi/LC_MESSAGES/libc.mo usr/share/locale/fi/LC_MESSAGES/nano.mo usr/share/locale/fi/LC_MESSAGES/newt.mo +usr/share/locale/fi/LC_MESSAGES/shadow.mo usr/share/locale/fi/LC_MESSAGES/tar.mo usr/share/locale/fi/LC_MESSAGES/tasksel.mo usr/share/locale/fr/LC_MESSAGES/ @@ -3402,6 +3465,7 @@ usr/share/locale/fr/LC_MESSAGES/libc.mo usr/share/locale/fr/LC_MESSAGES/nano.mo usr/share/locale/fr/LC_MESSAGES/newt.mo +usr/share/locale/fr/LC_MESSAGES/shadow.mo usr/share/locale/fr/LC_MESSAGES/tar.mo usr/share/locale/fr/LC_MESSAGES/tasksel.mo usr/share/locale/ga/LC_MESSAGES/ @@ -3415,6 +3479,7 @@ usr/share/locale/gl/LC_MESSAGES/libc.mo usr/share/locale/gl/LC_MESSAGES/nano.mo usr/share/locale/gl/LC_MESSAGES/newt.mo +usr/share/locale/gl/LC_MESSAGES/shadow.mo usr/share/locale/gl/LC_MESSAGES/tar.mo usr/share/locale/gl/LC_MESSAGES/tasksel.mo usr/share/locale/gu/LC_MESSAGES/ @@ -3423,6 +3488,7 @@ usr/share/locale/he/LC_MESSAGES/ usr/share/locale/he/LC_MESSAGES/debian-tasks.mo usr/share/locale/he/LC_MESSAGES/newt.mo +usr/share/locale/he/LC_MESSAGES/shadow.mo usr/share/locale/he/LC_MESSAGES/tasksel.mo usr/share/locale/hi/LC_MESSAGES/ usr/share/locale/hi/LC_MESSAGES/debian-tasks.mo @@ -3442,6 +3508,7 @@ usr/share/locale/hu/LC_MESSAGES/libc.mo usr/share/locale/hu/LC_MESSAGES/nano.mo usr/share/locale/hu/LC_MESSAGES/newt.mo +usr/share/locale/hu/LC_MESSAGES/shadow.mo usr/share/locale/hu/LC_MESSAGES/tar.mo usr/share/locale/hu/LC_MESSAGES/tasksel.mo usr/share/locale/hy/LC_MESSAGES/ @@ -3451,6 +3518,7 @@ usr/share/locale/id/LC_MESSAGES/gnupg.mo usr/share/locale/id/LC_MESSAGES/nano.mo usr/share/locale/id/LC_MESSAGES/newt.mo +usr/share/locale/id/LC_MESSAGES/shadow.mo usr/share/locale/id/LC_MESSAGES/tar.mo usr/share/locale/id/LC_MESSAGES/tasksel.mo usr/share/locale/it/LC_MESSAGES/ @@ -3462,6 +3530,7 @@ usr/share/locale/it/LC_MESSAGES/libc.mo usr/share/locale/it/LC_MESSAGES/nano.mo usr/share/locale/it/LC_MESSAGES/newt.mo +usr/share/locale/it/LC_MESSAGES/shadow.mo usr/share/locale/it/LC_MESSAGES/tar.mo usr/share/locale/it/LC_MESSAGES/tasksel.mo usr/share/locale/ja/LC_MESSAGES/ @@ -3471,6 +3540,7 @@ usr/share/locale/ja/LC_MESSAGES/gnupg.mo usr/share/locale/ja/LC_MESSAGES/libc.mo usr/share/locale/ja/LC_MESSAGES/newt.mo +usr/share/locale/ja/LC_MESSAGES/shadow.mo usr/share/locale/ja/LC_MESSAGES/tar.mo usr/share/locale/ja/LC_MESSAGES/tasksel.mo usr/share/locale/km/LC_MESSAGES/ @@ -3478,11 +3548,13 @@ usr/share/locale/km/LC_MESSAGES/aptitude.mo usr/share/locale/km/LC_MESSAGES/debian-tasks.mo usr/share/locale/km/LC_MESSAGES/newt.mo +usr/share/locale/km/LC_MESSAGES/shadow.mo usr/share/locale/km/LC_MESSAGES/tasksel.mo usr/share/locale/ko/LC_MESSAGES/ usr/share/locale/ko/LC_MESSAGES/debian-tasks.mo usr/share/locale/ko/LC_MESSAGES/libc.mo usr/share/locale/ko/LC_MESSAGES/newt.mo +usr/share/locale/ko/LC_MESSAGES/shadow.mo usr/share/locale/ko/LC_MESSAGES/tar.mo usr/share/locale/ko/LC_MESSAGES/tasksel.mo usr/share/locale/ku/LC_MESSAGES/ @@ -3519,11 +3591,13 @@ usr/share/locale/nb/LC_MESSAGES/libc.mo usr/share/locale/nb/LC_MESSAGES/nano.mo usr/share/locale/nb/LC_MESSAGES/newt.mo +usr/share/locale/nb/LC_MESSAGES/shadow.mo usr/share/locale/nb/LC_MESSAGES/tar.mo usr/share/locale/nb/LC_MESSAGES/tasksel.mo usr/share/locale/ne/LC_MESSAGES/ usr/share/locale/ne/LC_MESSAGES/debian-tasks.mo usr/share/locale/ne/LC_MESSAGES/newt.mo +usr/share/locale/ne/LC_MESSAGES/shadow.mo usr/share/locale/ne/LC_MESSAGES/tasksel.mo usr/share/locale/nl/LC_MESSAGES/ usr/share/locale/nl/LC_MESSAGES/Linux-PAM.mo @@ -3534,6 +3608,7 @@ usr/share/locale/nl/LC_MESSAGES/libc.mo usr/share/locale/nl/LC_MESSAGES/nano.mo usr/share/locale/nl/LC_MESSAGES/newt.mo +usr/share/locale/nl/LC_MESSAGES/shadow.mo usr/share/locale/nl/LC_MESSAGES/tar.mo usr/share/locale/nl/LC_MESSAGES/tasksel.mo usr/share/locale/nn/LC_MESSAGES/ @@ -3541,6 +3616,7