commit monsoon for openSUSE:Factory
Hello community, here is the log from the commit of package monsoon for openSUSE:Factory checked in at Mon Sep 28 17:35:43 CEST 2009. -------- --- GNOME/monsoon/monsoon.changes 2009-03-02 23:21:33.000000000 +0100 +++ monsoon/monsoon.changes 2009-05-08 15:35:55.000000000 +0200 @@ -1,0 +2,19 @@ +Fri Apr 24 22:35:42 CDT 2009 - oddrationale@gmail.com + +- Update to version 0.21: + + Bugs fixed: bnc#473742, bnc#468357, bnc#466590, bnc#444939, + bnc#431504, bnc#421809, bnc#421703, bnc#397572, bnc#391746, + bnc#386549 + + MonoTorrent and Mono.Nat no longer bundle with monsoon, they + are required as part of the build process + + Upgraded to MonoTorrent 0.72 + + Fixed issue loading files from firefox + + http://www.monsoon-project.org/jaws/index.php?page/releasenotes0.21 + +- spec file + + Removed AutoReqProv line + + Packaged README file + + Updated URL + + Removed unnecessary BuildRequires + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- monsoon-0.20.tar.bz2 New: ---- monsoon-0.21.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ monsoon.spec ++++++ --- /var/tmp/diff_new_pack.5GxiEX/_old 2009-09-28 17:34:37.000000000 +0200 +++ /var/tmp/diff_new_pack.5GxiEX/_new 2009-09-28 17:34:37.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package monsoon (Version 0.20) +# spec file for package monsoon (Version 0.21) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -19,21 +19,29 @@ Name: monsoon -Summary: A GTK# based bittorrent GUI based on the Monsoon library -Version: 0.20 +Version: 0.21 Release: 1 -License: X11/MIT +License: MIT License (or similar) +Summary: A GTK# based bittorrent GUI based on the Monsoon library Group: Productivity/Networking/Other -Source: %{name}-%{version}.tar.bz2 -AutoReqProv: on +Url: http://www.monsoon-project.org +Source0: %{name}-%{version}.tar.bz2 +BuildRequires: gconf-sharp2 +BuildRequires: intltool +BuildRequires: mono-core +BuildRequires: mono-devel +BuildRequires: mono-nat +BuildRequires: monotorrent +BuildRequires: ndesk-dbus-glib-devel +BuildRequires: pkg-config +BuildRequires: update-desktop-files +Requires: gtk-sharp2 +Requires: mono-core +Requires: ndesk-dbus +Requires: %{name}-lang = %{version} BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build -Url: http://monotorrent.blogspot.com/ -BuildRequires: gconf-sharp2 glade-sharp2 gnome-sharp2 gnome-vfs-sharp2 gtk-sharp2 intltool mono mono-devel ndesk-dbus ndesk-dbus-glib-devel pkg-config update-desktop-files -BuildRequires: mono-nat monotorrent -Requires: mono-core ndesk-dbus ndesk-dbus-glib -Requires: %{name}-lang = %{version} -#Force files to use /lib and not /lib64 +# Force files to use /lib and not /lib64 %define _libdir %{_prefix}/lib %description @@ -47,9 +55,10 @@ -------- Alan McGovern <alan.mcgovern@gmail.com> + %lang_package %prep -%setup +%setup -q %build %configure @@ -58,16 +67,17 @@ %install %makeinstall %find_lang %{name} -%suse_update_desktop_file monsoon +%suse_update_desktop_file %{name} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) -%{_libdir}/monsoon -%{_bindir}/monsoon -%{_datadir}/applications/monsoon.desktop +%doc README +%{_prefix}/lib/%{name} +%{_bindir}/%{name} +%{_datadir}/applications/%{name}.desktop %files lang -f %{name}.lang ++++++ monsoon-0.20.tar.bz2 -> monsoon-0.21.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monsoon-0.20/Monsoon/AssemblyInfo.cs new/monsoon-0.21/Monsoon/AssemblyInfo.cs --- old/monsoon-0.20/Monsoon/AssemblyInfo.cs 2009-02-02 23:48:23.000000000 +0100 +++ new/monsoon-0.21/Monsoon/AssemblyInfo.cs 2009-04-20 21:19:46.000000000 +0200 @@ -11,4 +11,4 @@ [assembly: AssemblyCulture("")] // Major.Minor.Build.Revision -[assembly: AssemblyVersion("0.20")] +[assembly: AssemblyVersion("0.21")] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monsoon-0.20/Monsoon/TorrentController.cs new/monsoon-0.21/Monsoon/TorrentController.cs --- old/monsoon-0.20/Monsoon/TorrentController.cs 2009-02-02 23:46:47.000000000 +0100 +++ new/monsoon-0.21/Monsoon/TorrentController.cs 2009-04-20 21:12:34.000000000 +0200 @@ -278,7 +278,7 @@ if (File.Exists (newPath)) File.Delete (newPath); - File.Copy (torrentPath, newPath, true); + File.WriteAllBytes (newPath, File.ReadAllBytes (torrentPath)); Torrent t = Torrent.Load (newPath); for (int i=0; i < torrent.Files.Length; i++) @@ -451,7 +451,7 @@ if (Path.GetDirectoryName (args.TorrentPath) != MainWindow.Preferences.TorrentStorageLocation) { logger.Info ("Copying: {0} to {1}", args.TorrentPath, newPath); - File.Copy(args.TorrentPath, newPath ,true); + File.WriteAllBytes (newPath, File.ReadAllBytes (args.TorrentPath)); if(prefSettings.RemoveOnImport) File.Delete(args.TorrentPath); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monsoon-0.20/Monsoon/libs/TrayLib.cs new/monsoon-0.21/Monsoon/libs/TrayLib.cs --- old/monsoon-0.20/Monsoon/libs/TrayLib.cs 2009-02-02 23:46:42.000000000 +0100 +++ new/monsoon-0.21/Monsoon/libs/TrayLib.cs 2009-04-20 21:12:32.000000000 +0200 @@ -1,3 +1,30 @@ +// +// TrayLib.cs +// +// Copyright (C) 2005 Todd Berman <tberman@off.net> +// Copyright (C) 2005 Ed Catmur <ed@catmur.co.uk> +// Copyright (C) 2005 Novell, Inc. (Miguel de Icaza, Aaron Bockover) +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + // http://www.mono-project.com/GtkSharpNotificationIcon using System; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monsoon-0.20/configure new/monsoon-0.21/configure --- old/monsoon-0.20/configure 2009-02-02 23:48:13.000000000 +0100 +++ new/monsoon-0.21/configure 2009-04-20 21:13:48.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.63 for Monsoon 0.20. +# Generated by GNU Autoconf 2.63 for Monsoon 0.21. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. @@ -743,8 +743,8 @@ # Identity of this package. PACKAGE_NAME='Monsoon' PACKAGE_TARNAME='monsoon' -PACKAGE_VERSION='0.20' -PACKAGE_STRING='Monsoon 0.20' +PACKAGE_VERSION='0.21' +PACKAGE_STRING='Monsoon 0.21' PACKAGE_BUGREPORT='' # Factoring default headers for most tests. @@ -1543,7 +1543,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Monsoon 0.20 to adapt to many kinds of systems. +\`configure' configures Monsoon 0.21 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1613,7 +1613,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Monsoon 0.20:";; + short | recursive ) echo "Configuration of Monsoon 0.21:";; esac cat <<\_ACEOF @@ -1741,7 +1741,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Monsoon configure 0.20 +Monsoon configure 0.21 generated by GNU Autoconf 2.63 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1755,7 +1755,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Monsoon $as_me 0.20, which was +It was created by Monsoon $as_me 0.21, which was generated by GNU Autoconf 2.63. Invocation command line was $ $0 $@ @@ -2471,7 +2471,7 @@ # Define the identity of the package. PACKAGE='monsoon' - VERSION='0.20' + VERSION='0.21' cat >>confdefs.h <<_ACEOF @@ -3561,12 +3561,12 @@ pkg_cv_MONOTORRENT_CFLAGS="$MONOTORRENT_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ - { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"monotorrent = 0.70\"") >&5 - ($PKG_CONFIG --exists --print-errors "monotorrent = 0.70") 2>&5 + { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"monotorrent = 0.72\"") >&5 + ($PKG_CONFIG --exists --print-errors "monotorrent = 0.72") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_MONOTORRENT_CFLAGS=`$PKG_CONFIG --cflags "monotorrent = 0.70" 2>/dev/null` + pkg_cv_MONOTORRENT_CFLAGS=`$PKG_CONFIG --cflags "monotorrent = 0.72" 2>/dev/null` else pkg_failed=yes fi @@ -3577,12 +3577,12 @@ pkg_cv_MONOTORRENT_LIBS="$MONOTORRENT_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ - { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"monotorrent = 0.70\"") >&5 - ($PKG_CONFIG --exists --print-errors "monotorrent = 0.70") 2>&5 + { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"monotorrent = 0.72\"") >&5 + ($PKG_CONFIG --exists --print-errors "monotorrent = 0.72") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_MONOTORRENT_LIBS=`$PKG_CONFIG --libs "monotorrent = 0.70" 2>/dev/null` + pkg_cv_MONOTORRENT_LIBS=`$PKG_CONFIG --libs "monotorrent = 0.72" 2>/dev/null` else pkg_failed=yes fi @@ -3600,14 +3600,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - MONOTORRENT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "monotorrent = 0.70" 2>&1` + MONOTORRENT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "monotorrent = 0.72" 2>&1` else - MONOTORRENT_PKG_ERRORS=`$PKG_CONFIG --print-errors "monotorrent = 0.70" 2>&1` + MONOTORRENT_PKG_ERRORS=`$PKG_CONFIG --print-errors "monotorrent = 0.72" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$MONOTORRENT_PKG_ERRORS" >&5 - { { $as_echo "$as_me:$LINENO: error: Package requirements (monotorrent = 0.70) were not met: + { { $as_echo "$as_me:$LINENO: error: Package requirements (monotorrent = 0.72) were not met: $MONOTORRENT_PKG_ERRORS @@ -3618,7 +3618,7 @@ and MONOTORRENT_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 -$as_echo "$as_me: error: Package requirements (monotorrent = 0.70) were not met: +$as_echo "$as_me: error: Package requirements (monotorrent = 0.72) were not met: $MONOTORRENT_PKG_ERRORS @@ -14959,7 +14959,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Monsoon $as_me 0.20, which was +This file was extended by Monsoon $as_me 0.21, which was generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15013,7 +15013,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_version="\\ -Monsoon config.status 0.20 +Monsoon config.status 0.21 configured by $0, generated by GNU Autoconf 2.63, with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monsoon-0.20/configure.ac new/monsoon-0.21/configure.ac --- old/monsoon-0.20/configure.ac 2009-02-02 23:46:47.000000000 +0100 +++ new/monsoon-0.21/configure.ac 2009-04-20 21:12:35.000000000 +0200 @@ -1,5 +1,5 @@ AC_PREREQ([2.54]) -AC_INIT([Monsoon], [0.20]) +AC_INIT([Monsoon], [0.21]) AM_INIT_AUTOMAKE([foreign tar-pax]) AM_MAINTAINER_MODE @@ -48,7 +48,7 @@ PKG_CHECK_MODULES([GLIB_SHARP_20], [glib-sharp-2.0 >= 2.10]) PKG_CHECK_MODULES([GTK_SHARP_20], [gtk-sharp-2.0]) PKG_CHECK_MODULES([NDESK_DBUS_GLIB_10], [ndesk-dbus-glib-1.0 >= 0.4]) -PKG_CHECK_MODULES([MONOTORRENT], [monotorrent = 0.70]) +PKG_CHECK_MODULES([MONOTORRENT], [monotorrent = 0.72]) PKG_CHECK_MODULES([MONONAT], [mono.nat >= 1.0]) # I18N ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de