[Fink-devel] Validation of splitoffs failed. -- what is this?

2006-12-04 Thread Benjamin Reed
I'm getting a bunch of Validation of splitoffs failed. errors while 
building, even though fink validate for those packages passes.  What 
is this error supposed to represent?

-- 
Benjamin Reed a.k.a. Ranger Rick
Fink, KDE, and Mac OS X development
http://www.racoonfink.com/

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] What feature would you like to see in fink/Fink?

2006-12-04 Thread Robert T Wyatt
Build/installation statistics.

Every time I open pine for the first time on a computer, it asks me if I
would like to provide (anonymous) feedback to the maintainers. I think it
would be great if fink.conf allowed for auto-feedback that could be stored
somewhere on fink.sourceforge.net (or on the wiki) that would show
successful/unsuccessful builds (and/or usage). I reckon it might need to
account for revisions

The best I can currently manage is to post my currently installed for
anyone interested. By the way, these are at:

[dual G5 at work]
http://reg066.reg.utexas.edu/~rgrtw-05/fink/installed.txt

[recently reformatted 700MHz eMac at home]
http://robertwyatt.info/fink/installed.txt
(aka http://60.90.146.246/~robertwyatt/fink/installed.txt)
(I just discovered this server isn't working and will fix it when I get home.)


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] Validation of splitoffs failed. -- what is this?

2006-12-04 Thread Benjamin Reed
David R. Morrison wrote:
 Just perusing the code... are you also getting a warning about a 
 BuildDependsOnly violation or an Obsolete violation?

Nope, all I got was 10 copies of the Validation of splitoffs failed. 
error, and then I ran a fink validate on the stuff I was building, and 
got no errors.

I just tried building one of the packages again and haven't gotten the 
error, though, so I'm not sure what was triggering it.  (It should at 
least probably say validation of splitoffs of *which package* I'm 
thinking...)

-- 
Benjamin Reed a.k.a. Ranger Rick
Fink, KDE, and Mac OS X development
http://www.racoonfink.com/

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] What feature would you like to see in fink/Fink?

2006-12-04 Thread Charles Lepple
On 12/4/06, Benjamin Reed [EMAIL PROTECTED] wrote:

 I want to provide build pass/fail statistics auto-uploaded when
 building, but also providing hooks to report usage would be nice too,
 although more annoyingly invasive (and difficult to implement without
 wrapping all binaries...)

Rather than wrapping the binaries, we could settle for determining how
recently a given binary has been used (this is what the Debian popcon
package does). In addition to submitting binary package statistics to
their server, the popcon package helps the user prune old packages by
determining which packages are unused (based on stat() atime) and
sorting the unused package list by largest first.

This usage check is probably best scheduled as a background job, and
statistics could be pushed to a server at selfupdate time.

Since Fink has a somewhat different set of usage statistics to
collect, it might be better just to borrow some ideas from popcon, and
write the rest into the fink perl code. That way, there is no need to
keep the popcon list of distributions in sync with the main fink
codebase, etc.

I would be willing to take a closer look at this, if someone else who
is more familiar with the internals of fink could point me towards the
right places to hook into the selfupdate routine and so forth.

-- 
- Charles Lepple

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] What feature would you like to see in fink/Fink?

2006-12-04 Thread Robert T Wyatt
Benjamin Reed wrote:
 Robert T Wyatt wrote:
 Build/installation statistics.
 
 Variations of this have been on my todo list for a while.
 
 I want to provide build pass/fail statistics auto-uploaded when 
 building, but also providing hooks to report usage would be nice too, 
 although more annoyingly invasive (and difficult to implement without 
 wrapping all binaries...)

Cool! I think the simplest implementation would be to send a successful
build or install message to the maintainer so at least *they* would know
that the package is working (and for how many people); unfortunately this
may be too burdensome for our volunteer maintainers. Perhaps a dedicated
recipient address could be used to store/sort/extract the data I think
transmitting the user's architecture/environment would be an important
part. (I guess spam and false reports would have to be filtered) Even
something as crude as sending the info to
[EMAIL PROTECTED] could be useful if the package,
version, and tree were in the subject.

It is intended to help in the area of moving things from unstable to stable
which is clearly a goal of the project.

/preaching to the choir

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] What feature would you like to see in fink/Fink?

2006-12-04 Thread Benjamin Reed
Charles Lepple wrote:
 On 12/4/06, Robert T Wyatt [EMAIL PROTECTED] wrote:
 Cool! I think the simplest implementation would be to send a successful
 build or install message to the maintainer
 
 Last time that I remember this being discussed on IRC, though (in the
 context of popcon, which used to only submit its usage stats via
 email), we came to the conclusion that it is difficult to automate
 sending messages since Mac OS X (client) does not have a SMTP server
 configured. You would have to go through the system-selected mail
 client, which is a bit of a pain from a script.

from what I understand, popcon has an HTTP interface now, so it might be 
a bit more doable.

Sure, we won't get everyone, but it will get enough to get a good sample 
of users.


-- 
Benjamin Reed a.k.a. Ranger Rick
Fink, KDE, and Mac OS X development
http://www.racoonfink.com/

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


[Fink-devel] boost1.33-1.33.1-1007

2006-12-04 Thread Jack Howarth
   Is anyone else seeing build failures with the new
boost1.33-1.33.1-1007 packaging? I have a failure of...

/bin/mv 
/sw/src/fink.build/root-boost1.33-1.33.1-1007/sw/lib/libboost_python-1_33_1.dylib
 /sw/src/fink.build/root-boost1.33-shlibs-1.33.1-1007/sw/lib/
mv: rename 
/sw/src/fink.build/root-boost1.33-1.33.1-1007/sw/lib/libboost_python-1_33_1.dylib
 to 
/sw/src/fink.build/root-boost1.33-shlibs-1.33.1-1007/sw/lib/libboost_python-1_33_1.dylib:
 No such file or directory



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] boost1.33-1.33.1-1007

2006-12-04 Thread Alexander Hansen
On 12/4/06, Jack Howarth [EMAIL PROTECTED] wrote:
Is anyone else seeing build failures with the new
 boost1.33-1.33.1-1007 packaging? I have a failure of...

 /bin/mv 
 /sw/src/fink.build/root-boost1.33-1.33.1-1007/sw/lib/libboost_python-1_33_1.dylib
  /sw/src/fink.build/root-boost1.33-shlibs-1.33.1-1007/sw/lib/
 mv: rename 
 /sw/src/fink.build/root-boost1.33-1.33.1-1007/sw/lib/libboost_python-1_33_1.dylib
  to 
 /sw/src/fink.build/root-boost1.33-shlibs-1.33.1-1007/sw/lib/libboost_python-1_33_1.dylib:
  No such file or directory



Worked for me (powerpc).  Is there possibly an earlier failure (e.g.
the actual compilation of that library) in your build output?

-- 
Alexander K. Hansen
Fink Documenter (still)
Got job?  http://akhmac.blogdns.net/~hansen/akh_cv/

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] gnupg2

2006-12-04 Thread Corey Halpin
On 2006-12-03, Roland Kuhn wrote:
 Just out of curiosity I wanted to install gnupg 2.0.1, so I updated  
 the info files for libgpg-error, libassuan and libksba8 and added a  
 gnupg2 package; all *.{info,patch} attached. It works for me (TM).  
 gnupg2 can be installed in parallel to the old gnupg 1.4.5 package.  
 Anyone interested in putting those packages into unstable?
 
  I've put the updated libgpg-error in.
  Thank you for doing the leg-work.  

  If Benjamin doesn't want to maintain gnupg2, I'd be glad to give it a go.  

crh


pgptT9RM4wKCQ.pgp
Description: PGP signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] gnupg2

2006-12-04 Thread Benjamin Reed
Corey Halpin wrote:

   I've put the updated libgpg-error in.
   Thank you for doing the leg-work.  
 
   If Benjamin doesn't want to maintain gnupg2, I'd be glad to give it a go.  

You can go for it if you want; I packaged the gnupg-related stuff for 
KDE; if you can give it some real love, then more power to you.  Feel 
free to take the other GPG-related bits I own too, if you want 'em.  :)

-- 
Benjamin Reed a.k.a. Ranger Rick
Fink, KDE, and Mac OS X development
http://www.racoonfink.com/

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel