Re: amarok

2013-02-18 Thread Łukasz Maśko
In my case, I've noticed no problems. Migration from 4.9 was just an update. 
Arch i686, all other packages from latest Th+test+ready. 

"Arkadiusz Miśkiewicz"  napisał:

>On Sunday 17 of February 2013, Lukasz Glebicki wrote:
>> On Saturday 16 of February 2013 19:25:03 Łukasz Maśko wrote:
>> > What is wrong with your KDE after upgrade? Any details?
>> 
>> kwin was crashing. I had to come back to have a usable desktop.
>
>Here taskbar was taking down whole plasma. Removing taskbar manually
>from 
>config files, running kde and readding it from kde fixed the problem.
>
>-- 
>Arkadiusz Miśkiewicz, arekm / maven.pl
>___
>pld-devel-en mailing list
>pld-devel-en@lists.pld-linux.org
>http://lists.pld-linux.org/mailman/listinfo/pld-devel-en

-- 
Pozdrawiam. Łukasz Maśko 
Wysłane za pomocą K-9 Mail.
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: clang

2013-02-18 Thread Elan Ruusamäe

On 17.02.2013 16:37, Jakub Bogusz wrote:

On Sun, Feb 17, 2013 at 01:50:38PM +0200, Elan Ruusamäe wrote:

is pld clang broken? it does not seem to find it's own headers

glen@carme-pld diskdev_cmds-540.1.linux3/BlocksRunTime $ cat test.c
#include 

glen@carme-pld diskdev_cmds-540.1.linux3/BlocksRunTime $ clang test.c
test.c:2:10: fatal error: 'stdbool.h' file not found
#include 
  ^
1 error generated.

glen@carme-pld diskdev_cmds-540.1.linux3/BlocksRunTime $ rpm -ql
clang|grep stddef.h
/usr/lib64/clang/3.2/include/stddef.h

I think I finally found where this path comes from.
Please check release 3.


it is ok now.

--
glen

___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: [packages/bash-completion] - build fix

2013-02-18 Thread Elan Ruusamäe

On 18.02.2013 12:50, Arkadiusz Miśkiewicz wrote:

On Monday 18 of February 2013, Elan Ruusamäe wrote:

On 18.02.2013 11:52, Arkadiusz Miśkiewicz wrote:

On Monday 18 of February 2013, Elan Ruusamäe wrote:

On 17.02.2013 01:20, arekm wrote:

commit 0113649bc4feb08040f32c567044c1f9ba942350
Author: Arkadiusz Miśkiewicz 
Date:   Sun Feb 17 00:20:13 2013 +0100

   - build fix

bash-completion.spec | 2 +-

1 file changed, 1 insertion(+), 1 deletion(-)

---
diff --git a/bash-completion.spec b/bash-completion.spec
index 51263e2..bc5a28a 100644
--- a/bash-completion.spec
+++ b/bash-completion.spec
@@ -41,7 +41,7 @@ dopełnianie parametrów linii poleceń.

%prep
%setup -q

-cp -p %{SOURCE4} completions/pear
+cp -p '%{SOURCE4}' completions/pear

%patch0 -p1
%patch1 -p1

eee, eek? if the error was because sourcedir contained space, then
99.99% of our specs are broken

what was the error?

SOURCE4 name contains & character

rpm 5 treats '#' as comment (at least on SourceX lines), you must use
different hack here:

cp -p '%{SOURCE4}' works fine, too for this particular issue I had.

basename-rename-hack is more consistent, it keeps the originally 
intended filename, i.e "pear" not name what you got: " 
pear?revision=285425&view=co"


you fixed only shell quoting, but rpmbuild takes filenames by cutting 
out from last slash.


and the basename is also used when fetching from distfiles, currently 
you were lucky as query-string part (?revision=285425&view=co) is 
ignored when fetching from distfiles via ftp.



--
glen

___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: [packages/bash-completion] - build fix

2013-02-18 Thread Arkadiusz Miśkiewicz
On Monday 18 of February 2013, Elan Ruusamäe wrote:
> On 18.02.2013 11:52, Arkadiusz Miśkiewicz wrote:
> > On Monday 18 of February 2013, Elan Ruusamäe wrote:
> >> On 17.02.2013 01:20, arekm wrote:
> >>> commit 0113649bc4feb08040f32c567044c1f9ba942350
> >>> Author: Arkadiusz Miśkiewicz 
> >>> Date:   Sun Feb 17 00:20:13 2013 +0100
> >>> 
> >>>   - build fix
> >>>
> >>>bash-completion.spec | 2 +-
> >>>1 file changed, 1 insertion(+), 1 deletion(-)
> >>> 
> >>> ---
> >>> diff --git a/bash-completion.spec b/bash-completion.spec
> >>> index 51263e2..bc5a28a 100644
> >>> --- a/bash-completion.spec
> >>> +++ b/bash-completion.spec
> >>> @@ -41,7 +41,7 @@ dopełnianie parametrów linii poleceń.
> >>> 
> >>>%prep
> >>>%setup -q
> >>> 
> >>> -cp -p %{SOURCE4} completions/pear
> >>> +cp -p '%{SOURCE4}' completions/pear
> >>> 
> >>>%patch0 -p1
> >>>%patch1 -p1
> >> 
> >> eee, eek? if the error was because sourcedir contained space, then
> >> 99.99% of our specs are broken
> >> 
> >> what was the error?
> > 
> > SOURCE4 name contains & character
> 
> rpm 5 treats '#' as comment (at least on SourceX lines), you must use
> different hack here:

cp -p '%{SOURCE4}' works fine, too for this particular issue I had.

-- 
Arkadiusz Miśkiewicz, arekm / maven.pl
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: [packages/bash-completion] - build fix

2013-02-18 Thread Elan Ruusamäe

On 18.02.2013 11:52, Arkadiusz Miśkiewicz wrote:

On Monday 18 of February 2013, Elan Ruusamäe wrote:

On 17.02.2013 01:20, arekm wrote:

commit 0113649bc4feb08040f32c567044c1f9ba942350
Author: Arkadiusz Miśkiewicz 
Date:   Sun Feb 17 00:20:13 2013 +0100

  - build fix
   
   bash-completion.spec | 2 +-

   1 file changed, 1 insertion(+), 1 deletion(-)

---
diff --git a/bash-completion.spec b/bash-completion.spec
index 51263e2..bc5a28a 100644
--- a/bash-completion.spec
+++ b/bash-completion.spec
@@ -41,7 +41,7 @@ dopełnianie parametrów linii poleceń.

   %prep
   %setup -q

-cp -p %{SOURCE4} completions/pear
+cp -p '%{SOURCE4}' completions/pear

   %patch0 -p1
   %patch1 -p1

eee, eek? if the error was because sourcedir contained space, then
99.99% of our specs are broken

what was the error?

SOURCE4 name contains & character



rpm 5 treats '#' as comment (at least on SourceX lines), you must use 
different hack here:


Source4:
http://svn.php.net/viewvc/pear2/sandbox/PEAR_BashCompletion/trunk/pear?revision=285425&view=co#/pear
->
Source4:
http://svn.php.net/viewvc/pear2/sandbox/PEAR_BashCompletion/trunk/pear?revision=285425&view=co&/pear



--
glen

___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: [packages/bash-completion] - build fix

2013-02-18 Thread Arkadiusz Miśkiewicz
On Monday 18 of February 2013, Elan Ruusamäe wrote:
> On 17.02.2013 01:20, arekm wrote:
> > commit 0113649bc4feb08040f32c567044c1f9ba942350
> > Author: Arkadiusz Miśkiewicz 
> > Date:   Sun Feb 17 00:20:13 2013 +0100
> > 
> >  - build fix
> >   
> >   bash-completion.spec | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > ---
> > diff --git a/bash-completion.spec b/bash-completion.spec
> > index 51263e2..bc5a28a 100644
> > --- a/bash-completion.spec
> > +++ b/bash-completion.spec
> > @@ -41,7 +41,7 @@ dopełnianie parametrów linii poleceń.
> > 
> >   %prep
> >   %setup -q
> > 
> > -cp -p %{SOURCE4} completions/pear
> > +cp -p '%{SOURCE4}' completions/pear
> > 
> >   %patch0 -p1
> >   %patch1 -p1
> 
> eee, eek? if the error was because sourcedir contained space, then
> 99.99% of our specs are broken
> 
> what was the error?

SOURCE4 name contains & character

-- 
Arkadiusz Miśkiewicz, arekm / maven.pl
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: [packages/bash-completion] - build fix

2013-02-18 Thread Elan Ruusamäe

On 17.02.2013 01:20, arekm wrote:

commit 0113649bc4feb08040f32c567044c1f9ba942350
Author: Arkadiusz Miśkiewicz 
Date:   Sun Feb 17 00:20:13 2013 +0100

 - build fix

  bash-completion.spec | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/bash-completion.spec b/bash-completion.spec
index 51263e2..bc5a28a 100644
--- a/bash-completion.spec
+++ b/bash-completion.spec
@@ -41,7 +41,7 @@ dopełnianie parametrów linii poleceń.
  
  %prep

  %setup -q
-cp -p %{SOURCE4} completions/pear
+cp -p '%{SOURCE4}' completions/pear
  %patch0 -p1
  %patch1 -p1
eee, eek? if the error was because sourcedir contained space, then 
99.99% of our specs are broken


what was the error?

--
glen

___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en