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
zxy
Veteran
Veteran


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

PostPosted: Thu May 10, 2007 12:53 pm    Post subject: Reply with quote

kernelOfTruth wrote:
I don't know if it's related to your repository, but could you please fix revdep-rebuild in the paludis-patched gentoolkit ?

I always get:

Quote:
All prepared. Starting rebuild...
paludis --preserve-world --install -p =sys-block/gparted-0.3.3 =You
Building target list...
Unhandled exception:
* In program paludis --preserve-world --install -p =sys-block/gparted-0.3.3 =You:
* When performing install action from command line:
* When adding install target '=You':
* When validating package name part '=You':
* Name '=You' is not a valid package name part (paludis::PackageNamePartError)


thanks in advance


Now you have it ( it waited for 2 weeks, due to my holidays... :roll: )
You can use app-portage/gentoolkit-0.2.4_pre5 from the overlay but you need to set paludis useflag for the paludis version. You need to mask gentoolkit-20007???? versions.... until they are deleted from the overlay (that will be when gentoolkit-0.2.4 is out )
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
krisse
Guru
Guru


Joined: 15 Mar 2005
Posts: 325
Location: Sweden

PostPosted: Fri May 25, 2007 8:58 am    Post subject: Reply with quote

Paludis Release Notes wrote:
0.24.0:
* Ranged dependencies using foo/bar[>=1&<2] or foo/bar[=1|=2] are now allowed. An asterisk can now be used for the category and / or package part of a dependency specification in places where it makes sense. Use of '*' in keywords.conf, use.conf, licenses.conf is deprecated in favour of '*/*'.


This does not work with my current version of the paludis-wrapper (0.1.2):
Code:
~ $ _paludis_wrapper.bash -up "<dev-db/phpmyadmin-2.10.0.2"
/usr/bin/_paludis_wrapper.bash: line 73: dev-db/phpmyadmin-2.10.0.2: No such file or directory


Running the same command without wrapper:
Code:
~ $ paludis -up "<dev-db/phpmyadmin-2.10.0.2"
Building unmerge list... done

These packages will be uninstalled:

* dev-db/phpmyadmin-2.9.2_rc1::installed


Total: 1 package


I tried changing the wrapper as per trucs suggestion:
Code:
Index: src/app-paludis/paludis-wrapper/_paludis_wrapper.bash
===================================================================
--- src/app-paludis/paludis-wrapper/_paludis_wrapper.bash       (revision 483)
+++ src/app-paludis/paludis-wrapper/_paludis_wrapper.bash       (working copy)
@@ -68,6 +68,8 @@
 fi

 export PALUDIS_HOOKS_ASK_PPID=${PPID}
-cmd=$(echo ${cmd} | sed -e "s/(\([^)]*\))/'(\1)'/g")
+cmd=$(echo ${cmd} | sed -e "s#=[^/]*/[^ ]*#'&'#g" \
+       -e "s#[^ /]*/[^ ]*\[[^ ]*\]#'&'#g" \
+       -e "s#--add-to-world-spec (\([^)]*\))#--add-to-world-spec '(\1)'#" )
 trap "exit " EXIT SIGINT SIGTERM
 eval ${cmd}
but I'm still getting the same error.
Back to top
View user's profile Send private message
truc
Advocate
Advocate


Joined: 25 Jul 2005
Posts: 3199

PostPosted: Fri May 25, 2007 9:33 am    Post subject: Reply with quote

oo, my fault, this should have had support for things like that "foo/bar[>=1&<2] or foo/bar[=1|=2]", but I did not know paludis also support things like '<foo/bar-x'

Give me a liitle time and I should fix this
_________________
The End of the Internet!
Back to top
View user's profile Send private message
dleverton
Guru
Guru


Joined: 28 Aug 2006
Posts: 517

PostPosted: Fri May 25, 2007 9:45 am    Post subject: Reply with quote

truc wrote:
Give me a liitle time and I should fix this

Simplest way to fix it IMHO would be to make ${cmd} into a bash array, instead of a string. Then instead of evaling it, you can just do
Code:
"${cmd[@]}"
Back to top
View user's profile Send private message
truc
Advocate
Advocate


Joined: 25 Jul 2005
Posts: 3199

PostPosted: Fri May 25, 2007 11:42 am    Post subject: Reply with quote

dleverton wrote:
Simplest way to fix it IMHO would be to make ${cmd} into a bash array, instead of a string. Then instead of evaling it, you can just do
Code:
"${cmd[@]}"

I had completely forgotten about that, but you did already said that, and for good reasons!

here is a diff with the original version
and here is the full script, if you need it (but then don't forget to change the value of PALUDIS_WRAPPER_ASK, and PALUDIS_WRAPPER_NICE to what they were for you (yes or no), at the beginning at the script.

Thanks again.
_________________
The End of the Internet!
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: Fri May 25, 2007 9:30 pm    Post subject: Reply with quote

Paludis-extras is back on line.

I was away for a few days and due to some power failures box didn't start up again as it should. Looks like i need an UPS more and more.
_________________
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 May 26, 2007 9:16 am    Post subject: Reply with quote

paludis-wrapper-1.3 is now in the repository (still masked until it is tested more). truc modified it so it should solve the problems reported lately.

It works for me...
_________________
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 May 27, 2007 5:07 pm    Post subject: Reply with quote

gentoolkit-0.2.4_pre5 with the useflag paludis now installs patched revdep-rebuild.

All older versions (2007???? ) are now masked
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
sfp-a7x
n00b
n00b


Joined: 16 Nov 2004
Posts: 47

PostPosted: Mon May 28, 2007 7:15 pm    Post subject: Reply with quote

zxy wrote:
gentoolkit-0.2.4_pre5 with the useflag paludis now installs patched revdep-rebuild.

All older versions (2007???? ) are now masked

Should gentoolkit-20061014-r1 be masked as well? My paludis wants to downgrade gentoolkit to that version.

(BTW, thanks for the overlay!)
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 May 28, 2007 7:24 pm    Post subject: Reply with quote

just did it. thanks for reporting.
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
TrizoLakai
Apprentice
Apprentice


Joined: 09 Jun 2006
Posts: 231
Location: Nantes (FRANCE)

PostPosted: Tue Jun 12, 2007 5:17 pm    Post subject: Re: [PALUDIS] Paludis-Extras repository Reply with quote

zxy wrote:

Code:
# CHANGE THE LINES COMMENTED WITH # TO YOUR SYSTEM'S SETTINGS

# location = ${ROOT}/var/paludis/tepositories/paludis-extras
master_repository = gentoo
sync =  rsync://drzile.dyndns.org/paludis-extras
cache = /var/empty
format = ebuild
importance = 10
names_cache = ${location}/.cache/names



Problem :
There is a probleme if you copy / paste this file. Because of space after arguments they are messages like this :
Code:
localhost trizolakai # paludis -s x-paludis-extras                       

Unhandled exception:
  * In program paludis -s x-paludis-extras:
  * When making environment from specification '':
  * When loading paludis configuration:
  * When reading repository file '/etc/paludis/repositories/paludis-extras.conf':
  * Couldn't destringify '10 ' (paludis::DestringifyError)
localhost trizolakai #



Solution :
Clear spaces at the end of all lignes


info :
Code:
localhost trizolakai # paludis -V
paludis 0.24.2
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 Jun 17, 2007 2:05 am    Post subject: Reply with quote

paludis-hooks-ask-2.2.1-r1 now has ask functionality for fetching, too (added symlink to fetch_all_pre)
_________________
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 Jun 21, 2007 7:41 pm    Post subject: Reply with quote

NEWS wrote:
New rsync and distfiles mirror was added.
They are hosted by niki 8)

Niki, thanks :D


Rsync server: a sync line in the paludis-extras.conf needs a new server to be added in the same line (it probably looks wrapped in the browser)
paludis-extras.conf:
...
sync =  rsync://drzile.dyndns.org/paludis-extras rsync://server.guldbrand.net/paludis-extras
...

Distfiles mirror: will jump in automatically whenever the main distfiles server is down.

I hope this will solve the troubles, when I experience power shortages due to the strange weather we have here lately. :roll:
_________________
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 Jun 27, 2007 4:50 am    Post subject: Reply with quote

NEWS wrote:
binutils-config patched for paludis updated to version 1.9-r4

If you want to use it, don't forget to set the paludis useflag.
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu


Last edited by zxy on Fri Jul 06, 2007 1:47 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: Mon Jul 02, 2007 5:56 pm    Post subject: Reply with quote

Is anybody willing to fix pathched revdep-rebuild .... if not, it will be masked in the repository sooon

I didn't use it for a loong time, as there is check-linkage.rb.
_________________
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: Fri Jul 06, 2007 1:47 am    Post subject: Reply with quote

NEWS wrote:
app-paludis/playman-0.1.0 added to the overlay

This addition is due to a request, because this file is not easily available on [url]paludis.pioto.org[/url] (somewhere deep in the svn).

Author of this program is a paludis-dev Mike Kelly and he has nothing to do with paludis-extras besides that his program was included in the repo.

Some improvements to this program are already planned. Probably in a few days.
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
nikaya
Veteran
Veteran


Joined: 13 May 2006
Posts: 1471
Location: Germany

PostPosted: Fri Jul 06, 2007 11:37 am    Post subject: Reply with quote

zxy wrote:
Is anybody willing to fix pathched revdep-rebuild .... if not, it will be masked in the repository sooon

I didn't use it for a loong time, as there is check-linkage.rb.

check_linkage.rb is reinstalling all binary packages like openoffice-bin,virtualbox-bin or sun-jdk etc. everytime I run it.As long as it has this behaviour I prefer revdep-rebuild.
_________________
Notes on Dhamma
How to waste your time: look for an explanation of consciousness, ask to know what feeling is. (Nanavira Thera)
Back to top
View user's profile Send private message
arek.k
Guru
Guru


Joined: 02 Jan 2006
Posts: 454

PostPosted: Mon Jul 09, 2007 10:47 am    Post subject: Re: [PALUDIS] Paludis-Extras repository Reply with quote

zxy wrote:
  • There is also a collection of hooks for paludis.
    • app-paludis/paludis-hooks-0.3.3
      • ask-2.2.1 - truc, zxy
      • check-security-updates-1.1-r1
      • collision-protect-2.2-r1 - dleverton
      • compress-man-1.1 - pdouble, truc
      • sync-disks-1.0 - zxy
      • undo-prelink-2.0-r1 - dleverton
      • update-eix-2.3 - pioto; contributors Bo Andersen, truc, dleverton


What functionality update-eix provides? I have installed app-paludis/paludis-hooks with the following use.conf:
Code:
# cat /etc/paludis/use.conf
...
*/* PALUDIS_HOOKS: -* ask check-security-updates collision-protect nice update-eix
...

and I don't see any difference before, and after app-paludis/paludis-hooks installation.
I mean after installation eix and update-eix works same like before it. The -ask and -nice works fine.
What should I expect after app-paludis/paludis-hooks installation with paludis_hooks_update-eix USE flag?
Back to top
View user's profile Send private message
nikaya
Veteran
Veteran


Joined: 13 May 2006
Posts: 1471
Location: Germany

PostPosted: Mon Jul 09, 2007 11:00 pm    Post subject: Re: [PALUDIS] Paludis-Extras repository Reply with quote

arek.k wrote:

What should I expect after app-paludis/paludis-hooks installation with paludis_hooks_update-eix USE flag?

You will see it after a 'paludis --sync'.It has the same function as 'eix-sync'.It automatically updates eix and gives you at the end of syncing a nice colored output of packages which are new since last sync.
_________________
Notes on Dhamma
How to waste your time: look for an explanation of consciousness, ask to know what feeling is. (Nanavira Thera)
Back to top
View user's profile Send private message
arek.k
Guru
Guru


Joined: 02 Jan 2006
Posts: 454

PostPosted: Mon Jul 09, 2007 11:53 pm    Post subject: Reply with quote

You mean this:
Code:
# paludis -s
...
update-eix> Diffing databases (12096 - 12101 packages)
update-eix> [>]  == app-office/mozilla-sunbird-bin (0.3.1 -> 0.5): The Mozilla Sunbird Calendar
update-eix> [>]  == dev-perl/Algorithm-Diff (1.1901 -> 1.1902): Algorithm::Diff - Compute intelligent differences between two files / lists
update-eix> [>]  == dev-perl/AppConfig (1.64 -> 1.65): Perl5 module for reading configuration files and parsing command line arguments.
update-eix> [U]  == dev-perl/Archive-Zip (1.18@2007-07-09; 1.18 -> 1.20): A wrapper that lets you read Zip archive members as if they were files
update-eix> [>]  == dev-perl/Cairo (1.02.2 -> 1.04.1): Perl interface to the cairo library
update-eix> [>]  == dev-perl/Cgi-Simple (0.83 -> 1.0): A Simple totally OO CGI interface that is CGI.pm compliant
update-eix> [>]  == dev-perl/Crypt-SSLeay (0.54 -> 0.55): Crypt::SSLeay module for perl
update-eix> [>]  == dev-perl/Event-ExecFlow (0.62 -> 0.63): High level API for event-based execution flow control
update-eix> [>]  == dev-perl/List-MoreUtils (~0.21 -> 0.21): Provide the missing functionality from List::Util
update-eix> [>]  == dev-perl/Test-Number-Delta (~1.03 -> 1.03): Perl interface to the cairo library
update-eix> [>]  == net-analyzer/echoping (5.2.0 -> 6.0.1): echoping is a small program to test performances of remote servers
update-eix> [>]  == net-analyzer/ftester (0.9 -> 1.0): Ftester - Firewall and Intrusion Detection System testing tool
update-eix> [>]  == net-analyzer/gnu-netcat (0.7.1 -> 0.7.1-r1): the GNU network swiss army knife
update-eix> [>]  == net-analyzer/hydra (5.3 -> 5.4): Advanced parallized login hacker
update-eix> [>]  == net-analyzer/linkchecker (4.4 -> 4.6): LinkChecker can check HTML documents for broken links.
update-eix> [>]  == net-analyzer/nikto (1.35 -> 1.36): Web Server vulnerability scanner.
update-eix> [>]  == net-analyzer/p0f (2.0.8 -> 2.0.8-r1): p0f performs passive OS detection based on SYN packets.
update-eix> [>]  == net-analyzer/snmptt (1.0 -> 1.1): SNMP Trap Translator
update-eix> [>]  == net-analyzer/tcptrack (1.1.5 -> 1.2.0): Passive per-connection tcp bandwidth monitor
update-eix> [>]  == net-analyzer/ttt (1.8.1 -> 1.8.1-r1): Tele Traffic Taper (ttt) - Real-time Graphical Remote Traffic Monitor
update-eix> [D]  == sys-libs/ncurses (5.6-r2(5)@2007-07-09; 5.6-r2(5) -> 5.6-r1(5)): console display library
update-eix> [N]  >> dev-haskell/alut (~1.0 [M]~2.0 [M]~2.0.1): A Haskell binding for the OpenAL Utility Toolkit
update-eix> [N]  >> dev-haskell/glut (~2.0 [M]~2.0-r1 [M]~2.1.1): GLUT bindings for haskell
update-eix> [N]  >> dev-haskell/openal (~1.2 [M]~1.3 [M]~1.3.1): A Haskell binding to the OpenAL cross-platform 3D audio API
update-eix> [N]  >> dev-haskell/opengl (~2.0 [M]~2.1 [M]~2.2.1): OpenGL bindings for haskell
update-eix> [N]  >> dev-haskell/x11 (~1.1 [M]~1.2 [M]~1.2.1 [M]~1.2.2): X11 bindings for haskell


I've expected, it will update eix database, or tell eix (eix-update) to use paludis configuration files instead of portage configuration files.
The info after paludis -s looks nice, but I still have invalid eix database:
Code:
# eix -I | grep [\[D\]]
[D] app-laptop/hdapsd
[D] app-laptop/khdapsmonitor
[D] app-paludis/paludis-hooks [3]
[D] app-paludis/paludis-hooks-ask [3]
[D] app-paludis/paludis-hooks-check-security-updates [3]
[D] app-paludis/paludis-hooks-collision-protect [3]
[D] app-paludis/paludis-hooks-update-eix [3]
[D] app-paludis/paludis-wrapper [3]
[D] app-portage/gentoolkit
[D] app-portage/portage-utils
[UD] kde-base/konsole
[D] kde-misc/kcometen3 [2]
[D] net-im/skype
[D] net-im/kadu-filtering [2]
[D] sys-auth/pam_usb
[D] sys-libs/ncurses
[D] x11-themes/qtcurve

Most of packages at those list don't need to be downgrade :(.
Back to top
View user's profile Send private message
nikaya
Veteran
Veteran


Joined: 13 May 2006
Posts: 1471
Location: Germany

PostPosted: Tue Jul 10, 2007 12:10 am    Post subject: Reply with quote

arek.k wrote:

I've expected, it will update eix database, or tell eix (eix-update) to use paludis configuration files instead of portage configuration files.
[...]
Most of packages at those list don't need to be downgrade

That's right and a known problem:
https://forums.gentoo.org/viewtopic-p-4131036.html#4131036
Use palsearch instead. :wink:
_________________
Notes on Dhamma
How to waste your time: look for an explanation of consciousness, ask to know what feeling is. (Nanavira Thera)
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 Jul 10, 2007 12:14 am    Post subject: Reply with quote

@arek.k: Yeah, eix doesn't work with paludis's config files. It still reads make.conf for configuration instead of paludis's configs.

I asked eix's developers about paludis support on their bugtracker and they said that they don't plan to support it, though they would be willing to accept nicely written patches.

Here is the bug: http://sourceforge.net/tracker/index.php?func=detail&aid=1747784&group_id=128101&atid=710611

The update-eix-hook is used for only for syncing, other stuff is eix dependant. :(
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
Back to top
View user's profile Send private message
arek.k
Guru
Guru


Joined: 02 Jan 2006
Posts: 454

PostPosted: Tue Jul 10, 2007 12:29 am    Post subject: Reply with quote

Thanks for answer. I have reinstalled app-paludis/paludis-hooks a few times, bacause I was thinking that I do something wrong :(.
Now I understand. But this isn't only make.conf problem. Eix use (if I'm not wrong) the many portage config files: keywords.conf, package.mask, package.unmask.
Maybe some day the eix developers will make eix "for paludis" version, because eix is a great tool.

Thanks again for made it clear.
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 Jul 10, 2007 12:39 am    Post subject: Reply with quote

arek.k wrote:
Thanks for answer. I have reinstalled app-paludis/paludis-hooks a few times, bacause I was thinking that I do something wrong :(.
Now I understand. But this isn't only make.conf problem. Eix use (if I'm not wrong) the many portage config files: keywords.conf, package.mask, package.unmask.
Maybe some day the eix developers will make eix "for paludis" version, because eix is a great tool.

Thanks again for made it clear.

You're not wrong, there is not only make.conf,..., all the configuration stuff must be ported.

I'm hoping for a patch, too. And if anybody with enough skill and will has the time to do it, it would be COOL.
_________________
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 Jul 10, 2007 5:41 pm    Post subject: Reply with quote

I'm asking the following:

Is there an idea/improvement/project/package/hook/anything that could be added to paludis extras?

Wishes are acceptable, too.

Shoot, and don't be afraid to tell your wishes anytime...
_________________
Nature does not hurry, yet everything is accomplished.
Lao Tzu
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 4 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