Your message dated Sun, 22 Oct 2006 19:05:04 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Should be closed already
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: filler
Version: 1.02-3
Severity: serious
Tags: patch
When building 'filler' in a clean 'unstable' chroot,
I get the following error:
dh_installdirs
#/usr/bin/make CFLAGS="-O2 -g -Wall"
uudecode -o other/filler.png other/filler.u
make: uudecode: Command not found
make: *** [install] Error 127
This is due to a missing Build-Depends on sharutils.
Additionally, I also get the following:
mkdir classes || /bin/rm -rf classes/*
javac -d classes src/friendless/awt/*.java
javac -classpath classes -d classes src/friendless/games/filler/*.java
src/friendless/games/filler/player/*.java
src/friendless/games/filler/remote/*.java
src/friendless/games/filler/remote/messages/*.java
src/friendless/games/filler/TournamentPointsTableRow.java:81: unreachable
statement
return (other.getWon() - this.getWon());; // use wins to seperate
teams
^
1 error
make[1]: *** [filler.jar] Error 1
make[1]: Leaving directory `/filler-1.02'
make: *** [build-stamp] Error 2
Please add the missing Build-Depends on 'sharutils' to debian/control and
remove one ';' from the double ';;' in
src/friendless/games/filler/TournamentPointsTableRow.java.
Regards
Andreas Jochens
diff -urN ../tmp-orig/filler-1.02/debian/control ./debian/control
--- ../tmp-orig/filler-1.02/debian/control 2005-04-28 17:07:17.328864214
+0200
+++ ./debian/control 2005-04-28 16:52:11.000000000 +0200
@@ -2,7 +2,7 @@
Section: contrib/games
Priority: optional
Maintainer: James Damour (Suvarov454) <[EMAIL PROTECTED]>
-Build-Depends-Indep: j2sdk1.4 |j2sdk1.3 | java2-compiler, debhelper
+Build-Depends-Indep: debhelper, sharutils, j2sdk1.4 | java2-compiler
Standards-Version: 3.6.1
Package: filler
diff -urN
../tmp-orig/filler-1.02/src/friendless/games/filler/TournamentPointsTableRow.java
./src/friendless/games/filler/TournamentPointsTableRow.java
---
../tmp-orig/filler-1.02/src/friendless/games/filler/TournamentPointsTableRow.java
2001-01-03 08:26:12.000000000 +0100
+++ ./src/friendless/games/filler/TournamentPointsTableRow.java 2005-04-28
16:52:11.000000000 +0200
@@ -78,7 +78,7 @@
public int compareTo(TournamentPointsTableRow other) {
if (this.getWon() != other.getWon()) {
// wins aren't equal
- return (other.getWon() - this.getWon());; // use wins to seperate
teams
+ return (other.getWon() - this.getWon()); // use wins to seperate
teams
} else {
return (other.getDiff() - this.getDiff()); //else use goal
difference to seperate teams
}
--- End Message ---
--- Begin Message ---
Version: 1.02-4
This bug appears to have been fixed in an MU but not closed, probably
due an incorrect use of the changelog syntax for bug closing.
Closing with the appropriate version now.
Regards,
Adam
--- End Message ---