[Pkg-cli-libs-commits] [SCM] semweb branch, master, updated. upstream/1.05+dfsg-15-g88c6440

David Paleino d.paleino at gmail.com
Fri Sep 25 21:39:04 UTC 2009


The following commit has been merged in the master branch:
commit 88c6440c83492e73bb62557c618a17164bdc7b27
Author: David Paleino <d.paleino at gmail.com>
Date:   Fri Sep 25 23:37:52 2009 +0200

    debian/patches/: added DEP-3 headers

diff --git a/debian/changelog b/debian/changelog
index 188cdc0..bb584ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,10 +12,12 @@ semweb (1.05+dfsg-3) UNRELEASED; urgency=low
     + move from Section libs to cli-mono
     + bump Build-Depends from libmysql5.0-cil to libmysql6.0-cil
     + added ${misc:Depends} to monodoc-semweb-manual dependencies
-  * debian/patches/: converted patches to quilt (also change
-    debian/rules and debian/control)
+  * debian/patches/:
+    + converted patches to quilt (also change debian/rules and
+      debian/control)
+    + added DEP-3 headers
 
- -- David Paleino <d.paleino at gmail.com>  Fri, 25 Sep 2009 23:31:18 +0200
+ -- David Paleino <d.paleino at gmail.com>  Fri, 25 Sep 2009 23:37:22 +0200
 
 semweb (1.05+dfsg-2) unstable; urgency=low
 
diff --git a/debian/patches/01-fix_mysql_linkage.patch b/debian/patches/01-fix_mysql_linkage.patch
old mode 100755
new mode 100644
index 6eb16ca..b5a6340
--- a/debian/patches/01-fix_mysql_linkage.patch
+++ b/debian/patches/01-fix_mysql_linkage.patch
@@ -1,14 +1,14 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## fix_mysql_linkage.dpatch by Mirco Bauer <meebey at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
+Description: use pkgconfig to link to MySql library
+Author: Mirco Bauer <meebey at debian.org>
+Forwarded: not-needed
 
- at DPATCH@
-diff -urNad semweb-1.05+dfsg~/Makefile semweb-1.05+dfsg/Makefile
---- semweb-1.05+dfsg~/Makefile	2008-05-04 15:19:34.000000000 +0200
-+++ semweb-1.05+dfsg/Makefile	2008-05-04 15:21:14.000000000 +0200
-@@ -96,7 +96,7 @@
+---
+ Makefile |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- semweb.orig/Makefile
++++ semweb/Makefile
+@@ -96,7 +96,7 @@ $(BIN)/SemWeb.MySQLStore.dll: src/MySQLS
  ifneq "$(PROFILE)" "DOTNET1" # the MySql.Data lib we are compiling against is 2.0.
  ifneq "$(mysql_available)" "0"
  	$(MCS) -debug src/MySQLStore.cs -out:$(BIN)/SemWeb.MySQLStore.dll -t:library\
diff --git a/debian/patches/02-fix_store_builds.patch b/debian/patches/02-fix_store_builds.patch
old mode 100755
new mode 100644
index 200bad5..63df713
--- a/debian/patches/02-fix_store_builds.patch
+++ b/debian/patches/02-fix_store_builds.patch
@@ -1,14 +1,13 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## fix_store_builds.dpatch by Mirco Bauer <meebey at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
+Description: fix store builds
+Author: Mirco Bauer <meebey at debian.org>
 
- at DPATCH@
-diff -urNad semweb-1.05+dfsg~/Makefile semweb-1.05+dfsg/Makefile
---- semweb-1.05+dfsg~/Makefile	2008-05-04 17:25:57.000000000 +0200
-+++ semweb-1.05+dfsg/Makefile	2008-05-04 17:26:27.000000000 +0200
-@@ -66,7 +66,7 @@
+---
+ Makefile |   10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+--- semweb.orig/Makefile
++++ semweb/Makefile
+@@ -66,7 +66,7 @@ MAIN_SOURCES = \
  
  $(BIN)/SemWeb.dll: $(MAIN_SOURCES) Makefile
  	mkdir -p $(BIN)
@@ -17,7 +16,7 @@ diff -urNad semweb-1.05+dfsg~/Makefile semweb-1.05+dfsg/Makefile
  		-r:System.Data -r:System.Web
  
  # Auxiliary Assemblies
-@@ -78,7 +78,7 @@
+@@ -78,7 +78,7 @@ $(BIN)/SemWeb.Sparql.dll: src/SparqlEngi
  
  $(BIN)/SemWeb.PostgreSQLStore.dll: src/PostgreSQLStore.cs
  ifneq "$(npgsql_available)" "0"
@@ -26,7 +25,7 @@ diff -urNad semweb-1.05+dfsg~/Makefile semweb-1.05+dfsg/Makefile
  		-r:$(BIN)/SemWeb.dll -r:System.Data -r:Npgsql
  else
  	@echo "SKIPPING compilation of SemWeb.PosgreSQLStore.dll because Npgsql assembly seems to be not available in the GAC.";
-@@ -86,7 +86,7 @@
+@@ -86,7 +86,7 @@ endif
  
  $(BIN)/SemWeb.SqliteStore.dll: src/SQLiteStore.cs
  ifneq "$(sqlite_available)" "0"
@@ -35,7 +34,7 @@ diff -urNad semweb-1.05+dfsg~/Makefile semweb-1.05+dfsg/Makefile
  		-r:$(BIN)/SemWeb.dll -r:System.Data -r:Mono.Data.SqliteClient
  else
  	@echo "SKIPPING compilation of SemWeb.SqliteStore.dll because Mono.Data.SqliteClient assembly seems to be not available in the GAC.";
-@@ -95,7 +95,7 @@
+@@ -95,7 +95,7 @@ endif
  $(BIN)/SemWeb.MySQLStore.dll: src/MySQLStore.cs
  ifneq "$(PROFILE)" "DOTNET1" # the MySql.Data lib we are compiling against is 2.0.
  ifneq "$(mysql_available)" "0"
@@ -44,7 +43,7 @@ diff -urNad semweb-1.05+dfsg~/Makefile semweb-1.05+dfsg/Makefile
  		 -r:$(BIN)/SemWeb.dll -r:System.Data -pkg:mysql-connector-net -d:CONNECTOR -lib:lib
  	#$(MCS) -debug src/MySQLStore.cs -out:$(BIN)/SemWeb.MySQLStore-ByteFX.dll -t:library\
  	# -r:$(BIN)/SemWeb.dll -r:System.Data -r:ByteFX.Data -d:BYTEFX
-@@ -105,7 +105,7 @@
+@@ -105,7 +105,7 @@ endif
  endif
  
  $(BIN)/SemWeb.SQLServerStore.dll: src/SQLServerStore.cs
diff --git a/debian/patches/03-enable_AssemblyDelaySign.patch b/debian/patches/03-enable_AssemblyDelaySign.patch
old mode 100755
new mode 100644
index d672364..474adfd
--- a/debian/patches/03-enable_AssemblyDelaySign.patch
+++ b/debian/patches/03-enable_AssemblyDelaySign.patch
@@ -1,13 +1,13 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## enable_AssemblyDelaySign.dpatch by Mirco Bauer <meebey at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Enable delayed signing of the assemblies
+Description: enabled delayed assemblies sign
+Author: Mirco Bauer <meebey at debian.org>
+Forwarded: not-needed
 
- at DPATCH@
-diff -urNad semweb-1.05+dfsg~/src/AssemblyInfo.cs semweb-1.05+dfsg/src/AssemblyInfo.cs
---- semweb-1.05+dfsg~/src/AssemblyInfo.cs	2008-05-04 17:25:56.000000000 +0200
-+++ semweb-1.05+dfsg/src/AssemblyInfo.cs	2008-05-04 17:27:09.000000000 +0200
+---
+ src/AssemblyInfo.cs |    8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+--- semweb.orig/src/AssemblyInfo.cs
++++ semweb/src/AssemblyInfo.cs
 @@ -1,6 +1,7 @@
  using System.Reflection;
  using System.Runtime.CompilerServices;
@@ -16,7 +16,7 @@ diff -urNad semweb-1.05+dfsg~/src/AssemblyInfo.cs semweb-1.05+dfsg/src/AssemblyI
  [assembly: AssemblyTitle("SemWeb")]
  [assembly: AssemblyDescription("A library for applications using RDF and the semantic web.")]
  [assembly: AssemblyConfiguration("")]
-@@ -9,10 +10,9 @@
+@@ -9,10 +10,9 @@ using System.Runtime.CompilerServices;
  [assembly: AssemblyCopyright("Copyright (c) 2008 Joshua Tauberer <http://razor.occams.info>")]
  [assembly: AssemblyTrademark("")]
  [assembly: AssemblyCulture("")]		
diff --git a/debian/patches/04-use_csc_as_compiler.patch b/debian/patches/04-use_csc_as_compiler.patch
old mode 100755
new mode 100644
index 5049a04..ec6674d
--- a/debian/patches/04-use_csc_as_compiler.patch
+++ b/debian/patches/04-use_csc_as_compiler.patch
@@ -1,14 +1,14 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## use_csc_as_compiler.dpatch by Jo Shields <directhex at apebox.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: This patch changes the hard-coded compiler to our "csc" default
+Description: use csc instead of gmcs as compiler
+Author: Jo Shields <directhex at apebox.org>
+Forwarded: not-needed
 
- at DPATCH@
-diff -urNad semweb-1.05+dfsg.orig/Makefile semweb-1.05+dfsg/Makefile
---- semweb-1.05+dfsg.orig/Makefile	2009-03-02 15:13:25.000000000 +0000
-+++ semweb-1.05+dfsg/Makefile	2009-03-02 15:13:40.000000000 +0000
-@@ -35,12 +35,12 @@
+---
+ Makefile |    4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+--- semweb.orig/Makefile
++++ semweb/Makefile
+@@ -35,12 +35,12 @@ endif
  
  ifeq "$(PROFILE)" "DOTNET2"
  BIN=bin_generics

-- 
semweb



More information about the Pkg-cli-libs-commits mailing list