rpms/gwget/devel .cvsignore, 1.8, 1.9 gwget-epiphany21x.patch, 1.2, 1.3 gwget.spec, 1.17, 1.18 sources, 1.8, 1.9

Christoph Wickert (cwickert) fedora-extras-commits at redhat.com
Sat Nov 11 02:51:53 UTC 2006


Author: cwickert

Update of /cvs/extras/rpms/gwget/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv18016

Modified Files:
	.cvsignore gwget-epiphany21x.patch gwget.spec sources 
Log Message:
Update to 0.98.2 anf fix for #213480


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/gwget/devel/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore	26 Jun 2006 21:10:27 -0000	1.8
+++ .cvsignore	11 Nov 2006 02:51:22 -0000	1.9
@@ -1 +1 @@
-gwget-0.97.tar.bz2
+gwget-0.98.2.tar.bz2

gwget-epiphany21x.patch:

Index: gwget-epiphany21x.patch
===================================================================
RCS file: /cvs/extras/rpms/gwget/devel/gwget-epiphany21x.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gwget-epiphany21x.patch	15 Sep 2006 14:33:22 -0000	1.2
+++ gwget-epiphany21x.patch	11 Nov 2006 02:51:22 -0000	1.3
@@ -1,44 +1,41 @@
---- gwget-0.97/configure.in.orig	2006-01-05 22:13:55.000000000 +0100
-+++ gwget-0.97/configure.in	2006-09-15 13:32:02.000000000 +0200
-@@ -71,8 +71,14 @@
+--- gwget-0.98.2/configure.in.orig	2006-11-08 19:49:44.000000000 +0100
++++ gwget-0.98.2/configure.in	2006-11-11 03:04:53.000000000 +0100
+@@ -97,13 +97,15 @@
  
- dnl try to autodetect Epiphany 1.2, 1.4, 1.6, 1.8 or 1.10
+ EPHY_VER=
+ AC_ARG_WITH([epiphany-version],
+-        AC_HELP_STRING([--with-epiphany-version@<:@=1.6|1.8|1.10|2.14@:>@],
+-                       [Whether to use epiphany version 1.6 or 1.8 or 1.10 or 2.14 (default 1.6)]),
++        AC_HELP_STRING([--with-epiphany-version@<:@=1.6|1.8|1.10|2.14|2.15|2.16|2.17@:>@],
++                       [Whether to use epiphany version 1.6 or 1.8 or 1.10 or 2.14 or 2.15 or 2.16 or 2.17 (default 1.6)]),
+         [EPHY_VER="$withval"])
+ 
+-dnl try to autodetect Epiphany 1.2, 1.4, 1.6, 1.8, 1.10, 2.14, 2.15 or 2.16
++dnl try to autodetect Epiphany 1.2, 1.4, 1.6, 1.8, 1.10, 2.14, 2.15, 2.16 or 2.17
  EPHY_AUTODETECT="(autodetect)"
--if pkg-config --exists epiphany-1.10; then
--               EPHY_VER=1.10
-+if pkg-config --exists epiphany-2.16; then
-+        EPHY_VER=2.16
-+elif pkg-config --exists epiphany-2.15; then
-+        EPHY_VER=2.15
-+elif pkg-config --exists epiphany-2.14; then
-+        EPHY_VER=2.14
-+elif pkg-config --exists epiphany-1.10; then
-+        EPHY_VER=1.10
- elif pkg-config --exists epiphany-1.8; then
-        	EPHY_VER=1.8
- elif pkg-config --exists epiphany-1.6; then
-@@ -107,11 +113,23 @@
-           AC_DEFINE_UNQUOTED(EPHY_VERSION, 110, [Define to the Epiphany version (12 or 14 or 16)])
-           EPIPHANY_PKGCONFIG=epiphany-1.10
-           EPIPHANY_REQUIRED=1.9.0
-+elif test $EPHY_VER = "2.14"; then
-+          AC_DEFINE_UNQUOTED(EPHY_VERSION, 214, [Define to the Epiphany version (12 or 14 or 16)])
-+          EPIPHANY_PKGCONFIG=epiphany-2.14
-+          EPIPHANY_REQUIRED=2.14
-+elif test $EPHY_VER = "2.15"; then
-+          AC_DEFINE_UNQUOTED(EPHY_VERSION, 215, [Define to the Epiphany version (12 or 14 or 16)])
-+          EPIPHANY_PKGCONFIG=epiphany-2.15
-+          EPIPHANY_REQUIRED=2.15
-+elif test $EPHY_VER = "2.16"; then
-+          AC_DEFINE_UNQUOTED(EPHY_VERSION, 216, [Define to the Epiphany version (12 or 14 or 16)])
-+          EPIPHANY_PKGCONFIG=epiphany-2.16
-+          EPIPHANY_REQUIRED=2.16
+-if pkg-config --exists epiphany-2.16; then
++if pkg-config --exists epiphany-2.17; then
++        EPHY_VER=2.17
++elif pkg-config --exists epiphany-2.16; then
+         EPHY_VER=2.16
+ elif pkg-config --exists epiphany-2.15; then
+         EPHY_VER=2.15
+@@ -158,13 +160,17 @@
+           EPIPHANY_PKGCONFIG=epiphany-2.16
+           EPIPHANY_REQUIRED=2.16
+           EPIPHANY_SHORTVER=216
++elif test "x$EPHY_VER" = "x2.17"; then
++          EPIPHANY_PKGCONFIG=epiphany-2.17
++          EPIPHANY_REQUIRED=2.17
++          EPIPHANY_SHORTVER=217
  else
       	AC_MSG_RESULT([no epiphany installed])
  fi
  
--if test $EPHY_VER = "1.2" || test $EPHY_VER = "1.4" || test $EPHY_VER = "1.6" || test $EPHY_VER = "1.8" || test $EPHY_VER = "1.10"; then
-+if test $EPHY_VER = "1.2" || test $EPHY_VER = "1.4" || test $EPHY_VER = "1.6" || test $EPHY_VER = "1.8" || test $EPHY_VER = "1.10"  || test $EPHY_VER = "2.14" || test $EPHY_VER = "2.15" || test $EPHY_VER = "2.16" ; then
+ if test -n "$EPIPHANY_SHORTVER" ; then
+ AC_DEFINE_UNQUOTED(EPHY_VERSION, "$EPIPHANY_SHORTVER",
+-       [Define to the Epiphany version (12, 14, 16, 18, 110 ,214, or 215)])
++       [Define to the Epiphany version (12, 14, 16, 18, 110, 214, 215, 216 or 217)])
  AC_MSG_RESULT([$EPHY_VER $EPHY_AUTODETECT])
  
  LIBGLIB_REQUIRED=2.4.0


Index: gwget.spec
===================================================================
RCS file: /cvs/extras/rpms/gwget/devel/gwget.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- gwget.spec	15 Sep 2006 13:41:11 -0000	1.17
+++ gwget.spec	11 Nov 2006 02:51:22 -0000	1.18
@@ -1,20 +1,23 @@
-%define epimajor 2.16
+%define epimajor 2.17
 
 Name:		gwget
-Version:	0.97
-Release:	7%{?dist}
+Version:	0.98.2
+Release:	1%{?dist}
 Summary:	Graphical download manager that uses wget
 
 License:	GPL
 Group:		Applications/Internet
 URL:		http://gnome.org/projects/gwget
-Source0:	http://ftp.gnome.org/pub/GNOME/sources/gwget/0.97/gwget-0.97.tar.bz2
+Source0:	http://ftp.gnome.org/pub/GNOME/sources/gwget/0.98/gwget-0.98.2.tar.bz2
 Source1:	gwget.desktop
 Patch0:		gwget-epiphany21x.patch
 Buildroot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:	libgnomeui-devel >= 2.0
 BuildRequires:	libglade2-devel >= 2.0
+BuildRequires:	gnome-vfs2-devel >= 2.0
+BuildRequires:	dbus-devel
+BuildRequires:	libnotify-devel
 BuildRequires:	intltool >= 0.29
 BuildRequires:	gettext >= 0.14.1
 BuildRequires:	desktop-file-utils
@@ -46,7 +49,7 @@
 autoreconf -f
 
 %build
-export LDFLAGS="${LDFLAGS} -Wl,--export-dynamic"
+#export LDFLAGS="${LDFLAGS} -Wl,--export-dynamic"
 %configure --disable-static
 make %{?_smp_mflags}
 
@@ -84,11 +87,9 @@
 %defattr (-,root,root,-)
 %doc AUTHORS COPYING ChangeLog README TODO
 %{_bindir}/*
-%{_libdir}/bonobo/servers/GNOME_Gwget.server
 %{_sysconfdir}/gconf/schemas/gwget.schemas
 %{_datadir}/%{name}
 %{_datadir}/pixmaps/*
-%{_datadir}/idl/GNOME_Gwget.idl
 %{_datadir}/applications/fedora-%{name}.desktop
 
 %files epiphany-extension
@@ -97,6 +98,15 @@
 
 
 %changelog
+* Sat Nov 11 2006 Christoph Wickert <fedora at christoph-wickert de> 0.98.2-1
+- Update to 0.98.2.
+- Don't crash notification area (#213480).
+- Add support for epiphany 2.1.7.
+
+* Fri Sep 15 2006 Christoph Wickert <fedora at christoph-wickert de> 0.98.1-1
+- Update to 0.98.1.
+- BuildRequire dbus-devel, libnotify-devel and gnome-vfs2-devel.
+
 * Fri Sep 15 2006 Christoph Wickert <fedora at christoph-wickert de> 0.97-7
 - Mass rebuild for Fedora Core 6.
 - Update epiphany-patch for epiphany <= 2.1.6.


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/gwget/devel/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources	26 Jun 2006 21:10:27 -0000	1.8
+++ sources	11 Nov 2006 02:51:22 -0000	1.9
@@ -1 +1 @@
-b31dd63a2b55f1c0c2dea58490ca8cd2  gwget-0.97.tar.bz2
+26bb748aff0769321bf1fd9b65735649  gwget-0.98.2.tar.bz2




More information about the fedora-extras-commits mailing list