[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-6-gbd674f4

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit bd674f4957a94bbf770f51f35d66c275ebca9a6c
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 21:06:28 2008 +0800

Use the uscan magic URL in the watch file for the QA sf.net redirector

diff --git a/debian/changelog b/debian/changelog
index fd97573..792db7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
 - Add the Debian Games Team as maintainer, myself as uploader
   * Build-Depend on x11proto-core-dev instead of the dummy x-dev package
   * Add freedesktop menu files, tweaked from Ubuntu ones (Closes: #432398)
+  * Use the uscan magic URL in the watch file for the QA sf.net redirector
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/watch b/debian/watch
index 9fc7f20..2a99c70 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,2 +1,2 @@
 version=2
-http://qa.debian.org/watch/sf.php/xgalaga/ xgalaga-(.*).tar.gz
+http://sf.net/xgalaga/xgalaga-(.*).tar.gz

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-7-gbe0a466

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit be0a4666be56d6301fe106c52f3f2d2c295748fb
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 21:47:37 2008 +0800

Remove the old high score file on upgrade instead of purge

diff --git a/debian/TODO b/debian/TODO
new file mode 100644
index 000..eba318a
--- /dev/null
+++ b/debian/TODO
@@ -0,0 +1 @@
+Drop the removal of the old high score file in postinst after lenny is 
released.
diff --git a/debian/changelog b/debian/changelog
index 792db7c..eec83f3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
   * Build-Depend on x11proto-core-dev instead of the dummy x-dev package
   * Add freedesktop menu files, tweaked from Ubuntu ones (Closes: #432398)
   * Use the uscan magic URL in the watch file for the QA sf.net redirector
+  * Remove the old high score file on upgrade instead of purge
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/postrm b/debian/postinst
similarity index 56%
rename from debian/postrm
rename to debian/postinst
index afc9c46..065d082 100644
--- a/debian/postrm
+++ b/debian/postinst
@@ -2,8 +2,8 @@
 
 OLDSCOREFILE=/var/games/xgalaga_scores
 
-# Remove old high score file on purge.
-if [ $1 = purge ]; then
+# Remove old high score file on upgrade.
+if [ -f $OLDSCOREFILE ]; then
rm -f $OLDSCOREFILE
 fi
 

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-8-gd9a5cd1

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit d9a5cd114d5bd66e4f4c1cd05af90f950c6d02aa
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 22:31:46 2008 +0800

Hack SOUNDDEFS to use /usr/lib, drop sndsrv symlink, clean all sndsrvs
This also fixes the kFreeBSD FTBFS (Closes: #486113)

diff --git a/debian/changelog b/debian/changelog
index eec83f3..92784b7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
   * Add freedesktop menu files, tweaked from Ubuntu ones (Closes: #432398)
   * Use the uscan magic URL in the watch file for the QA sf.net redirector
   * Remove the old high score file on upgrade instead of purge
+  * Hack SOUNDDEFS to use /usr/lib, drop sndsrv symlink, clean all sndsrvs
+- This also fixes the kFreeBSD FTBFS (Closes: #486113)
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/rules b/debian/rules
index 76a333d..b6a152c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,7 +11,8 @@ build-stamp:
./configure \
--prefix=/usr/share/games/xgalaga \
--exec-prefix=/usr/games
-   $(MAKE)
+   # hack SOUNDDEFS so we don't need symlinks
+   $(MAKE) 
SOUNDDEFS=-DSOUNDSERVER=\\\/usr/lib/games/xgalaga/$$\(SOUNDSRV\)\\\
touch build-stamp
 
 clean:
@@ -19,7 +20,7 @@ clean:
dh_testroot
rm -f build-stamp
if [ -e Makefile ]; then $(MAKE) -i distclean; fi
-   dh_clean xgal.sndsrv.oss config.k.bak config.sub config.guess
+   dh_clean xgal.sndsrv.oss xgal.sndsrv.freebsd xgal.sndsrv.linux 
config.k.bak config.sub config.guess
 
 binary-indep: build
 
@@ -30,10 +31,8 @@ binary-arch: build
dh_installdirs var/games usr/lib/games/xgalaga usr/games 
usr/share/man/man6
$(MAKE) DESTDIR=`pwd`/debian/xgalaga install
# move the sound-server binary out of usr/share
-   mv debian/xgalaga/usr/share/games/xgalaga/xgal.sndsrv.oss \
+   mv debian/xgalaga/usr/share/games/xgalaga/xgal.sndsrv.* \
debian/xgalaga/usr/lib/games/xgalaga
-   dh_link usr/lib/games/xgalaga/xgal.sndsrv.oss \
-   usr/share/games/xgalaga/xgal.sndsrv.oss
dh_install xgalaga-icon.xpm usr/share/pixmaps/
dh_install debian/xgalaga.desktop usr/share/applications
dh_install debian/xgalaga-hyperspace.desktop usr/share/applications

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-9-gbec6596

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit bec6596a96b896ca2c4759100ce3cf523a7f1f74
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 23:00:26 2008 +0800

Give the CREDITS file correct permissions, add symlink in /usr/share/doc

diff --git a/debian/changelog b/debian/changelog
index 92784b7..6ea1c69 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
   * Remove the old high score file on upgrade instead of purge
   * Hack SOUNDDEFS to use /usr/lib, drop sndsrv symlink, clean all sndsrvs
 - This also fixes the kFreeBSD FTBFS (Closes: #486113)
+  * Give the CREDITS file correct permissions, add symlink in /usr/share/doc
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/rules b/debian/rules
index b6a152c..6c4f4ec 100755
--- a/debian/rules
+++ b/debian/rules
@@ -30,9 +30,11 @@ binary-arch: build
dh_clean -k
dh_installdirs var/games usr/lib/games/xgalaga usr/games 
usr/share/man/man6
$(MAKE) DESTDIR=`pwd`/debian/xgalaga install
+   dh_link usr/share/games/xgalaga/CREDITS usr/share/doc/xgalaga/CREDITS
# move the sound-server binary out of usr/share
mv debian/xgalaga/usr/share/games/xgalaga/xgal.sndsrv.* \
debian/xgalaga/usr/lib/games/xgalaga
+   find debian/xgalaga/usr/share/games/xgalaga -type f | xargs chmod 644
dh_install xgalaga-icon.xpm usr/share/pixmaps/
dh_install debian/xgalaga.desktop usr/share/applications
dh_install debian/xgalaga-hyperspace.desktop usr/share/applications
@@ -44,8 +46,6 @@ binary-arch: build
dh_desktop
dh_strip
dh_compress
-   chmod 644 debian/xgalaga/usr/share/games/xgalaga/levels/* \
-   debian/xgalaga/usr/share/games/xgalaga/sounds/*
dh_fixperms
dh_installdeb
dh_shlibdeps

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-10-g1164eb5

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit 1164eb5b7b9fd7291e9360fc78b0ee037edbea71
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 23:06:29 2008 +0800

Drop conflict on suidmanager as it was removed from Debian in 2003!

diff --git a/debian/changelog b/debian/changelog
index 6ea1c69..1eac3cc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
   * Hack SOUNDDEFS to use /usr/lib, drop sndsrv symlink, clean all sndsrvs
 - This also fixes the kFreeBSD FTBFS (Closes: #486113)
   * Give the CREDITS file correct permissions, add symlink in /usr/share/doc
+  * Drop conflict on suidmanager as it was removed from Debian in 2003!
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/control b/debian/control
index 2d3e6fe..a4bcb4d 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,6 @@ Vcs-Git: git://git.debian.org/git/pkg-games/xgalaga.git
 Package: xgalaga
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Conflicts: suidmanager ( 0.50)
 Description: X version of the famous Galaga game
  A clone of the classic game Galaga for the X Window System. 
  Xgalaga is a space-invader like game with additional features to produce

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-11-gadc9228

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit adc9228a1b68eaffbdbc0eabb517017c31f8135b
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 23:10:52 2008 +0800

Drop empty and unused /var/games directory from the package

diff --git a/debian/changelog b/debian/changelog
index 1eac3cc..ac509da 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
 - This also fixes the kFreeBSD FTBFS (Closes: #486113)
   * Give the CREDITS file correct permissions, add symlink in /usr/share/doc
   * Drop conflict on suidmanager as it was removed from Debian in 2003!
+  * Drop empty and unused /var/games directory from the package
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/rules b/debian/rules
index 6c4f4ec..f7d5209 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,7 @@ binary-arch: build
dh_testdir
dh_testroot
dh_clean -k
-   dh_installdirs var/games usr/lib/games/xgalaga usr/games 
usr/share/man/man6
+   dh_installdirs usr/lib/games/xgalaga usr/games usr/share/man/man6
$(MAKE) DESTDIR=`pwd`/debian/xgalaga install
dh_link usr/share/games/xgalaga/CREDITS usr/share/doc/xgalaga/CREDITS
# move the sound-server binary out of usr/share

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-12-g6687899

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit 66878998e7b88adae11692169db0f400fee663c6
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 23:28:10 2008 +0800

Honour noopt, nostrip, parallel=n in DEB_BUILD_OPTIONS
this brings us into line with policy, update Standards-Version

diff --git a/debian/changelog b/debian/changelog
index ac509da..391c607 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,8 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
   * Give the CREDITS file correct permissions, add symlink in /usr/share/doc
   * Drop conflict on suidmanager as it was removed from Debian in 2003!
   * Drop empty and unused /var/games directory from the package
+  * Honour noopt, nostrip, parallel=n in DEB_BUILD_OPTIONS
+- this brings us into line with policy, update Standards-Version
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/control b/debian/control
index a4bcb4d..4942ae6 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Build-Depends: debhelper (= 5), libx11-dev, libxmu-dev, libxpm-dev, 
x11proto-core-dev, dpkg-dev (= 1.9.0), libxxf86vm-dev, libxxf86dga-dev, 
autotools-dev
 Maintainer: Debian Games Team [EMAIL PROTECTED]
 Uploaders: Paul Wise [EMAIL PROTECTED]
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Homepage: http://sourceforge.net/projects/xgalaga/
 Vcs-Git: git://git.debian.org/git/pkg-games/xgalaga.git
 
diff --git a/debian/rules b/debian/rules
index f7d5209..d8a1c8c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,7 +1,17 @@
 #!/usr/bin/make -f
 
-export CFLAGS=-O2 -g -DXF86VIDMODE
+export CFLAGS=-g -DXF86VIDMODE
 export LDFLAGS=-lXxf86vm
+  
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
+   CFLAGS += -O0
+else
+   CFLAGS += -O2
+endif
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+   NUMJOBS = $(patsubst parallel=%,%,$(filter 
parallel=%,$(DEB_BUILD_OPTIONS)))
+   MAKEFLAGS += -j$(NUMJOBS)
+endif
 
 build: build-stamp
 build-stamp:
@@ -10,7 +20,7 @@ build-stamp:
ln -sf /usr/share/misc/config.guess
./configure \
--prefix=/usr/share/games/xgalaga \
-   --exec-prefix=/usr/games
+   --exec-prefix=/usr/games CFLAGS=$(CFLAGS) 
# hack SOUNDDEFS so we don't need symlinks
$(MAKE) 
SOUNDDEFS=-DSOUNDSERVER=\\\/usr/lib/games/xgalaga/$$\(SOUNDSRV\)\\\
touch build-stamp

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-13-ga3c8374

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit a3c83741c039c09e1e2def4b11e12a04a9ccfb9c
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 23:33:47 2008 +0800

Move the icon to the debian/ dir since it is Debian-specific

diff --git a/debian/rules b/debian/rules
index d8a1c8c..ff8c96e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,7 +45,7 @@ binary-arch: build
mv debian/xgalaga/usr/share/games/xgalaga/xgal.sndsrv.* \
debian/xgalaga/usr/lib/games/xgalaga
find debian/xgalaga/usr/share/games/xgalaga -type f | xargs chmod 644
-   dh_install xgalaga-icon.xpm usr/share/pixmaps/
+   dh_install debian/xgalaga-icon.xpm usr/share/pixmaps
dh_install debian/xgalaga.desktop usr/share/applications
dh_install debian/xgalaga-hyperspace.desktop usr/share/applications
dh_link usr/share/man/man6/xgalaga.6x 
usr/share/man/man6/xgalaga-hyperspace.6x
diff --git a/xgalaga-icon.xpm b/debian/xgalaga-icon.xpm
similarity index 100%
rename from xgalaga-icon.xpm
rename to debian/xgalaga-icon.xpm

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-2-14-gacdef1a

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit acdef1a82ac3cd788dc69cb8b7e0a2cceeb32f22
Author: Paul Wise [EMAIL PROTECTED]
Date:   Fri Jul 4 23:54:10 2008 +0800

Build with more GCC warnings turned on

diff --git a/debian/changelog b/debian/changelog
index 391c607..051e274 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
   * Drop empty and unused /var/games directory from the package
   * Honour noopt, nostrip, parallel=n in DEB_BUILD_OPTIONS
 - this brings us into line with policy, update Standards-Version
+  * Build with more GCC warnings turned on
 
  -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
 
diff --git a/debian/rules b/debian/rules
index ff8c96e..caee618 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,6 @@
 #!/usr/bin/make -f
 
-export CFLAGS=-g -DXF86VIDMODE
+export CFLAGS=-Wall -g -DXF86VIDMODE
 export LDFLAGS=-lXxf86vm
   
 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga annotated tag, debian/2.1.1.0-3, created. debian/2.1.1.0-3

2008-07-04 Thread Paul Wise
The annotated tag, debian/2.1.1.0-3 has been created
at  901ed44196f334be89b8f3cf8b4c7ec8dc8ac879 (tag)
   tagging  3e8ade2ff39c24d18a509fad5cdd5a7b3f92edd7 (commit)
  replaces  debian/2.1.1.0-2
 tagged by  Paul Wise
on  Sat Jul 5 00:22:47 2008 +0800

- Shortlog 
Debian release 2.1.1.0-3

Paul Wise (15):
  New maintainer (Closes: #487472), thanks Joey Hess!
  New maintainer (Closes: #487472), thanks Joey Hess!
  Merge branch 'master' of git+ssh://git.debian.org/git/pkg-games/xgalaga
  Build-Depend on x11proto-core-dev instead of the dummy x-dev package
  Add freedesktop menu files, tweaked from Ubuntu ones (Closes: #432398)
  Use the uscan magic URL in the watch file for the QA sf.net redirector
  Remove the old high score file on upgrade instead of purge
  Hack SOUNDDEFS to use /usr/lib, drop sndsrv symlink, clean all sndsrvs
  Give the CREDITS file correct permissions, add symlink in /usr/share/doc
  Drop conflict on suidmanager as it was removed from Debian in 2003!
  Drop empty and unused /var/games directory from the package
  Honour noopt, nostrip, parallel=n in DEB_BUILD_OPTIONS
  Move the icon to the debian/ dir since it is Debian-specific
  Build with more GCC warnings turned on
  releasing version 2.1.1.0-3

---

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for Xgalaga branch, master, updated. debian/2.1.1.0-3

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit 3e8ade2ff39c24d18a509fad5cdd5a7b3f92edd7
Author: Paul Wise [EMAIL PROTECTED]
Date:   Sat Jul 5 00:21:00 2008 +0800

releasing version 2.1.1.0-3

diff --git a/debian/changelog b/debian/changelog
index 051e274..554972a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
+xgalaga (2.1.1.0-3) unstable; urgency=low
 
   * New maintainer (Closes: #487472), thanks Joey Hess!
 - Add the Debian Games Team as maintainer, myself as uploader
@@ -15,7 +15,7 @@ xgalaga (2.1.1.0-3) UNRELEASED; urgency=low
 - this brings us into line with policy, update Standards-Version
   * Build with more GCC warnings turned on
 
- -- Paul Wise [EMAIL PROTECTED]  Thu, 03 Jul 2008 00:41:47 +0800
+ -- Paul Wise [EMAIL PROTECTED]  Sat, 05 Jul 2008 00:20:01 +0800
 
 xgalaga (2.1.1.0-2) unstable; urgency=low
 

-- 
Packaging for Xgalaga

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


r7674 - packages/trunk/sauerbraten/debian

2008-07-04 Thread Bruno Fuddl-guestquot; Fuddlquot; Kleinert
Author: fuddl-guest
Date: 2008-07-04 20:31:25 + (Fri, 04 Jul 2008)
New Revision: 7674

Modified:
   packages/trunk/sauerbraten/debian/changelog
Log:
* UNRELEASED - unstable

Modified: packages/trunk/sauerbraten/debian/changelog
===
--- packages/trunk/sauerbraten/debian/changelog 2008-07-02 23:23:01 UTC (rev 
7673)
+++ packages/trunk/sauerbraten/debian/changelog 2008-07-04 20:31:25 UTC (rev 
7674)
@@ -1,4 +1,4 @@
-sauerbraten (0.0.20080620.dfsg-1) UNRELEASED; urgency=low
+sauerbraten (0.0.20080620.dfsg-1) unstable; urgency=low
 
   * New upstream release (Closes: #486802)
   * Refresh fix-clean-target.diff


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


r7675 - packages/trunk/sauerbraten-data/debian

2008-07-04 Thread Bruno Fuddl-guestquot; Fuddlquot; Kleinert
Author: fuddl-guest
Date: 2008-07-04 20:31:50 + (Fri, 04 Jul 2008)
New Revision: 7675

Modified:
   packages/trunk/sauerbraten-data/debian/changelog
Log:
* UNRELEASED - unstable

Modified: packages/trunk/sauerbraten-data/debian/changelog
===
--- packages/trunk/sauerbraten-data/debian/changelog2008-07-04 20:31:25 UTC 
(rev 7674)
+++ packages/trunk/sauerbraten-data/debian/changelog2008-07-04 20:31:50 UTC 
(rev 7675)
@@ -1,4 +1,4 @@
-sauerbraten-data (0.0.20080620-1) UNRELEASED; urgency=low
+sauerbraten-data (0.0.20080620-1) unstable; urgency=low
 
   * New upstream release
   * Update debian/copyright


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


r7676 - packages/trunk/openarena/debian

2008-07-04 Thread Bruno Fuddl-guestquot; Fuddlquot; Kleinert
Author: fuddl-guest
Date: 2008-07-04 20:32:09 + (Fri, 04 Jul 2008)
New Revision: 7676

Modified:
   packages/trunk/openarena/debian/changelog
Log:
* UNRELEASED - unstable

Modified: packages/trunk/openarena/debian/changelog
===
--- packages/trunk/openarena/debian/changelog   2008-07-04 20:31:50 UTC (rev 
7675)
+++ packages/trunk/openarena/debian/changelog   2008-07-04 20:32:09 UTC (rev 
7676)
@@ -1,4 +1,4 @@
-openarena (0.7.7-1) UNRELEASED; urgency=low
+openarena (0.7.7-1) unstable; urgency=low
 
   * New upstream release (Closes: #485675)
   * Add 10_remove_upstream_build_flags.dpatch to remove hard-wired build flags


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


r7677 - packages/trunk/openarena-data/debian

2008-07-04 Thread Bruno Fuddl-guestquot; Fuddlquot; Kleinert
Author: fuddl-guest
Date: 2008-07-04 20:32:27 + (Fri, 04 Jul 2008)
New Revision: 7677

Modified:
   packages/trunk/openarena-data/debian/changelog
Log:
* UNRELEASED - unstable

Modified: packages/trunk/openarena-data/debian/changelog
===
--- packages/trunk/openarena-data/debian/changelog  2008-07-04 20:32:09 UTC 
(rev 7676)
+++ packages/trunk/openarena-data/debian/changelog  2008-07-04 20:32:27 UTC 
(rev 7677)
@@ -1,4 +1,4 @@
-openarena-data (0.7.7-1) UNRELEASED; urgency=low
+openarena-data (0.7.7-1) unstable; urgency=low
 
   * New upstream release
 * Build .orig.tar.gz from upstream 0.7.7 upgrade patch merged with 0.7.6


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, created. 1e6d1a6879263423a728d8ababb2fcfdaafdf20e

2008-07-04 Thread Bradley Smith
The branch, master has been created
at  1e6d1a6879263423a728d8ababb2fcfdaafdf20e (commit)

- Shortlog 
commit 1e6d1a6879263423a728d8ababb2fcfdaafdf20e
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Tue Mar 18 14:47:11 2008 +0900

Imported Debian patch 0.7.1-1

---

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, pristine-tar, created. db2fac463bbdd4b54285c3cd8a33595664bab277

2008-07-04 Thread Bradley Smith
The branch, pristine-tar has been created
at  db2fac463bbdd4b54285c3cd8a33595664bab277 (commit)

- Shortlog 
commit db2fac463bbdd4b54285c3cd8a33595664bab277
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Thu Jul 3 22:15:06 2008 +0100

pristine-tar data for quesoglc_0.7.1.orig.tar.gz

---

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, upstream, created. c209756282506086e1836415bf54851b13f3f434

2008-07-04 Thread Bradley Smith
The branch, upstream has been created
at  c209756282506086e1836415bf54851b13f3f434 (commit)

- Shortlog 
---

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc annotated tag, debian/0.7.1-1, created. debian/0.7.1-1

2008-07-04 Thread Bradley Smith
The annotated tag, debian/0.7.1-1 has been created
at  527374bf6ae66408d15c40a2dd44e091c2287bc1 (tag)
   tagging  1e6d1a6879263423a728d8ababb2fcfdaafdf20e (commit)
  replaces  upstream/0.7.1
 tagged by  Bradley Smith
on  Thu Jul 3 22:15:06 2008 +0100

- Shortlog 
Debian release 0.7.1-1

Bradley Smith (1):
  Imported Debian patch 0.7.1-1

---

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc annotated tag, upstream/0.7.1, created. upstream/0.7.1

2008-07-04 Thread Bradley Smith
The annotated tag, upstream/0.7.1 has been created
at  cf21d2888e8b3db52940d7d820f17aa1b9dda88a (tag)
   tagging  c209756282506086e1836415bf54851b13f3f434 (commit)
 tagged by  Bradley Smith
on  Thu Jul 3 22:15:06 2008 +0100

- Shortlog 
Upstream version 0.7.1

Bradley Smith (1):
  Imported Upstream version 0.7.1

---

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-6-g95841c8

2008-07-04 Thread Bradley Smith
The following commit has been merged in the master branch:
commit 96bd48e1f79302df7cd21851206933bb506142af
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Fri Jul 4 22:50:21 2008 +0100

Update Standards-Version to 3.8.0. (No Changes).

Signed-off-by: Bradley Smith [EMAIL PROTECTED]

diff --git a/debian/control b/debian/control
index 5434997..2b4cad9 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends:  cdbs,
 libfontconfig1-dev,
 libgl1-mesa-dev | libgl-dev,
 libglu1-mesa-dev | libglu-dev
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/quesoglc/
 Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/quesoglc/?op=log
 

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-6-g95841c8

2008-07-04 Thread Bradley Smith
The following commit has been merged in the master branch:
commit 73d94d176714c64114fb3e1402a42f1490e92c1e
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Fri Jul 4 22:51:54 2008 +0100

Update Vcs entries in debian/control

Signed-off-by: Bradley Smith [EMAIL PROTECTED]

diff --git a/debian/control b/debian/control
index 2b4cad9..2c39b5a 100644
--- a/debian/control
+++ b/debian/control
@@ -12,8 +12,7 @@ Build-Depends:  cdbs,
 libgl1-mesa-dev | libgl-dev,
 libglu1-mesa-dev | libglu-dev
 Standards-Version: 3.8.0
-Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/quesoglc/
-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/quesoglc/?op=log
+Vcs-Git: git://git.debian.org/git/pkg-games/quesoglc.git
 
 Package: libglc0
 Section: libs

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-6-g95841c8

2008-07-04 Thread Bradley Smith
The following commit has been merged in the master branch:
commit 2121fc683a0237fc6b1368fd31524e0d73c7fb26
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Fri Jul 4 22:52:34 2008 +0100

Add Games Team to Uploaders.

Signed-off-by: Bradley Smith [EMAIL PROTECTED]

diff --git a/debian/control b/debian/control
index 2c39b5a..1af95cb 100644
--- a/debian/control
+++ b/debian/control
@@ -2,6 +2,7 @@ Source: quesoglc
 Section: devel
 Priority: optional
 Maintainer: Bradley Smith [EMAIL PROTECTED]
+Uploaders: Debian Games Team [EMAIL PROTECTED]
 Homepage: http://quesoglc.sourceforge.net/
 Build-Depends:  cdbs,
 debhelper (= 5),

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-6-g95841c8

2008-07-04 Thread Bradley Smith
The following commit has been merged in the master branch:
commit 12846d3644342cf14cb169990a1af415cf40d72c
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Fri Jul 4 22:59:34 2008 +0100

Migrate from CDBS to debhelper.

Signed-off-by: Bradley Smith [EMAIL PROTECTED]

diff --git a/debian/rules b/debian/rules
index 16f916d..5cb7e0d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,61 @@
 #!/usr/bin/make -f
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/autotools.mk
-include /usr/share/cdbs/1/rules/utils.mk
 
-DEB_DH_MAKESHLIBS_ARGS_libglc0 := -Vlibglc0 (= 0.7.1)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS = -O2 -Wall
+LDFLAGS = -Wl,--as-needed
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+   CFLAGS += -O0
+else
+   CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+   dh_testdir
+   LDFLAGS=$(LDFLAGS) CFLAGS=$(CFLAGS) ./configure --prefix=/usr \
+   --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE)
+   touch $@
+
+build: build-stamp
+build-stamp: configure
+   dh_testdir
+   $(MAKE)
+   touch $@
+
+clean:
+   dh_testdir
+   dh_testroot
+   rm -f build-stamp configure-stamp
+   [ ! -f Makefile ] || $(MAKE) distclean
+   dh_clean
+
+install: build
+   dh_testdir
+   dh_testroot
+   dh_clean -k
+   $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
+
+binary-indep: build install
+
+binary-arch: build install
+   dh_testdir
+   dh_testroot
+   dh_installchangelogs
+   dh_installdocs
+   dh_install --fail-missing
+   dh_link
+   dh_strip
+   dh_compress
+   dh_fixperms
+   dh_makeshlibs
+   dh_installdeb
+   dh_shlibdeps -V libglc0 (= 0.7.1)
+   dh_gencontrol
+   dh_md5sums
+   dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-6-g95841c8

2008-07-04 Thread Bradley Smith
The following commit has been merged in the master branch:
commit 6112bbd32fd01d76e09467ae8f9f25f49e424f4c
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Fri Jul 4 23:01:13 2008 +0100

Generate Changelog.

Signed-off-by: Bradley Smith [EMAIL PROTECTED]

diff --git a/debian/changelog b/debian/changelog
index 1bd4f8d..e98b622 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+quesoglc (0.7.1-2) unstable; urgency=low
+
+  * Migrate from CDBS to debhelper.
+  * Add Games Team to Uploaders.
+  * Update Vcs entries in debian/control.
+  * Update Standards-Version to 3.8.0. (No Changes).
+
+ -- Bradley Smith [EMAIL PROTECTED]  Fri, 04 Jul 2008 23:00:40 +0100
+
 quesoglc (0.7.1-1) unstable; urgency=low
 
   [ Eddy Petrișor ]

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-6-g95841c8

2008-07-04 Thread Bradley Smith
The following commit has been merged in the master branch:
commit 95841c8f4dbfa53e3a4c4535e9142f123d5e52e6
Author: Bradley Smith [EMAIL PROTECTED]
Date:   Fri Jul 4 23:46:33 2008 +0100

Add 00_fix_as-needed.diff.

Signed-off-by: Bradley Smith [EMAIL PROTECTED]

diff --git a/debian/changelog b/debian/changelog
index e98b622..6dbf50a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,8 @@ quesoglc (0.7.1-2) unstable; urgency=low
   * Add Games Team to Uploaders.
   * Update Vcs entries in debian/control.
   * Update Standards-Version to 3.8.0. (No Changes).
+  * Add quilt patch system:
+   - 00_fix_as-needed.diff - Fix ltmain.sh --as-needed issue.
 
  -- Bradley Smith [EMAIL PROTECTED]  Fri, 04 Jul 2008 23:00:40 +0100
 
diff --git a/debian/control b/debian/control
index 1af95cb..ab846b2 100644
--- a/debian/control
+++ b/debian/control
@@ -4,14 +4,14 @@ Priority: optional
 Maintainer: Bradley Smith [EMAIL PROTECTED]
 Uploaders: Debian Games Team [EMAIL PROTECTED]
 Homepage: http://quesoglc.sourceforge.net/
-Build-Depends:  cdbs,
-debhelper (= 5),
+Build-Depends:  debhelper (= 5),
 autotools-dev,
 libfreetype6-dev,
 libfribidi-dev,
 libfontconfig1-dev,
 libgl1-mesa-dev | libgl-dev,
-libglu1-mesa-dev | libglu-dev
+libglu1-mesa-dev | libglu-dev,
+quilt
 Standards-Version: 3.8.0
 Vcs-Git: git://git.debian.org/git/pkg-games/quesoglc.git
 
diff --git a/debian/patches/00_fix_as-needed.diff 
b/debian/patches/00_fix_as-needed.diff
new file mode 100644
index 000..e1fde05
--- /dev/null
+++ b/debian/patches/00_fix_as-needed.diff
@@ -0,0 +1,30 @@
+--- a/build/ltmain.sh.orig 2006-03-29 15:45:36.0 +0200
 b/build/ltmain.sh  2006-03-29 16:39:30.0 +0200
+@@ -1794,6 +1794,11 @@
+   arg=`$echo X$arg | $Xsed -e s/^ //`
+   ;;
+ 
++  -Wl,--as-needed)
++  deplibs=$deplibs $arg
++  continue
++  ;;
++  
+   -Wl,*)
+   args=`$echo X$arg | $Xsed -e $sed_quote_subst -e 's/^-Wl,//'`
+   arg=
+@@ -2137,6 +2142,15 @@
+   lib=
+   found=no
+   case $deplib in
++  -Wl,--as-needed)
++if test $linkmode,$pass = prog,link; then
++  compile_deplibs=$deplib $compile_deplibs
++  finalize_deplibs=$deplib $finalize_deplibs
++else
++  deplibs=$deplib $deplibs
++fi
++continue
++;;
+   
-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
+ if test $linkmode,$pass = prog,link; then
+   compile_deplibs=$deplib $compile_deplibs
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..88e30d5
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+00_fix_as-needed.diff
diff --git a/debian/rules b/debian/rules
index 5cb7e0d..f3cbf37 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,7 @@
 #!/usr/bin/make -f
 
+include /usr/share/quilt/quilt.make
+
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
@@ -12,7 +14,7 @@ else
CFLAGS += -O2
 endif
 
-configure: configure-stamp
+configure: patch configure-stamp
 configure-stamp:
dh_testdir
LDFLAGS=$(LDFLAGS) CFLAGS=$(CFLAGS) ./configure --prefix=/usr \
@@ -25,7 +27,7 @@ build-stamp: configure
$(MAKE)
touch $@
 
-clean:
+clean: unpatch
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


r7678 - packages/trunk

2008-07-04 Thread Bradley Smith
Author: brad-guest
Date: 2008-07-04 23:07:10 + (Fri, 04 Jul 2008)
New Revision: 7678

Removed:
   packages/trunk/quesoglc/
Log:
Removing quesoglc from SVN (Migrated to GIT).



___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for bsdgames branch, master, updated. e407247200ba967d816a6dec93fd0d3bb7f8aeca

2008-07-04 Thread Matthew R. Arnold
The following commit has been merged in the master branch:
commit e407247200ba967d816a6dec93fd0d3bb7f8aeca
Author: Matthew R. Arnold [EMAIL PROTECTED]
Date:   Fri Jul 4 20:06:08 2008 -0400

Standards Version bump no changes requires

diff --git a/debian/changelog b/debian/changelog
index 439f182..97a4286 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,9 @@ bsdgames (2.17-16) unstable; urgency=low
 
   * New Maintianer Closes: #487466
   * Update Vcs-Git feild
+  * Bump Standards version no changes required
 
- -- Matt Arnold [EMAIL PROTECTED]  Tue, 01 Jul 2008 01:11:41 -0400
+ -- Matt Arnold [EMAIL PROTECTED]  Fri, 04 Jul 2008 20:03:12 -0400
 
 bsdgames (2.17-15) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index c741211..6e7d2ac 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Build-Depends: debhelper (= 7), libncurses5-dev, flex, bison, wamerican, 
wbritish, dpkg-dev (= 1.9.0)
 Maintainer: Debian Games Team [EMAIL PROTECTED]
 Uploaders: Matt Arnold [EMAIL PROTECTED]
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Vcs-Git: git://git.debian.org/git/pkg-games/bsdgames.git
 
 

-- 
Packaging for bsdgames

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-8-g0bc8fec

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit 0bc8fec330b34948c0b94e79c1cfe721a177a602
Author: Paul Wise [EMAIL PROTECTED]
Date:   Sat Jul 5 12:20:09 2008 +0800

Fix support for noopt in DEB_BUILD_OPTIONS

diff --git a/debian/changelog b/debian/changelog
index 75827f4..3a844e4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ quesoglc (0.7.1-2) unstable; urgency=low
   
   [ Paul Wise ]
   * Support parallel=N in DEB_BUILD_OPTIONS
+  * Fix support for noopt in DEB_BUILD_OPTIONS
 
  -- Bradley Smith [EMAIL PROTECTED]  Fri, 04 Jul 2008 23:00:40 +0100
 
diff --git a/debian/rules b/debian/rules
index cf4815d..5cf7cdf 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,7 +5,7 @@ include /usr/share/quilt/quilt.make
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-CFLAGS = -O2 -Wall
+CFLAGS = -Wall
 LDFLAGS = -Wl,--as-needed
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits


[SCM] Packaging for quesoglc branch, master, updated. debian/0.7.1-1-10-ga28dcd9

2008-07-04 Thread Paul Wise
The following commit has been merged in the master branch:
commit 32b9a665ca94fddd99b9c609773dd2f01f17b4c3
Author: Paul Wise [EMAIL PROTECTED]
Date:   Sat Jul 5 12:56:52 2008 +0800

Drop shlibs:Depends from libglc-dev Depends, not needed

diff --git a/debian/changelog b/debian/changelog
index 3a844e4..869c7d0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ quesoglc (0.7.1-2) unstable; urgency=low
   [ Paul Wise ]
   * Support parallel=N in DEB_BUILD_OPTIONS
   * Fix support for noopt in DEB_BUILD_OPTIONS
+  * Drop shlibs:Depends from libglc-dev Depends, not needed
 
  -- Bradley Smith [EMAIL PROTECTED]  Fri, 04 Jul 2008 23:00:40 +0100
 
diff --git a/debian/control b/debian/control
index ab846b2..c34c3b6 100644
--- a/debian/control
+++ b/debian/control
@@ -25,7 +25,7 @@ Description: QuesoGLC GLC implementation
 Package: libglc-dev
 Section: libdevel
 Architecture: any
-Depends: ${misc:Depends}, ${shlibs:Depends}, libglc0 (= ${binary:Version})
+Depends: ${misc:Depends}, libglc0 (= ${binary:Version})
 Description: An implementation of SGI's OpenGL Character Renderer (GLC)
  The OpenGL Character Renderer (GLC) is a state machine that provides OpenGL
  programs with character rendering services via an application programming

-- 
Packaging for quesoglc

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits