From 3554652770cac335ce078032ec190ba7200fcb21 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 07:17:51 +0000 Subject: [PATCH 01/35] Initialize branch F-12 for webkit-sharp --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From f47c9275e113eccfc0a4ce41cad7f6169ac2f708 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 26 Oct 2009 18:25:00 +0000 Subject: [PATCH 02/35] build for sparcv9 s390 s390x --- webkit-sharp.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index efd63bb..8bfc74e 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -18,7 +18,7 @@ BuildRequires: gtk-sharp2-devel BuildRequires: gtk-sharp2-gapi BuildRequires: monodoc-devel -ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparc alpha +ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparcv9 alpha s390 s390x %description WebKit-sharp is .NET bindings for the WebKit rendering engine. @@ -63,6 +63,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Mon Oct 26 2009 Dennis Gilmore - 0.2-6 +- build for sparcv9 s390 s390x + * Mon Jul 27 2009 Fedora Release Engineering - 0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 983ac9ae11dce8ac0e9a2211b1318947f9dd28e3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 26 Oct 2009 18:25:48 +0000 Subject: [PATCH 03/35] build for sparcv9 s390 s390x --- webkit-sharp.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index efd63bb..8bfc74e 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -18,7 +18,7 @@ BuildRequires: gtk-sharp2-devel BuildRequires: gtk-sharp2-gapi BuildRequires: monodoc-devel -ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparc alpha +ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparcv9 alpha s390 s390x %description WebKit-sharp is .NET bindings for the WebKit rendering engine. @@ -63,6 +63,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Mon Oct 26 2009 Dennis Gilmore - 0.2-6 +- build for sparcv9 s390 s390x + * Mon Jul 27 2009 Fedora Release Engineering - 0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 6347e8e417cd9044d21040cbb885fec3fe00f8c4 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:12 +0000 Subject: [PATCH 04/35] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8c911e6..17c464c 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: webkit-sharp -# $Id$ +# $Id: Makefile,v 1.1 2009/02/27 00:16:26 kevin Exp $ NAME := webkit-sharp SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 3c47b3d3c46f77f461e935fa106c32846beb591e Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:15:58 +0000 Subject: [PATCH 05/35] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c911e6..5d02245 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := webkit-sharp SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 973b8cc5649c81db8bf3e78388bd3ef096424750 Mon Sep 17 00:00:00 2001 From: palango Date: Thu, 17 Dec 2009 14:10:49 +0000 Subject: [PATCH 06/35] Update to version 0.3 --- .cvsignore | 2 +- sources | 2 +- webkit-dllmap-fix.patch | 10 -------- webkit-sharp-0.3-libdir.patch | 48 +++++++++++++++++++++++++++++++++++ webkit-sharp-libdir.patch | 44 -------------------------------- webkit-sharp.spec | 14 +++++----- 6 files changed, 57 insertions(+), 63 deletions(-) delete mode 100644 webkit-dllmap-fix.patch create mode 100644 webkit-sharp-0.3-libdir.patch delete mode 100644 webkit-sharp-libdir.patch diff --git a/.cvsignore b/.cvsignore index 80ad2d4..54e24eb 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -webkit-sharp-0.2.tar.bz2 +webkit-sharp-0.3.tar.bz2 diff --git a/sources b/sources index bf5d40b..9742e50 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8041fba941b7299e432380c86b6dddf8 webkit-sharp-0.2.tar.bz2 +21482f9d5eafb0ef4acc6e790482f934 webkit-sharp-0.3.tar.bz2 diff --git a/webkit-dllmap-fix.patch b/webkit-dllmap-fix.patch deleted file mode 100644 index 2503625..0000000 --- a/webkit-dllmap-fix.patch +++ /dev/null @@ -1,10 +0,0 @@ -# https://bugzilla.redhat.com/show_bug.cgi?id=500654 -diff -uraN webkit-sharp-0.2/sources/webkit-sharp.dll.config.in webkit-sharp-0.2.orig/sources/webkit-sharp.dll.config.in ---- webkit-sharp-0.2/sources/webkit-sharp.dll.config.in 2008-06-12 02:28:06.000000000 +0200 -+++ webkit-sharp-0.2.orig/sources/webkit-sharp.dll.config.in 2009-05-16 23:42:36.847810576 +0200 -@@ -1,3 +1,3 @@ - -- -+ - - diff --git a/webkit-sharp-0.3-libdir.patch b/webkit-sharp-0.3-libdir.patch new file mode 100644 index 0000000..0433c37 --- /dev/null +++ b/webkit-sharp-0.3-libdir.patch @@ -0,0 +1,48 @@ +# SourceFucker.pl: Fix hardcoded references to libdir +diff -uraN webkit-sharp-0.3.orig/configure webkit-sharp-0.3/configure +--- webkit-sharp-0.3.orig/configure 2009-10-21 21:54:34.000000000 +0200 ++++ webkit-sharp-0.3/configure 2009-12-17 14:45:29.025582798 +0100 +@@ -3266,7 +3266,7 @@ + { (exit 1); exit 1; }; } + fi + +-GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(prefix)/lib' ++GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(libdir)' + + + +diff -uraN webkit-sharp-0.3.orig/configure.ac webkit-sharp-0.3/configure.ac +--- webkit-sharp-0.3.orig/configure.ac 2009-10-21 21:54:23.000000000 +0200 ++++ webkit-sharp-0.3/configure.ac 2009-12-17 14:45:28.830582747 +0100 +@@ -76,7 +76,7 @@ + AC_MSG_ERROR([No gacutil tool found]) + fi + +-GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(prefix)/lib' ++GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(libdir)' + + AC_SUBST(RUNTIME) + AC_SUBST(CSC) +diff -uraN webkit-sharp-0.3.orig/doc/Makefile.am webkit-sharp-0.3/doc/Makefile.am +--- webkit-sharp-0.3.orig/doc/Makefile.am 2009-10-21 21:54:23.000000000 +0200 ++++ webkit-sharp-0.3/doc/Makefile.am 2009-12-17 14:45:28.796583031 +0100 +@@ -1,6 +1,6 @@ + if ENABLE_MONODOC + TARGETS = $(ASSEMBLY_NAME)-docs.source $(ASSEMBLY_NAME)-docs.zip $(ASSEMBLY_NAME)-docs.tree +-docsdir = $(prefix)/lib/monodoc/sources ++docsdir = $(libdir)/monodoc/sources + docs_DATA = $(TARGETS) + else + TARGETS = +diff -uraN webkit-sharp-0.3.orig/doc/Makefile.in webkit-sharp-0.3/doc/Makefile.in +--- webkit-sharp-0.3.orig/doc/Makefile.in 2009-10-21 21:54:35.000000000 +0200 ++++ webkit-sharp-0.3/doc/Makefile.in 2009-12-17 14:45:28.795583126 +0100 +@@ -186,7 +186,7 @@ + @ENABLE_MONODOC_FALSE@TARGETS = + @ENABLE_MONODOC_TRUE@TARGETS = $(ASSEMBLY_NAME)-docs.source $(ASSEMBLY_NAME)-docs.zip $(ASSEMBLY_NAME)-docs.tree + @ENABLE_MONODOC_FALSE@docsdir = $(datadir) +-@ENABLE_MONODOC_TRUE@docsdir = $(prefix)/lib/monodoc/sources ++@ENABLE_MONODOC_TRUE@docsdir = $(libdir)/monodoc/sources + @ENABLE_MONODOC_FALSE@docs_DATA = + @ENABLE_MONODOC_TRUE@docs_DATA = $(TARGETS) + ASSEMBLIES = ../sources/$(ASSEMBLY_NAME).dll diff --git a/webkit-sharp-libdir.patch b/webkit-sharp-libdir.patch deleted file mode 100644 index 3213262..0000000 --- a/webkit-sharp-libdir.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff -uraN webkit-sharp-0.2.orig/configure webkit-sharp-0.2/configure ---- webkit-sharp-0.2.orig/configure 2009-02-25 00:04:00.736633894 +0100 -+++ webkit-sharp-0.2/configure 2009-02-25 00:05:52.899631057 +0100 -@@ -739,7 +739,7 @@ - dvidir='${docdir}' - pdfdir='${docdir}' - psdir='${docdir}' --libdir='${exec_prefix}/lib' -+libdir='${libdir}' - localedir='${datarootdir}/locale' - mandir='${datarootdir}/man' - -@@ -3120,7 +3120,7 @@ - { (exit 1); exit 1; }; } - fi - --GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(prefix)/lib' -+GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(libdir)' - - - -diff -uraN webkit-sharp-0.2.orig/doc/Makefile.am webkit-sharp-0.2/doc/Makefile.am ---- webkit-sharp-0.2.orig/doc/Makefile.am 2009-02-25 00:04:00.739634718 +0100 -+++ webkit-sharp-0.2/doc/Makefile.am 2009-02-25 00:06:39.538635541 +0100 -@@ -1,6 +1,6 @@ - if ENABLE_MONODOC - TARGETS = $(ASSEMBLY_NAME)-docs.source $(ASSEMBLY_NAME)-docs.zip $(ASSEMBLY_NAME)-docs.tree --docsdir = $(prefix)/lib/monodoc/sources -+docsdir = $(libdir)/monodoc/sources - docs_DATA = $(TARGETS) - else - TARGETS = -diff -uraN webkit-sharp-0.2.orig/doc/Makefile.in webkit-sharp-0.2/doc/Makefile.in ---- webkit-sharp-0.2.orig/doc/Makefile.in 2009-02-25 00:04:00.741634382 +0100 -+++ webkit-sharp-0.2/doc/Makefile.in 2009-02-25 00:07:41.637410066 +0100 -@@ -168,7 +168,7 @@ - @ENABLE_MONODOC_FALSE@TARGETS = - @ENABLE_MONODOC_TRUE@TARGETS = $(ASSEMBLY_NAME)-docs.source $(ASSEMBLY_NAME)-docs.zip $(ASSEMBLY_NAME)-docs.tree - @ENABLE_MONODOC_FALSE@docsdir = $(datadir) --@ENABLE_MONODOC_TRUE@docsdir = $(prefix)/lib/monodoc/sources -+@ENABLE_MONODOC_TRUE@docsdir = $(libdir)/monodoc/sources - @ENABLE_MONODOC_FALSE@docs_DATA = - @ENABLE_MONODOC_TRUE@docs_DATA = $(TARGETS) - ASSEMBLIES = ../sources/$(ASSEMBLY_NAME).dll diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 8bfc74e..b8cad78 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,15 +1,14 @@ %define debug_package %{nil} Name: webkit-sharp -Version: 0.2 -Release: 6%{?dist} +Version: 0.3 +Release: 1%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT URL: http://ftp.novell.com/pub/mono/sources/webkit-sharp/ Source0: http://ftp.novell.com/pub/mono/sources/webkit-sharp/%{name}-%{version}.tar.bz2 -Patch0: webkit-sharp-libdir.patch -Patch1: webkit-dllmap-fix.patch +Patch0: webkit-sharp-0.3-libdir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: webkitgtk BuildRequires: webkitgtk-devel @@ -36,9 +35,7 @@ Development files for WebKit-sharp %setup -q # patch for libdir madness -%patch0 -p1 -b webkit-sharp-libdir.patch -#patch for updated webkit version -%patch1 -p1 -b webkit-dllmap-fix.patch +%patch0 -p1 -b .libdir %build %configure @@ -63,6 +60,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Thu Dec 17 2009 Paul Lange - 0.3-1 +- Update to version 0.3 + * Mon Oct 26 2009 Dennis Gilmore - 0.2-6 - build for sparcv9 s390 s390x From 859ebacecd60f8a16434aba31b19f4cf97d4555c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:14:27 +0000 Subject: [PATCH 07/35] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 5d02245..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: webkit-sharp -# $Id$ -NAME := webkit-sharp -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12 diff --git a/import.log b/import.log deleted file mode 100644 index b506702..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -webkit-sharp-0_2-1_fc11:HEAD:webkit-sharp-0.2-1.fc11.src.rpm:1235695367 From 0b1379c9f3c72d2968ce82306950fde3aab6bf3a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:14:28 +0000 Subject: [PATCH 08/35] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 17c464c..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: webkit-sharp -# $Id: Makefile,v 1.1 2009/02/27 00:16:26 kevin Exp $ -NAME := webkit-sharp -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index b506702..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -webkit-sharp-0_2-1_fc11:HEAD:webkit-sharp-0.2-1.fc11.src.rpm:1235695367 From 8630c7bce4dee1fff46ed9a0f115b184a0647832 Mon Sep 17 00:00:00 2001 From: "Paul F. Johnson" Date: Wed, 13 Oct 2010 01:02:53 +0100 Subject: [PATCH 09/35] Rebuild against mono-2.8 --- .gitignore | 1 + webkit-sharp.spec | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 54e24eb..a605ce9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ webkit-sharp-0.3.tar.bz2 +/webkit-sharp-0.3.tar.bz2 diff --git a/webkit-sharp.spec b/webkit-sharp.spec index b8cad78..3ca1f6c 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -60,6 +60,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Sat Oct 09 2010 Paul F. Johnson 0.3-2 +- Rebuild for mono-2.8 + * Thu Dec 17 2009 Paul Lange - 0.3-1 - Update to version 0.3 From e136e3c5eeaaec6d9453b90d11557d304bfa46cf Mon Sep 17 00:00:00 2001 From: Christian Krause Date: Sun, 31 Oct 2010 10:54:03 +0100 Subject: [PATCH 10/35] - Rebuild again to create correct requires/provides capabilities --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 3ca1f6c..1ce0ad3 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -60,6 +60,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Sun Oct 31 2010 Christian Krause - 0.3-3 +- Rebuild again to create correct requires/provides capabilities + * Sat Oct 09 2010 Paul F. Johnson 0.3-2 - Rebuild for mono-2.8 From c44bf590e558bdfeabec8cc257610c4e87a206f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Tue, 30 Nov 2010 16:13:28 +0100 Subject: [PATCH 11/35] - update dll mapping for new webkitgtk (#658502) - sync ExclusiveArch list with mono --- webkit-sharp-0.3-dllmap.patch | 8 ++++++++ webkit-sharp.spec | 12 ++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 webkit-sharp-0.3-dllmap.patch diff --git a/webkit-sharp-0.3-dllmap.patch b/webkit-sharp-0.3-dllmap.patch new file mode 100644 index 0000000..7ff5dde --- /dev/null +++ b/webkit-sharp-0.3-dllmap.patch @@ -0,0 +1,8 @@ +diff -up webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version webkit-sharp-0.3/sources/webkit-sharp.dll.config.in +--- webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version 2010-11-28 10:27:36.000000000 +0100 ++++ webkit-sharp-0.3/sources/webkit-sharp.dll.config.in 2010-11-28 10:27:47.000000000 +0100 +@@ -1,3 +1,3 @@ + +- ++ + diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 1ce0ad3..9903aa5 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,13 +2,15 @@ Name: webkit-sharp Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT URL: http://ftp.novell.com/pub/mono/sources/webkit-sharp/ Source0: http://ftp.novell.com/pub/mono/sources/webkit-sharp/%{name}-%{version}.tar.bz2 Patch0: webkit-sharp-0.3-libdir.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=658502 +Patch1: webkit-sharp-0.3-dllmap.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: webkitgtk BuildRequires: webkitgtk-devel @@ -17,7 +19,7 @@ BuildRequires: gtk-sharp2-devel BuildRequires: gtk-sharp2-gapi BuildRequires: monodoc-devel -ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparcv9 alpha s390 s390x +ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparcv9 alpha s390x %description WebKit-sharp is .NET bindings for the WebKit rendering engine. @@ -36,6 +38,8 @@ Development files for WebKit-sharp # patch for libdir madness %patch0 -p1 -b .libdir +# update for new webkit library name +%patch1 -p1 -b .dllmap %build %configure @@ -60,6 +64,10 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Sat Nov 27 2010 Dan Horák - 0.3-3 +- update dll mapping for new webkitgtk (#658502) +- sync ExclusiveArch list with mono + * Sun Oct 31 2010 Christian Krause - 0.3-3 - Rebuild again to create correct requires/provides capabilities From c5d22037dbacdc3ce3d4e87290e4b2be37eeee3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Tue, 30 Nov 2010 16:14:33 +0100 Subject: [PATCH 12/35] fix release in changelog --- webkit-sharp.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 9903aa5..7b40ef2 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -64,7 +64,7 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog -* Sat Nov 27 2010 Dan Horák - 0.3-3 +* Sat Nov 27 2010 Dan Horák - 0.3-4 - update dll mapping for new webkitgtk (#658502) - sync ExclusiveArch list with mono From 34d727656b8ce9470ce9d649fd001c20d0890968 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 20:14:40 -0600 Subject: [PATCH 13/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 7b40ef2..3fb3273 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sat Nov 27 2010 Dan Horák - 0.3-4 - update dll mapping for new webkitgtk (#658502) - sync ExclusiveArch list with mono From 5ae95fcb027fa7dd652cf00ebc9dade56806b173 Mon Sep 17 00:00:00 2001 From: Christian Krause Date: Mon, 28 Mar 2011 23:45:37 +0200 Subject: [PATCH 14/35] Rebuilt against mono 2.10 Minor spec file cleanup --- webkit-sharp.spec | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 3fb3273..3e36906 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -11,7 +11,6 @@ Source0: http://ftp.novell.com/pub/mono/sources/webkit-sharp/%{name}-%{version}. Patch0: webkit-sharp-0.3-libdir.patch # https://bugzilla.redhat.com/show_bug.cgi?id=658502 Patch1: webkit-sharp-0.3-dllmap.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: webkitgtk BuildRequires: webkitgtk-devel BuildRequires: mono-devel @@ -47,12 +46,8 @@ Development files for WebKit-sharp make %install -%{__rm} -rf %{buildroot} make DESTDIR=%{buildroot} install -%clean -%{__rm} -rf %{buildroot} - %files %defattr(-,root,root,-) %doc COPYING README @@ -64,6 +59,10 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Mon Mar 28 2011 Christian Krause - 0.3-6 +- Rebuilt against mono 2.10 +- Minor spec file cleanup + * Mon Feb 07 2011 Fedora Release Engineering - 0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From c76ff07c5d54620518be56dfa7dab81d58125e3c Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Fri, 3 Jun 2011 14:15:52 -0400 Subject: [PATCH 15/35] Added arm macro to ExclusiveArch --- webkit-sharp.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 3e36906..86329b2 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -18,7 +18,7 @@ BuildRequires: gtk-sharp2-devel BuildRequires: gtk-sharp2-gapi BuildRequires: monodoc-devel -ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparcv9 alpha s390x +ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x %description WebKit-sharp is .NET bindings for the WebKit rendering engine. @@ -59,6 +59,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Fri Jun 03 2011 Paul Whalen - 0.3-7 +- Added arm macro to ExclusiveArch + * Mon Mar 28 2011 Christian Krause - 0.3-6 - Rebuilt against mono 2.10 - Minor spec file cleanup From 8203a71882f18c9dde48e447d96ce4459cef2605 Mon Sep 17 00:00:00 2001 From: Christian Krause Date: Mon, 24 Oct 2011 23:37:06 +0200 Subject: [PATCH 16/35] Change paths for mono assemblies according to updated packaging guidelines (http://fedoraproject.org/wiki/Packaging:Mono) --- webkit-sharp-0.3-libdir.patch | 48 ----------------------------------- webkit-sharp.spec | 19 +++++++------- 2 files changed, 10 insertions(+), 57 deletions(-) delete mode 100644 webkit-sharp-0.3-libdir.patch diff --git a/webkit-sharp-0.3-libdir.patch b/webkit-sharp-0.3-libdir.patch deleted file mode 100644 index 0433c37..0000000 --- a/webkit-sharp-0.3-libdir.patch +++ /dev/null @@ -1,48 +0,0 @@ -# SourceFucker.pl: Fix hardcoded references to libdir -diff -uraN webkit-sharp-0.3.orig/configure webkit-sharp-0.3/configure ---- webkit-sharp-0.3.orig/configure 2009-10-21 21:54:34.000000000 +0200 -+++ webkit-sharp-0.3/configure 2009-12-17 14:45:29.025582798 +0100 -@@ -3266,7 +3266,7 @@ - { (exit 1); exit 1; }; } - fi - --GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(prefix)/lib' -+GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(libdir)' - - - -diff -uraN webkit-sharp-0.3.orig/configure.ac webkit-sharp-0.3/configure.ac ---- webkit-sharp-0.3.orig/configure.ac 2009-10-21 21:54:23.000000000 +0200 -+++ webkit-sharp-0.3/configure.ac 2009-12-17 14:45:28.830582747 +0100 -@@ -76,7 +76,7 @@ - AC_MSG_ERROR([No gacutil tool found]) - fi - --GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(prefix)/lib' -+GACUTIL_FLAGS="/package $ASSEMBLY_NAME /root "'$(DESTDIR)$(libdir)' - - AC_SUBST(RUNTIME) - AC_SUBST(CSC) -diff -uraN webkit-sharp-0.3.orig/doc/Makefile.am webkit-sharp-0.3/doc/Makefile.am ---- webkit-sharp-0.3.orig/doc/Makefile.am 2009-10-21 21:54:23.000000000 +0200 -+++ webkit-sharp-0.3/doc/Makefile.am 2009-12-17 14:45:28.796583031 +0100 -@@ -1,6 +1,6 @@ - if ENABLE_MONODOC - TARGETS = $(ASSEMBLY_NAME)-docs.source $(ASSEMBLY_NAME)-docs.zip $(ASSEMBLY_NAME)-docs.tree --docsdir = $(prefix)/lib/monodoc/sources -+docsdir = $(libdir)/monodoc/sources - docs_DATA = $(TARGETS) - else - TARGETS = -diff -uraN webkit-sharp-0.3.orig/doc/Makefile.in webkit-sharp-0.3/doc/Makefile.in ---- webkit-sharp-0.3.orig/doc/Makefile.in 2009-10-21 21:54:35.000000000 +0200 -+++ webkit-sharp-0.3/doc/Makefile.in 2009-12-17 14:45:28.795583126 +0100 -@@ -186,7 +186,7 @@ - @ENABLE_MONODOC_FALSE@TARGETS = - @ENABLE_MONODOC_TRUE@TARGETS = $(ASSEMBLY_NAME)-docs.source $(ASSEMBLY_NAME)-docs.zip $(ASSEMBLY_NAME)-docs.tree - @ENABLE_MONODOC_FALSE@docsdir = $(datadir) --@ENABLE_MONODOC_TRUE@docsdir = $(prefix)/lib/monodoc/sources -+@ENABLE_MONODOC_TRUE@docsdir = $(libdir)/monodoc/sources - @ENABLE_MONODOC_FALSE@docs_DATA = - @ENABLE_MONODOC_TRUE@docs_DATA = $(TARGETS) - ASSEMBLIES = ../sources/$(ASSEMBLY_NAME).dll diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 86329b2..6c6629f 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,13 +2,12 @@ Name: webkit-sharp Version: 0.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT -URL: http://ftp.novell.com/pub/mono/sources/webkit-sharp/ -Source0: http://ftp.novell.com/pub/mono/sources/webkit-sharp/%{name}-%{version}.tar.bz2 -Patch0: webkit-sharp-0.3-libdir.patch +URL: http://www.mono-project.com/Main_Page +Source0: http://origin-download.mono-project.com/sources/webkit-sharp/%{name}-%{version}.tar.bz2 # https://bugzilla.redhat.com/show_bug.cgi?id=658502 Patch1: webkit-sharp-0.3-dllmap.patch Requires: webkitgtk @@ -34,11 +33,9 @@ Development files for WebKit-sharp %prep %setup -q - -# patch for libdir madness -%patch0 -p1 -b .libdir # update for new webkit library name %patch1 -p1 -b .dllmap +sed -i -e 's!@libdir@!${exec_prefix}/lib!g' sources/webkit-sharp.pc.in %build %configure @@ -51,14 +48,18 @@ make DESTDIR=%{buildroot} install %files %defattr(-,root,root,-) %doc COPYING README -%{_libdir}/mono/ +%{_prefix}/lib/mono/ %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/webkit-sharp-1.0.pc -%{_libdir}/monodoc/sources/webkit-sharp* +%{_prefix}/lib/monodoc/sources/webkit-sharp* %changelog +* Sun Oct 23 2011 Christian Krause - 0.3-8 +- Change paths for mono assemblies according to updated packaging + guidelines (http://fedoraproject.org/wiki/Packaging:Mono) + * Fri Jun 03 2011 Paul Whalen - 0.3-7 - Added arm macro to ExclusiveArch From 85f5a9a22ee74ae29a92cd393a71f24a1dc51d74 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:12:17 -0600 Subject: [PATCH 17/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 6c6629f..b7de4e5 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -56,6 +56,9 @@ make DESTDIR=%{buildroot} install %{_prefix}/lib/monodoc/sources/webkit-sharp* %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Sun Oct 23 2011 Christian Krause - 0.3-8 - Change paths for mono assemblies according to updated packaging guidelines (http://fedoraproject.org/wiki/Packaging:Mono) From 03492efbbd47aff0421cb200665cab58f71c335e Mon Sep 17 00:00:00 2001 From: Paul Lange Date: Mon, 27 Feb 2012 22:44:43 -0600 Subject: [PATCH 18/35] No longer needed for bashee and superseeded by webkitgtk --- .gitignore | 2 - dead.package | 1 + sources | 1 - webkit-sharp-0.3-dllmap.patch | 8 --- webkit-sharp.spec | 105 ---------------------------------- 5 files changed, 1 insertion(+), 116 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 webkit-sharp-0.3-dllmap.patch delete mode 100644 webkit-sharp.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index a605ce9..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -webkit-sharp-0.3.tar.bz2 -/webkit-sharp-0.3.tar.bz2 diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..28d8700 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +No longer needed for bashee and superseeded by webkitgtk diff --git a/sources b/sources deleted file mode 100644 index 9742e50..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -21482f9d5eafb0ef4acc6e790482f934 webkit-sharp-0.3.tar.bz2 diff --git a/webkit-sharp-0.3-dllmap.patch b/webkit-sharp-0.3-dllmap.patch deleted file mode 100644 index 7ff5dde..0000000 --- a/webkit-sharp-0.3-dllmap.patch +++ /dev/null @@ -1,8 +0,0 @@ -diff -up webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version webkit-sharp-0.3/sources/webkit-sharp.dll.config.in ---- webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version 2010-11-28 10:27:36.000000000 +0100 -+++ webkit-sharp-0.3/sources/webkit-sharp.dll.config.in 2010-11-28 10:27:47.000000000 +0100 -@@ -1,3 +1,3 @@ - -- -+ - diff --git a/webkit-sharp.spec b/webkit-sharp.spec deleted file mode 100644 index b7de4e5..0000000 --- a/webkit-sharp.spec +++ /dev/null @@ -1,105 +0,0 @@ -%define debug_package %{nil} - -Name: webkit-sharp -Version: 0.3 -Release: 9%{?dist} -Summary: .NET bindings for WebKit -Group: Development/Languages -License: MIT -URL: http://www.mono-project.com/Main_Page -Source0: http://origin-download.mono-project.com/sources/webkit-sharp/%{name}-%{version}.tar.bz2 -# https://bugzilla.redhat.com/show_bug.cgi?id=658502 -Patch1: webkit-sharp-0.3-dllmap.patch -Requires: webkitgtk -BuildRequires: webkitgtk-devel -BuildRequires: mono-devel -BuildRequires: gtk-sharp2-devel -BuildRequires: gtk-sharp2-gapi -BuildRequires: monodoc-devel - -ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x - -%description -WebKit-sharp is .NET bindings for the WebKit rendering engine. - -%package devel -Summary: Development files for WebKit-sharp -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: pkgconfig - -%description devel -Development files for WebKit-sharp - -%prep -%setup -q -# update for new webkit library name -%patch1 -p1 -b .dllmap -sed -i -e 's!@libdir@!${exec_prefix}/lib!g' sources/webkit-sharp.pc.in - -%build -%configure -# parallel build fails in mock -make - -%install -make DESTDIR=%{buildroot} install - -%files -%defattr(-,root,root,-) -%doc COPYING README -%{_prefix}/lib/mono/ - -%files devel -%defattr(-,root,root,-) -%{_libdir}/pkgconfig/webkit-sharp-1.0.pc -%{_prefix}/lib/monodoc/sources/webkit-sharp* - -%changelog -* Sat Jan 14 2012 Fedora Release Engineering - 0.3-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Sun Oct 23 2011 Christian Krause - 0.3-8 -- Change paths for mono assemblies according to updated packaging - guidelines (http://fedoraproject.org/wiki/Packaging:Mono) - -* Fri Jun 03 2011 Paul Whalen - 0.3-7 -- Added arm macro to ExclusiveArch - -* Mon Mar 28 2011 Christian Krause - 0.3-6 -- Rebuilt against mono 2.10 -- Minor spec file cleanup - -* Mon Feb 07 2011 Fedora Release Engineering - 0.3-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sat Nov 27 2010 Dan Horák - 0.3-4 -- update dll mapping for new webkitgtk (#658502) -- sync ExclusiveArch list with mono - -* Sun Oct 31 2010 Christian Krause - 0.3-3 -- Rebuild again to create correct requires/provides capabilities - -* Sat Oct 09 2010 Paul F. Johnson 0.3-2 -- Rebuild for mono-2.8 - -* Thu Dec 17 2009 Paul Lange - 0.3-1 -- Update to version 0.3 - -* Mon Oct 26 2009 Dennis Gilmore - 0.2-6 -- build for sparcv9 s390 s390x - -* Mon Jul 27 2009 Fedora Release Engineering - 0.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Sun Jun 21 2009 Paul Lange - 0.2-4 -- Fix supported archs - -* Sun Jun 14 2009 Paul Lange - 0.2-3 -- Fix wrong webkitgtk link and missing dependency (#500654) - -* Mon May 25 2009 Xavier Lamien - 0.2-2 -- Build arch ppc64. - -* Sat Feb 21 2009 David Nielsen - 0.2-1 -- Initial package From 79637c980a4f42d8ba76376655bfda48c3b06f3e Mon Sep 17 00:00:00 2001 From: Nikos Roussos Date: Thu, 28 Mar 2013 16:10:24 +0200 Subject: [PATCH 19/35] unorphan package --- dead.package | 1 - 1 file changed, 1 deletion(-) delete mode 100644 dead.package diff --git a/dead.package b/dead.package deleted file mode 100644 index 28d8700..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -No longer needed for bashee and superseeded by webkitgtk From ac86cdcba7c13a4e51f4a59cea536057c25c5552 Mon Sep 17 00:00:00 2001 From: Nikos Roussos Date: Thu, 28 Mar 2013 16:11:29 +0200 Subject: [PATCH 20/35] unorphan package --- .gitignore | 1 + sources | 1 + 2 files changed, 2 insertions(+) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9ad62e4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/webkit-sharp-0.3.tar.bz2 diff --git a/sources b/sources new file mode 100644 index 0000000..9742e50 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +21482f9d5eafb0ef4acc6e790482f934 webkit-sharp-0.3.tar.bz2 From d1868d5ef0446f723be207819d8422108a01aa2d Mon Sep 17 00:00:00 2001 From: Nikos Roussos Date: Thu, 28 Mar 2013 16:12:15 +0200 Subject: [PATCH 21/35] unorphan package --- webkit-sharp-0.3-dllmap.patch | 8 +++ webkit-sharp.spec | 116 ++++++++++++++++++++++++++++++++++ 2 files changed, 124 insertions(+) create mode 100644 webkit-sharp-0.3-dllmap.patch create mode 100644 webkit-sharp.spec diff --git a/webkit-sharp-0.3-dllmap.patch b/webkit-sharp-0.3-dllmap.patch new file mode 100644 index 0000000..7ff5dde --- /dev/null +++ b/webkit-sharp-0.3-dllmap.patch @@ -0,0 +1,8 @@ +diff -up webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version webkit-sharp-0.3/sources/webkit-sharp.dll.config.in +--- webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version 2010-11-28 10:27:36.000000000 +0100 ++++ webkit-sharp-0.3/sources/webkit-sharp.dll.config.in 2010-11-28 10:27:47.000000000 +0100 +@@ -1,3 +1,3 @@ + +- ++ + diff --git a/webkit-sharp.spec b/webkit-sharp.spec new file mode 100644 index 0000000..0af98b0 --- /dev/null +++ b/webkit-sharp.spec @@ -0,0 +1,116 @@ +Name: webkit-sharp +Version: 0.3 +Release: 10%{?dist} +Summary: .NET bindings for WebKit + +License: MIT +URL: http://www.mono-project.com/Main_Page +Source0: http://origin-download.mono-project.com/sources/webkit-sharp/%{name}-%{version}.tar.bz2 +# https://bugzilla.redhat.com/show_bug.cgi?id=658502 +Patch1: webkit-sharp-0.3-dllmap.patch + +Requires: webkitgtk +BuildRequires: webkitgtk-devel +BuildRequires: mono-devel +BuildRequires: gtk-sharp2-devel +BuildRequires: gtk-sharp2-gapi +BuildRequires: monodoc-devel + +ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x + +#https://fedoraproject.org/wiki/Packaging:Mono#Empty_debuginfo +%global debug_package %{nil} + + +%description +WebKit-sharp is .NET bindings for the WebKit rendering engine. + + +%package devel +Summary: Development files for WebKit-sharp +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + + +%description devel +Development files for WebKit-sharp + + +%prep +%setup -q +# update for new webkit library name +%patch1 -p1 -b .dllmap +sed -i -e 's!@libdir@!${exec_prefix}/lib!g' sources/webkit-sharp.pc.in + + +%build +%configure +make + + +%install +make DESTDIR=%{buildroot} install + + +%files +%doc COPYING README +%{_prefix}/lib/mono/ + + +%files devel +%{_libdir}/pkgconfig/webkit-sharp-1.0.pc +%{_prefix}/lib/monodoc/sources/webkit-sharp* + + +%changelog +* Mon Mar 27 2013 Nikos Roussos 0.3-10 +- Clean up package for F19 + +* Sat Jan 14 2012 Fedora Release Engineering - 0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Sun Oct 23 2011 Christian Krause - 0.3-8 +- Change paths for mono assemblies according to updated packaging + guidelines (http://fedoraproject.org/wiki/Packaging:Mono) + +* Fri Jun 03 2011 Paul Whalen - 0.3-7 +- Added arm macro to ExclusiveArch + +* Mon Mar 28 2011 Christian Krause - 0.3-6 +- Rebuilt against mono 2.10 +- Minor spec file cleanup + +* Mon Feb 07 2011 Fedora Release Engineering - 0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sat Nov 27 2010 Dan Horák - 0.3-4 +- update dll mapping for new webkitgtk (#658502) +- sync ExclusiveArch list with mono + +* Sun Oct 31 2010 Christian Krause - 0.3-3 +- Rebuild again to create correct requires/provides capabilities + +* Sat Oct 09 2010 Paul F. Johnson 0.3-2 +- Rebuild for mono-2.8 + +* Thu Dec 17 2009 Paul Lange - 0.3-1 +- Update to version 0.3 + +* Mon Oct 26 2009 Dennis Gilmore - 0.2-6 +- build for sparcv9 s390 s390x + +* Mon Jul 27 2009 Fedora Release Engineering - 0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jun 21 2009 Paul Lange - 0.2-4 +- Fix supported archs + +* Sun Jun 14 2009 Paul Lange - 0.2-3 +- Fix wrong webkitgtk link and missing dependency (#500654) + +* Mon May 25 2009 Xavier Lamien - 0.2-2 +- Build arch ppc64. + +* Sat Feb 21 2009 David Nielsen - 0.2-1 +- Initial package From 30d3d66076bcbb557bc84fb132409a3eeaad1df8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 01:44:02 -0500 Subject: [PATCH 22/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 0af98b0..a937782 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Mon Mar 27 2013 Nikos Roussos 0.3-10 - Clean up package for F19 From 51a19c868c23fc0506e82664de952d406ea14630 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 23:20:02 -0500 Subject: [PATCH 23/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index a937782..387b0d2 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From ee5e5da2ab845a4fee7e52d8865894555daf4dbc Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 08:25:01 +0000 Subject: [PATCH 24/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 387b0d2..0e02d06 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 12%{?dist} +Release: 13%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 0.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 0d93592590b5cf96af031b40c5ba734afd6f5559 Mon Sep 17 00:00:00 2001 From: Than Ngo Date: Tue, 24 Mar 2015 22:21:03 +0100 Subject: [PATCH 25/35] use %mono_arches --- webkit-sharp.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 0e02d06..6246f57 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 13%{?dist} +Release: 14%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -16,7 +16,7 @@ BuildRequires: gtk-sharp2-devel BuildRequires: gtk-sharp2-gapi BuildRequires: monodoc-devel -ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x +ExclusiveArch: %mono_arches #https://fedoraproject.org/wiki/Packaging:Mono#Empty_debuginfo %global debug_package %{nil} @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Tue Mar 24 2015 Than Ngo - 0.3-14 +- use %%mono_arches + * Mon Aug 18 2014 Fedora Release Engineering - 0.3-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From ad640abd6da7f309d8d9919a188bc2afc06ea600 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 May 2015 15:06:00 +0100 Subject: [PATCH 26/35] Rebuild (mono4) --- webkit-sharp.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 6246f57..27495a2 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 14%{?dist} +Release: 15%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Tue Apr 28 2015 Claudio Rodrigo Pereyra Diaz - 0.3-15 +- Rebuild for mono 4 + * Tue Mar 24 2015 Than Ngo - 0.3-14 - use %%mono_arches @@ -76,7 +79,7 @@ make DESTDIR=%{buildroot} install * Sun Aug 04 2013 Fedora Release Engineering - 0.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild -* Mon Mar 27 2013 Nikos Roussos 0.3-10 +* Wed Mar 27 2013 Nikos Roussos 0.3-10 - Clean up package for F19 * Sat Jan 14 2012 Fedora Release Engineering - 0.3-9 From d3e3e75bd0f44f67d8d4571698897940aeb9a473 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 02:18:54 +0000 Subject: [PATCH 27/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 27495a2..4e47f1c 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 15%{?dist} +Release: 16%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.3-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Tue Apr 28 2015 Claudio Rodrigo Pereyra Diaz - 0.3-15 - Rebuild for mono 4 From f0aae94d02aead449c26a412b5c95214c029bb2a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:56:43 +0000 Subject: [PATCH 28/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 4e47f1c..a2caff4 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 16%{?dist} +Release: 17%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.3-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 0.3-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 9da7795476031126e8dbe68f45f4058ee84dd162 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 13 Oct 2016 15:57:47 +0100 Subject: [PATCH 29/35] - mono rebuild for aarch64 support --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index a2caff4..6f4ec90 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 17%{?dist} +Release: 18%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Thu Oct 13 2016 Fedora Release Engineering - 0.3-18 +- mono rebuild for aarch64 support + * Fri Feb 05 2016 Fedora Release Engineering - 0.3-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 247634bef2efd66c5f304cd4ef0e640a713a2e14 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:18:20 +0000 Subject: [PATCH 30/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 6f4ec90..060482f 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 18%{?dist} +Release: 19%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.3-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Oct 13 2016 Fedora Release Engineering - 0.3-18 - mono rebuild for aarch64 support From 257c3b4781159bddfd7b4f20d83fe2b876ea9c8a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:32:54 +0000 Subject: [PATCH 31/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 060482f..885d46d 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 19%{?dist} +Release: 20%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.3-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 0.3-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From abab6eddb84382283714c376a28a6bee5012c648 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:13:27 +0000 Subject: [PATCH 32/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 885d46d..a0cf711 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 20%{?dist} +Release: 21%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.3-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.3-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From dd96ee869f4461823d42c61ff1d4e04265099d23 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 20:50:02 +0000 Subject: [PATCH 33/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index a0cf711..8104230 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 21%{?dist} +Release: 22%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.3-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.3-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From b8c750a261d4f5c1abcb1d8d7b76a07f3177ad23 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:46:23 +0000 Subject: [PATCH 34/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- webkit-sharp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webkit-sharp.spec b/webkit-sharp.spec index 8104230..3854620 100644 --- a/webkit-sharp.spec +++ b/webkit-sharp.spec @@ -1,6 +1,6 @@ Name: webkit-sharp Version: 0.3 -Release: 22%{?dist} +Release: 23%{?dist} Summary: .NET bindings for WebKit License: MIT @@ -64,6 +64,9 @@ make DESTDIR=%{buildroot} install %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.3-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 0.3-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 029f85247998c43ae7645b7d87b306ecb3c71be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 24 Dec 2018 13:51:37 +0100 Subject: [PATCH 35/35] Orphaned for 6+ weeks --- .gitignore | 1 - dead.package | 1 + sources | 1 - webkit-sharp-0.3-dllmap.patch | 8 -- webkit-sharp.spec | 155 ---------------------------------- 5 files changed, 1 insertion(+), 165 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 webkit-sharp-0.3-dllmap.patch delete mode 100644 webkit-sharp.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9ad62e4..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/webkit-sharp-0.3.tar.bz2 diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/sources b/sources deleted file mode 100644 index 9742e50..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -21482f9d5eafb0ef4acc6e790482f934 webkit-sharp-0.3.tar.bz2 diff --git a/webkit-sharp-0.3-dllmap.patch b/webkit-sharp-0.3-dllmap.patch deleted file mode 100644 index 7ff5dde..0000000 --- a/webkit-sharp-0.3-dllmap.patch +++ /dev/null @@ -1,8 +0,0 @@ -diff -up webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version webkit-sharp-0.3/sources/webkit-sharp.dll.config.in ---- webkit-sharp-0.3/sources/webkit-sharp.dll.config.in.version 2010-11-28 10:27:36.000000000 +0100 -+++ webkit-sharp-0.3/sources/webkit-sharp.dll.config.in 2010-11-28 10:27:47.000000000 +0100 -@@ -1,3 +1,3 @@ - -- -+ - diff --git a/webkit-sharp.spec b/webkit-sharp.spec deleted file mode 100644 index 3854620..0000000 --- a/webkit-sharp.spec +++ /dev/null @@ -1,155 +0,0 @@ -Name: webkit-sharp -Version: 0.3 -Release: 23%{?dist} -Summary: .NET bindings for WebKit - -License: MIT -URL: http://www.mono-project.com/Main_Page -Source0: http://origin-download.mono-project.com/sources/webkit-sharp/%{name}-%{version}.tar.bz2 -# https://bugzilla.redhat.com/show_bug.cgi?id=658502 -Patch1: webkit-sharp-0.3-dllmap.patch - -Requires: webkitgtk -BuildRequires: webkitgtk-devel -BuildRequires: mono-devel -BuildRequires: gtk-sharp2-devel -BuildRequires: gtk-sharp2-gapi -BuildRequires: monodoc-devel - -ExclusiveArch: %mono_arches - -#https://fedoraproject.org/wiki/Packaging:Mono#Empty_debuginfo -%global debug_package %{nil} - - -%description -WebKit-sharp is .NET bindings for the WebKit rendering engine. - - -%package devel -Summary: Development files for WebKit-sharp -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: pkgconfig - - -%description devel -Development files for WebKit-sharp - - -%prep -%setup -q -# update for new webkit library name -%patch1 -p1 -b .dllmap -sed -i -e 's!@libdir@!${exec_prefix}/lib!g' sources/webkit-sharp.pc.in - - -%build -%configure -make - - -%install -make DESTDIR=%{buildroot} install - - -%files -%doc COPYING README -%{_prefix}/lib/mono/ - - -%files devel -%{_libdir}/pkgconfig/webkit-sharp-1.0.pc -%{_prefix}/lib/monodoc/sources/webkit-sharp* - - -%changelog -* Sat Jul 14 2018 Fedora Release Engineering - 0.3-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Feb 09 2018 Fedora Release Engineering - 0.3-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Aug 03 2017 Fedora Release Engineering - 0.3-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 0.3-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 0.3-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Oct 13 2016 Fedora Release Engineering - 0.3-18 -- mono rebuild for aarch64 support - -* Fri Feb 05 2016 Fedora Release Engineering - 0.3-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 0.3-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Tue Apr 28 2015 Claudio Rodrigo Pereyra Diaz - 0.3-15 -- Rebuild for mono 4 - -* Tue Mar 24 2015 Than Ngo - 0.3-14 -- use %%mono_arches - -* Mon Aug 18 2014 Fedora Release Engineering - 0.3-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 0.3-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 0.3-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Mar 27 2013 Nikos Roussos 0.3-10 -- Clean up package for F19 - -* Sat Jan 14 2012 Fedora Release Engineering - 0.3-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Sun Oct 23 2011 Christian Krause - 0.3-8 -- Change paths for mono assemblies according to updated packaging - guidelines (http://fedoraproject.org/wiki/Packaging:Mono) - -* Fri Jun 03 2011 Paul Whalen - 0.3-7 -- Added arm macro to ExclusiveArch - -* Mon Mar 28 2011 Christian Krause - 0.3-6 -- Rebuilt against mono 2.10 -- Minor spec file cleanup - -* Mon Feb 07 2011 Fedora Release Engineering - 0.3-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sat Nov 27 2010 Dan Horák - 0.3-4 -- update dll mapping for new webkitgtk (#658502) -- sync ExclusiveArch list with mono - -* Sun Oct 31 2010 Christian Krause - 0.3-3 -- Rebuild again to create correct requires/provides capabilities - -* Sat Oct 09 2010 Paul F. Johnson 0.3-2 -- Rebuild for mono-2.8 - -* Thu Dec 17 2009 Paul Lange - 0.3-1 -- Update to version 0.3 - -* Mon Oct 26 2009 Dennis Gilmore - 0.2-6 -- build for sparcv9 s390 s390x - -* Mon Jul 27 2009 Fedora Release Engineering - 0.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Sun Jun 21 2009 Paul Lange - 0.2-4 -- Fix supported archs - -* Sun Jun 14 2009 Paul Lange - 0.2-3 -- Fix wrong webkitgtk link and missing dependency (#500654) - -* Mon May 25 2009 Xavier Lamien - 0.2-2 -- Build arch ppc64. - -* Sat Feb 21 2009 David Nielsen - 0.2-1 -- Initial package