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 --- .../20120404/10caec9d/attachment-0001.html | 15 ++++++++++++++ .../attachments/20120404/10caec9d/attachment.html | 15 ++++++++++++++ .../20120404/32fe00a8/attachment-0001.html | 5 +++++ .../20120404/32fe00a8/attachment-0001.obj | 22 +++++++++++++++++++++ .../attachments/20120404/32fe00a8/attachment.html | 5 +++++ .../attachments/20120404/32fe00a8/attachment.obj | 22 +++++++++++++++++++++ .../20120404/52752ee2/attachment-0001.html | 13 ++++++++++++ .../attachments/20120404/52752ee2/attachment.html | 13 ++++++++++++ .../20120404/5432bb56/attachment-0001.html | 10 ++++++++++ .../attachments/20120404/5432bb56/attachment.html | 10 ++++++++++ .../20120404/d21fc6fd/attachment-0001.html | 23 ++++++++++++++++++++++ .../attachments/20120404/d21fc6fd/attachment.html | 23 ++++++++++++++++++++++ 12 files changed, 176 insertions(+) create mode 100644 zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.obj create mode 100644 zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.obj create mode 100644 zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment.html (limited to 'zarb-ml/mageia-dev/attachments/20120404') diff --git a/zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment-0001.html new file mode 100644 index 000000000..beef548d9 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment-0001.html @@ -0,0 +1,15 @@ +

On Wed, Apr 4, 2012 at 09:10, Thierry Vignaud <thierry.vignaud@gmail.com> wrote:
+ +
On 4 April 2012 10:09, Pascal Terjan <pterjan@gmail.com> wrote:
+>> > Request Core instead of Main when using --distrib
+>>
+>> To be moved in some config file?
+>> And documented.
+>
+>
+> Yeah I added a FIXME :)
+
+
No :-)
+I meant documenting in the basic conf file provided with iurt what
+a new distro would have to configure (default media name, ...)
+

I mean, I added a FIXME to take care of it :)

diff --git a/zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment.html b/zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment.html new file mode 100644 index 000000000..beef548d9 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/10caec9d/attachment.html @@ -0,0 +1,15 @@ +

On Wed, Apr 4, 2012 at 09:10, Thierry Vignaud <thierry.vignaud@gmail.com> wrote:
+ +
On 4 April 2012 10:09, Pascal Terjan <pterjan@gmail.com> wrote:
+>> > Request Core instead of Main when using --distrib
+>>
+>> To be moved in some config file?
+>> And documented.
+>
+>
+> Yeah I added a FIXME :)
+
+
No :-)
+I meant documenting in the basic conf file provided with iurt what
+a new distro would have to configure (default media name, ...)
+

I mean, I added a FIXME to take care of it :)

diff --git a/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.html new file mode 100644 index 000000000..f5fa7c475 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.html @@ -0,0 +1,5 @@ +

On Wed, Apr 4, 2012 at 14:40, Anssi Hannula <anssi@mageia.org> wrote:
+ +Yes (it has always been like that). Feel free to fix bootloader.pm to
+not do it. Note, however, that you can't simply skip symlinks there as
+the initrd.img symlink may also be the only initrd in bootloader config.

What about this (untested)? 
diff --git a/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.obj b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.obj new file mode 100644 index 000000000..0fab4a60a --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment-0001.obj @@ -0,0 +1,22 @@ +Index: bootloader.pm +=================================================================== +--- bootloader.pm (revision 3913) ++++ bootloader.pm (working copy) +@@ -161,9 +161,16 @@ + sub update_splash { + my ($bootloader) = @_; + ++ my %real_initrd_entries; + foreach (@{$bootloader->{entries}}) { +- add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}) if $_->{initrd}; ++ if ($_->{initrd}) { ++ my $initrd = expand_symlinks; ++ $real_initrd_entries[$initrd] = $_; ++ } + } ++ foreach (values %real_initrd_entries) { ++ add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}); ++ } + } + + sub read { \ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.html b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.html new file mode 100644 index 000000000..f5fa7c475 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.html @@ -0,0 +1,5 @@ +

On Wed, Apr 4, 2012 at 14:40, Anssi Hannula <anssi@mageia.org> wrote:
+ +Yes (it has always been like that). Feel free to fix bootloader.pm to
+not do it. Note, however, that you can't simply skip symlinks there as
+the initrd.img symlink may also be the only initrd in bootloader config.

What about this (untested)? 
diff --git a/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.obj b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.obj new file mode 100644 index 000000000..0fab4a60a --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/32fe00a8/attachment.obj @@ -0,0 +1,22 @@ +Index: bootloader.pm +=================================================================== +--- bootloader.pm (revision 3913) ++++ bootloader.pm (working copy) +@@ -161,9 +161,16 @@ + sub update_splash { + my ($bootloader) = @_; + ++ my %real_initrd_entries; + foreach (@{$bootloader->{entries}}) { +- add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}) if $_->{initrd}; ++ if ($_->{initrd}) { ++ my $initrd = expand_symlinks; ++ $real_initrd_entries[$initrd] = $_; ++ } + } ++ foreach (values %real_initrd_entries) { ++ add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}); ++ } + } + + sub read { \ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment-0001.html new file mode 100644 index 000000000..eda14fa19 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment-0001.html @@ -0,0 +1,13 @@ +

On Wed, Apr 4, 2012 at 09:02, Thierry Vignaud <thierry.vignaud@gmail.com> wrote:
+ +
On 2 April 2012 12:56,  <root@mageia.org> wrote:
+> Revision 3888 Author pterjan Date 2012-04-02 12:56:26 +0200 (Mon, 02 Apr
+> 2012)
+>
+> Log Message
+>
+> Request Core instead of Main when using --distrib
+
+
To be moved in some config file?
+And documented.
+

Yeah I added a FIXME :)
diff --git a/zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment.html b/zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment.html new file mode 100644 index 000000000..eda14fa19 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/52752ee2/attachment.html @@ -0,0 +1,13 @@ +

On Wed, Apr 4, 2012 at 09:02, Thierry Vignaud <thierry.vignaud@gmail.com> wrote:
+ +
On 2 April 2012 12:56,  <root@mageia.org> wrote:
+> Revision 3888 Author pterjan Date 2012-04-02 12:56:26 +0200 (Mon, 02 Apr
+> 2012)
+>
+> Log Message
+>
+> Request Core instead of Main when using --distrib
+
+
To be moved in some config file?
+And documented.
+

Yeah I added a FIXME :)
diff --git a/zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment-0001.html new file mode 100644 index 000000000..68c8c6380 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment-0001.html @@ -0,0 +1,10 @@ +
could all who possess a DVB-receiver and a physical cauldron
+installation please test it, should be available soon, rebuild went
+through.
+
Very good, I'm waiting for the rebuild and will start with testing.

 
+ +Project page: https://launchpad.net/me-tv
+
+
+Thanks in advance.
+

diff --git a/zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment.html b/zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment.html new file mode 100644 index 000000000..68c8c6380 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/5432bb56/attachment.html @@ -0,0 +1,10 @@ +
could all who possess a DVB-receiver and a physical cauldron
+installation please test it, should be available soon, rebuild went
+through.
+
Very good, I'm waiting for the rebuild and will start with testing.

 
+ +Project page: https://launchpad.net/me-tv
+
+
+Thanks in advance.
+

diff --git a/zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment-0001.html new file mode 100644 index 000000000..2a774f30b --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment-0001.html @@ -0,0 +1,23 @@ +

On Wed, Apr 4, 2012 at 09:01, Thierry Vignaud <thierry.vignaud@gmail.com> wrote:
+ +
On 4 April 2012 01:01,  <root@mageia.org> wrote:
+> Revision 3909 Author pterjan Date 2012-04-04 01:01:59 +0200 (Wed, 04 Apr
+> 2012)
+>
+> Log Message
+>
+> Drop check_chroot
+
+
A minor comment: it hasn't actually been dropped
+I think a better changelog would have been:
+
+"(check_chroot) merge it in check_build_chroot()"
 
Indeed, I'll improve log messages
 
+ + +Also, you didn't comment the call to create_build_chroot() instead
+of to create_chroot().
 
Indeed, this was an extension of the change I amended before commit when I noticed the call with those options that I was moving had a dedicated function.
+ +I should probably have done another commit

+Not that it matters a lot since create_build_chroot() got killed a little
+later but it would make history easier to read in 6 months (which it
+is already not for previous years :-( )

diff --git a/zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment.html b/zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment.html new file mode 100644 index 000000000..2a774f30b --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120404/d21fc6fd/attachment.html @@ -0,0 +1,23 @@ +

On Wed, Apr 4, 2012 at 09:01, Thierry Vignaud <thierry.vignaud@gmail.com> wrote:
+ +
On 4 April 2012 01:01,  <root@mageia.org> wrote:
+> Revision 3909 Author pterjan Date 2012-04-04 01:01:59 +0200 (Wed, 04 Apr
+> 2012)
+>
+> Log Message
+>
+> Drop check_chroot
+
+
A minor comment: it hasn't actually been dropped
+I think a better changelog would have been:
+
+"(check_chroot) merge it in check_build_chroot()"
 
Indeed, I'll improve log messages
 
+ + +Also, you didn't comment the call to create_build_chroot() instead
+of to create_chroot().
 
Indeed, this was an extension of the change I amended before commit when I noticed the call with those options that I was moving had a dedicated function.
+ +I should probably have done another commit

+Not that it matters a lot since create_build_chroot() got killed a little
+later but it would make history easier to read in 6 months (which it
+is already not for previous years :-( )

-- cgit v1.2.1