[Pkg-cli-apps-commits] r4450 - in /packages/yahtzeesharp/trunk/debian: changelog copyright patches/01_fix_build_system rules yahtzeesharp.1
sebner-guest at users.alioth.debian.org
sebner-guest at users.alioth.debian.org
Sat Jan 24 20:54:16 UTC 2009
Author: sebner-guest
Date: Sat Jan 24 20:54:16 2009
New Revision: 4450
URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=4450
Log:
* Some updates for new upstream release(unreleased)
Modified:
packages/yahtzeesharp/trunk/debian/changelog
packages/yahtzeesharp/trunk/debian/copyright
packages/yahtzeesharp/trunk/debian/patches/01_fix_build_system
packages/yahtzeesharp/trunk/debian/rules
packages/yahtzeesharp/trunk/debian/yahtzeesharp.1
Modified: packages/yahtzeesharp/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/yahtzeesharp/trunk/debian/changelog?rev=4450&op=diff
==============================================================================
--- packages/yahtzeesharp/trunk/debian/changelog (original)
+++ packages/yahtzeesharp/trunk/debian/changelog Sat Jan 24 20:54:16 2009
@@ -1,6 +1,6 @@
-yahtzeesharp (1.0-1) unstable; urgency=low
+yahtzeesharp (1.1-1) experimental; urgency=low
* Initial release (Closes: #510436)
- -- Stefan Ebner <sebner at ubuntu.com> Mon, 15 Dec 2008 16:45:21 +0100
+ -- Stefan Ebner <sebner at ubuntu.com> Sat, 31 Jan 2009 16:45:21 +0100
Modified: packages/yahtzeesharp/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/yahtzeesharp/trunk/debian/copyright?rev=4450&op=diff
==============================================================================
--- packages/yahtzeesharp/trunk/debian/copyright (original)
+++ packages/yahtzeesharp/trunk/debian/copyright Sat Jan 24 20:54:16 2009
@@ -1,15 +1,15 @@
Upstream-Name: yahtzeesharp
-Upstream-Maintainer: Andew York <andy at brdstudio.net>
+Upstream-Maintainer: Andrew York <yahtzeesharp at brdstudio.net>
Upstream-Source: http://www.brdstudio.net/yahtzeesharp/
Files: *
-Copyright: Copyright (c) 2008, Andew York <andy at brdstudio.net>
-License: GPL-2
+Copyright: Copyright (c) 2009, Andrew York <yahtzeesharp at brdstudio.net>
+License: GPL-3
On Debian systems the full text of the GNU General Public License can be found
- in the `/usr/share/common-licenses/GPL-2' file.
+ in the `/usr/share/common-licenses/GPL-3' file.
Files: debian/*
Copyright: Copyright 2009, Stefan Ebner <sebner at ubuntu.com>
-License: GPL-2
+License: GPL-3
On Debian systems the full text of the GNU General Public License can be found
- in the `/usr/share/common-licenses/GPL-2' file.
+ in the `/usr/share/common-licenses/GPL-3' file.
Modified: packages/yahtzeesharp/trunk/debian/patches/01_fix_build_system
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/yahtzeesharp/trunk/debian/patches/01_fix_build_system?rev=4450&op=diff
==============================================================================
--- packages/yahtzeesharp/trunk/debian/patches/01_fix_build_system (original)
+++ packages/yahtzeesharp/trunk/debian/patches/01_fix_build_system Sat Jan 24 20:54:16 2009
@@ -1,61 +1,20 @@
-Index: yahtzeesharp-1.0.orig/Makefile.in
-# Description:
-# Patch the Makefiles to use csc instead of gmcs
-===================================================================
---- yahtzeesharp-1.0.orig.orig/Makefile.in 2009-01-01 19:21:14.000000000 +0100
-+++ yahtzeesharp-1.0.orig/Makefile.in 2009-01-01 19:26:50.000000000 +0100
-@@ -80,7 +80,7 @@
- ECHO_T = @ECHO_T@
- GLIB_SHARP_20_CFLAGS = @GLIB_SHARP_20_CFLAGS@
- GLIB_SHARP_20_LIBS = @GLIB_SHARP_20_LIBS@
--GMCS = @GMCS@
-+GMCS = @CSC@
- GTK_DOTNET_20_CFLAGS = @GTK_DOTNET_20_CFLAGS@
- GTK_DOTNET_20_LIBS = @GTK_DOTNET_20_LIBS@
- GTK_SHARP_20_CFLAGS = @GTK_SHARP_20_CFLAGS@
-Index: yahtzeesharp-1.0.orig/YahtzeeSharp/Makefile.am
-===================================================================
---- yahtzeesharp-1.0.orig.orig/YahtzeeSharp/Makefile.am 2009-01-01 19:21:14.000000000 +0100
-+++ yahtzeesharp-1.0.orig/YahtzeeSharp/Makefile.am 2009-01-01 19:27:58.000000000 +0100
-@@ -4,7 +4,7 @@
- # Warning: This is an automatically generated file, do not edit!
+--- a/YahtzeeSharp/Makefile
++++ b/YahtzeeSharp/Makefile
+@@ -9,7 +9,7 @@
+ include $(top_srcdir)/config.make
- if ENABLE_DEBUG
+ ifeq ($(CONFIG),DEBUG)
-ASSEMBLY_COMPILER_COMMAND = gmcs
-+ASSEMBLY_COMPILER_COMMAND = @GMCS@
++ASSEMBLY_COMPILER_COMMAND = csc
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize- "-main:MainClass"
ASSEMBLY = bin/Debug/YahtzeeSharp.exe
-@@ -20,7 +20,7 @@
+@@ -22,7 +22,7 @@
endif
- if ENABLE_RELEASE
+ ifeq ($(CONFIG),RELEASE)
-ASSEMBLY_COMPILER_COMMAND = gmcs
-+ASSEMBLY_COMPILER_COMMAND = @GMCS@
++ASSEMBLY_COMPILER_COMMAND = csc
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize+ -debug -define:DEBUG "-main:MainClass"
ASSEMBLY = bin/Release/YahtzeeSharp.exe
-Index: yahtzeesharp-1.0.orig/YahtzeeSharp/Makefile.in
-===================================================================
---- yahtzeesharp-1.0.orig.orig/YahtzeeSharp/Makefile.in 2009-01-01 19:21:14.000000000 +0100
-+++ yahtzeesharp-1.0.orig/YahtzeeSharp/Makefile.in 2009-01-01 19:28:37.000000000 +0100
-@@ -70,7 +70,7 @@
- ECHO_T = @ECHO_T@
- GLIB_SHARP_20_CFLAGS = @GLIB_SHARP_20_CFLAGS@
- GLIB_SHARP_20_LIBS = @GLIB_SHARP_20_LIBS@
--GMCS = @GMCS@
-+GMCS = @CSC@
- GTK_DOTNET_20_CFLAGS = @GTK_DOTNET_20_CFLAGS@
- GTK_DOTNET_20_LIBS = @GTK_DOTNET_20_LIBS@
- GTK_SHARP_20_CFLAGS = @GTK_SHARP_20_CFLAGS@
-@@ -143,8 +143,8 @@
- $(DATA_FILES) $(build_culture_res_files)
-
- # Warning: This is an automatically generated file, do not edit!
-- at ENABLE_DEBUG_TRUE@ASSEMBLY_COMPILER_COMMAND = gmcs
-- at ENABLE_RELEASE_TRUE@ASSEMBLY_COMPILER_COMMAND = gmcs
-+ at ENABLE_DEBUG_TRUE@ASSEMBLY_COMPILER_COMMAND = @GMCS@
-+ at ENABLE_RELEASE_TRUE@ASSEMBLY_COMPILER_COMMAND = @GMCS@
- @ENABLE_DEBUG_TRUE at ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize- "-main:MainClass"
- @ENABLE_RELEASE_TRUE at ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize+ -debug -define:DEBUG "-main:MainClass"
- @ENABLE_DEBUG_TRUE at ASSEMBLY = bin/Debug/YahtzeeSharp.exe
Modified: packages/yahtzeesharp/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/yahtzeesharp/trunk/debian/rules?rev=4450&op=diff
==============================================================================
--- packages/yahtzeesharp/trunk/debian/rules (original)
+++ packages/yahtzeesharp/trunk/debian/rules Sat Jan 24 20:54:16 2009
@@ -6,13 +6,11 @@
build: patch
dh $@ --before configure
- dh_auto_configure -- GMCS=/usr/bin/csc CSC=/usr/bin/csc
+ ./configure --prefix=/usr --bindir=/usr/games
dh $@ --after configure
install: build
dh $@
- mv debian/yahtzeesharp/usr/bin/yahtzeesharp debian/yahtzeesharp/usr/games/yahtzeesharp
- rm -r debian/yahtzeesharp/usr/bin
binary: binary-indep
binary-indep: build install
@@ -22,3 +20,4 @@
%:
dh $@
+
Modified: packages/yahtzeesharp/trunk/debian/yahtzeesharp.1
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/yahtzeesharp/trunk/debian/yahtzeesharp.1?rev=4450&op=diff
==============================================================================
--- packages/yahtzeesharp/trunk/debian/yahtzeesharp.1 (original)
+++ packages/yahtzeesharp/trunk/debian/yahtzeesharp.1 Sat Jan 24 20:54:16 2009
@@ -1,4 +1,4 @@
-.TH YAHTZEESHARP 1 "January 01, 2009"
+.TH YAHTZEESHARP 1 "January 31, 2009"
.SH NAME
yahtzeesharp \- sort of poker with dice and less money
@@ -9,10 +9,10 @@
Your two rerolls may include any or all of your dice.
.SH AUTHORS
-\fBYahtzeesharp\fP was created by Andew York <andy at brdstudio.net> and this
-manual page was written by Stefan Ebner <sebner at ubuntu.com>.
+\fBYahtzeesharp\fP was created by Andrew York <yahtzeesharp at brdstudio.net>
+and this manual page was written by Stefan Ebner <sebner at ubuntu.com>.
.SH LICENSE
\fBYahtzeesharp\fP has been released under the GNU General Public License,
-version 2.
+version 3.
More information about the Pkg-cli-apps-commits
mailing list