diff options
Diffstat (limited to 'zarb-ml/mageia-dev/attachments/20130103')
14 files changed, 186 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/attachments/20130103/038c3baf/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20130103/038c3baf/attachment-0001.html new file mode 100644 index 000000000..80e2c6b35 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/038c3baf/attachment-0001.html @@ -0,0 +1,23 @@ +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 5:23 PM, David Walser <span dir="ltr"><<a href="mailto:luigiwalser@yahoo.com" target="_blank">luigiwalser@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<div class="im"><br></div><div class="im"> +> for i in %{_datadir}/%{name}/basewsw/*;<br> +> do<br> +> file=`basename $i`<br> +><br> +> ln -sf $i %{buildroot}%{gamelibdir}/basewsw/$file<br> +> done<br> +<br> +</div>Looks better, that should make relative links.<br> +<br> +The problem is in the first line, the %{_datadir}/%{name}/basewsw/*<br> +should have a %{buildroot} at the beginning of it. Otherwise, it's matching<br> +against files on your actual system already installed at that location,<br> +which of course won't be there on the build system. That's why the * doesn't<br> +match anything, and becomes a literal *.<br> +<br> +</blockquote></div><br><br clear="all"><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">I had tried that before, but on that case, on my local build the symlinks are created like this:</span><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> + +<br></div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><div>ll /usr/lib64/games/warsow/basewsw/</div><div>total 4</div><div>lrwxrwxrwx 1 root root 114 Jan 3 18:01 * -> ../../../../../home/cauldron/mageia/cauldron/warsow/BUILDROOT/warsow-1.02-5.mga3.x86_64/usr/share/warsow/basewsw/*</div> + +<div><br></div></div></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/038c3baf/attachment.html b/zarb-ml/mageia-dev/attachments/20130103/038c3baf/attachment.html new file mode 100644 index 000000000..80e2c6b35 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/038c3baf/attachment.html @@ -0,0 +1,23 @@ +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 5:23 PM, David Walser <span dir="ltr"><<a href="mailto:luigiwalser@yahoo.com" target="_blank">luigiwalser@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<div class="im"><br></div><div class="im"> +> for i in %{_datadir}/%{name}/basewsw/*;<br> +> do<br> +> file=`basename $i`<br> +><br> +> ln -sf $i %{buildroot}%{gamelibdir}/basewsw/$file<br> +> done<br> +<br> +</div>Looks better, that should make relative links.<br> +<br> +The problem is in the first line, the %{_datadir}/%{name}/basewsw/*<br> +should have a %{buildroot} at the beginning of it. Otherwise, it's matching<br> +against files on your actual system already installed at that location,<br> +which of course won't be there on the build system. That's why the * doesn't<br> +match anything, and becomes a literal *.<br> +<br> +</blockquote></div><br><br clear="all"><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">I had tried that before, but on that case, on my local build the symlinks are created like this:</span><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> + +<br></div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><div>ll /usr/lib64/games/warsow/basewsw/</div><div>total 4</div><div>lrwxrwxrwx 1 root root 114 Jan 3 18:01 * -> ../../../../../home/cauldron/mageia/cauldron/warsow/BUILDROOT/warsow-1.02-5.mga3.x86_64/usr/share/warsow/basewsw/*</div> + +<div><br></div></div></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/4113855d/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20130103/4113855d/attachment-0001.html new file mode 100644 index 000000000..595a167af --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/4113855d/attachment-0001.html @@ -0,0 +1,13 @@ +<div><div>Hi,</div><div><br></div><div>I'm having a strange problem with warsow's package. To fix bug #8103 I need to symlink the game data contents from warsow-data into the same directory were the game libraries are located. The problem is that when I build the package in my local cauldron installation, the symlinks are correctly created, but when it's built by the BS they end up broken. I have tried two ways to create the symlinks, both work fine on my machine but not on the BS:</div> + +<div><br></div><div>ln -sf %{_datadir}/%{name}/basewsw/* %{buildroot}%{gamelibdir}/basewsw</div><div><br></div><div>or:</div><div><br></div><div><div>for i in %{_datadir}/%{name}/basewsw/*;</div><div>do</div><div> file=`basename $i`</div> + +<div> ln -sf $i %{buildroot}%{gamelibdir}/basewsw/$file</div><div>done</div></div><div><br></div><div>With any of those two ways in my machine the symlinks are correctly created:</div><div><br></div><div>[root@cauldron-laptop cauldron]# ll /usr/lib64/games/warsow/basewsw/</div> + +<div>total 28</div><div>lrwxrwxrwx 1 root root 47 Jan 3 16:42 configs -> ../../../../../usr/share/warsow/basewsw/configs/</div><div>lrwxrwxrwx 1 root root 52 Jan 3 16:42 data0_10.pk3 -> ../../../../../usr/share/warsow/basewsw/data0_10.pk3</div> + +<div>lrwxrwxrwx 1 root root 56 Jan 3 16:42 data0_10pure.pk3 -> ../../../../../usr/share/warsow/basewsw/data0_10pure.pk3</div><div>lrwxrwxrwx 1 root root 52 Jan 3 16:42 data1_10.pk3 -> ../../../../../usr/share/warsow/basewsw/data1_10.pk3</div> + +</div><div>[...]</div><div><br></div><div>But on the BS this is the result:</div><div><br></div><div>[root@localhost juancho]# ls -l /usr/lib64/games/warsow/basewsw/</div><div>total 0</div><div>lrwxrwxrwx 1 root root 41 Jan 3 11:13 * -> ../../../../../usr/share/warsow/basewsw/*</div> + +<div><br></div><div>A broken link to '*'. What can be causing this ?</div><br clear="all"><div>Thanks.</div><div><br></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/4113855d/attachment.html b/zarb-ml/mageia-dev/attachments/20130103/4113855d/attachment.html new file mode 100644 index 000000000..595a167af --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/4113855d/attachment.html @@ -0,0 +1,13 @@ +<div><div>Hi,</div><div><br></div><div>I'm having a strange problem with warsow's package. To fix bug #8103 I need to symlink the game data contents from warsow-data into the same directory were the game libraries are located. The problem is that when I build the package in my local cauldron installation, the symlinks are correctly created, but when it's built by the BS they end up broken. I have tried two ways to create the symlinks, both work fine on my machine but not on the BS:</div> + +<div><br></div><div>ln -sf %{_datadir}/%{name}/basewsw/* %{buildroot}%{gamelibdir}/basewsw</div><div><br></div><div>or:</div><div><br></div><div><div>for i in %{_datadir}/%{name}/basewsw/*;</div><div>do</div><div> file=`basename $i`</div> + +<div> ln -sf $i %{buildroot}%{gamelibdir}/basewsw/$file</div><div>done</div></div><div><br></div><div>With any of those two ways in my machine the symlinks are correctly created:</div><div><br></div><div>[root@cauldron-laptop cauldron]# ll /usr/lib64/games/warsow/basewsw/</div> + +<div>total 28</div><div>lrwxrwxrwx 1 root root 47 Jan 3 16:42 configs -> ../../../../../usr/share/warsow/basewsw/configs/</div><div>lrwxrwxrwx 1 root root 52 Jan 3 16:42 data0_10.pk3 -> ../../../../../usr/share/warsow/basewsw/data0_10.pk3</div> + +<div>lrwxrwxrwx 1 root root 56 Jan 3 16:42 data0_10pure.pk3 -> ../../../../../usr/share/warsow/basewsw/data0_10pure.pk3</div><div>lrwxrwxrwx 1 root root 52 Jan 3 16:42 data1_10.pk3 -> ../../../../../usr/share/warsow/basewsw/data1_10.pk3</div> + +</div><div>[...]</div><div><br></div><div>But on the BS this is the result:</div><div><br></div><div>[root@localhost juancho]# ls -l /usr/lib64/games/warsow/basewsw/</div><div>total 0</div><div>lrwxrwxrwx 1 root root 41 Jan 3 11:13 * -> ../../../../../usr/share/warsow/basewsw/*</div> + +<div><br></div><div>A broken link to '*'. What can be causing this ?</div><br clear="all"><div>Thanks.</div><div><br></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/53183d2d/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20130103/53183d2d/attachment-0001.html new file mode 100644 index 000000000..28739e059 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/53183d2d/attachment-0001.html @@ -0,0 +1,27 @@ +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 6:22 PM, Juan Luis Baptiste <span dir="ltr"><<a href="mailto:juancho@mageia.org" target="_blank">juancho@mageia.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 6:10 PM, Charles A Edwards <span dir="ltr"><<a href="mailto:CAE@eslrahc.com" target="_blank">CAE@eslrahc.com</a>></span> wrote:.<div class="im"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + + +<div><div> +<br> +</div></div>Why not have it created in post by the warsow-data rpm?<br> +<br> +%post<br> +ln -sf %{_datadir}/warsow/basewsw/* %{gamelibdir}/basewsw<br> +<br> +%postun<br> +rm -rf %{gamelibdir}/basewsw<br> +<span><font color="#888888"><br> +<br></font></span></blockquote><div><br></div></div><div class="im"><div><span style="color:rgb(34,34,34);font-size:13px;font-family:arial,sans-serif">Good idea, going to try this.</span> </div></div></div><span class="HOEnZb"><font color="#888888"><br clear="all"> + + +<div><br></div></font></span></blockquote><div><br></div><div>Nope it didn't work either, with Charle's suggestion I get this error:</div><div><br></div><div>ln: target ‘/usr/lib64/games/warsow/basewsw/’ is not a directory: No such file or directory</div> + +<div><br></div><div>Which I don't understand why it says no such file or directory if that's the link I want to create. And /usr/lib64/games/warsow exists. I also tried the for loop option with no success either:</div> + +<div><br></div><div><div>for i in `%{_datadir}/%{name}/basewsw/*`;</div><div>do</div><div> file=`basename $i`</div><div> ln -sf $i %{gamelibdir}/basewsw/$file</div><div>done</div></div><div><br></div></div><div>/var/tmp/rpm-tmp.HdlyUk: line 7: /usr/share/warsow-data/basewsw/*: No such file or directory</div> + +<div><br></div><div>It seems as if the expression `%{_datadir}/%{name}/basewsw/*` (don't mind the left quotes, it happens the same with them or not) of the for loop wasn't being expanded and $i ends with the literal value '*'.</div> + +<div><br></div><div>Any other suggestions ?</div><div><br></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/53183d2d/attachment.html b/zarb-ml/mageia-dev/attachments/20130103/53183d2d/attachment.html new file mode 100644 index 000000000..28739e059 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/53183d2d/attachment.html @@ -0,0 +1,27 @@ +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 6:22 PM, Juan Luis Baptiste <span dir="ltr"><<a href="mailto:juancho@mageia.org" target="_blank">juancho@mageia.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 6:10 PM, Charles A Edwards <span dir="ltr"><<a href="mailto:CAE@eslrahc.com" target="_blank">CAE@eslrahc.com</a>></span> wrote:.<div class="im"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + + +<div><div> +<br> +</div></div>Why not have it created in post by the warsow-data rpm?<br> +<br> +%post<br> +ln -sf %{_datadir}/warsow/basewsw/* %{gamelibdir}/basewsw<br> +<br> +%postun<br> +rm -rf %{gamelibdir}/basewsw<br> +<span><font color="#888888"><br> +<br></font></span></blockquote><div><br></div></div><div class="im"><div><span style="color:rgb(34,34,34);font-size:13px;font-family:arial,sans-serif">Good idea, going to try this.</span> </div></div></div><span class="HOEnZb"><font color="#888888"><br clear="all"> + + +<div><br></div></font></span></blockquote><div><br></div><div>Nope it didn't work either, with Charle's suggestion I get this error:</div><div><br></div><div>ln: target ‘/usr/lib64/games/warsow/basewsw/’ is not a directory: No such file or directory</div> + +<div><br></div><div>Which I don't understand why it says no such file or directory if that's the link I want to create. And /usr/lib64/games/warsow exists. I also tried the for loop option with no success either:</div> + +<div><br></div><div><div>for i in `%{_datadir}/%{name}/basewsw/*`;</div><div>do</div><div> file=`basename $i`</div><div> ln -sf $i %{gamelibdir}/basewsw/$file</div><div>done</div></div><div><br></div></div><div>/var/tmp/rpm-tmp.HdlyUk: line 7: /usr/share/warsow-data/basewsw/*: No such file or directory</div> + +<div><br></div><div>It seems as if the expression `%{_datadir}/%{name}/basewsw/*` (don't mind the left quotes, it happens the same with them or not) of the for loop wasn't being expanded and $i ends with the literal value '*'.</div> + +<div><br></div><div>Any other suggestions ?</div><div><br></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/6a120124/attachment-0001.asc b/zarb-ml/mageia-dev/attachments/20130103/6a120124/attachment-0001.asc new file mode 100644 index 000000000..ab4462cc2 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/6a120124/attachment-0001.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.10 (GNU/Linux) + +iD8DBQBQ5RvrT1rWTfpocyQRAjyAAKDn5eCKatkZ0mxNMWNl6Q+OOGSfTQCgiB81 +mL1A0gLBXXlIEKnczHvDYlw= +=cIFn +-----END PGP SIGNATURE----- diff --git a/zarb-ml/mageia-dev/attachments/20130103/6a120124/attachment.asc b/zarb-ml/mageia-dev/attachments/20130103/6a120124/attachment.asc new file mode 100644 index 000000000..ab4462cc2 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/6a120124/attachment.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.10 (GNU/Linux) + +iD8DBQBQ5RvrT1rWTfpocyQRAjyAAKDn5eCKatkZ0mxNMWNl6Q+OOGSfTQCgiB81 +mL1A0gLBXXlIEKnczHvDYlw= +=cIFn +-----END PGP SIGNATURE----- diff --git a/zarb-ml/mageia-dev/attachments/20130103/7809d14a/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20130103/7809d14a/attachment-0001.html new file mode 100644 index 000000000..374a9848b --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/7809d14a/attachment-0001.html @@ -0,0 +1,15 @@ +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 6:10 PM, Charles A Edwards <span dir="ltr"><<a href="mailto:CAE@eslrahc.com" target="_blank">CAE@eslrahc.com</a>></span> wrote:.<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<div class="HOEnZb"><div class="h5"> +<br> +</div></div>Why not have it created in post by the warsow-data rpm?<br> +<br> +%post<br> +ln -sf %{_datadir}/warsow/basewsw/* %{gamelibdir}/basewsw<br> +<br> +%postun<br> +rm -rf %{gamelibdir}/basewsw<br> +<span class="HOEnZb"><font color="#888888"><br> +<br></font></span></blockquote><div><br></div><div><span style="background-color:rgb(255,255,255);color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px">Good idea, going to try this.</span> </div></div><br clear="all"> + +<div><br></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/7809d14a/attachment.html b/zarb-ml/mageia-dev/attachments/20130103/7809d14a/attachment.html new file mode 100644 index 000000000..374a9848b --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/7809d14a/attachment.html @@ -0,0 +1,15 @@ +<br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 6:10 PM, Charles A Edwards <span dir="ltr"><<a href="mailto:CAE@eslrahc.com" target="_blank">CAE@eslrahc.com</a>></span> wrote:.<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<div class="HOEnZb"><div class="h5"> +<br> +</div></div>Why not have it created in post by the warsow-data rpm?<br> +<br> +%post<br> +ln -sf %{_datadir}/warsow/basewsw/* %{gamelibdir}/basewsw<br> +<br> +%postun<br> +rm -rf %{gamelibdir}/basewsw<br> +<span class="HOEnZb"><font color="#888888"><br> +<br></font></span></blockquote><div><br></div><div><span style="background-color:rgb(255,255,255);color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px">Good idea, going to try this.</span> </div></div><br clear="all"> + +<div><br></div>-- <br>Juancho diff --git a/zarb-ml/mageia-dev/attachments/20130103/8232c760/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20130103/8232c760/attachment-0001.html new file mode 100644 index 000000000..499027c42 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/8232c760/attachment-0001.html @@ -0,0 +1 @@ +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body ><div>Or you can just disable it in sys temsettings</div> <br><br><br>-------- Message d'origine --------<br>De : Guillaume Rousse <guillomovitch@gmail.com> <br>Date : <br>A : Mageia development mailing-list <mageia-dev@mageia.org> <br>Objet : Re: [Mageia-dev] Frequent freezes in M2 <br> <br><br>Le 03/01/2013 11:30, Anne Wilson a écrit :<br>>> imho: nepomuk is a beast and uses too much memory.<br>>><br>> Like many people, I don't see any advantage.<br>What prevents you from uninstalling it ?<br><br>-- <br>BOFH excuse #98:<br><br>The vendor put the bug there.<br></body>
\ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20130103/8232c760/attachment.html b/zarb-ml/mageia-dev/attachments/20130103/8232c760/attachment.html new file mode 100644 index 000000000..499027c42 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/8232c760/attachment.html @@ -0,0 +1 @@ +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body ><div>Or you can just disable it in sys temsettings</div> <br><br><br>-------- Message d'origine --------<br>De : Guillaume Rousse <guillomovitch@gmail.com> <br>Date : <br>A : Mageia development mailing-list <mageia-dev@mageia.org> <br>Objet : Re: [Mageia-dev] Frequent freezes in M2 <br> <br><br>Le 03/01/2013 11:30, Anne Wilson a écrit :<br>>> imho: nepomuk is a beast and uses too much memory.<br>>><br>> Like many people, I don't see any advantage.<br>What prevents you from uninstalling it ?<br><br>-- <br>BOFH excuse #98:<br><br>The vendor put the bug there.<br></body>
\ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20130103/8fcf01b7/attachment-0001.asc b/zarb-ml/mageia-dev/attachments/20130103/8fcf01b7/attachment-0001.asc new file mode 100644 index 000000000..0bfe646b3 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/8fcf01b7/attachment-0001.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.13 (GNU/Linux) + +iEYEARECAAYFAlDmD+kACgkQMYWkoYueEqtv9QCg2S8uB+KiyvU89wPfWFlgMjHs +BiAAnjcy6XNhSmAPd8ttfiV/Hzk4h7uj +=z+hs +-----END PGP SIGNATURE----- diff --git a/zarb-ml/mageia-dev/attachments/20130103/8fcf01b7/attachment.asc b/zarb-ml/mageia-dev/attachments/20130103/8fcf01b7/attachment.asc new file mode 100644 index 000000000..0bfe646b3 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20130103/8fcf01b7/attachment.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.13 (GNU/Linux) + +iEYEARECAAYFAlDmD+kACgkQMYWkoYueEqtv9QCg2S8uB+KiyvU89wPfWFlgMjHs +BiAAnjcy6XNhSmAPd8ttfiV/Hzk4h7uj +=z+hs +-----END PGP SIGNATURE----- |