--- rpm-5.4.5/scripts/mono-find-provides.mono_deps_new~ 2007-07-13 04:57:02.000000000 +0200 +++ rpm-5.4.5/scripts/mono-find-provides 2012-02-24 08:12:34.312909123 +0100 @@ -7,34 +7,48 @@ # # (C) 2005 Novell (http://www.novell.com) # -# Args: builddir buildroot libdir IFS=$'\n' filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/')) monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$")) -# If monodis is in the package being installed, use that one -# This is to support building mono -build_bindir="$2/usr/bin" -build_libdir="$2$3" - -if [ -x $build_bindir/monodis ]; then - monodis="$build_bindir/monodis" - export LD_LIBRARY_PATH=$build_libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} -elif [ -x /usr/bin/monodis ]; then - monodis="/usr/bin/monodis" -else - exit 0; +# Only include files with /gac/ in path +# (Allows packages to contain private assemblies that don't conflict with other packages) +#monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/")) +# Disabled... see ChangeLog + +# Set the prefix, unless it is overriden (used when building mono rpms) +: ${prefix=/usr} + +libdir=$prefix/lib64 +bindir=$prefix/bin + +# Bail out if monodis or libmono is missing +if [ ! -x $bindir/monodis ] || [ ! -f $libdir/libmono-2.0.so.1 ] ; then + echo "monodis missing or unusable, exiting..." 1>&2 + exit 1 fi -export MONO_SHARED_DIR=$1 + +# set LD_LIBRARY_PATH to ensure that libmono is found +export LD_LIBRARY_PATH=$libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} +# and set MONO_PATH to ensure that mscorlib.dll can be found +export MONO_PATH=$prefix/lib/mono/2.0 for i in "${monolist[@]}"; do - ($monodis --assembly $i | awk ' + ($bindir/monodis --assembly $i | awk ' BEGIN { LIBNAME=""; VERSION=""; } /^Version:/ { VERSION=$2 } /^Name:/ { LIBNAME=$2 } END { + if (LIBNAME ~ /^policy/) { + cnt = split(LIBNAME, toks, ".") + VERSION=toks[2] "." toks[3] ".0.0" + LIBNAME="" + for (i=4; i<= cnt; i++) + LIBNAME = (LIBNAME toks[i] ".") + LIBNAME=substr(LIBNAME, 1, length(LIBNAME)-1) + } if (VERSION && LIBNAME) print "mono(" LIBNAME ") = " VERSION } --- rpm-5.4.5/scripts/mono-find-requires.mono_deps_new~ 2011-01-11 18:34:25.000000000 +0100 +++ rpm-5.4.5/scripts/mono-find-requires 2012-02-24 08:12:34.312909123 +0100 @@ -4,55 +4,158 @@ # # Authors: # Ben Maurer (bmaurer@ximian.com) +# Wade Berrier (wberrier@novell.com) # -# (C) 2005 Novell (http://www.novell.com) +# (C) 2008 Novell (http://www.novell.com) # -# Args: builddir buildroot libdir IFS=$'\n' filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/')) monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$")) -# If monodis is in the package being installed, use that one -# This is to support building mono -build_bindir="$2/usr/bin" -build_libdir="$2$3" - -if [ -x $build_bindir/monodis ]; then - monodis="$build_bindir/monodis" - export LD_LIBRARY_PATH=$build_libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} -elif [ -x /usr/bin/monodis ]; then - monodis="/usr/bin/monodis" +# parse .config files to find which native libraries to depend on +# (target attribute must have double quotes for this to work, ie: target="file" ) +# Add /etc/mono/config ? +configlist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.config\$")) + +# Set the prefix, unless it is overriden (used when building mono rpms) +: ${prefix=/usr} + +# Can override .config scanning if specified +: ${IGNORE_CONFIG_SCAN=0} + +libdir=$prefix/lib64 +bindir=$prefix/bin + +# Bail out if monodis or libmono is missing +if [ ! -x $bindir/monodis ] || [ ! -f $libdir/libmono-2.0.so.1 ] ; then + echo "monodis missing or unusable, exiting..." 1>&2 + exit 1 +fi + +# special case for 64bit archs +if test "xlib64" = "xlib64" ; then + libext="()(64bit)" else - exit 0; + # (note, this works on ppc64 since we only have 32bit mono) + libext="" fi -export MONO_SHARED_DIR=$1 +# Exceptions: +case `uname -m` in + # ia64 doesn't use lib64 for 'libdir' (sles 9 rpm used to provide both... no longer) + ia64) libext="()(64bit)" ;; +esac + +# set LD_LIBRARY_PATH to ensure that libmono is found +export LD_LIBRARY_PATH=$libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} +# and set MONO_PATH to ensure that mscorlib.dll can be found +export MONO_PATH=$prefix/lib/mono/2.0 REQUIRES=$( for i in "${monolist[@]}"; do - ($monodis --assemblyref $i | awk ' + ($bindir/monodis --assemblyref $i | awk ' BEGIN { START=0; LIBNAME=""; VERSION=""; } (START==0) && /^[0-9]+: Version=/ { START=1; sub(/Version=/, "", $2); VERSION=$2 } - + (START==1) && /^\tName=/ { sub(/Name=/, "", $1); LIBNAME=$1 - - print "mono(" LIBNAME ") = " VERSION + # Allow rpm deps to be resolved for 1.0 profile version + if (VERSION=="1.0.3300.0") + OP=">=" + else + OP="=" + print "mono(" LIBNAME ") " OP " " VERSION START=0 } ') 2> /dev/null done ) +if [ $IGNORE_CONFIG_SCAN -eq 0 ] ; then + +rpm_config_REQUIRES=$( + # Parse the xml .config files to see what native binaries we call into + # TODO: also check monodis --moduleref + for i in "${configlist[@]}"; do + awk 'match($_, //dev/null + done +) + +# Resolve provides to packages, warning on missing to stderr +config_REQUIRES=$( + first=1 # avoid an empty line if no .config reqs are found + for i in ${rpm_config_REQUIRES[@]} ; do + out=$(rpm -q --whatprovides --queryformat "%{NAME}\n" $i) + if [ $? -eq 0 ] ; then + if [ $first -eq 1 ] ; then + echo "" + first=0 + fi + echo $out + else + # echo to stderr + echo "mono-find-requires: Warning, could not find package that provides: $i" >&2 + fi + done +) + +fi + +# Note about above: +# Use to do: system("rpm -q --whatprovides --queryformat \"%{NAME}\n\" ""\""req"'$libext'""\"") +# rpmlint prefers to have lib names instead of package names. There was a reason I was using package names but it slips me now... +# Ah... now I remember... it's for noarch packs. The noarch packages can be built on either 32 or 64 bit... so we have to depend +# on the package name instead. + PROVIDES=$( for i in "${monolist[@]}"; do - ($monodis --assembly $i | awk ' + ($bindir/monodis --assembly $i | awk ' BEGIN { LIBNAME=""; VERSION=""; } /^Version:/ { VERSION=$2 } /^Name:/ { LIBNAME=$2 } @@ -68,9 +171,10 @@ PROVIDES=$( # in PROVIDES. While RPM functions correctly when such deps exist, # they make the metadata a bit bloated. # +# TODO: make this use the mono-find-provides script, to share code # Filter out dups from both lists -REQUIRES=$(echo "$REQUIRES" | sort | uniq) +REQUIRES=$(echo "$REQUIRES $config_REQUIRES" | sort | uniq) PROVIDES=$(echo "$PROVIDES" | sort | uniq) # @@ -80,7 +184,7 @@ UNIQ=$(echo "$PROVIDES $REQUIRES" | sort | uniq -u) # -# Of those, only chose the ones that are in REQUIRES +# Of those, only choose the ones that are in REQUIRES # echo "$UNIQ -$REQUIRES" | sort | uniq -d | grep -v "^$" +$REQUIRES" | sort | uniq -d | grep -v '^\s*$'