Hi,
I've just updated readline to readline & readline-shlibs. Below is
the list of maintainers that should change their Depends: readline to
Depends: readline-shlibs
BuildDepends: readline
Please note that the compatibility version of the previous library (4.2)
was 4.2.0
[r21m246:~] sylvain% otool -L /sw/lib/libreadline.4.dylib
/sw/lib/libreadline.4.dylib:
/sw/lib/libreadline.4.dylib (compatibility version 4.2.0,
current version 4.2.0)
Whereas now (4.2a) it's 4.0.0 :
[r21m246:~] sylvain% otool -L /sw/lib/libreadline.4.2.dylib
/sw/lib/libreadline.4.2.dylib:
/sw/lib/libreadline.4.2.dylib (compatibility version 4.0.0,
current version 4.2.0)
The list :
<[EMAIL PROTECTED]>
database/mysql-3.23.47-1.info
<[EMAIL PROTECTED]>
languages/hugs-1998.200102-2.info
utils/units-1.74-1.info
languages/hugs-1998.200102-3.info
utils/units-1.74-2.info
<[EMAIL PROTECTED]>
database/mysql-3.23.42-1.info
languages/guile-1.4-3.info
languages/librep-0.14-5.info
languages/guile-1.4-3.info
languages/librep-0.14-5.info
net/sendfile-2.1a-1.info
<[EMAIL PROTECTED]>
yafc-0.7.5-1.info
<[EMAIL PROTECTED]>
shells/bash-2.05a-2.info
shells/bash-2.05a-3.info
<[EMAIL PROTECTED]>
sci/pari-gp-2.1.1-4.info
x11-wm/fvwm2-2.4.3-1.info
x11-wm/fvwm2-no-gnome-2.4.3-1.info
sci/pari-gp-2.1.1-5.info
sci/pari-gp-emacs-alpha-2.1.1-2.info
x11-wm/fvwm2-2.4.5-1.info
x11-wm/fvwm2-no-gnome-2.4.5-1.info
<[EMAIL PROTECTED]>
net/ghx-0.1.39-2.info
net/hx-0.1.39-4.info
database/postgresql-7.1.3-4.info
net/ghx-0.1.39-2.info
net/hx-0.1.39-5.info
net/openldap-2.0.19-1.info
<[EMAIL PROTECTED]>
languages/python-2.2-6.info
languages/python-nox-2.2-5.info
sci/gnuplot-3.7.1-4.info
sci/octave-2.1.35-6.info
sci/r-base-1.4.0-3.info
sci/yorick-1.5-2.info
languages/python-2.1.2-1.info
languages/python-2.2-6.info
languages/python-nox-2.1.1-5.info
languages/python-nox-2.2-5.info
languages/ruby-1.6.6-1.info
sci/gnuplot-3.7.1-4.info
sci/gnuplot-3.8h.0-4.info
sci/octave-2.1.35-6.info
sci/octave-atlas-2.1.35-2.info
sci/pdl-2.3.2-1.info
sci/r-base-1.4.1-1.info
sci/r-base-atlas-1.4.1-1.info
sci/scigraphica-0.8.0-2.info
sci/tela-1.34-3.info
<[EMAIL PROTECTED]>
games/freeciv-1.12.0-4.info
games/freeciv-1.12.0-4.info
<[EMAIL PROTECTED]>
libs/libxml2-2.3.14-2.info
libs/libxml2-2.4.13-1.info
<[EMAIL PROTECTED]>
gnome/libgtop-1.0.13-2.info
libs/libxml-1.8.16-1.info
gnome/libgtop-1.0.13-4.info
libs/libxml-1.8.16-1.info
<[EMAIL PROTECTED]>
languages/algae-3.5.1-1.info
<[EMAIL PROTECTED]>
shells/bash-2.05-3.info
shells/bash-2.05-3.info
<[EMAIL PROTECTED]>
languages/swi-prolog-5.0.0-1.info
<[EMAIL PROTECTED]>
lftp-ssl-2.4.8-1.info
database/unixodbc-nox-2.0.10-1.info
libs/pilot-link-0.9.5-2.info
net/gftp-2.0.11-1.info
net/tftp-hpa-0.26-1.info
web/lftp-2.4.8-1.info
PS : here's the little script that I used to compute this list
#!/bin/sh
if [ $# = 1 ] ; then
pkg="$1"
else
echo "Usage: $0 pkg"
echo ""
echo "this will print a list of all info files that"
echo "depends on pkg, sorted by Maintainer's email"
echo ""
exit
fi
rm -rf /tmp/dep
mkdir -p /tmp/dep/
for i in `find /sw/fink/dists/ -name "*.info" | xargs grep -l
"^Depends:.*${pkg}.*"` ; do
# FIXME this greps all files that contains $pkg in Depends, not the
files that depends on it
# ie if pkg=wget then all files depending on wget-ssl will be included
too
# for every info file which depends on pkg
maint=`grep -h "^Maintainer:" $i | sed 's/^.*\(<.*>\).*$/\1/g'`;
# find the mail of the Maintainer
echo $i | sed 's;/\(.*/\)*finkinfo/\(.*\.info\);\2;g' >>
/tmp/dep/$maint
# add this info file to his list
# FIXME differentiate unstable & stable
done
# cat all
( cd /tmp/dep/;
for i in * ; do
( echo $i
echo ""
cat $i
echo ""
echo "" ) >> list
done )
# print the list
cat /tmp/dep/list
# clean up
rm -rf /tmp/dep
--
Zauc
_______________________________________________
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel