Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[PALUDIS] Paludis-Extras repository
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next  
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
arek.k
Guru
Guru


Joined: 02 Jan 2006
Posts: 454

PostPosted: Tue Jul 10, 2007 8:30 pm    Post subject: Reply with quote

Maybe you add "show size of download" functionality, like it is in emerge:
Quote:
# emerge -pv gsview

These are the packages that would be merged, in order:

[ebuild N ] app-text/pstotext-1.9-r2 0 kB
[ebuild N ] app-text/gsview-4.8 USE="-doc" 1,447 kB

Total: 2 packages (2 new), Size of downloads: 1,447 kB


I suppose something like this:
Quote:
# paludis -ip gsview
Building target list...
Building dependency list...

These packages will be installed:

* app-text/pstotext-1.9-r2::gentoo {:0} [N] 0 kB
* app-text/gsview-4.8::gentoo {:0} [N] -doc 1,447 kB

Total: 2 packages (2 new); Size of downloads: 1,447 kB


This would be possible, if the paludis developers change the paludis source code (if they add this functionality).
I will be happy, if there appears functionality, which show the sum of downloads (size) at the end of paludis listing - something like this:
Quote:
# paludis -ip gsview
Building target list...
Building dependency list...

These packages will be installed:

* app-text/pstotext-1.9-r2::gentoo {:0} [N]
* app-text/gsview-4.8::gentoo {:0} [N] -doc

Total: 2 packages (2 new); Size of downloads: 1,447 kB


This is my todays idea (if you understands what I wrote above) ;).
Back to top
View user's profile Send private message
pussi
l33t
l33t


Joined: 08 May 2004
Posts: 727
Location: Finland

PostPosted: Tue Jul 10, 2007 10:34 pm    Post subject: Reply with quote

Is there some way to see install times with paludis?
If not, maybe you could port genlop to work with paludis :)
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Wed Jul 11, 2007 5:17 pm    Post subject: Reply with quote

pussi wrote:
Is there some way to see install times with paludis?
If not, maybe you could port genlop to work with paludis :)


yup, see patched version of portage-utils that is in paludis-extras repo. :D
There are examples on the p-e www site.
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
pussi
l33t
l33t


Joined: 08 May 2004
Posts: 727
Location: Finland

PostPosted: Wed Jul 11, 2007 8:15 pm    Post subject: Reply with quote

zxy wrote:
pussi wrote:
Is there some way to see install times with paludis?
If not, maybe you could port genlop to work with paludis :)


yup, see patched version of portage-utils that is in paludis-extras repo. :D
There are examples on the p-e www site.

sweet! thanks
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Wed Jul 11, 2007 8:25 pm    Post subject: Reply with quote

i like to run while installing (in another terminal)
Code:
watch qlop -cCv

_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Thu Jul 12, 2007 4:28 pm    Post subject: Reply with quote

module-rebuild in paludis-extras repo works with paludis (reportedly much faster, too)

But while surfing around, I encountered two www pages that made me try a more paludis-like way. Ok, here are the original pages:


And here is how I used the above links.

Create /etc/paludis/sets/kernel-modules.bash file and put the following line in

/etc/paludis/sets/kernel-modules.bash:
sed -e 's/.*:/* =/' /var/lib/module-rebuild/moduledb

now to rebuild the modules, just do:
Code:
paludis -ip kernel-modules
:D

--- EDIT --- (added from the posts below)

To force reinstall of all modules do:
Code:
paludis -ip kernel-modules --dl-reinstall-targets always


Also you can use -1 option if you don't want the modules to be added to the world.

And remove -p from the above commands for them to actualy do something. :wink:
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu


Last edited by zxy on Sun Jul 15, 2007 11:22 am; edited 2 times in total
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Thu Jul 12, 2007 8:47 pm    Post subject: Reply with quote

NEWS wrote:
NEWS: app-portage/gentoolkit-0.2.4_pre5-r1 now has (hopefuly) fixed revdep-rebuild. Package-masked for now, as it needs testing. Feedback welcome


To unmask it put the following in:
/etc/paludis/package_unmask.conf:
=app-portage/gentoolkit-0.2.4_pre5-r1

_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Sat Jul 14, 2007 4:29 pm    Post subject: Reply with quote

app-portage/gentoolkit-0.2.4_pre5-r1 is gonna be unmasked sometime tonight. As there were no bugreports and it didn't make any problems to me i hope everything will work well.
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sat Jul 14, 2007 7:28 pm    Post subject: Reply with quote

zxy wrote:
module-rebuild in paludis-extras repo works with paludis (reportedly much faster, too)

But while surfing around, I encountered two www pages that made me try a more paludis-like way. Ok, here are the original pages:


And here is how I used the above links.

Create /etc/paludis/sets/kernel-modules.bash file and put the following line in

/etc/paludis/sets/kernel-modules.bash:
sed -e 's/.*:/* =/' /var/lib/module-rebuild/moduledb

now to rebuild the modules, just do:
Code:
paludis -ip kernel-modules
:D


thanks :) ,

one problem though, is this supposed to show something?

Quote:
These packages will be installed:


Total: 0 packages

is my output
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Sat Jul 14, 2007 9:35 pm    Post subject: Reply with quote

With
Code:
paludis -ip kernel-modules

the packages are reinstalled if they are newer versions.

If you want to reinstall all of them, then use
Code:
paludis -ip kernel-modules --dl-reinstall-targets always


Sorry, i forgot to write about it in the post above. :roll:
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
dleverton
Guru
Guru


Joined: 28 Aug 2006
Posts: 517

PostPosted: Sat Jul 14, 2007 9:46 pm    Post subject: Reply with quote

zxy wrote:
If you want to reinstall all of them, then use
Code:
paludis -ip kernel-modules --dl-reinstall-targets always

You should probably add -1 to that too; if you don't, the set will be added to world. I don't think that'll hurt anything, but it's a bit silly. (If you've already run the command without -p and you want to remove it from world, just edit the world file manually.)
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Sat Jul 14, 2007 10:35 pm    Post subject: Reply with quote

dleverton wrote:
zxy wrote:
If you want to reinstall all of them, then use
Code:
paludis -ip kernel-modules --dl-reinstall-targets always

You should probably add -1 to that too; if you don't, the set will be added to world. I don't think that'll hurt anything, but it's a bit silly. (If you've already run the command without -p and you want to remove it from world, just edit the world file manually.)


Well i have nvidia-drivers in my world, so i didn't think of that, but if you have some drivers that are installed as a dependency (so they are not in world), then adding -1 would be better, yes.
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Sun Jul 15, 2007 11:23 am    Post subject: Reply with quote

NEWS wrote:
NEWS: app-portage/gentoolkit-0.2.4_pre5-r1 unmasked (revdep-rebuild)

_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
dleverton
Guru
Guru


Joined: 28 Aug 2006
Posts: 517

PostPosted: Sun Jul 22, 2007 12:18 pm    Post subject: Reply with quote

NEWS wrote:
NEWS: Added collision-protect 2.3 and undo-prelink 2.1: suppress irrelevant warnings from trunk Paludis.
Back to top
View user's profile Send private message
meka
Tux's lil' helper
Tux's lil' helper


Joined: 16 Dec 2003
Posts: 85
Location: Novi Sad / Vojvodina / Srbija

PostPosted: Tue Jul 31, 2007 2:07 pm    Post subject: Reply with quote

Just a little hack required for file locking. I need it for my portage on nfs and multiple machines fetching distfiles. This is the script and here are the instructions how to enable it. Save the script somewhere in $PATH with the name paludis-wget-wrapper.sh (for example) and set two things in /etc/paludis/bashrc:
Code:
export WGET_WRAPPER="/path/to/wrapper"
export USE_LOCKFILE="yes"

The ideal situation is to just set USE_LOCKFILE and that everything works as expected, but this is a quick and dirty trick. Ciaranm suggested it shouldn't be done like this, and he is probably right, but I need locking for yesterday, so this will do the trick for now. Will try to implement it as ciaranm suggested once I finish the diploma work. Let me know if this doesn't work.
Back to top
View user's profile Send private message
Phlogiston
Veteran
Veteran


Joined: 27 Jan 2004
Posts: 1925
Location: Europe, Swizerland

PostPosted: Sat Aug 04, 2007 11:18 am    Post subject: Reply with quote

Homepage server down?
_________________
Workstation: 5.1 SurroundSound, LIRC remote control; Laptop [IBM-T43]: patched sources, s2disk/ram, fingerprint sensor
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sat Aug 04, 2007 1:47 pm    Post subject: Reply with quote

Phlogiston wrote:
Homepage server down?


the rsync-server too :(
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Mon Aug 06, 2007 2:31 pm    Post subject: Reply with quote

kernelOfTruth wrote:
Phlogiston wrote:
Homepage server down?


the rsync-server too :(


Not any more. (I was on vacation)

And some permanent solutions to the problem ^^^ are comming. :D
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Tue Aug 07, 2007 1:50 pm    Post subject: Reply with quote

NEWS wrote:
patched app-portage/gentoolkit-0.2.4_pre6 is in the repository now (revdep-rebuild)

NEWS wrote:
New mirror provided by LUGoNS (http://ns-linux.org)
see


If you use gentoolkit don't forget to set the paludis useflag.

And thanks to people in Novi Sad (Serbia/Vojvodina) for providing a mirror. :D
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Wed Aug 08, 2007 11:45 am    Post subject: Reply with quote

NEWS wrote:
All hooks and paludis wrapper are now available (tested) for sparc, too.

Did anybody use any paludis-extras package on ppc or any other platform? If so, please post the results.

--edit---
NEWS wrote:
eselect-paludis-hooks is now ~sparc keyworded, too.

_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Sat Aug 18, 2007 2:17 pm    Post subject: Reply with quote

NEWS wrote:
NEWS: app-paludis/paludis-wrapper-0.1.4 and app-paludis/paludis hooks-ask-2.3 : fixes pause when reinstalling paludis.


No delays any more when paludis is restatrted automaticaly after it is being reinstalled/updated and more packages were to be installed after it. :D
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
Phlogiston
Veteran
Veteran


Joined: 27 Jan 2004
Posts: 1925
Location: Europe, Swizerland

PostPosted: Sat Aug 18, 2007 2:25 pm    Post subject: Reply with quote

May there be parallel fetch someday?
_________________
Workstation: 5.1 SurroundSound, LIRC remote control; Laptop [IBM-T43]: patched sources, s2disk/ram, fingerprint sensor
Back to top
View user's profile Send private message
zxy
Veteran
Veteran


Joined: 06 Jan 2006
Posts: 1160
Location: in bed in front of the computer

PostPosted: Sat Aug 18, 2007 2:34 pm    Post subject: Reply with quote

Phlogiston wrote:
May there be parallel fetch someday?

There were a few attempts to do it. But i guess we'll wait until 0.26.0 comes out or any version that will introduce threads. Maybe it will be part of paludis then. If not, it can be done of course. But if there is something working out there already I'm all ears.

--- edit ---

Anybody is of course invited to #paludis-extras on IRC Freenode to discuss any suggestion or to get involved in development of any idea.
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
meka
Tux's lil' helper
Tux's lil' helper


Joined: 16 Dec 2003
Posts: 85
Location: Novi Sad / Vojvodina / Srbija

PostPosted: Mon Aug 20, 2007 9:16 am    Post subject: Reply with quote

arek.k wrote:
Maybe you add "show size of download" functionality, like it is in emerge

Once Manifest2 is finished, it could be done, but not before that.
Back to top
View user's profile Send private message
Ishiki
Tux's lil' helper
Tux's lil' helper


Joined: 31 Aug 2005
Posts: 86

PostPosted: Thu Sep 13, 2007 5:07 pm    Post subject: Reply with quote

http://paludis-extras.org/paludis-extras/overlay/app-portage/portage-utils/ChangeLog
is gone and I can't see examples of qlop usage...
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
Page 5 of 10

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum