Re: Please help me fix these build problems

2014-01-04 Thread Stephen M. Webb
On 01/04/2014 05:04 PM, T o n g wrote:
 Thanks.
 
 On Fri, 03 Jan 2014 11:34:10 -0500, Stephen M. Webb wrote:
 
 W: zh-autoconvert: hardening-no-relro usr/bin/autogb

 To fix this one, you need to add $CPPFLAGS and $LDFLAGS to your linker
 command line in your Makefile.
 
 And add the following at the top of the Makefile as well:
 
 # use dpkg-buildflags
 DPKG_EXPORT_BUILDFLAGS = 1
 include /usr/share/dpkg/buildflags.mk

I believe, if you are using debhelper compatibility level 9 or later, you do 
not have to do any more fancy than adding
the (de facto standard) CFLAGS and CPPFLAGS to your compile and LDFLAGS to your 
link commands in your Makefile.
Debhelper will automatically do the right thing to export the flags into your 
build environment.

The instructions available on the web are for older versions of the build 
infrastructure.  The debhelper(7) manual page
does mention  dpkg-buildflags flags are passed through at compat level 9, but 
it isn't necessarily obvious what that
means unless you have intimate knowledge of the build tool internals.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52c889b9.2080...@bregmasoft.ca



Re: Requirement for compat level 9

2014-01-04 Thread Stephen M. Webb
On 01/04/2014 05:31 PM, T o n g wrote:
 On Sat, 04 Jan 2014 17:22:49 -0500, Stephen M. Webb wrote:
 
 The instructions available on the web are for older versions of the
 build infrastructure.  The debhelper(7) manual page does mention 
 dpkg-buildflags flags are passed through at compat level 9, but it isn't
 necessarily obvious what that means unless you have intimate knowledge
 of the build tool internals.
 
 Oh, thanks for the further explanation. 
 
 How can I make sure my building environment is at compat level 9? 

From he debhelper(7) manpage:

Tell debhelper what compatibility level to use by writing a number to 
debian/compat. For example, to turn on v9 mode:

 % echo 9  debian/compat

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52c89bab.1020...@bregmasoft.ca



Re: Requirement for compat level 9

2014-01-04 Thread Stephen M. Webb
On 01/04/2014 06:48 PM, T o n g wrote:
 On Sat, 04 Jan 2014 18:39:23 -0500, Stephen M. Webb wrote:
 
 I know I can force compat level to 9 just like that. But what I want to 
 know is how to make sure my building environment is up to that level. 
 E.g., in a very old Debian system, e.g., potato, you can set debian/
 compat to 9, but I don't think it will work. The requirement, that's what 
 I'd like to know. 

In debian/control, add the line

  Build-Depends: debhelper (= 9)

If you're trying to build in an environment that does not have at least 
debhelper 9, the build will fail early.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52c8a137.1060...@bregmasoft.ca



Re: Quilt 3.0 format and .pc direcotry

2014-01-03 Thread Stephen M. Webb
On 01/03/2014 06:04 AM, Dariusz Dwornikowski wrote:
 Hi,
 
 I am currently porting linuxlogo to quilt 3.0 format and got some questions. 
 From the wiki I can read that current .pc
 drectory should be deleted (
 https://wiki.debian.org/Projects/DebSrc3.0#How_to_convert_a_source_package.3F)
  for porting. How should I add patches
 then ? When I issue quilt the directory is still created. I think the wiki is 
 not clear on that. 

If you add the .pc directory to your .gitignore (or the equivalent for your 
chosen VCS) everything will just work.

Quilt only uses the .pc files to determine what has changed.  It will recreate 
it as necessary when you push patches, so
quit refresh will do the right thing.  Because it's entirely derived from 
other sources (original sources and patch
files) there is no need to keep the .pc directory under source control and 
certainly no need to distribute it.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52c6b4fa.6010...@bregmasoft.ca



Re: Quilt 3.0 format and .pc direcotry

2014-01-03 Thread Stephen M. Webb
On 01/03/2014 09:33 AM, Dariusz Dwornikowski wrote:
 Yes but then lintian will bork patch-system-but-direct-changes-in-diff 
 because of .pc presence, and the .pc directory
 will be packed into the source package. Or should I delete .pc directory 
 before running debuild ?

I use git-buildpackage (or bzr-buildpackage, depending on the VCS used by the 
project) which seems to automatically tell
debuild to ignore stuff in the .gitignore (.bzrignore) file.  It just works., 
no manual intervention other than
maintaining the ignore file.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52c6cd7a.1020...@bregmasoft.ca



Re: Please help me fix these build problems

2014-01-03 Thread Stephen M. Webb
On 01/03/2014 11:06 AM, T o n g wrote:
 Hi, 
 
 I'm trying to convert zh-autoconvert from pre-dh to using the dh for the 
 making. 
 I don't know how to fix the following problems:
 
 W: zh-autoconvert: hardening-no-relro usr/bin/autogb

To fix this one, you need to add $CPPFLAGS and $LDFLAGS to your linker command 
line in your Makefile.

 autogb:autogb.c  hzlib
 $(CC) $(CFLAG) $(LIBS) autogb.c -lhz -o autogb
 autogb-static:autogb.c  hzlib
 $(CC) $(CFLAG) autogb.c lib/libhz.a -o autogb

autogb:autogb.c  hzlib
$(CC) $(CPPFLAGS) $(CFLAG) $(LDFLAGS) $(LIBS) autogb.c -lhz -o autogb
autogb-static:autogb.c  hzlib
$(CC) $(CPPFLAGS) $(CFLAG) $(LDFLAGS) autogb.c lib/libhz.a -o autogb

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52c6e682.40...@bregmasoft.ca



Re: Different symbols for different architectures

2013-12-29 Thread Stephen M. Webb
On 12/29/2013 04:24 AM, Mattia Rizzolo wrote:
 I maintain a new package, licenseutils, for witch I had a very bad
 response from buildd:
 https://buildd.debian.org/status/package.php?p=licenseutilssuite=sid
 
 Seems that different architectures have different symbols. So I'm
 looking for a way to address this issue.
 As dh_makeshlibs(1) states if I need to provide different symbols file
 for different architectures I have to append $arch at the end of the
 file name, but in this way I have to ship 12 symbols files! Doesn't
 seem a very clean solution to me.
 
 Anybody has a better solution than mine?

You can also tag symbols in your symbols file with (optional=32bit) or whatever 
annotation makes sense.  You really need
to make sure this makes sense.  The optimizer can play havoc with inlining on 
different architectures, so it happens.

If you find you're leaking third-party symbols, you might want to add a symbol 
versioning script to your DSO link stage.
 This means you would only ever export the symbols from your DSO, which is 
really what you want in a shared library.
Versioned symbols can also help with maintaining backwards ABI compatibility 
across releases.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52c02863.9040...@bregmasoft.ca



Re: Debian package from a bzr checkout

2013-12-12 Thread Stephen M. Webb
On 12/12/2013 05:01 AM, Mathieu Malaterre wrote:
 Hi,
 
   I would like to prepare a package from a code source that is
 currently only delivered from a bazar repository. What did people use
 for package version naming convention ?
 
   If that matter the code is on Launchpad

The ones we use most frequently are:

(1) upstream release + upstream VCS revision: 1.0+r256-1

(2) upstream release + upstream VCS revision + packaging revision (separate 
source and packaging branches): 1.0+r256+p24-1

(3) upstream release + date (debian/changelog gets checked in on each release): 
1.0+20131131.2-1

All of the above can be (and are) automated in various projects.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



signature.asc
Description: OpenPGP digital signature


Re: Bug#720114: dwarf fotress and dwarf therapist package

2013-09-01 Thread Stephen M. Webb
On 09/01/2013 05:20 PM, Andrey Rahmatullin wrote:
 On Sun, Sep 01, 2013 at 04:45:17PM -0400, Scott Howard wrote:
 Would you also be interested in packaging dwarf fortress?
 Maybe.
 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=588377
 Yeah, there were several people trying to package it but no one reached
 the final point after all.

That's probably because the program contravenes the DFSG.  It's not likely to 
get accepted into Debian.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



signature.asc
Description: OpenPGP digital signature


Re: Updates to a package uploaded to mentors.debian.net

2013-06-07 Thread Stephen M. Webb
On 06/07/2013 04:12 PM, Grzegorz Niewisiewicz wrote:
 Hi!
 
 I've created my first Debian package [1] and filed an RFS [2]. It
 haven't generated much interest yet. I want to make some adjustments
 to the package and I don't know how.
 
 Lintian complained that there's no watch file. I added it and I'd like
 to update my package. Should I increase the Debian revision and/or
 mention the addition of a watch file in changelog or should I update
 the package in place?

(1) update the package
(2) upload to mentors.debian.net

This will replace the package already languishing there.  There's no need to 
mention the change in the debian/changelog,
since ut's not a change to the package in Debian.  there's no need to bump the 
Debian version number since the package
is not already in Debian.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



signature.asc
Description: OpenPGP digital signature


Bug#700494: RFS: grail/3.1.0-1 [ITP] -- gesture recognition and instantiation library

2013-02-13 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package grail

 * Package name: grail
   Version : 3.1.0-1
   Upstream Author : The Open Input Framework Team 
multi-touch-...@lists.launchpad.net
 * URL : https://launchpad.net/grail
 * License : LGPLv3
   Section : libs

  It builds those binary packages:

grail-tools - Gesture Recognition And Instantiation Library - test tools
libgrail-dev - Gesture Recognition And Instantiation Library - dev files
libgrail6  - Gesture Recognition And Instantiation Library

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/grail


  Alternatively, one can download the package with dget using this command:

dget -x http://mentors.debian.net/debian/pool/main/g/grail/grail_3.1.0-1.dsc

  More information about grail can be obtained from https://launchpad.net/grail.

  This package is part of the Open Input Frameowrk stack.


  Regards,
   Stephen M. Webb


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/511b97fc.1080...@bregmasoft.ca



Bug#700504: RFS: geis/2.2.15-1 [ITP] -- gesture engine interface support library

2013-02-13 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: wishlist


  Dear mentors,

  I am looking for a sponsor for my package geis - gesture engine interface 
suport library

 * Package name: geis
   Version : 2.2.15-1
   Upstream Author : The Open Input Framework Team 
multi-touch-...@lists.launchpad.net
 * URL : https://launchpad.net/geis
 * License : GPLv3, LGPLv3
   Section : libs

  It builds those binary packages:

geis-tools - Gesture engine interface support - test tools
libgeis-dev - Gesture engine interface support - dev files
libgeis-doc - Gesture engine interface support - documentation
libgeis1   - Gesture engine interface support
python-geis - python bindings for libgeis

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/geis

  Alternatively, one can download the package with dget using this command:

dget -x http://mentors.debian.net/debian/pool/main/g/geis/geis_2.2.15-1.dsc

  More information about geis can be obtained from https://launchpad.net/evemu..
  This package is a part of the Open Input Framework stack.

  Regards,
   Stephen M. Webb


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/511bc0b1.7000...@bregmasoft.ca



Bug#699669: RFS: agar/1.4.1+repack1-1 [ITP] -- toolkit for graphical applications

2013-02-08 Thread Stephen M. Webb
On 02/06/2013 08:55 AM, Mathieu Malaterre wrote:
 

All requested changes made and a new source package uploaded to 
mentors.debian.net.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



signature.asc
Description: OpenPGP digital signature


Bug#699669: RFS: agar/1.4.1+repack1-1 [ITP] -- toolkit for graphical applications

2013-02-08 Thread Stephen M. Webb
On 02/06/2013 08:55 AM, Mathieu Malaterre wrote:
 

All requested changes made and a new source package uploaded to 
mentors.debian.net.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5115269b.9020...@bregmasoft.ca



Bug#700104: RFS: evemu/1.0.10-1 [ITP]

2013-02-08 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package evemu - Linux Evdev Event 
Emulation

 * Package name: evemu
   Version : 1.0.10-1
   Upstream Author : The Open Input Framework Team 
multi-touch-...@lists.launchpad.net
 * URL : https://launchpad.net/evemu
 * License : GPLv3, LGPLv3
   Section : libs

  It builds those binary packages:

evemu-tools - Kernel Device Emulation Library - test tools
libevemu-dev - Kernel Device Emulation Library - development files
libevemu1  - KernelInput Event Device Emulation Library
python-evemu - Kernel Input Event Device Emulation Library (Python bindings)

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/evemu

  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/e/evemu/evemu_1.0.10-1.dsc

  More information about evemu can be obtained from https://launchpad.net/evemu.
  This package is a part of the Open Input Framework stack.

  Regards,
   Stephen M. Webb


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51154845.3050...@bregmasoft.ca



Bug#700112: RFS: frame/2.5.0-1 [ITP] -- multi-touch input event cooking library

2013-02-08 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package frame

 * Package name: frame
   Version : 2.5.0-1
   Upstream Author : The Open Input Framework Team 
multi-touch-...@lists.launchpad.net
 * URL : https://launchpad.net/frame
 * License : GPLv3, LGPLv3
   Section : libs

  It builds those binary packages:

frame-tools - Touch Frame Library - test tools
libframe-dev - Touch Frame Library - dev files
libframe6  - Touch Frame Library

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/frame


  Alternatively, one can download the package with dget using this command:

dget -x http://mentors.debian.net/debian/pool/main/f/frame/frame_2.5.0-1.dsc

  More information about frame can be obtained from https://launchpad.net/frame.
  This package is a part of the Open Input Framework stack.

  Regards,
   Stephen M. Webb


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/511565c5.2040...@canonical.com



Bug#699846: RFS: xorg-gtest/0.7.0-1 [ITP]

2013-02-05 Thread Stephen M. Webb
Package: sponsorship-requests
  Severity: normal [important for RC bugs, wishlist for new packages]

  Dear mentors,

  I am looking for a sponsor for my NEW package xorg-gtest

 * Package name: xorg-gtest
   Version : 0.7.0-1
   Upstream Author : Peter Hutterer peter.hutte...@who-t.net
 * URL : http://cgit.freedesktop.org/xorg/test/xorg-gtest/
 * License : MIT/X
   Section : libs

  It builds those binary packages:

libxorg-gtest-data - X.Org dummy testing environment for Google Test - data
libxorg-gtest-dev - X.Org dummy testing environment for Google Test - 
headers
libxorg-gtest-doc - X.org dummy testing environment for Google Test - 
documentation

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/xorg-gtest


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/x/xorg-gtest/xorg-gtest_0.7.0-1.dsc

  More information about xorg-gtest can be obtained from 
https://launchpad.net/xorg-gtest.
  Changes since the last upload:

  xorg-gtest (0.7.0-1) UNRELEASED; urgency=low

* initial Debian release (closes: #699403)


  Regards,
   Stephen M. Webb


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51116a9b.1010...@bregmasoft.ca



Bug#699669: RFS: agar/1.4.1+repack1-1 [ITP] -- toolkit for graphical applications

2013-02-04 Thread Stephen M. Webb
On 02/04/2013 09:50 AM, Mathieu Malaterre wrote:
 
 What's with the renaming (Please add a REAMDE.source for explanation thanks) ?
 
 $ uscan --verbose --force-download
 [...]
 Newest version on remote site is 1.4.1, local version is 1.4.1+repack1
  = remote site does not even have current version
 -- Scan finished
 
 $ wget http://stable.hypertriton.com/agar/agar-1.4.1.tar.gz
 $ md5sum  agar_1.4.1+repack1.orig.tar.gz agar-1.4.1.tar.gz
 3483244d3be644f769f5b79fe4817063  agar_1.4.1+repack1.orig.tar.gz
 ce71fb11ad79c926a968a4ed29053820  agar-1.4.1.tar.gz

This was because a pre-built Windows binary was included in the upstream source 
tarball.  The complete source for the
binary is included.  After some discussion, the executable is now being left in 
and the pristine tarball is being
included.  I change the package version accordingly and re-uploaded to m.d.n.

 And I have not look carefully if this is an issue with private glx
 implementation, but package currently FTBFS on my system:
 
 
 dpkg-gensymbols: warning: some symbols or patterns disappeared in the
 symbols file: see diff output below
 dpkg-gensymbols: warning: debian/libag-gui4/DEBIAN/symbols doesn't
 match completely debian/libag-gui4.symbols
 --- debian/libag-gui4.symbols (libag-gui4_1.4.1+repack1-1_amd64)
 +++ dpkg-gensymbolsXVrKDS 2013-02-04 15:46:19.0 +0100
 @@ -931,7 +931,7 @@
   agDefaultFont@Base 1.4.1
   agDirDlgClass@Base 1.4.1
   agDriverClass@Base 1.4.1
 - agDriverGLX@Base 1.4.1
 +#MISSING: 1.4.1+repack1-1# agDriverGLX@Base 1.4.1
   agDriverList@Base 1.4.1
   agDriverListSize@Base 1.4.1
   agDriverMwClass@Base 1.4.1
 @@ -1074,4 +1074,4 @@
   agWindowToFocus@Base 1.4.1
   agnKeySyms@Base 1.4.1
   agnUnitGroups@Base 1.4.1
 - modMasks@Base 1.4.1
 +#MISSING: 1.4.1+repack1-1# modMasks@Base 1.4.1
 dh_makeshlibs: dpkg-gensymbols -plibag-gui4
 -Idebian/libag-gui4.symbols -Pdebian/libag-gui4
 -edebian/libag-gui4/usr/lib/libag_gui.so.4.0.0
  returned exit code 1
 make: *** [binary] Error 1

The package builds as-is in a current sid pbuilder environment.  Those symbols 
are only built when the package
configuration can successfully detect the presence of working GLX headers.  It 
would be useful to check the config.log
to identify the reason why this was unsuccessful for you.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



signature.asc
Description: OpenPGP digital signature


Bug#699669: RFS: agar/1.4.1+repack1-1 [ITP] -- toolkit for graphical applications

2013-02-04 Thread Stephen M. Webb
On 02/04/2013 09:50 AM, Mathieu Malaterre wrote:
 
 What's with the renaming (Please add a REAMDE.source for explanation thanks) ?
 
 $ uscan --verbose --force-download
 [...]
 Newest version on remote site is 1.4.1, local version is 1.4.1+repack1
  = remote site does not even have current version
 -- Scan finished
 
 $ wget http://stable.hypertriton.com/agar/agar-1.4.1.tar.gz
 $ md5sum  agar_1.4.1+repack1.orig.tar.gz agar-1.4.1.tar.gz
 3483244d3be644f769f5b79fe4817063  agar_1.4.1+repack1.orig.tar.gz
 ce71fb11ad79c926a968a4ed29053820  agar-1.4.1.tar.gz

This was because a pre-built Windows binary was included in the upstream source 
tarball.  The complete source for the
binary is included.  After some discussion, the executable is now being left in 
and the pristine tarball is being
included.  I change the package version accordingly and re-uploaded to m.d.n.

 And I have not look carefully if this is an issue with private glx
 implementation, but package currently FTBFS on my system:
 
 
 dpkg-gensymbols: warning: some symbols or patterns disappeared in the
 symbols file: see diff output below
 dpkg-gensymbols: warning: debian/libag-gui4/DEBIAN/symbols doesn't
 match completely debian/libag-gui4.symbols
 --- debian/libag-gui4.symbols (libag-gui4_1.4.1+repack1-1_amd64)
 +++ dpkg-gensymbolsXVrKDS 2013-02-04 15:46:19.0 +0100
 @@ -931,7 +931,7 @@
   agDefaultFont@Base 1.4.1
   agDirDlgClass@Base 1.4.1
   agDriverClass@Base 1.4.1
 - agDriverGLX@Base 1.4.1
 +#MISSING: 1.4.1+repack1-1# agDriverGLX@Base 1.4.1
   agDriverList@Base 1.4.1
   agDriverListSize@Base 1.4.1
   agDriverMwClass@Base 1.4.1
 @@ -1074,4 +1074,4 @@
   agWindowToFocus@Base 1.4.1
   agnKeySyms@Base 1.4.1
   agnUnitGroups@Base 1.4.1
 - modMasks@Base 1.4.1
 +#MISSING: 1.4.1+repack1-1# modMasks@Base 1.4.1
 dh_makeshlibs: dpkg-gensymbols -plibag-gui4
 -Idebian/libag-gui4.symbols -Pdebian/libag-gui4
 -edebian/libag-gui4/usr/lib/libag_gui.so.4.0.0
  returned exit code 1
 make: *** [binary] Error 1

The package builds as-is in a current sid pbuilder environment.  Those symbols 
are only built when the package
configuration can successfully detect the presence of working GLX headers.  It 
would be useful to check the config.log
to identify the reason why this was unsuccessful for you.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51107b04.7080...@bregmasoft.ca



Bug#699669: RFS: agar/1.4.1+repack1-1 [ITP] -- toolkit for graphical applications

2013-02-03 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal


  Dear mentors,

  I am looking for a sponsor for my package agar

  * Package name: agar
Version : 1.4.1+repack1-1
Upstream Author : Julien Nadeau ve...@hypertriton.com
  * URL : http://libagar.org/
  * License : BSD 2-clause
Section : libs

  It builds those binary packages:

libag-core4 - toolkit for graphical applications (core)
libag-dev4 - toolkit for graphical applications (developer tools)
libag-gui4 - toolkit for graphical applications (gui)
libag-math4 - toolkit for graphical applications (math)
libag-rg4  - toolkit for graphical applications (raster graphics)
libag-vg4  - toolkit for graphical applications (vector graphics)
libagar-dev - files for developing with the Agar toolkit

  To access further information about this package, please visit the following 
URL:

http://mentors.debian.net/package/agar


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/a/agar/agar_1.4.1+repack1-1.dsc

  More information about agar can be obtained from http://libagar.org/.

  Changes since the last upload:
 agar (1.4.1+repack1-1) UNRELEASED; urgency=low

   * Initial release (Closes: #636317).
   * Added DESTDIR support to installation paths.
   * Added transitive link libraries.

  Regards,
   Stephen M. Webb




signature.asc
Description: OpenPGP digital signature


Bug#699668: RFS: agar/1.4.1+repack1-1 [ITP]

2013-02-03 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256


  Dear mentors,

  I am looking for a sponsor for my package agar

  * Package name: agar
Version : 1.4.1+repack1-1
Upstream Author : [fill in name and email of upstream]
  * URL : [fill in URL of upstreams web site]
  * License : [fill in]
Section : libs

  It builds those binary packages:

libag-core4 - toolkit for graphical applications (core)
libag-dev4 - toolkit for graphical applications (developer tools)
libag-gui4 - toolkit for graphical applications (gui)
libag-math4 - toolkit for graphical applications (math)
libag-rg4  - toolkit for graphical applications (raster graphics)
libag-vg4  - toolkit for graphical applications (vector graphics)
libagar-dev - files for developing with the Agar toolkit

  To access further information about this package, please visit the following 
URL:

http://mentors.debian.net/package/agar


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/a/agar/agar_1.4.1+repack1-1.dsc

  More information about agar can be obtained from http://www.example.com.

  Changes since the last upload:
 agar (1.4.1+repack1-1) UNRELEASED; urgency=low

   * Initial release (Closes: #636317).
   * Added DESTDIR support to installation paths.
   * Added transitive link libraries.

Regards,
   Stephen M. Webb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJRDA+xAAoJEAoP+EW32zQn55AQAILNq8noZqCJLAUYZawu/1Qs
GcRH4bPwn4XmjP3AJgpKJq45Yhu2f+pJIdkUp8UN4cdWrVAVDtOYm/owG53hYKWx
XsMHadlqSYPOZUPO4NaypAvpNnK1raNAY7erY9/HiV0IRNukM67SuhWDoy+7tZmS
tB0+1PQdrYllcePr3khwd4DMgTX7yH1ylXjKcbpIqNAm135eHgs1ROJTuLNQdzz1
Wnd48/Z5upziQeekJjRdVe26IH6omPaDOWbprrbpP2f9hJ0pYlfwUsOZHQY0ZIYp
xWsqoo8X6t4FKo6Hzvd5iVNNoFDSWIozufv+Qm7l7PlkWz58hszGGsW/8KlxVGzl
ygL2qS7k3gGoRK53AC1ragzuI71zIfFz2z0L3IJt8Ow0ftnajIxbEbBZJmQ/r8dU
q5LOV42Gu0uv3LpNoffS6Ms3nBVeRf43HPpTVULNKhp2j5360L6I1TosC08UMsBz
d7bck5uF17/qk+gFDyjVKiyMMPCb6daOruhzom5kaPob292gCfhjY6MZOw0EZANz
DlcvJ2aaicuP+3EHK2Ls3y6nO2GHwrFWG3FKIv72m0GhRaTLhJwxSjSvxAAONC4A
9Kntys6hKDKr2knv/gpjU9jGuqEErGe8eJFAPuNj5vfao7Yxp8OuxT5tqg1Wr+D3
WTNgAZ8Wceholw8o/CJq
=RMY0
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130201185545.24982.83210.reportbug@localhost6.localdomain6



Bug#699563: RFS: agar/1.4.1+repack1-1 [ITP] -- toolkit for graphical applications

2013-02-01 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal


  Dear mentors,

  I am looking for a sponsor for my package agar

  * Package name: agar
Version : 1.4.1+repack1-1
Upstream Author : Julien Nadeau ve...@hypertriton.com
  * URL : http://libagar.org/
  * License : BSD 2-clause
Section : libs

  It builds those binary packages:

libag-core4 - toolkit for graphical applications (core)
libag-dev4 - toolkit for graphical applications (developer tools)
libag-gui4 - toolkit for graphical applications (gui)
libag-math4 - toolkit for graphical applications (math)
libag-rg4  - toolkit for graphical applications (raster graphics)
libag-vg4  - toolkit for graphical applications (vector graphics)
libagar-dev - files for developing with the Agar toolkit

  To access further information about this package, please visit the following 
URL:

http://mentors.debian.net/package/agar


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/a/agar/agar_1.4.1+repack1-1.dsc

  More information about agar can be obtained from http://libagar.org/.

  Changes since the last upload:
 agar (1.4.1+repack1-1) UNRELEASED; urgency=low

   * Initial release (Closes: #636317).
   * Added DESTDIR support to installation paths.
   * Added transitive link libraries.

  Regards,
   Stephen M. Webb


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/510c278f.3010...@bregmasoft.ca



Bug#664766: RFS: ember/0.6.2-1 [ITA]

2012-04-28 Thread Stephen M. Webb
On 04/09/2012 10:34 AM, Ansgar Burchardt wrote:
 tag 664766 + moreinfo confirmed
 
 Hi,
 
 sorry for taking a while, but here is the first round of comments:
 
 Stephen M. Webb stephen.w...@bregmasoft.ca writes:
 ember (0.6.2-1) unstable; urgency=low

   * new upstream release (closes: #633854)
 - removed dependency on libceguiogre-dev (closes: #629767)
   * removed old unused build dependencies
   * converted to 3.0 (quilt) source format, removed obsolete patches
   * converted to use dh sequencer
   * new maintainer: Debian games team (closes: #653970)
 -added myself as uploader
   ^^^
 There is a space missing here.

Fixed.

   * adjusted paths in installed launcher script to use defaults
   * used xz compression in packaging
   * debian/control: updated Standards-Version to 3.9.3
   * debian/copyright: changed to computer-readable format (DEP-5)
 
 Comments about the packaging:
 
 Looks good, only some minor nitpicks:
 
  - debian/ember.1: Debian GNU/Linux should be changed to just Debian.

Done.

  - Are the patches forwarded upstream?

Either reported as bugs or proposed pull requests.

  - d/rules: find -exec rm can be replaced with find -delete
  - d/rules: find . could be replaced with find debian/tmp as I
understand you only want to remove duplicate COPYING files.
  - d/rules: # force use of local version of tolua++ and newer libtool
doesn't seem related to the command below it.

Rules file adjusted.

 About copyright information:
 
  - src/components/ogre/environment/pagedgeometry/include/MersenneTwister.h:
BSD-*3*-clause, also:
When you use this, send an email to: m-...@math.sci.hiroshima-u.ac.jp
with an appropriate reference to your work.
 
This additional clause makes the license non-free (postcardware),
see also the first example in question 12 of the [DFSGFAQ].

The postcard request was a part of the reference implementation that 
accompanied the original JACM paper by
Makoto Matsumoto and Takuji Nishimura.  The included file is a reimplementation 
of the published algorithm by
Richard J. Wagner and does not include any of the reference implementation 
code.  The use this in the quoted
clause refers to the reference implementation, which Richard J. Wagner 
consulted in creating his work, but does
not apply to his work.  Rather, the clause in the license text of the header 
reads as follows.

// It would be nice to CC: wagn...@umich.edu and co...@math.washington.edu
// when you write.

The wording in the reply to question 12 of the DFSGFAQ implies this is 
compliant.

  - FastDelegate.h: released under CPOL according to [FASTDELEGATE].
See [CPOL] for the license.  I haven't read the license text yet,
please check it fulfills the DFSG requirements and is compatible with
the other licenses.

The licensing on this is ambiguous at best.  I, working with upstream, 
attempted to get clarification
from the author but so far have not been able to.  I have replaced the code 
with an alternate implementation
that has a clear and acceptable license (boost).

  - DRGNURBSSurface.{h,cpp}: Copyright 1999 Intel Corporation.
See file for license.
  - EmberPagingSceneManager/*: mostly LGPL-2+, not -2.1+

Adjusted.

 There are additional copyright holders and years of copyright should
 probably be updated as well.  I noticed at least these, but didn't look
 that careful:
 
  - years of copyright need to be updated:
Erik Hjortsberg erik.hjortsb...@gmail.com, (C) 2011
(from EmberPagingTerrainObserver.h and others)
  - Copyright (C) 2009 Manuel A. Fernandez Montecelo
  - Copyright (C) 2011 Erik Ogenvik GPL-2+
  - src/components/ogre/gui/RenderedColourStringTextComponent.cpp:
contains code lifted from the CEGUI project.  Has additional
copyright holder and license.
  - Copyright (c) 2000-2006 Torus Knot Software Ltd

Adjusted.  I found a couple of additional copyright holders I missed and added 
them.

Note that Erik Hjortsberg legally changed his name in July 2011 to Erik 
Ogenvik.  All interest
in copyright under the original name should be deemed to be under the new name.

 About upstream code:
 
  - ./ember should probably use `set -e' and maybe also `set -u'.
Also it's not possible to pass both --home and --debug.
  - ./ember.in seems to be no longer needed (it has the same contents as
./ember).

I have modified ember.in to better handle arguments and exit on error, as 
suggested.
This is being forwarded upstream.

The ember.in and the ember file generated from it are different.  There is some 
variable substitution.

  - src/components/ogre/terrain/ICompilerTechniqueProvider.h:
The header states C++ Interface: ITerrainMaterialFinalizer which
looks like a copy-and-paste error. The include guards use
EMBER_OGREVIEW_ITERRAINMATERIALFINALIZER_H as well.
  - spelling error: To switch bach to attached mode, close the frame
window with the dialog: bach - back

I will forward these upstream.

These changes are commited

Bug#664584: RFS: utouch-evemu/1.0.9-1 [ITP]

2012-04-17 Thread Stephen M. Webb

Still looking for sponsorship for my package utouch-evemu

This is a suite of tools built around a library that exposes the Linux kernel's 
multi-touch input devices for
description, emulation, event capture, and event playback.

A new upstream release has been made since my last RFS for this package.  
Licensing of the library has changed from
GPL-3 to LGPL-3.


* Package name: utouch-evemu
  Version : 1.0.9-1
  Upstream Author : The uTouch Team multi-touch-...@lists.launchpad.net
* URL : https://launchpad.net/utouch-evemu
* License : LGPL-3 (library), GPL-3 (tools)
  Section : libs

It builds these binary packages:

  libutouch-evemu-dev - Kernel Device Emulation Library - development files
  libutouch-evemu1 - KernelInput Event Device Emulation Library
  python-utouch-evemu - Kernel Input Event Device Emulation Library (Python 
bindings)
  utouch-evemu-tools - Kernel Device Emulation Library - test tools

To access further information about this package,
please visit the following URL:

  http://mentors.debian.net/package/utouch-evemu

Alternatively, one can download the package with
dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/u/utouch-evemu/utouch-evemu_1.0.9-1.dsc

More information about utouch-evemu can be obtained
from https://launchpad.net/utouch-evemu.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



signature.asc
Description: OpenPGP digital signature


Bug#664765: RFS: ember-media/0.6.2.1-1 [ITA]

2012-03-20 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Dear mentors,

I am looking for a sponsor for my package ember-media

* Package name: ember-media
  Version : 0.6.2.1-1
  Upstream Author : The WorldForge team
* URL : http://www.worldforge.org/
* License : GPL-2
  Section : games

It builds this binary packages:

  ember-media - media data for Ember

To access further information about this package, please
visit the following URL:

  http://mentors.debian.net/package/ember-media


Alternatively, one can download the package with dget
using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/e/ember-media/ember-media_0.6.2.1-1.dsc

More information about ember-media can be obtained
from http://www.worldforge.org.

Changes since the last upload:

ember-media (0.6.2.1-1) unstable; urgency=low

  * New upstream release.
  * new maintainer: Debian games team (closes: #653971)
- added myself as uploader
  * Updated Standards-Version to 3.9.3 (no changes required).
  * Converted to use the dh build sequencer.
  * Converted to 3.0 (quilt) source format.
  * Switched to using xz compression.
  * Converted debian/copyright to DEP-5 format.
  * Added Vcs- lines to debian/control.


Regards,
 Stephen M. Webb


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJPaMg1AAoJEAoP+EW32zQnMygP/3vfJ4fYMHfU2QZ/qlcoJdg8
atNoYE571+3nRaJ1FnAvJezPgmNN3L7avyt8tOo+cJzCpYCmHz3TVO/ShgXymHgU
4j38yCdj5CyyibzGoQmNR0xRdZa1J2LzPHFggTaV5WYIHqclYeTGFvjqPhAgX8gz
NGW17ap3uIaqItcHOP5scEqCxqg3gYJ6/4AD6E9XJAx0/IsL7CmVPXT1IgcQ2Umo
wEeSBBLgZdWUN+5OvK7algA7oeQAGk63or9u61sHr7ZPTDSiG/VVkF24bktXeBrp
fYOmQN/lacyzzv8IvuyVqoMAEM1FxtlqHAaU9c+OaFMFprQ7ZGK0O1Y65/ydWAZi
GKh+Ug4eAe6BKjX/CNE0ttNQG98eAONPs7vrrsMsSeRD3vZdL3OkqbrVMmEpuOee
xpPAil3g7P/K3sYsSSU/rjHEGDycj12vTCIDeyJt4jImcUh3aZC+OcopWKkZgciV
VI7k3V6JkHeaoUepuld2FsDsjQDPrak5/yY5dBsL9fo8mOv8LRusXDqb3vf4KcbY
WwX8Vu88vsKMAUyKYrf0BnuaQgh0dS0TAEM0XZcUKXSaG70Mg5x7laDzXK3dbCHk
IRnxEnvP4DTjn5MgAod9y1Xwc3ZqjL1tMoEazJ6swaFD3KrD1GoyKqET9VICe3WI
BMnvZ5ozRniqKYCgD/7+
=efjb
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120320181104.21768.54151.reportbug@localhost6.localdomain6



Bug#664766: RFS: ember/0.6.2-1 [ITA]

2012-03-20 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256


Dear mentors,

I am looking for a sponsor for my package ember

* Package name: ember
  Version : 0.6.2-1
  Upstream Author : The WorldForge team
* URL : http://www.worldforge.org/
* License : GPL-2
  Section : games

It builds this binary packages:

  ember - 3D client of the WorldForge project

To access further information about this package, please
visit the following URL:

  http://mentors.debian.net/package/ember


Alternatively, one can download the package with dget
using this command:

dget -x http://mentors.debian.net/debian/pool/main/e/ember/ember_0.6.2-1.dsc

More information about ember can be obtained from http://www.worldforge.org.

Changes since the last upload:

ember (0.6.2-1) unstable; urgency=low

  * new upstream release (closes: #633854)
- removed dependency on libceguiogre-dev (closes: #629767)
  * removed old unused build dependencies
  * converted to 3.0 (quilt) source format, removed obsolete patches
  * converted to use dh sequencer
  * new maintainer: Debian games team (closes: #653970)
-added myself as uploader
  * adjusted paths in installed launcher script to use defaults
  * used xz compression in packaging
  * debian/control: updated Standards-Version to 3.9.3
  * debian/copyright: changed to computer-readable format (DEP-5)



Regards,
 Stephen M. Webb




-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJPaMl/AAoJEAoP+EW32zQnvoUP/1wB3kgMgZoblWZBrDMfXztP
nunICE6wkwgacCCf6/DmDG84CRxaTMzlvLJydYLv5dfKDLrVrp2qtAciEmezMXRV
M5FrwCogQCVHqp5rJ+sNaDalnM8n1xNK77ETA6u61qjGO6n1AvPIVI+lSZ6yN1G3
t95SkROpyjRlhinftm4qCMeoyMkB76CJawwyANKBN8CgpDxVp5N7cHyGX1PAHcYH
rdnhMwkyLjPlj4G+4UQ8PhCOvqJPAlclqyaNchSYqzvJbwwUb7xAjr76PGY/brKL
mIxrJtQs1OQZwFkyH+L6UPv96tskxaD97QZ+s8e6h7t/wNrYJPliVkji2+nrF8k7
jpztMn7VD6hIt9L4Dsq+TM8zG4ARd2djV9dEpXNAbyKNC08ttWbo/Hkaw/QrYPtj
uiLbaboXO8V4BXJx/7/woYiyk4r3MTyUEp0KdIjuLxTvNOFyv9/CkkZjjiYriH/c
W1d2SNRn3F/AmamQVbIGjYczOu1eA1CEHdFNQpuiEfrIZWWxHQ1oyciroxzF+g34
qxs1y+vieXT9Wi2VLJ+6FWRMh2hexTVUK9Ce96yk/wjVLtJlg9eOghWVBg2wgwGg
DUlWFSgkmpQuIMhZ9PIoGbum4Rhu3WL7rFnT587PkywuOOl0ta2ryyEJvRBeCeXK
9XG9YsN6DUeRUmfQM3Hq
=9B+L
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120320181635.21883.46105.reportbug@localhost6.localdomain6



Bug#664584: RFS: utouch-evemu/1.0.8-1 [ITP]

2012-03-18 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

 Dear mentors,

I am looking for a sponsor for my package utouch-evemu

* Package name: utouch-evemu
  Version : 1.0.8-1
  Upstream Author : The uTouch Team multi-touch-...@lists.launchpad.net
* URL : https://launchpad.net/utouch-evemu
* License : GPL-3
  Section : libs

It builds these binary packages:

  libutouch-evemu-dev - Kernel Device Emulation Library - development files
  libutouch-evemu1 - KernelInput Event Device Emulation Library
  python-utouch-evemu - Kernel Input Event Device Emulation Library (Python 
bindings)
  utouch-evemu-tools - Kernel Device Emulation Library - test tools

To access further information about this package,
please visit the following URL:

  http://mentors.debian.net/package/utouch-evemu

Alternatively, one can download the package with
dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/u/utouch-evemu/utouch-evemu_1.0.8-1.dsc

More information about utouch-evemu can be obtained
from https://launchpad.net/utouch-evemu.


Regards,
  Stephen M. Webb


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJPZpuGAAoJEAoP+EW32zQn8WwP/1NQjTorpLVyd6x9X9Afn29K
Uf9MCLpLrU5nHlaCnZKm3imYyuwyhZW7IotGf2UoJsP0+6IuejlGg7DlxziMn3nf
qnCR3x1H6MaCPwIfcY7xbo6haEdFFiDtFfqyGRtZ51ef8fdgJOBE8lzQSXcioXVv
e44RpsDNAmk2J4sOWJ5tpcZCX2iUKk3ibgM+pHmKuSmgeNJQnc8AgZNVfC8wRoz1
/JnRy6VtNkM8eiQxaou3ImWuj+j9I1N+yuQUH4/B2JLqFLq1gQasI6ILsZtLJ9wm
C9rEFDBJa3a/NYzAon4CCLqDmP0q5MFj69vBqLQXZnjY67oXWGQabHl/YM2MoXp9
8fDMs+hY6UadzTiLn6yobks9LDkTrQ0+dkaa/b5IBj6SGrBTgw7vtxQWc+22SkMw
AXiRatgBA6GDsMOKeNpHlwFrw40AtOxgh8BnoiU45Q1JS4ftxjvsCsAXm8QSrVke
rcgHfKeaGk3xnZtuacHVfVAXE1yVEnd/YEJawmGdahCSjmL3zbc+mAPM4UJWc5VG
tp01msocpdrfV7Rqtp6zaclf3lXCoGydRu8lnUqsX612kildHew6EJ2fCKJpc9TB
jB7MvV+QL9dQtueZC+MWjz0obJSygvJdXm/RL8FeK0fdhjAK9cea87jmWZCVL18D
hqBcfb53AhtIwQPlnIl0
=bwbJ
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120319023554.24810.85932.reportbug@localhost6.localdomain6



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-03-03 Thread Stephen M. Webb

On 02/26/2012 01:19 PM, Ansgar Burchardt wrote:


http://mentors.debian.net/debian/pool/main/a/atlas-cpp/atlas-cpp_0.6.2-1.dsc



E: libatlas-cpp-0.6-dev: arch-dependent-file-not-in-arch-specific-directory 
usr/bin/atlas_convert


Fixed: I had also missed that.


I also noticed a typo in the package description for
libatlas-cpp-0.6-dev: developmentfiles misses a space.


Nice catch.  Fixed.

I have also updated to policy version 3.9.3 (no changes required).

Uploaded a new source package to the mentors archive as above.

Thanks.


--
Stephen M. Webb  stephen.w...@bregmasoft.ca



--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f52410e.3030...@bregmasoft.ca



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-03-03 Thread Stephen M. Webb

On 02/26/2012 01:19 PM, Ansgar Burchardt wrote:


http://mentors.debian.net/debian/pool/main/a/atlas-cpp/atlas-cpp_0.6.2-1.dsc



E: libatlas-cpp-0.6-dev: arch-dependent-file-not-in-arch-specific-directory 
usr/bin/atlas_convert


Fixed: I had also missed that.


I also noticed a typo in the package description for
libatlas-cpp-0.6-dev: developmentfiles misses a space.


Nice catch.  Fixed.

I have also updated to policy version 3.9.3 (no changes required).

Uploaded a new source package to the mentors archive as above.

Thanks.


--
Stephen M. Webb  stephen.w...@bregmasoft.ca



--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f524134.8000...@bregmasoft.ca



Bug#662032: RFS: eris/1.3.19-1 [ITA] -- WorldForge client entity library

2012-03-03 Thread Stephen M. Webb

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package eris

 * Package name: eris
   Version : 1.3.19-1
   Upstream Author : The WorldForge project
 * URL : http://worldforge.org
 * License : GPL-2
   Section : libs

It builds these binary packages:

 liberis-1.3-19 - WorldForge client entity library
 liberis-1.3-19-dbg - WorldForge client entity library - debugging library
 liberis-1.3-dev - WorldForge client entity library - development files
 liberis-doc - WorldForge client entity library - API documentation

To access further information about this package, please visit the 
following URL:


  http://mentors.debian.net/package/eris


Alternatively, one can download the package with dget using this command:

dget -x http://mentors.debian.net/debian/pool/main/e/eris/eris_1.3.19-1.dsc

More information about eris can be obtained from 
http://worldforge.org/dev/eng/libraries/eris


Changes since the last upload:

 eris (1.3.19-1) unstable; urgency=low
 .
   * new upstream version
   * new maintainers (Debian games team) (closes: #653972)
   * replaced use of chrpath with patch to ancient libtool
   * changed binary package names due to bumped SONAME
   * converted to 3.0 (quilt) source format
   * updates Standards-Version to 3.9.3 (no changes required)
   * debian/control: added Vcs- fields
   * added symbols tracking
   * debian/copyright: converted to DEP-5 format, updated dates
   * converted to use the dh build sequencer (compat level 9)
 - made binary packages multi-arch
 - regenerated autotools auxiliary files on build
   * converted to use xz compression in packaging

Regards,
   Stephen M. Webb




--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f52677c.2020...@bregmasoft.ca



Bug#658291: RFS: mercator/0.3.0-1 [ITA] -- WorldForge terrain library

2012-02-28 Thread Stephen M. Webb

On 02/19/2012 12:37 PM, Ansgar Burchardt wrote:


debian/copyright says the library is licensed as GPL-2+, but the files
in the upstream tarball only include a header stating This file may be
redistributed and modified only under the terms of the GNU General
Public License (See COPYING for details) and the GPL-2 in COPYING.
Does upstream mean GPL-any, GPL-2 or GPL-2+ here?


I have made reuested changes to the changelog and clarified the 
distribution license terms with upstream.  Uploaded a new source package 
to mentors.debian.net.


Thanks.
--
Stephen M. Webb  stephen.w...@bregmasoft.ca



--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f4cf111.6060...@bregmasoft.ca



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-02-26 Thread Stephen M. Webb

On 02/26/2012 06:35 AM, Ansgar Burchardt wrote:


I think it is fine to just document that it is released under a GFDL
license (any version) and add a note that we assume there are no
invariant sections, no front cover and no back cover texts.


I have modified the debian/copyright file as suggested and uploaded a 
new source package to mentors.debian.net.


   dget -x
 
http://mentors.debian.net/debian/pool/main/a/atlas-cpp/atlas-cpp_0.6.2-1.dsc


Thanks

--
Stephen M. Webb  stephen.w...@bregmasoft.ca



--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f4a6718.2090...@bregmasoft.ca



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-02-26 Thread Stephen M. Webb

On 02/26/2012 06:35 AM, Ansgar Burchardt wrote:


I think it is fine to just document that it is released under a GFDL
license (any version) and add a note that we assume there are no
invariant sections, no front cover and no back cover texts.


I have modified the debian/copyright file as suggested and uploaded a 
new source package to mentors.debian.net.



  dget -x


http://mentors.debian.net/debian/pool/main/a/atlas-cpp/atlas-cpp_0.6.2-1.dsc

Thanks

--
Stephen M. Webb  stephen.w...@bregmasoft.ca



--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f4a6730.4010...@bregmasoft.ca



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-02-16 Thread Stephen M. Webb

On 02/12/2012 05:49 AM, Ansgar Burchardt wrote:

Hi,

Stephen M. Webbstephen.w...@bregmasoft.ca  writes:

  * There are files licensed under the GFDL in tutorial/example.

[...]

I have reworded debian/changelog for clarification and added a clause to
debian/copyright for the example files.  A new source package has been
uploaded to mentors.debian.net.


Please don't assume specific versions of licenses if upstream does not
say so (debian/copyright says GFDL-1.3+ while the example files in the
tarball say just GFDL unless I missed something). Also you mentioned the
LGPL-2.1 instead of the GFDL later.


Upstream has been unable to clarify the licensing of the particular 
source in question (the original author is out of contact) and has 
suggested it be removed from the source tarball, since it is neither 
built nor packaged.  Is this a preferred alternative?



--
Stephen M. Webb  stephen.w...@bregmasoft.ca



--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f3d59ea.3000...@bregmasoft.ca



Re: how to manage d/changelog for updated but not yet sponsored package

2012-02-13 Thread Stephen M. Webb

On 02/13/2012 07:14 AM, Gergely Nagy wrote:


${VERSION}-${N}~mentors${X} for mentors, ${VERSION}-${N} for Debian
proper. A little more work on both sides, but we get the best of both
worlds with as little of the worst as possible.



+1

--
Stephen M. Webb  stephen.w...@bregmasoft.ca


--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f39019d.20...@bregmasoft.ca



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-02-11 Thread Stephen M. Webb
On 02/10/2012 05:18 PM, Ansgar Burchardt wrote:

   dget -x
 http://mentors.debian.net/debian/pool/main/a/atlas-cpp/atlas-cpp_0.6.2-1.dsc
 
  * There are files licensed under the GFDL in tutorial/example.
 
 debian/changelog:
 
  * typo: rpsth - rpath
 
  * What does updated the -doc package files mean?
 
  * Why more in added more zlib and libbz build dependencies?

I have reworded debian/changelog for clarification and added a clause to
debian/copyright for the example files.  A new source package has been
uploaded to mentors.debian.net.

 Minor upstream nitpicks:
 
  * I find it helpful if license statements include the version of the
 license explicitly (as the example ones in the GPL do), same for
 explicitly stating that there are no invariant sections etc.
 
  * README claims this was atlas-c++ 0.7.x which does not seem to be true.

I will bring these issues up with the upstream.  They have a number of
similar issues in other parts of their software suite.


-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f36693d.2000...@bregmasoft.ca



Re: How to convince maintainer to use --as-needed?

2012-02-10 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 02/10/2012 01:17 AM, Dmitry Smirnov wrote:
 Dear mentors,
 
 I seek your advice regarding the best practice with using
 --as-needed.

The --as--needed flag is automatically added to package builds in
Ubuntu.  If you do not want your package to fail to build from source
(and thus not be included in the Ubuntu GNU/Linux distribution), you
will at least test your project builds with that linker flag.

- -- 
Stephen M. Webb  stephen.w...@bregmasoft.ca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk81CY4ACgkQTLRKqWcl7vP4vwCguvpd173VQXJj479DnF2AkV0W
ngcAnRy2RanmGF724xPMPG1U3G2kK5Zh
=hhCV
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f350993.7040...@bregmasoft.ca



Re: debexpo raising files changed and insertion errors on vera++ package

2012-02-07 Thread Stephen M. Webb
On 02/07/2012 08:15 AM, Vincent Hobeïka wrote:
 
 [1] :http://mentors.debian.net/debian/pool/main/v/vera++/vera++_1.1.1-3.dsc
 [2] :http://mentors.debian.net/package/vera%2B%2B

How did you build that source package?  It has a diff.tar.gz file but no
debian.tar.gz.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f312e76.6070...@bregmasoft.ca



Re: debexpo raising files changed and insertion errors on vera++ package

2012-02-07 Thread Stephen M. Webb
On 02/07/2012 08:15 AM, Vincent Hobeïka wrote:
 
 [1] :http://mentors.debian.net/debian/pool/main/v/vera++/vera++_1.1.1-3.dsc
 [2] :http://mentors.debian.net/package/vera%2B%2B

How did you build that source package?  It has a diff.tar.gz file but no
debian.tar.gz.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f312eb8.1040...@bregmasoft.ca



Bug#657393: RFS: skstream/0.3.6-1 [ITA] -- IOStream C++ socket Library

2012-02-06 Thread Stephen M. Webb
On 02/06/2012 05:37 AM, Ansgar Burchardt wrote:
 Stephen M. Webb stephen.w...@bregmasoft.ca writes:
 
 The package descriptions for the -dev and -dbg package different from
 the runtime library (the first paragraph each).
 
 The part of the -dbg package description about fiddling with
 LD_LIBRARY_PATH is also wrong, gdb should automatically pick up
 debugging symbols from /usr/lob/debug.  I would also leave away the last
 sentence there.

I have modified the binary package descriptions for consistency and to
remove the unnecessary text from the -dbg package, and uploaded a new
source package to mentors.debian.net.





-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f300890.8080...@bregmasoft.ca



Bug#657393: RFS: skstream/0.3.6-1 [ITA] -- IOStream C++ socket Library

2012-02-05 Thread Stephen M. Webb
On 02/05/2012 09:55 AM, Ansgar Burchardt wrote:
 Stephen M. Webb stephen.w...@bregmasoft.ca writes:
 I am looking for a sponsor for my package skstream:

   dget -x http://mentors.debian.net/debian/pool/main/s/skstream
 /skstream_0.3.8-1.dsc
 
 Are the additional includes from the 0001-gcc-4.4.patch still necessary?
 At least the two .cpp files now already #include cstring so there is
 no need to add an additional #include string.h.  I did not check if
 the last #include is still needed.
 
 Could you add the Multi-Arch fields as suggested by Jakub Wilk in an
 earlier mail?

The patch was no longer required.  All patches have now been removed.

I added the Multi-Arch fields as suggested.

I have uploaded a new source package to mentors.debian.net (same URL as
above).


-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f2eac6c.6060...@bregmasoft.ca



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-02-05 Thread Stephen M. Webb
On 01/30/2012 10:12 PM, Stephen M. Webb wrote:
 Package: sponsorship-requests
 Severity: normal
 
 Dear mentors,
 
 I am looking for a sponsor for my package atlas-cpp:
 
   dget -x
 http://mentors.debian.net/debian/pool/main/a/atlas-cpp/atlas-cpp_0.6.2-1.dsc

I have modified this package to fix missing or added inline symbols on
additional non-x86 architectures.  I have uploaded a new source package
to the same URL.




-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f2f190b.4090...@bregmasoft.ca



Bug#658291: RFS: mercator/0.3.0-1 [ITA] -- WorldForge terrain library

2012-02-01 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package mercator:

  dget -x
http://mentors.debian.net/debian/pool/main/m/mercator/mercator_0.3.0-1.dsc


It builds these binary packages:
 libmercator-0.3-1 - WorldForge terrain library
 libmercator-0.3-1-dbg - WorldForge terrain library - debugging symbols
 libmercator-0.3-dev - WorldForge terrain library - development files

  More information about mercator can be obtained from
http://worldforge.org/dev/eng/libraries/mercator

  Changes since the last upload:

 mercator (0.3.0-1) unstable; urgency=low
 .
   * new upstream release
   * new maintainer: Debian games team (closes: #653975)
 - added myself as uploader
   * changed binary package names for SONAME bump
   * updated to 3.0 (quilt) source format
   * updated Standards-Version to 3.9.2 (no changes required)
   * debian/control: added Vcs- fields
   * added symbols tracking
   * debian/copyright: convert to DEP-5 format
   * converted to use the dh build sequencer


Regards,
Stephen M. Webb  stephen.w...@bregmasoft.ca




-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f29a6df.8030...@bregmasoft.ca



Bug#658065: RFS: atlas-cpp/0.6.2-1 [ITA] -- WorldForge wire protocol library

2012-01-30 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package atlas-cpp:

  dget -x
http://mentors.debian.net/debian/pool/main/a/atlas-cpp/atlas-cpp_0.6.2-1.dsc

It builds these binary packages:
  libatlas-cpp-0.6-1 - World Forge wire protocol library - runtime libs
  libatlas-cpp-0.6-1-dbg - World Forge wire protocol library - debugging
libs
  libatlas-cpp-0.6-dev - World Forge wire protocol library - developer files
  libatlas-cpp-doc - World Forge wire protocol library - documentation

  More information about atlas-cpp can be obtained from
http://worldforge.org/dev/eng/libraries/atlas_cpp

  Changes since the last upload:

 atlas-cpp (0.6.2-1) unstable; urgency=low
 .
   * new upstream release
   * new maintainer (Debian games team) (closes: #653950)
   * converted to 3.0 (quilt) source format
   * updated Standards-Version to 3.9.2
   * debian/control: added Vcs- fields
   * regenerate the autotools at build time to fix rpsth problems
   * debian/libatlas-cpp-0.6-1.symbols: added
   * updated the -doc package files
   * removed unneeded patches
   * added a manpage for the atlas_convert tool
   * added lintian override for multiple DSOs in package
   * added more zlib and libbz build dependencies
   * debian/rules: convert to use dh build sequencer
   * use xz compression for packaging
   * moved to debhelper compat level 9
   * debian/copyright: convert to DEP-5 format


Regards,
Stephen M. Webb  stephen.w...@bregmasoft.ca




-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f275c2f.1090...@bregmasoft.ca



Bug#657891: RFS: varconf/0.6.7-1 [ITA] -- WorldForge configuration file handling library

2012-01-29 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal


Dear mentors,

I am looking for a sponsor for my package varconf:

  dget -x
http://mentors.debian.net/debian/pool/main/v/varconf/varconf_0.6.7-1.dsc


It builds these binary packages:
  libvarconf-1.0-7 - WorldForge configuration file handling library
  libvarconf-1.0-7-dbg - WorldForge configuration file handling library
- debugging library
  libvarconf-dev - WorldForge configuration file handling library -
development files

  More information about varconf can be obtained from
http://worldforge.org/dev/eng/libraries/varconf

  Changes since the last upload:

 varconf (0.6.7-1) unstable; urgency=low
 .
   * new upstream release
   * converted packaging to use dh sequenceer
   * new maintainer: Debian games team (closes: #653978)
 - added myself as uploader
   * converted to 3.0 (quilt) source format
   * changed package names due to SONAME version bump
   * updated Standards-Version to 3.9.2 (no changes required)
   * debian/control:  added Vcs- fields
   * added symbols tracking
   * debian/copyright: convert to DEP-5 format
   * debian/rules: regenerate autoconfigury
   * use xz compression for packaging
   * move to debhelper compat level 9


Regards,
Stephen M. Webb  stephen.w...@bregmasoft.ca




-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f257e89.4080...@bregmasoft.ca



Bug#657649: RFS: wfmath/0.3.12-1 [ITA] -- WorldForge math library

2012-01-29 Thread Stephen M. Webb
On 01/27/2012 03:21 PM, Ansgar Burchardt wrote:
 
  - debian/patches/series is an empty file. It can be removed.

Done.

  - debian/rules: just 'rm -rf doc/html doc/latex doc/man' should be
enough.  rm -f will not give an error for files that do not exist.

Done.

  - please update the config.{guess,sub} files when building the
package, eg. with the autotools_dev sequence addon for debhelper.

Done.

  - please consider using xz compression for the binary packages

Done.

I have also moved to debhelper compat level 9 (the current preferred
version in unstable) and made appropriate modifications.

 As this changes the soname, did you test that the packages
 build-depending on libwfmath-0.3-dev still work (build) with the new
 version?

Yes, and no they do not compile with the new version, but neither do
they compile with the old version of libwfmath-dev using GCC 4.6 or
later, so I consider the point moot.  I have an ITA for those packages
and upstream updates in the pipe.

If have uploaded a new source package to mentors.debian.net at
http://mentors.debian.net/debian/pool/main/w/wfmath/wfmath_0.3.12-1.dsc


Changes:
 wfmath (0.3.12-1) unstable; urgency=low
 .
   * new upstream release
   * new maintainer: Debian games team (closes: #653979)
 - added myself as uploader
   * converted packaging to use dh sequenceer
   * renamed binary packages due to SONAME bump
   * converted to 3.0 (quilt) source format
   * updated Standards-Version to 3.9.2 (no changes required)
   * debian/control: added Vcs- fields
   * refined doc packaging rules
   * added symbols tracking
   * debian/copyright: converted to DEP-5 format
   * debian/rules: regenerated autoconfigury
   * use xz compression for packaging
   * move to debhelper compat level 9


-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f259387.7080...@bregmasoft.ca



Bug#657649: RFS: wfmath/0.3.12-1 [ITA] -- WorldForge math library

2012-01-27 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal


Dear mentors,

I am looking for a sponsor for my package wfmath:

  dget -x
http://mentors.debian.net/debian/pool/main/w/wfmath/wfmath_0.3.12-1.dsc


It builds these binary packages:
  libwfmath-0.3-6 - WorldForge math library
  libwfmath-0.3-6-dbg - WorldForge math library - debugging library
  libwfmath-0.3-dev - WorldForge math library - development files
  libwfmath-doc - WorldForge math library - API documentation

  More information about hello can be obtained from
http://www.worldforge.org/

  Changes since the last upload:

 wfmath (0.3.12-1) unstable; urgency=low
 .
   * new upstream release
   * new maintainer: Debian games team (closes: #653979)
 - added myself as uploader
   * converted packaging to use dh sequenceer
   * renamed binary packages due to SONAME bump
   * converted to 3.0 (quilt) source format
   * updated Standards-Version to 3.9.2 (no changes required)
   * debian/control: added Vcs- fields
   * refined doc packaging rules
   * added symbols tracking
   * debian/copyright: converted to DEP-5 format

Regards,
Stephen M. Webb  stephen.w...@bregmasoft.ca



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f22ea04.6040...@bregmasoft.ca



Bug#657393: RFS: skstream/0.3.6-1 [ITA] -- IOStream C++ socket Library

2012-01-27 Thread Stephen M. Webb
On 01/27/2012 01:45 PM, Jakub Wilk wrote:
 * Stephen M. Webb stephen.w...@bregmasoft.ca, 2012-01-26, 12:05:
 
 since the library is a part of an MMORPG stack, and I anticipate a
 newer client app revision getting in to Debian long before a new
 server app, so the coexistence of both old and new SONAMEs will be
 required, at least for a little while.
 
 Could elaborate more of this? What is client app and server app in
 this context?

The MMORPG server and client both use this library.  While both are
actively developed upstream, the server has been removed from Debian
because it has been unmaintained for too long and will require going
through the ITP process (I believe, please correct me if I'm wrong).
The client has merely been orphaned, and I currently have an ITA on it.

The server package is still available in derivates (like Ubuntu) as a
binary package and will continue to depend on the older libraries until
a newer upstream is available.  Mean time, the newer client is
wire-protocol compatible with older servers, so it's more important to
focus on that.

 Please bear in mind that having multiple versions of the same source
 package in a single suite is not really a desired state.
 
 As far as unstable is concerned, you don't have control over when the
 old package will be removed. While I think ftp-masters usually wait
 until the old version don't have rdepeds anymore, they can also do it
 whenever they see fit (possibly rendering not-yet-rebuilt packages
 uninstallable).
 
 Until very recently, it wasn't even possible (unless some dirty hacks
 were involved) to keep multiple versions of a library in testing. It's
 doable now, but such a state certainly doesn't make the Release Team happy.

Assuming the remaining packages in the WorldForge stack get uploaded, it
does not matter to me that the older libraries are available.  I am just
starting at the bottom of the dependency stack wit this package.

 Did you build in unstable? I just did (with DEB_BUILD_OPTIONS=noopt),
 and saw this in the build log:
 
 /bin/bash ../libtool --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H  
 -I.. -I..   -g -O2 -Wall -DNDEBUG -c -o sksocket.lo sksocket.cpp

OK, this is the famous noppt bug in dh.  Fixed by bumping up to compat
level 9.  Seems someone changed the default behind my back while I
wasn't looking.  Unfortunately this bump pulls in the magic of
multi-arch, but fortunately that does not harm and dependent packages
continue to build OK.

 I would appreciate an explicit list of any apparent regressions, since
 they aren't apparent to me from the build logs or runtime testing of
 the package.
 
 I didn't have anything specific in mind (except noopt support). Looking
 at old debian/rules there are some things that dh certainly doesn't do:
 - setting LDFLAGS=-lstdc++;
 - passing --disable-debug to configure.
 Maybe these were no-ops or simply wrong. Maybe not. I didn't check. :)

The GCC c++ compiler links with its library now, since version 3.0.  The
default config is --disable-default.  Yes, these are noops.

 Now some things I didn't catch in my initial review:
 
 The package descriptions were modified, but this is not documented in
 the changelog.

Nice catch.  Remediated.

 The .orig.tar is compressed with bz2, but uscan would download a
 .tar.gz. I see the upstream provides bzip2ed tarballs too, so it should
 be a matter of fixing debian/watch.

OK, done.

New package uploaded to
http://mentors.debian.net/debian/pool/main/s/skstream/skstream_0.3.8-1.dsc

Changes:
 skstream (0.3.8-1) unstable; urgency=low
 .
   * new maintainer: Debian games team (closes: #653977)
 - added myself as uploader
   * new upstream release
   * changed package description (iostream, not isostream)
   * renamed binary packages due to SONAME change
   * converted packaging to use dh sequenceer
   * converted packaging to 3.0 (quilt) format
   * updated Standards-Version to 3.9.2 (no changes required)
   * added debian/symbols file
   * added VCs- fields to debian/control
   * debian/copyright: convert to DEP-5 format
   * debian/compat: set to compatibility level 9
   * debian/rules: add --with autoreconf to regenerate autoconfigury
   * debian/control: tweaked for multi-arch

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f23313a.6020...@bregmasoft.ca



Bug#657393: RFS: skstream/0.3.6-1 [ITA] -- IOStream C++ socket Library

2012-01-27 Thread Stephen M. Webb
On 01/27/2012 07:09 PM, Jakub Wilk wrote:
 * Stephen M. Webb stephen.w...@bregmasoft.ca, 2012-01-27, 18:20:
   * debian/rules: add --with autoreconf to regenerate autoconfigury
 
 A typo, though I'm not sure which word you had in mind. :P

I don't see the typo.  I added --with autoreconf to regenerate the
autoconfigury (config.guess, config.sub, aclocal.m4, ltmain.sh,
libtools, etc).  It's all terminology I've used on other projects.  Is
there a preferred way to phrase this on Debian?

   * debian/control: tweaked for multi-arch
 
 Could you be more explicit about how it was tweaked?
 
 BTW, you could add Multi-Arch: same field to all 3 packages, so that
 there's an actual benefit from installing stuff into multi-arch
 directories. :)

I did the minimum necessary to go to debhelper compat level 9.  Do you
suggest it's better to go whole-enchilada multi-arch?  I'm not
anticipating bi-arch installs or cross-builds, but I guess it doesn't
really hurt.  I'm just less familiar with the consequences of multi-arch
so I was being conservative.

 I see test failures in my build log:

Me too. The tests rely on manually configuring the OS is a specific,
non-standard way.  Should I just disable the test targets during the
build to reduce the noise?


-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f235cea.2080...@bregmasoft.ca



Bug#657393: RFS: skstream/0.3.6-1 [ITA] -- IOStream C++ socket Library

2012-01-26 Thread Stephen M. Webb
On 01/26/2012 06:49 AM, Jakub Wilk wrote:
 . * new maintainer (closes: #653977)
 
 This is a bit misleading. It would normally interpret such item as
 I set myself as Maintainer. But this is not what happened here:
 you set Debian Games Team as maintainer, and added yourself to
 Uploaders. I think this should be written explicitly in the
 changelog.

Fair enough.  Modified.

 * renamed binary packages due to SONAME change
 
 But here are reverse-dependencies of the old binary package. Which
 means that uploading this to unstable starts a transition. What
 this discussed with the release team? It probably should, even
 though the number of involved packages is small.
 
 That said, the best moment to talk to the release team would be
 after the package has been thoroughly reviewed (thus: not yet).

The old and new library packages are parallel-installable.  I consider
this a feature, since the library is a part of an MMORPG stack, and I
anticipate a newer client app revision getting in to Debian long
before a new server app, so the coexistence of both old and new
SONAMEs will be required, at least for a little while.

But, as you say, this will need to be discussed with the release team
after this package (and other upgraded packages in the stack) has been
thoroughly reviewed.

 * moved to debhelper 8
 
 What does this mean?

It means converted to use the dh sequencer from a hand-rolled
debian/rules script.  I have adjusted the debian/changelog wording to
reflect this.

 I see that you rewrote debian/rules from scratch, apparently
 introducing regressions... Is that a part of moved to debhelper
 8?
 
 Does you new d/rules support DEB_BUILD_OPTIONS=noopt like the old
 one did? Are you sure that there are no other regressions?

I have the greatest confidence that the dh sequencer support Debian
policy much better than the previous hand-rolled debian/rules script.

I have confirmed that the new debian/rules does indeed support
DEB_BUILD_OPTIONS=noopt and DEB_BUILD_OPTIONS=nostrip.  It is true
that if you build with the noopt option you will get warnings about
the ABI changing.  That is a feature, since a changed ABI can cause
hard-to-find runtime misbehaviour and at least a build-time warning
should be issued.  Most packages handle this by silently ignoring the
ABI change.  I can modify the debian/rules to not issue the warning if
that's the preferred Debian way.

I would appreciate an explicit list of any apparent regressions, since
they aren't apparent to me from the build logs or runtime testing of
the package.

 * added debian/symbols file
 
 This looks a bit suspicious. Symbols that exist only on amd64? I 
 seriously doubt it...

Right, I loosened the symbols file so it should not fail on arches I
have not tested on.  Since the symbol differences were all the result
of arch-specific std::size_t, this should not in fact cause unintended
side effects.  Fixed.

 * debian/copyright: convert to DEP-5 format
 
 I see no such changes to debian/copyright in my debdiff.

Oooh, workflow problems.  I grabbed a newer changelog than the one on
mentors.d.n to attach to the RFS.  Well, taken care of now by
including the debian/copyright change.

 You converted the package to source format 3.0 (quilt), but this is
 not documented in the changelog.

Gah, don't know how I missed that one. Fixed.

 Why is the patch name 0001-gcc-4.4.patch if the description is
 fixes compilation errors with GCC **3.3** (emphasis mine).

Typo.  The 3 and 4 keys are too close together on the keyboard.
Fixed.

I have made the above documented changes and uploaded a new source
package to mentors.debian.net.  It can be obtained from here:

dget -x
http://mentors.debian.net/debian/pool/main/s/skstream/skstream_0.3.8-1.dsc

Here is the new changelog.

 skstream (0.3.8-1) unstable; urgency=low
 .
   * new maintainer: Debian games team (closes: #653977)
 - added myself as uploader
   * new upstream release
   * renamed binary packages due to SONAME change
   * converted packaging to use dh sequencer
   * converted packaging to 3.0 (quilt) format
   * updated Standards-Version to 3.9.2 (no changes required)
   * added debian/symbols file
   * added VCS- fields to debian/control
   * debian/copyright: convert to DEP-5 format

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f2187d2.5030...@bregmasoft.ca



Bug#657393: RFS: skstream/0.3.6-1 [ITA] -- IOStream C++ socket Library

2012-01-25 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: normal


Dear mentors,

I am looking for a sponsor for my package skstream:

  dget -x http://mentors.debian.net/debian/pool/main/s/skstream
/skstream_0.3.8-1.dsc


It builds these binary packages:
 libskstream-0.3-6 - iostream-based C++ socket library
 libskstream-0.3-6-dbg - iostream-based C++ socket library - debugging
symbols
 libskstream-0.3-dev - iostream-based C++ socket library - development
files

  More information about hello can be obtained from
http://www.worldforge.org/

  Changes since the last upload:

 skstream (0.3.8-1) UNRELEASED; urgency=low
 .
   * new maintainer (closes: #653977)
   * new upstream release
   * renamed binary packages due to SONAME change
   * moved to debhelper 8
   * updated Standards-Version to 3.9.2 (no changes required)
   * added debian/symbols file
   * added VCs- fields to debian/control
   * debian/copyright: convert to DEP-5 format

Regards,
Stephen M. Webb  stephen.w...@bregmasoft.ca



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f208497.3050...@bregmasoft.ca



RFS: WorldForge base packageset

2012-01-19 Thread Stephen M. Webb
 with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/e/eris/eris_1.3.19-1.dsc

I would be glad if someone uploaded these packages for me.

Kind regards,

Stephen M. Webb


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f18739b@bregmasoft.ca



Re: commands to check stuff

2011-12-21 Thread Stephen M. Webb
On 12/21/2011 01:23 AM, Paul Wise wrote:
 
 I've recently been extending my list of commands to run after a
 successful build to check various things, I thought I would share it
 with the list and invite suggestions of other things to run, any ideas?

I can't offer additional suggestions, but could you slap this up on the
wiki so it's kicking around for future reference?


-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ef1f2ac.6030...@bregmasoft.ca



Re: RFS: scorched3d (fixes FTBFS #650579)

2011-12-13 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 12/12/2011 04:03 AM, Ansgar Burchardt wrote:
 Hi,
 
 Stephen M. Webb stephen.w...@bregmasoft.ca writes:
 I am looking for a sponsor for my package update for
 scorched3d. This updated fixes a FTBFS and closes RC bug
 #650579.
 
 Your package reverts an earlier change:
 
 scorched3d (43.2a.dfsg-5) unstable; urgency=low
 
 * Team upload. * Prepare for libjpeg8 transition and build-depend
 on libjpeg-dev instead of libjpeg62-dev. -  * Temporarily override
 lintian error on embedded GLEW library in scorched3c. -We will
 fix this in a later upload.
 
 - -- Bruno Fuddl Kleinert fu...@debian.org  Tue, 19 Jul 2011
 19:19:05 +0200 + -- Bruno Fuddl Kleinert fu...@debian.org  Tue,
 19 Jul 2011 18:12:00 +0200
 
 The package now depends on gawk, but this does not mean that 
 /usr/bin/awk will be gawk as it is managed by the alternatives
 system. You need to use gawk explicitly if you need it.

OK, I added the untracked lintian override, made the use of gawk
explicit in the rules file, and added xz compression.  Changes pushed
to the git repo and reuploaded to mentors.d.n.


- -- 
Stephen M. Webb  stephen.w...@bregmasoft.ca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7nc2oACgkQTLRKqWcl7vMyQgCfbYZhexNTum8Z3OF61pig3KKp
0usAoIVFTTy/X2KOKaAsO2Qe3y/zNqz8
=NtXx
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee7736a.7090...@bregmasoft.ca



Re: RFS: scorched3d (fixes FTBFS #650579)

2011-12-12 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 12/12/2011 04:03 AM, Ansgar Burchardt wrote:
 
 The package now depends on gawk, but this does not mean that 
 /usr/bin/awk will be gawk as it is managed by the alternatives
 system. You need to use gawk explicitly if you need it.

Actually, the code injected by autoconf into configure and used to
generate config.status bypasses any Debian-specific stuff like the
alternatives system because it's designed to be cross-platform.  If
'gawk' is present on the system and in $PATH it will be taken in
preference to mawk, nawk , or awk (in that order).  That's also why
the bug(s) were tagged with can't reproduce until the package hit
the current unstable buildd: only if gawk is not present on the system
will mawk be used unless it's explicitly specified on the configure
command line, and most developers and older buildd chroots have gawk
installed.

I chose the most parsimonious solution for this problem.  I could add
additional code to force the configure script to do what it's already
doing in a belt-and-suspenders way if you think there are advantages.

- -- 
Stephen M. Webb  stephen.w...@bregmasoft.ca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7mNwkACgkQTLRKqWcl7vNTigCgioN+ZtgWP01fOAsrhtoBIApO
NZ4AniYtdcR3QwF0QRnHY3nopkxaQcFg
=CBQ9
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee63709.7080...@bregmasoft.ca



Re: RFS: scorched3d (fixes FTBFS #650579)

2011-12-12 Thread Stephen M. Webb
On 12/12/2011 04:03 AM, Ansgar Burchardt wrote:
 
 Your package reverts an earlier change:
 
  scorched3d (43.2a.dfsg-5) unstable; urgency=low
  
* Team upload.
* Prepare for libjpeg8 transition and build-depend on libjpeg-dev instead 
 of
  libjpeg62-dev.
 -  * Temporarily override lintian error on embedded GLEW library in 
 scorched3c.
 -We will fix this in a later upload.
  
 - -- Bruno Fuddl Kleinert fu...@debian.org  Tue, 19 Jul 2011 19:19:05 
 +0200
 + -- Bruno Fuddl Kleinert fu...@debian.org  Tue, 19 Jul 2011 18:12:00 
 +0200

This change is not in the VCS ate
http://git.debian.org/?p=pkg-games/scorched3d.git.  It looks like the
change was made outside of source control and not committed before
uploading the source.

I could add a lintian override for the warning to reproduce the change.
 Would this be good enough?

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee6447b.8080...@bregmasoft.ca



RFS: xgalaga

2011-12-11 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear mentors,

I am looking for a sponsor for my update to the package package
xgalaga.  This update fixes a number of lintian and buildd warnings
and closes #641293.

 * Package name: xgalaga
   Version : 2.1.1.0-4
   Upstream Author : Joe Rumsey mro...@mediaone.net
 * URL : http://rumsey.org/xgal.html
 * License : GPL-2+
   Section : games

It builds those binary packages:

xgalaga- X version of the famous Galaga game

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/xgalaga

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/x/xgalaga/xgalaga_2.1.1.0-4.dsc

I would be very glad if someone uploaded this package for me.

Regards,

Stephen M. Webb
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7lJT0ACgkQTLRKqWcl7vOyCgCgjFDS+NjM7ndlx99HFYlw5kDc
KnUAn34OhShC4esXa2gdX73vTMVNOC5v
=btja
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee5253d.2050...@bregmasoft.ca



RFS: mmpong (updated package)

2011-12-11 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear mentors,

I am looking for a sponsor for my update of the package mmpong.
This change updates the packaging standards-version and fixes a FTBFS
bug (#624144).

 * Package name: mmpong
   Version : 0.9.1-2
   Upstream Author : André Gaul g...@web-yard.de
 * URL : https://www.mmpong.net
 * License : GPL-3+
   Section : games

It builds those binary packages:

libmmpong0.9 - massively multiplayer pong game library (shared libraries)
 libmmpong0.9-dev - massively multiplayer pong game library
(development headers)
 mmpong-caca - massively multiplayer pong game client (caca version)
 mmpong-gl  - massively multiplayer pong game client (OpenGL version)
 mmpong-gl-data - massively multiplayer pong game client data (OpenGL
version)
 mmpongd- massively multiplayer pong game server

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/mmpong

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/m/mmpong/mmpong_0.9.1-2.dsc

I would be glad if someone uploaded this package for me.

Kind regards,

Stephen M. Webb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7lKLEACgkQTLRKqWcl7vMyagCfe0yAjoujRu7UroQkAyW5uMGr
/QAAnimLsCPEAvNXEY7NuQ4jiHfgfYOQ
=lgsL
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee528b1.4070...@bregmasoft.ca



RFS: agar (closes ITP #636317)

2011-12-11 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dearest mentors,

I am looking for a sponsor for my package agar.

 * Package name: agar
   Version : 1.4.1-1
   Upstream Author : Julien Nadeau-Carriere ve...@hypertriton.com
 * URL : http://libagar.org/
 * License : BSD 2-clause
   Section : libs

It builds those binary packages:

libag-core4 - toolkit for graphical applications (core)
 libag-dev4 - toolkit for graphical applications (developer tools)
 libag-gui4 - toolkit for graphical applications (gui)
 libag-math4 - toolkit for graphical applications (math)
 libag-rg4  - toolkit for graphical applications (raster graphics)
 libag-vg4  - toolkit for graphical applications (vector graphics)
 libagar-dev - files for developing with the Agar toolkit

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/agar

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/a/agar/agar_1.4.1-1.dsc

I would be glad if someone uploaded this package for me.

Kindest regards,

Stephen M. Webb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7lQu8ACgkQTLRKqWcl7vO1mwCdFSidvtYHYyhS3DV8Rbi2UHFs
IDAAni/K3cMfvhCNrI8ttB+QHr8E2aoN
=D532
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee542ef.8000...@bregmasoft.ca



RFS: no-dice (closes ITP #641851)

2011-12-11 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear mentors,

I am looking for a sponsor for my package no-dice.

 * Package name: no-dice
   Version : 0.3.0-1
   Upstream Author : Stephen M. Webb stephen.w...@bregmasoft.ca
 * URL : http://no-dice.sourceforge.net/
 * License : GPL-3+
   Section : games

It builds those binary packages:

no-dice- Dice match-up game

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/no-dice

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/n/no-dice/no-dice_0.3.0-1.dsc

I would be glad if someone uploaded this package for me.

Kind regards,

Stephen M. Webb
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7lR18ACgkQTLRKqWcl7vOxqQCeLBQOwpcGJcxYQxZ0XTpzCy7Y
SKIAoMDq/kAvujSkpFKytwIda0Mzs6fM
=i/8h
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee5475f.4040...@bregmasoft.ca



RFS: scorched3d (fixes FTBFS #650579)

2011-12-11 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Mentors,

I am looking for a sponsor for my package update for scorched3d.
This updated fixes a FTBFS and closes RC bug #650579.

 * Package name: scorched3d
   Version : 43.2a.dfsg-6
   Upstream Author : Gavin Camp gc...@scorched3d.co.uk
 * URL : http://scorched3d.sourceforge.net/
 * License : GPL-2+ CC-SA
   Section : games

It builds those binary packages:

scorched3d - 3D artillery game similar to Scorched Earth
 scorched3d-data - data files for Scorched3D game
 scorched3d-dbg - 3D artillery game similar to Scorched Earth, debug data

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/scorched3d

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/s/scorched3d/scorched3d_43.2a.dfsg-6.dsc

I would be ecstatic if someone uploaded this package for me.

Thanks a bunch in advance,

Stephen M. Webb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7leAcACgkQTLRKqWcl7vNuSwCgvysXLm6dkV2qfUbuYj8mUIYF
E1MAn0ApYil8RYUK07dtd+l4BwC1/exN
=pDDY
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee57807.5070...@bregmasoft.ca



RFS: watermelons

2011-09-16 Thread Stephen M. Webb
Dear mentors,

I am looking for a sponsor for my package watermelons.

 * Package name: watermelons
   Version : 1.1.1-1
   Upstream Author : Phil Hassey
 * URL : http://www.imitationpickles.org/melons/index.html
 * License : GPLv2+
   Section : games

It builds those binary packages:

watermelons - bounce the falling watermelons game

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/watermelons

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/w/watermelons/watermelons_1.1.1-1.dsc

I would be glad if someone uploaded this package for me.

-- 
Stephen M. Webb  stephen.w...@bregmasoft.ca


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e736186.2060...@bregmasoft.ca