From 1be510f9529cb082f802408b472a77d074b394c0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sun, 14 Apr 2013 13:46:12 +0000 Subject: Add zarb MLs html archives --- .../20130214/7ed5ad66/attachment-0001.html | 103 +++++++++++++++++++++ .../attachments/20130214/7ed5ad66/attachment.html | 103 +++++++++++++++++++++ .../20130214/a3051f5b/attachment-0001.html | 40 ++++++++ .../attachments/20130214/a3051f5b/attachment.html | 40 ++++++++ .../20130214/caa8921d/attachment-0001.mht | 94 +++++++++++++++++++ .../attachments/20130214/caa8921d/attachment.mht | 94 +++++++++++++++++++ .../20130214/fe4c643f/attachment-0001.mht | 99 ++++++++++++++++++++ .../attachments/20130214/fe4c643f/attachment.mht | 99 ++++++++++++++++++++ 8 files changed, 672 insertions(+) create mode 100644 zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment-0001.mht create mode 100644 zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment.mht create mode 100644 zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment-0001.mht create mode 100644 zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment.mht (limited to 'zarb-ml/mageia-dev/attachments/20130214') diff --git a/zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment-0001.html new file mode 100644 index 000000000..a06155320 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment-0001.html @@ -0,0 +1,103 @@ +On Thu, Feb 14, 2013 at 2:22 PM, <root@mageia.org> wrote:
+ + + + + + +
+ + +
+
+
Revision
7324
+
Author
colin
+
Date
2013-02-14 15:22:44 +0100 (Thu, 14 Feb 2013)
+
+ +

Log Message

+
(call_blkid) always bypass blkid cache
+
+This reverts the use of the blkid cache.
+
+This cache is a broken concept and should not be used. It's only
+intended to be used for LABEL/UUID conversion.
Please add a comment in the code :) 
+ +
+>From the upstream maintainer:
+<kzak> coling: -p provides more information, the cache is designed for
+LABEL/UUID conversion -- and the goal is to avoid the cache if possible
+(it's mostly for backward compatibility). The ideal solution is to read
+the information from udev DB.
+<kzak> coling: man blkid (at least the latest version contains some hint
+about this issue)
+<kzak> coling: I'd like to learn people to use lsblk -- it's designed
+more friendly  for end-users as well as for scripts and it reads info
+from udev, libblkid is only fallback here.
+
+Longer term we should kill off the use of blkid and perhaps move to
+lsblk or some perl-udev (if such a thing exists) usage instead:
+
+<kay> coling: avoid the blkid cache, it is a completely broken idea
+<kay> kzak: you should really kill that thing :)
+<kzak> kay: I'd like to kill blkid at all and keep it as "to test the
+library" binary...
+<kay> kzak: tools with options like that talk for their sanity
+themselves :) " -g     Perform a garbage collection pass on the blkid
+cache to remove devices which no longer exist."
+<kay> kzak: it's just silly, really silly to ever do that :)
+<kay> kzak: yeah, sounds fine to let blkid and its cache die in the long
+run
+<kzak>  lsblk is maintainable and extendable -- fix blkid(8) is
+impossible to fix...
+
+This reverts r6891.
+ +

Modified Paths

+ + +
+
Modified: drakx/trunk/perl-install/NEWS
+===================================================================
+--- drakx/trunk/perl-install/NEWS	2013-02-14 01:39:37 UTC (rev 7323)
++++ drakx/trunk/perl-install/NEWS	2013-02-14 14:22:44 UTC (rev 7324)
+@@ -1,3 +1,5 @@
++- always bypass blkid cache (the cache only includes a subset of the data we need)
++
+ Version 15.19 - 16 January 2013
+ 
+ - update translations
+
+Modified: drakx/trunk/perl-install/fs/type.pm
+===================================================================
+--- drakx/trunk/perl-install/fs/type.pm	2013-02-14 01:39:37 UTC (rev 7323)
++++ drakx/trunk/perl-install/fs/type.pm	2013-02-14 14:22:44 UTC (rev 7324)
+@@ -273,7 +273,7 @@
+ 
+     my %h = map {
+ 	if_(/(.*?)=(.*)/, $1 => $2);
+-    } run_program::get_stdout_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', devices::make($part->{device}));
++    } run_program::get_stdout_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device}));
+ 
+     \%h;
+ }
+
+Modified: drakx/trunk/perl-install/install/NEWS
+===================================================================
+--- drakx/trunk/perl-install/install/NEWS	2013-02-14 01:39:37 UTC (rev 7323)
++++ drakx/trunk/perl-install/install/NEWS	2013-02-14 14:22:44 UTC (rev 7324)
+@@ -1,3 +1,5 @@
++- always bypass blkid cache (the cache only includes a subset of the data we need)
++
+ Version 15.20 - 21 January 2013
+ 
+ - use modprobe instead of insmod (mga#8676)
+
+
+ +
+

diff --git a/zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment.html b/zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment.html new file mode 100644 index 000000000..a06155320 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/7ed5ad66/attachment.html @@ -0,0 +1,103 @@ +On Thu, Feb 14, 2013 at 2:22 PM, <root@mageia.org> wrote:
+ + + + + + +
+ + +
+
+
Revision
7324
+
Author
colin
+
Date
2013-02-14 15:22:44 +0100 (Thu, 14 Feb 2013)
+
+ +

Log Message

+
(call_blkid) always bypass blkid cache
+
+This reverts the use of the blkid cache.
+
+This cache is a broken concept and should not be used. It's only
+intended to be used for LABEL/UUID conversion.
Please add a comment in the code :) 
+ +
+>From the upstream maintainer:
+<kzak> coling: -p provides more information, the cache is designed for
+LABEL/UUID conversion -- and the goal is to avoid the cache if possible
+(it's mostly for backward compatibility). The ideal solution is to read
+the information from udev DB.
+<kzak> coling: man blkid (at least the latest version contains some hint
+about this issue)
+<kzak> coling: I'd like to learn people to use lsblk -- it's designed
+more friendly  for end-users as well as for scripts and it reads info
+from udev, libblkid is only fallback here.
+
+Longer term we should kill off the use of blkid and perhaps move to
+lsblk or some perl-udev (if such a thing exists) usage instead:
+
+<kay> coling: avoid the blkid cache, it is a completely broken idea
+<kay> kzak: you should really kill that thing :)
+<kzak> kay: I'd like to kill blkid at all and keep it as "to test the
+library" binary...
+<kay> kzak: tools with options like that talk for their sanity
+themselves :) " -g     Perform a garbage collection pass on the blkid
+cache to remove devices which no longer exist."
+<kay> kzak: it's just silly, really silly to ever do that :)
+<kay> kzak: yeah, sounds fine to let blkid and its cache die in the long
+run
+<kzak>  lsblk is maintainable and extendable -- fix blkid(8) is
+impossible to fix...
+
+This reverts r6891.
+ +

Modified Paths

+ + +
+
Modified: drakx/trunk/perl-install/NEWS
+===================================================================
+--- drakx/trunk/perl-install/NEWS	2013-02-14 01:39:37 UTC (rev 7323)
++++ drakx/trunk/perl-install/NEWS	2013-02-14 14:22:44 UTC (rev 7324)
+@@ -1,3 +1,5 @@
++- always bypass blkid cache (the cache only includes a subset of the data we need)
++
+ Version 15.19 - 16 January 2013
+ 
+ - update translations
+
+Modified: drakx/trunk/perl-install/fs/type.pm
+===================================================================
+--- drakx/trunk/perl-install/fs/type.pm	2013-02-14 01:39:37 UTC (rev 7323)
++++ drakx/trunk/perl-install/fs/type.pm	2013-02-14 14:22:44 UTC (rev 7324)
+@@ -273,7 +273,7 @@
+ 
+     my %h = map {
+ 	if_(/(.*?)=(.*)/, $1 => $2);
+-    } run_program::get_stdout_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', devices::make($part->{device}));
++    } run_program::get_stdout_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device}));
+ 
+     \%h;
+ }
+
+Modified: drakx/trunk/perl-install/install/NEWS
+===================================================================
+--- drakx/trunk/perl-install/install/NEWS	2013-02-14 01:39:37 UTC (rev 7323)
++++ drakx/trunk/perl-install/install/NEWS	2013-02-14 14:22:44 UTC (rev 7324)
+@@ -1,3 +1,5 @@
++- always bypass blkid cache (the cache only includes a subset of the data we need)
++
+ Version 15.20 - 21 January 2013
+ 
+ - use modprobe instead of insmod (mga#8676)
+
+
+ +
+

diff --git a/zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment-0001.html new file mode 100644 index 000000000..56df85361 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment-0001.html @@ -0,0 +1,40 @@ +
Done!
https://bugs.mageia.org/show_bug.cgi?id=9073
Thanks.


+ +On Wed, Feb 13, 2013 at 9:56 PM, FundaWang <fundawang@fundawang.name> wrote:
+ +Please file a bug and assign it to me.________________________________
+> From: jehan.marmottard@gmail.com
+> Date: Wed, 13 Feb 2013 16:38:32 +0900
+> To: mageia-dev@mageia.org
+> Subject: [Mageia-dev] Broken ibus-anthy on Mageia2?
+
>
+> Hello,
+>
+> I don't remember any recent update on ibus or anthy (but also I don't
+> always put particular attention to all the updates), but I can't use it
+> anymore.
+>
+> ibus still works. I have other input methods like the Korean one, which
+> still work. But when I try to switch to the Anthy input method
+> (whatever by the usual shortcut or by clicking with the mouse the Anthy
+> input in the contextual menu), I can't seem to make it work either
+> (ibus just hangs for like 30 seconds, then goes back to previous
+> input).
+> I tried to restart ibus, no luck either there. It didn't change a thing
+> (once it even crashed apparently because it did not come back up
+> again).
+>
+> I also tried in various applications where it usually works (Firefox,
+> LibreOffice, Konsole, etc.) to be sure that was not related somehow to
+> the toolkit. Same everywhere.
+>
+> And now I am unsure of how to diagnose.
+> Could someone help me?
+> Also how do you check which packages have recently be installed to make
+> sure of regressions in some package?
+>
+> I really need to be able to write Japanese, and now that's kind of
+> really blocking to me. ;-(
+> Thanks!
+>
+> Jehan                                          

diff --git a/zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment.html b/zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment.html new file mode 100644 index 000000000..56df85361 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/a3051f5b/attachment.html @@ -0,0 +1,40 @@ +
Done!
https://bugs.mageia.org/show_bug.cgi?id=9073
Thanks.


+ +On Wed, Feb 13, 2013 at 9:56 PM, FundaWang <fundawang@fundawang.name> wrote:
+ +Please file a bug and assign it to me.________________________________
+> From: jehan.marmottard@gmail.com
+> Date: Wed, 13 Feb 2013 16:38:32 +0900
+> To: mageia-dev@mageia.org
+> Subject: [Mageia-dev] Broken ibus-anthy on Mageia2?
+
>
+> Hello,
+>
+> I don't remember any recent update on ibus or anthy (but also I don't
+> always put particular attention to all the updates), but I can't use it
+> anymore.
+>
+> ibus still works. I have other input methods like the Korean one, which
+> still work. But when I try to switch to the Anthy input method
+> (whatever by the usual shortcut or by clicking with the mouse the Anthy
+> input in the contextual menu), I can't seem to make it work either
+> (ibus just hangs for like 30 seconds, then goes back to previous
+> input).
+> I tried to restart ibus, no luck either there. It didn't change a thing
+> (once it even crashed apparently because it did not come back up
+> again).
+>
+> I also tried in various applications where it usually works (Firefox,
+> LibreOffice, Konsole, etc.) to be sure that was not related somehow to
+> the toolkit. Same everywhere.
+>
+> And now I am unsure of how to diagnose.
+> Could someone help me?
+> Also how do you check which packages have recently be installed to make
+> sure of regressions in some package?
+>
+> I really need to be able to write Japanese, and now that's kind of
+> really blocking to me. ;-(
+> Thanks!
+>
+> Jehan                                          

diff --git a/zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment-0001.mht b/zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment-0001.mht new file mode 100644 index 000000000..74e939b7f --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment-0001.mht @@ -0,0 +1,94 @@ +[From nobody Thu Feb 14 11:10:47 2013 +Return-Path: <ftp-release-list-bounces@gnome.org> +X-Original-To: list-announce@vitters.nl +Delivered-To: list-announce@vitters.nl +Received: from restaurant.gnome.org (vbox17.gnome.org [209.132.180.187]) + by bkor.dhs.org (Postfix) with ESMTP id B7DDD50038D + for <list-announce@vitters.nl>; Wed, 13 Feb 2013 19:33:58 +0100 (CET) +Received: from restaurant.gnome.org (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id 4716176B2B; + Wed, 13 Feb 2013 18:33:57 +0000 (UTC) +X-Original-To: ftp-release-list@gnome.org +Delivered-To: ftp-release-list@gnome.org +Received: from localhost (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id 252DF76B11 + for <ftp-release-list@gnome.org>; Wed, 13 Feb 2013 18:33:56 +0000 (UTC) +X-Virus-Scanned: by amavisd-new at gnome.org +X-Spam-Flag: NO +X-Spam-Score: -2.9 +X-Spam-Level: +X-Spam-Status: No, score=-2.9 tagged_above=-999 required=2 + tests=[ALL_TRUSTED=-1, BAYES_00=-1.9] autolearn=ham +Received: from restaurant.gnome.org ([127.0.0.1]) + by localhost (restaurant.gnome.org [127.0.0.1]) (amavisd-new, + port 10024) + with ESMTP id ClXKRuGnGAEU; Wed, 13 Feb 2013 18:33:55 +0000 (UTC) +Received: from master.gnome.org (master-back [172.31.1.39]) + by restaurant.gnome.org (Postfix) with ESMTP id B94EE76A0A; + Wed, 13 Feb 2013 18:33:55 +0000 (UTC) +Received: by master.gnome.org (Postfix, from userid 7930) + id 667674098; Wed, 13 Feb 2013 18:33:53 +0000 (UTC) +MIME-Version: 1.0 +Subject: gnome-shell 3.6.3 +From: =?utf-8?q?Florian_M=C3=BCllner?= <install-module@master.gnome.org> +To: FTP Releases <ftp-release-list@gnome.org> +X-Maintainer-Upload: True +X-Module-Version: 3.6.3 +X-Module-SHA256-tar.xz: 05b2341a0f84835644881743873d3eaccaed12f00aa7b424d876780e81723db2 +X-Module-URL-tar.xz: http://download.gnome.org/sources/gnome-shell/3.6/gnome-shell-3.6.3.tar.xz +X-Module-Name: gnome-shell +Message-Id: <20130213183354.667674098@master.gnome.org> +Date: Wed, 13 Feb 2013 18:33:53 +0000 (UTC) +X-BeenThere: ftp-release-list@gnome.org +X-Mailman-Version: 2.1.15 +Precedence: list +Reply-To: desktop-devel-list@gnome.org +List-Id: "FTP upload notifications for packagers, + the release team and insane users" <ftp-release-list.gnome.org> +List-Unsubscribe: <https://mail.gnome.org/mailman/options/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=unsubscribe> +List-Archive: <https://mail.gnome.org/archives/ftp-release-list/> +List-Post: <mailto:ftp-release-list@gnome.org> +List-Help: <mailto:ftp-release-list-request@gnome.org?subject=help> +List-Subscribe: <https://mail.gnome.org/mailman/listinfo/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=subscribe> +Content-Type: text/plain; charset="utf-8" +Content-Transfer-Encoding: base64 +Errors-To: ftp-release-list-bounces@gnome.org +Sender: "ftp-release-list" <ftp-release-list-bounces@gnome.org> + +QWJvdXQgR05PTUUgU2hlbGwKPT09PT09PT09PT09PT09PT0KCkdOT01FIFNoZWxsIHByb3ZpZGVz +IGNvcmUgdXNlciBpbnRlcmZhY2UgZnVuY3Rpb25zIGZvciB0aGUgR05PTUUgMwpkZXNrdG9wLCBs +aWtlIHN3aXRjaGluZyB0byB3aW5kb3dzIGFuZCBsYXVuY2hpbmcgYXBwbGljYXRpb25zLiBHTk9N +RQpTaGVsbCB0YWtlcyBhZHZhbnRhZ2Ugb2YgdGhlIGNhcGFiaWxpdGllcyBvZiBtb2Rlcm4gZ3Jh +cGhpY3MgaGFyZHdhcmUKYW5kIGludHJvZHVjZXMgaW5ub3ZhdGl2ZSB1c2VyIGludGVyZmFjZSBj +b25jZXB0cyB0byBwcm92aWRlIGEKdmlzdWFsbHkgYXR0cmFjdGl2ZSBhbmQgZWFzeSB0byB1c2Ug +ZXhwZXJpZW5jZS4KClRhcmJhbGwgcmVsZWFzZXMgYXJlIHByb3ZpZGVkIGxhcmdlbHkgZm9yIGRp +c3RyaWJ1dGlvbnMgdG8gYnVpbGQKcGFja2FnZXMuIElmIHlvdSBhcmUgaW50ZXJlc3RlZCBpbiBi +dWlsZGluZyBHTk9NRSBTaGVsbCBmcm9tIHNvdXJjZSwKd2Ugd291bGQgcmVjb21tZW5kIGJ1aWxk +aW5nIGZyb20gdmVyc2lvbiBjb250cm9sIHVzaW5nIHRoZSBidWlsZApzY3JpcHQgZGVzY3JpYmVk +IGF0OgoKIGh0dHA6Ly9saXZlLmdub21lLm9yZy9Hbm9tZVNoZWxsCgpOb3Qgb25seSB3aWxsIHRo +YXQgZ2l2ZSB5b3UgdGhlIHZlcnkgbGF0ZXN0IHZlcnNpb24gb2YgdGhpcyByYXBpZGx5CmNoYW5n +aW5nIHByb2plY3QsIGl0IHdpbGwgYmUgbXVjaCBlYXNpZXIgdGhhbiBnZXQgR05PTUUgU2hlbGwg +YW5kIGl0cwpkZXBlbmRlbmNpZXMgdG8gYnVpbGQgZnJvbSB0YXJiYWxscy4KCk5ld3MKPT09PQoK +KiByZWNvcmRlcjogU2V0IGZyYW1lIGR1cmF0aW9uIHRvIGZpeCBicm9rZW4gdmlkZW8gaGVhZGVy +cyBbQWRlbDsgIzY4ODQ4N10KKiBCbG9jayBjYW5jZWxsYXRpb24gb2YgdW5sb2NrIGRpYWxvZyBk +dXJpbmcgZHJhZ3MgW0dpb3Zhbm5pOyAjNjg2ODAwXQoqIEhvbm9yIGxvY2stZGVsYXkgR1NldHRp +bmdzIGtleSBbR2lvdmFubmksIE1hdHRoaWFzOyAjNjkwNzY2LCAjNjkxMTcwXQoqIEZpeCByZWVu +dHJhbmN5IHByb2JsZW0gY2F1c2luZyB0aGUgdHJheSB0byBkaXNhcHBlYXIgW0dpb3Zhbm5pOyAj +NjgzOTg2XQoKQ29udHJpYnV0b3JzOgogIEdpb3Zhbm5pIENhbXBhZ25hLCBNYXR0aGlhcyBDbGFz +ZW4sIEFkZWwgR2FkbGxhaCwKClRyYW5zbGF0aW9uczoKICBNYXR0aWFzIFDDtWxkYXJ1IFtldF0s +IFNhbmRlZXAgU2hlc2hyYW8gU2hlZG1ha2UgW21yXSwgV291dGVyIEJvbHN0ZXJsZWUgW25sXSwK +ICBSYWplc2ggUmFuamFuIFtoaV0sIE5pbGFtZHl1dGkgR29zd2FtaSBbYXNdLCBBbmkgUGV0ZXIg +W21sXSwKICBBbmRpa2EgVHJpd2lkYWRhIFtpZF0sIEtyaXNobmFiYWJ1IEtyb3RoYXBhbGxpIFt0 +ZV0sIFNoYW5rYXIgUHJhc2FkIFtrbl0sCiAgRHIuVC5WYXN1ZGV2YW4gW3RhXSwgUnVuYSBCaGF0 +dGFjaGFyamVlIFtibl9JTl0sIFJhZmFlbCBGZXJyZWlyYSBbcHRfQlJdLAogIEJhbMOhenMgw5py +IFtodV0sIEdoZXlyZXQgS2VuamkgW3VnXSwgWWFzdW1pY2hpIEFrYWhvc2hpIFtqYV0sIFlvamkg +VE9ZT0RBIFtqYV0sCiAgQWxleGFuZHJlIEZyYW5rZSBbZnJdCgoKCkRvd25sb2FkCj09PT09PT09 +Cmh0dHA6Ly9kb3dubG9hZC5nbm9tZS5vcmcvc291cmNlcy9nbm9tZS1zaGVsbC8zLjYvZ25vbWUt +c2hlbGwtMy42LjMudGFyLnh6ICgxLjM0TSkKICBzaGEyNTZzdW06IDA1YjIzNDFhMGY4NDgzNTY0 +NDg4MTc0Mzg3M2QzZWFjY2FlZDEyZjAwYWE3YjQyNGQ4NzY3ODBlODE3MjNkYjIKCl9fX19fX19f +X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCmZ0cC1yZWxlYXNlLWxpc3Qg +bWFpbGluZyBsaXN0CmZ0cC1yZWxlYXNlLWxpc3RAZ25vbWUub3JnCmh0dHBzOi8vbWFpbC5nbm9t +ZS5vcmcvbWFpbG1hbi9saXN0aW5mby9mdHAtcmVsZWFzZS1saXN0 +] \ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment.mht b/zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment.mht new file mode 100644 index 000000000..9b30e2226 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/caa8921d/attachment.mht @@ -0,0 +1,94 @@ +[From nobody Thu Feb 14 11:10:46 2013 +Return-Path: <ftp-release-list-bounces@gnome.org> +X-Original-To: list-announce@vitters.nl +Delivered-To: list-announce@vitters.nl +Received: from restaurant.gnome.org (vbox17.gnome.org [209.132.180.187]) + by bkor.dhs.org (Postfix) with ESMTP id B7DDD50038D + for <list-announce@vitters.nl>; Wed, 13 Feb 2013 19:33:58 +0100 (CET) +Received: from restaurant.gnome.org (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id 4716176B2B; + Wed, 13 Feb 2013 18:33:57 +0000 (UTC) +X-Original-To: ftp-release-list@gnome.org +Delivered-To: ftp-release-list@gnome.org +Received: from localhost (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id 252DF76B11 + for <ftp-release-list@gnome.org>; Wed, 13 Feb 2013 18:33:56 +0000 (UTC) +X-Virus-Scanned: by amavisd-new at gnome.org +X-Spam-Flag: NO +X-Spam-Score: -2.9 +X-Spam-Level: +X-Spam-Status: No, score=-2.9 tagged_above=-999 required=2 + tests=[ALL_TRUSTED=-1, BAYES_00=-1.9] autolearn=ham +Received: from restaurant.gnome.org ([127.0.0.1]) + by localhost (restaurant.gnome.org [127.0.0.1]) (amavisd-new, + port 10024) + with ESMTP id ClXKRuGnGAEU; Wed, 13 Feb 2013 18:33:55 +0000 (UTC) +Received: from master.gnome.org (master-back [172.31.1.39]) + by restaurant.gnome.org (Postfix) with ESMTP id B94EE76A0A; + Wed, 13 Feb 2013 18:33:55 +0000 (UTC) +Received: by master.gnome.org (Postfix, from userid 7930) + id 667674098; Wed, 13 Feb 2013 18:33:53 +0000 (UTC) +MIME-Version: 1.0 +Subject: gnome-shell 3.6.3 +From: =?utf-8?q?Florian_M=C3=BCllner?= <install-module@master.gnome.org> +To: FTP Releases <ftp-release-list@gnome.org> +X-Maintainer-Upload: True +X-Module-Version: 3.6.3 +X-Module-SHA256-tar.xz: 05b2341a0f84835644881743873d3eaccaed12f00aa7b424d876780e81723db2 +X-Module-URL-tar.xz: http://download.gnome.org/sources/gnome-shell/3.6/gnome-shell-3.6.3.tar.xz +X-Module-Name: gnome-shell +Message-Id: <20130213183354.667674098@master.gnome.org> +Date: Wed, 13 Feb 2013 18:33:53 +0000 (UTC) +X-BeenThere: ftp-release-list@gnome.org +X-Mailman-Version: 2.1.15 +Precedence: list +Reply-To: desktop-devel-list@gnome.org +List-Id: "FTP upload notifications for packagers, + the release team and insane users" <ftp-release-list.gnome.org> +List-Unsubscribe: <https://mail.gnome.org/mailman/options/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=unsubscribe> +List-Archive: <https://mail.gnome.org/archives/ftp-release-list/> +List-Post: <mailto:ftp-release-list@gnome.org> +List-Help: <mailto:ftp-release-list-request@gnome.org?subject=help> +List-Subscribe: <https://mail.gnome.org/mailman/listinfo/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=subscribe> +Content-Type: text/plain; charset="utf-8" +Content-Transfer-Encoding: base64 +Errors-To: ftp-release-list-bounces@gnome.org +Sender: "ftp-release-list" <ftp-release-list-bounces@gnome.org> + +QWJvdXQgR05PTUUgU2hlbGwKPT09PT09PT09PT09PT09PT0KCkdOT01FIFNoZWxsIHByb3ZpZGVz +IGNvcmUgdXNlciBpbnRlcmZhY2UgZnVuY3Rpb25zIGZvciB0aGUgR05PTUUgMwpkZXNrdG9wLCBs +aWtlIHN3aXRjaGluZyB0byB3aW5kb3dzIGFuZCBsYXVuY2hpbmcgYXBwbGljYXRpb25zLiBHTk9N +RQpTaGVsbCB0YWtlcyBhZHZhbnRhZ2Ugb2YgdGhlIGNhcGFiaWxpdGllcyBvZiBtb2Rlcm4gZ3Jh +cGhpY3MgaGFyZHdhcmUKYW5kIGludHJvZHVjZXMgaW5ub3ZhdGl2ZSB1c2VyIGludGVyZmFjZSBj +b25jZXB0cyB0byBwcm92aWRlIGEKdmlzdWFsbHkgYXR0cmFjdGl2ZSBhbmQgZWFzeSB0byB1c2Ug +ZXhwZXJpZW5jZS4KClRhcmJhbGwgcmVsZWFzZXMgYXJlIHByb3ZpZGVkIGxhcmdlbHkgZm9yIGRp +c3RyaWJ1dGlvbnMgdG8gYnVpbGQKcGFja2FnZXMuIElmIHlvdSBhcmUgaW50ZXJlc3RlZCBpbiBi +dWlsZGluZyBHTk9NRSBTaGVsbCBmcm9tIHNvdXJjZSwKd2Ugd291bGQgcmVjb21tZW5kIGJ1aWxk +aW5nIGZyb20gdmVyc2lvbiBjb250cm9sIHVzaW5nIHRoZSBidWlsZApzY3JpcHQgZGVzY3JpYmVk +IGF0OgoKIGh0dHA6Ly9saXZlLmdub21lLm9yZy9Hbm9tZVNoZWxsCgpOb3Qgb25seSB3aWxsIHRo +YXQgZ2l2ZSB5b3UgdGhlIHZlcnkgbGF0ZXN0IHZlcnNpb24gb2YgdGhpcyByYXBpZGx5CmNoYW5n +aW5nIHByb2plY3QsIGl0IHdpbGwgYmUgbXVjaCBlYXNpZXIgdGhhbiBnZXQgR05PTUUgU2hlbGwg +YW5kIGl0cwpkZXBlbmRlbmNpZXMgdG8gYnVpbGQgZnJvbSB0YXJiYWxscy4KCk5ld3MKPT09PQoK +KiByZWNvcmRlcjogU2V0IGZyYW1lIGR1cmF0aW9uIHRvIGZpeCBicm9rZW4gdmlkZW8gaGVhZGVy +cyBbQWRlbDsgIzY4ODQ4N10KKiBCbG9jayBjYW5jZWxsYXRpb24gb2YgdW5sb2NrIGRpYWxvZyBk +dXJpbmcgZHJhZ3MgW0dpb3Zhbm5pOyAjNjg2ODAwXQoqIEhvbm9yIGxvY2stZGVsYXkgR1NldHRp +bmdzIGtleSBbR2lvdmFubmksIE1hdHRoaWFzOyAjNjkwNzY2LCAjNjkxMTcwXQoqIEZpeCByZWVu +dHJhbmN5IHByb2JsZW0gY2F1c2luZyB0aGUgdHJheSB0byBkaXNhcHBlYXIgW0dpb3Zhbm5pOyAj +NjgzOTg2XQoKQ29udHJpYnV0b3JzOgogIEdpb3Zhbm5pIENhbXBhZ25hLCBNYXR0aGlhcyBDbGFz +ZW4sIEFkZWwgR2FkbGxhaCwKClRyYW5zbGF0aW9uczoKICBNYXR0aWFzIFDDtWxkYXJ1IFtldF0s +IFNhbmRlZXAgU2hlc2hyYW8gU2hlZG1ha2UgW21yXSwgV291dGVyIEJvbHN0ZXJsZWUgW25sXSwK +ICBSYWplc2ggUmFuamFuIFtoaV0sIE5pbGFtZHl1dGkgR29zd2FtaSBbYXNdLCBBbmkgUGV0ZXIg +W21sXSwKICBBbmRpa2EgVHJpd2lkYWRhIFtpZF0sIEtyaXNobmFiYWJ1IEtyb3RoYXBhbGxpIFt0 +ZV0sIFNoYW5rYXIgUHJhc2FkIFtrbl0sCiAgRHIuVC5WYXN1ZGV2YW4gW3RhXSwgUnVuYSBCaGF0 +dGFjaGFyamVlIFtibl9JTl0sIFJhZmFlbCBGZXJyZWlyYSBbcHRfQlJdLAogIEJhbMOhenMgw5py +IFtodV0sIEdoZXlyZXQgS2VuamkgW3VnXSwgWWFzdW1pY2hpIEFrYWhvc2hpIFtqYV0sIFlvamkg +VE9ZT0RBIFtqYV0sCiAgQWxleGFuZHJlIEZyYW5rZSBbZnJdCgoKCkRvd25sb2FkCj09PT09PT09 +Cmh0dHA6Ly9kb3dubG9hZC5nbm9tZS5vcmcvc291cmNlcy9nbm9tZS1zaGVsbC8zLjYvZ25vbWUt +c2hlbGwtMy42LjMudGFyLnh6ICgxLjM0TSkKICBzaGEyNTZzdW06IDA1YjIzNDFhMGY4NDgzNTY0 +NDg4MTc0Mzg3M2QzZWFjY2FlZDEyZjAwYWE3YjQyNGQ4NzY3ODBlODE3MjNkYjIKCl9fX19fX19f +X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCmZ0cC1yZWxlYXNlLWxpc3Qg +bWFpbGluZyBsaXN0CmZ0cC1yZWxlYXNlLWxpc3RAZ25vbWUub3JnCmh0dHBzOi8vbWFpbC5nbm9t +ZS5vcmcvbWFpbG1hbi9saXN0aW5mby9mdHAtcmVsZWFzZS1saXN0 +] \ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment-0001.mht b/zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment-0001.mht new file mode 100644 index 000000000..0be507630 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment-0001.mht @@ -0,0 +1,99 @@ +[From nobody Thu Feb 14 12:00:05 2013 +Return-Path: <ftp-release-list-bounces@gnome.org> +X-Original-To: list-announce@vitters.nl +Delivered-To: list-announce@vitters.nl +Received: from restaurant.gnome.org (vbox17.gnome.org [209.132.180.187]) + by bkor.dhs.org (Postfix) with ESMTP id F15F7500365 + for <list-announce@vitters.nl>; Wed, 13 Feb 2013 22:49:03 +0100 (CET) +Received: from restaurant.gnome.org (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id 2478976B25; + Wed, 13 Feb 2013 21:49:01 +0000 (UTC) +X-Original-To: ftp-release-list@gnome.org +Delivered-To: ftp-release-list@gnome.org +Received: from localhost (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id D08C076A8B + for <ftp-release-list@gnome.org>; Wed, 13 Feb 2013 21:48:59 +0000 (UTC) +X-Virus-Scanned: by amavisd-new at gnome.org +X-Spam-Flag: NO +X-Spam-Score: -2.9 +X-Spam-Level: +X-Spam-Status: No, score=-2.9 tagged_above=-999 required=2 + tests=[ALL_TRUSTED=-1, BAYES_00=-1.9] autolearn=ham +Received: from restaurant.gnome.org ([127.0.0.1]) + by localhost (restaurant.gnome.org [127.0.0.1]) (amavisd-new, + port 10024) + with ESMTP id J1WmaYOieYIK; Wed, 13 Feb 2013 21:48:59 +0000 (UTC) +Received: from master.gnome.org (master-back [172.31.1.39]) + by restaurant.gnome.org (Postfix) with ESMTP id 61D2F769B5; + Wed, 13 Feb 2013 21:48:59 +0000 (UTC) +Received: by master.gnome.org (Postfix, from userid 7930) + id 421CE40B0; Wed, 13 Feb 2013 21:48:58 +0000 (UTC) +MIME-Version: 1.0 +Subject: mutter 3.6.3 +From: =?utf-8?q?Florian_M=C3=BCllner?= <install-module@master.gnome.org> +To: FTP Releases <ftp-release-list@gnome.org> +X-Maintainer-Upload: True +X-Module-Version: 3.6.3 +X-Module-SHA256-tar.xz: aa1d558210d58f9a835a7e718a6b6eb8318ac8fb276c43234c47b1efde755c86 +X-Module-URL-tar.xz: http://download.gnome.org/sources/mutter/3.6/mutter-3.6.3.tar.xz +X-Module-Name: mutter +Message-Id: <20130213214858.421CE40B0@master.gnome.org> +Date: Wed, 13 Feb 2013 21:48:58 +0000 (UTC) +X-BeenThere: ftp-release-list@gnome.org +X-Mailman-Version: 2.1.15 +Precedence: list +Reply-To: desktop-devel-list@gnome.org +List-Id: "FTP upload notifications for packagers, + the release team and insane users" <ftp-release-list.gnome.org> +List-Unsubscribe: <https://mail.gnome.org/mailman/options/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=unsubscribe> +List-Archive: <https://mail.gnome.org/archives/ftp-release-list/> +List-Post: <mailto:ftp-release-list@gnome.org> +List-Help: <mailto:ftp-release-list-request@gnome.org?subject=help> +List-Subscribe: <https://mail.gnome.org/mailman/listinfo/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=subscribe> +Content-Type: text/plain; charset="us-ascii" +Content-Transfer-Encoding: 7bit +Errors-To: ftp-release-list-bounces@gnome.org +Sender: "ftp-release-list" <ftp-release-list-bounces@gnome.org> + +About mutter +============ + +Mutter is a window and compositing manager that displays and manages +your desktop via OpenGL. Mutter combines a sophisticated display +engine using the Clutter toolkit with solid window-management logic +inherited from the Metacity window manager. + +While Mutter can be used stand-alone, it is primarily intended to be +used as the display core of a larger system such as GNOME Shell. For +this reason, Mutter is very extensible via plugins, which are used +both to add fancy visual effects and to rework the window management +behaviors to meet the needs of the environment. + +News +==== + +* Fix maximized windows jumping between monitors [Alban; #556696] +* Fix windows turning black when redirected again [Adel; #693042] + +Contributors: + Alban Crequy, Adel Gadllah + +Translations: + Runa Bhattacharjee [bn_IN], Rajesh Ranjan [hi], Krishnababu Krothapalli [te], + ManojKumar Giri [or], Dr.T.Vasudevan [ta], Shankar Prasad [kn], + Rafael Ferreira [pt_BR] + + + +Download +======== +http://download.gnome.org/sources/mutter/3.6/mutter-3.6.3.tar.xz (1.54M) + sha256sum: aa1d558210d58f9a835a7e718a6b6eb8318ac8fb276c43234c47b1efde755c86 + +_______________________________________________ +ftp-release-list mailing list +ftp-release-list@gnome.org +https://mail.gnome.org/mailman/listinfo/ftp-release-list +] \ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment.mht b/zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment.mht new file mode 100644 index 000000000..15d939844 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130214/fe4c643f/attachment.mht @@ -0,0 +1,99 @@ +[From nobody Thu Feb 14 11:11:14 2013 +Return-Path: <ftp-release-list-bounces@gnome.org> +X-Original-To: list-announce@vitters.nl +Delivered-To: list-announce@vitters.nl +Received: from restaurant.gnome.org (vbox17.gnome.org [209.132.180.187]) + by bkor.dhs.org (Postfix) with ESMTP id F15F7500365 + for <list-announce@vitters.nl>; Wed, 13 Feb 2013 22:49:03 +0100 (CET) +Received: from restaurant.gnome.org (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id 2478976B25; + Wed, 13 Feb 2013 21:49:01 +0000 (UTC) +X-Original-To: ftp-release-list@gnome.org +Delivered-To: ftp-release-list@gnome.org +Received: from localhost (localhost.localdomain [127.0.0.1]) + by restaurant.gnome.org (Postfix) with ESMTP id D08C076A8B + for <ftp-release-list@gnome.org>; Wed, 13 Feb 2013 21:48:59 +0000 (UTC) +X-Virus-Scanned: by amavisd-new at gnome.org +X-Spam-Flag: NO +X-Spam-Score: -2.9 +X-Spam-Level: +X-Spam-Status: No, score=-2.9 tagged_above=-999 required=2 + tests=[ALL_TRUSTED=-1, BAYES_00=-1.9] autolearn=ham +Received: from restaurant.gnome.org ([127.0.0.1]) + by localhost (restaurant.gnome.org [127.0.0.1]) (amavisd-new, + port 10024) + with ESMTP id J1WmaYOieYIK; Wed, 13 Feb 2013 21:48:59 +0000 (UTC) +Received: from master.gnome.org (master-back [172.31.1.39]) + by restaurant.gnome.org (Postfix) with ESMTP id 61D2F769B5; + Wed, 13 Feb 2013 21:48:59 +0000 (UTC) +Received: by master.gnome.org (Postfix, from userid 7930) + id 421CE40B0; Wed, 13 Feb 2013 21:48:58 +0000 (UTC) +MIME-Version: 1.0 +Subject: mutter 3.6.3 +From: =?utf-8?q?Florian_M=C3=BCllner?= <install-module@master.gnome.org> +To: FTP Releases <ftp-release-list@gnome.org> +X-Maintainer-Upload: True +X-Module-Version: 3.6.3 +X-Module-SHA256-tar.xz: aa1d558210d58f9a835a7e718a6b6eb8318ac8fb276c43234c47b1efde755c86 +X-Module-URL-tar.xz: http://download.gnome.org/sources/mutter/3.6/mutter-3.6.3.tar.xz +X-Module-Name: mutter +Message-Id: <20130213214858.421CE40B0@master.gnome.org> +Date: Wed, 13 Feb 2013 21:48:58 +0000 (UTC) +X-BeenThere: ftp-release-list@gnome.org +X-Mailman-Version: 2.1.15 +Precedence: list +Reply-To: desktop-devel-list@gnome.org +List-Id: "FTP upload notifications for packagers, + the release team and insane users" <ftp-release-list.gnome.org> +List-Unsubscribe: <https://mail.gnome.org/mailman/options/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=unsubscribe> +List-Archive: <https://mail.gnome.org/archives/ftp-release-list/> +List-Post: <mailto:ftp-release-list@gnome.org> +List-Help: <mailto:ftp-release-list-request@gnome.org?subject=help> +List-Subscribe: <https://mail.gnome.org/mailman/listinfo/ftp-release-list>, + <mailto:ftp-release-list-request@gnome.org?subject=subscribe> +Content-Type: text/plain; charset="us-ascii" +Content-Transfer-Encoding: 7bit +Errors-To: ftp-release-list-bounces@gnome.org +Sender: "ftp-release-list" <ftp-release-list-bounces@gnome.org> + +About mutter +============ + +Mutter is a window and compositing manager that displays and manages +your desktop via OpenGL. Mutter combines a sophisticated display +engine using the Clutter toolkit with solid window-management logic +inherited from the Metacity window manager. + +While Mutter can be used stand-alone, it is primarily intended to be +used as the display core of a larger system such as GNOME Shell. For +this reason, Mutter is very extensible via plugins, which are used +both to add fancy visual effects and to rework the window management +behaviors to meet the needs of the environment. + +News +==== + +* Fix maximized windows jumping between monitors [Alban; #556696] +* Fix windows turning black when redirected again [Adel; #693042] + +Contributors: + Alban Crequy, Adel Gadllah + +Translations: + Runa Bhattacharjee [bn_IN], Rajesh Ranjan [hi], Krishnababu Krothapalli [te], + ManojKumar Giri [or], Dr.T.Vasudevan [ta], Shankar Prasad [kn], + Rafael Ferreira [pt_BR] + + + +Download +======== +http://download.gnome.org/sources/mutter/3.6/mutter-3.6.3.tar.xz (1.54M) + sha256sum: aa1d558210d58f9a835a7e718a6b6eb8318ac8fb276c43234c47b1efde755c86 + +_______________________________________________ +ftp-release-list mailing list +ftp-release-list@gnome.org +https://mail.gnome.org/mailman/listinfo/ftp-release-list +] \ No newline at end of file -- cgit v1.2.1