Hello community, here is the log from the commit of package libxfce4ui for openSUSE:Factory checked in at 2012-05-09 18:17:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libxfce4ui (Old) and /work/SRC/openSUSE:Factory/.libxfce4ui.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libxfce4ui", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/libxfce4ui/libxfce4ui.changes 2012-05-08 11:48:54.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.libxfce4ui.new/libxfce4ui.changes 2012-05-09 18:31:56.000000000 +0200 @@ -1,0 +2,12 @@ +Wed May 9 08:05:44 UTC 2012 - g...@opensuse.org + +- add versioned build dependency + +------------------------------------------------------------------- +Mon May 7 12:20:03 UTC 2012 - g...@opensuse.org + +- bring back xfhelp4 since it is still needed until all + applications have been ported to xfce_dialog_show_help() or an + alternative mechanism + +------------------------------------------------------------------- New: ---- xfhelp4.sh ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libxfce4ui.spec ++++++ --- /var/tmp/diff_new_pack.90CxuC/_old 2012-05-09 18:31:58.000000000 +0200 +++ /var/tmp/diff_new_pack.90CxuC/_new 2012-05-09 18:31:58.000000000 +0200 @@ -26,6 +26,9 @@ Group: System/Libraries Url: http://www.xfce.org/ Source0: http://archive.xfce.org/src/xfce/libxfce4ui/4.10/%{name}-%{version}.tar.bz2 +# needed until all applications have been ported to xfce_dialog_show_help() or +# an alternative mechanism +Source1: xfhelp4.sh BuildRequires: gtk-doc BuildRequires: intltool BuildRequires: update-desktop-files @@ -33,7 +36,7 @@ BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gtk+-2.0) BuildRequires: pkgconfig(libstartup-notification-1.0) -BuildRequires: pkgconfig(libxfce4util-1.0) +BuildRequires: pkgconfig(libxfce4util-1.0) >= 4.9.0 BuildRequires: pkgconfig(libxfconf-0) BuildRequires: pkgconfig(sm) BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -141,6 +144,8 @@ %install %make_install +install -D -p -m 755 %{SOURCE1} %{buildroot}%{_bindir}/xfhelp4 + rm -f %{buildroot}%{_libdir}/*.la rm -f %{buildroot}%{_libdir}/libglade/2.0/*.la rm -f %{buildroot}%{_libdir}/glade3/modules/*.la @@ -194,6 +199,7 @@ %files tools %defattr(-, root, root) +%{_bindir}/xfhelp4 %{_bindir}/xfce4-about %{_datadir}/applications/xfce4-about.desktop %{_datadir}/icons/hicolor/48x48/apps/xfce4-logo.png ++++++ xfhelp4.sh ++++++ #!/bin/sh # # xfce # # Copyright (C) 1999 Olivier Fourdan (four...@xfce.org) # Copyright (C) 2003 Jasper Huijsmans (jas...@xfce.org) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # HELP_DIR="/usr/share/xfce4" if [ -n "$1" ]; then HELP_FILE= MODULE="${1%.html}" case $1 in *.html) HELP_FILE="$1" ;; esac else exit 1 fi # Check for translated documentation if [ -n "$LC_ALL" ] ; then LC=$LC_ALL elif [ -n "$LANG" ] ; then LC=$LANG else LC="C" fi LC_CLEAN="${LC%_*}" if [ -r "$HELP_DIR/$MODULE/html/$LC/index.html" ] then URL="$HELP_DIR/$MODULE/html/$LC/index.html" elif [ -r "$HELP_DIR/$MODULE/html/$LC_CLEAN/index.html" ] then URL="$HELP_DIR/$MODULE/html/$LC_CLEAN/index.html" elif [ -r "$HELP_DIR/$MODULE/html/C/index.html" ] then URL="$HELP_DIR/$MODULE/html/C/index.html" elif [ -n "$HELP_FILE" ] then if [ -r "$HELP_DIR/$MODULE/html/$LC/$HELP_FILE" ] then URL="$HELP_DIR/$MODULE/html/$LC/$HELP_FILE" elif [ -r "$HELP_DIR/$MODULE/html/$LC_CLEAN/$HELP_FILE" ] then URL="$HELP_DIR/$MODULE/html/$LC_CLEAN/$HELP_FILE" elif [ -r "$HELP_DIR/$MODULE/html/C/$HELP_FILE" ] then URL="$HELP_DIR/$MODULE/html/C/$HELP_FILE" else URL="$HELP_DIR/xfce-utils/html/C/index.html" fi else URL="$HELP_DIR/xfce-utils/html/C/index.html" fi exo-open "${URL}" -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org