Page 1 of 1

[solved] slapt-src log and remove package.

Posted: 18. Mar 2012, 15:50
by ink3
I can't find where slapt-src have log from builds package (sometimes I need see something interesting).
Next problem:
How delete package installed with slapt-src? I use removepkg, but may have the option of slapt-src?

Re: slapt-src log and remove package.

Posted: 18. Mar 2012, 18:48
by gapan
ink3 wrote:I can't find where slapt-src have log from builds package (sometimes I need see something interesting).
It doesn't. If you want logs when using slapt-src you should make sure they are created yourself. Something like:

Code: Select all

slapt-src -i foo 2>&1 | tee build.log
If you use Sourcery, it will keep logs for you anyway though.
ink3 wrote:How delete package installed with slapt-src? I use removepkg, but may have the option of slapt-src?
No, slapt-src is not a package manager, so it doesn't need that option. You should use "spkg -d" or "removepkg" (the former is better).

Re: [solved] slapt-src log and remove package.

Posted: 18. Mar 2012, 19:58
by ink3
ok. thanks :)