Bug#556472: gbdfed: update copyright file with new website location and author email

2009-11-16 Thread Ori Avtalion
Package: gbdfed
Version: 1.5-1
Severity: minor

The copyright file states the source was downloaded from:

http://crl.nmsu.edu/~mleisher/gbdfed.html 

The link no longer works.

The new website is:

http://www.math.nmsu.edu/~mleisher/Software/gbdfed/

Also, according to the new website, the author's new email address is 
@gmail.com.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#518957: pyqt4-dev-tools: small error in pyuic4 manpage

2009-03-09 Thread Ori Avtalion
Package: pyqt4-dev-tools
Version: 4.4.4-3
Severity: minor


The manpage reads:

   This manual page was written for Debian GNU/Linux by and Torsten Marek

The and should be removed.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#465206: Fixed upstream

2009-03-03 Thread Ori Avtalion
This has been reported and fixed upstream in version 0.1.12



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#505833: file: wrong capitalization of ScummVM

2008-11-15 Thread Ori Avtalion
Package: file
Version: 4.26-1
Severity: minor

The patch debian/patches/324-magic-add-scummvm.dpatch incorrectly
mentions scummVM instead of ScummVM. The latter is the correct
capitalization according to the http://scummvm.org/ website.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#501909: viruskiller: Incorrect link in copyright file

2008-10-11 Thread Ori Avtalion
Package: viruskiller
Version: 1.0-1.dfsg.1-0.2
Severity: minor

The copyright file has this as the game's website:

http://www.parallelrealities.co.uk/virusKiller.php

This is the correct URL:

http://www.parallelrealities.co.uk/projects/virusKiller.php



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#501200: Missing mime-type for GIMP XCF files

2008-10-05 Thread Ori Avtalion
Package: file
Version: 4.26-1
Severity: wishlist
Tags: patch

The attached patch adds a mime-type for xcf files.
diff --git a/magic/Magdir/gimp b/magic/Magdir/gimp
index 674bbfb..430ca1a 100644
--- a/magic/Magdir/gimp
+++ b/magic/Magdir/gimp
@@ -10,6 +10,7 @@
 #   ('Bucky' LaDieu, [EMAIL PROTECTED])
 
 0	string		gimp\ xcf	GIMP XCF image data,
+!:mime image/x-xcf
 9	string		file		version 0,
 9	string		v		version
 10	string		\0		%s,


Bug#499754: Another typo fix

2008-09-28 Thread Ori Avtalion
Hi,

Here's a new patch which also fixes a typo in the manpage:
untile - until
diff --git a/doc/magic.man b/doc/magic.man
index 314a014..a7f1935 100644
--- a/doc/magic.man
+++ b/doc/magic.man
@@ -277,7 +277,7 @@ then print the string), with
 The special test
 .Em x
 always evaluates to true.
-.Dv message
+.It Dv message
 The message to be printed if the comparison succeeds.
 If the string contains a
 .Xr printf 3
@@ -337,7 +337,7 @@ If a the test on a line at level
 .Em n
 succeeds, all following tests at level
 .Em n+1
-are performed, and the messages printed if the tests succeed, untile a line
+are performed, and the messages printed if the tests succeed, until a line
 with level
 .Em n
 (or less) appears.


Bug#500500: Better ZIP archive handling

2008-09-28 Thread Ori Avtalion
Package: file
Version: 4.26-1
Severity: wishlist

The current magic data for ZIP files has a few small problems.

There are several formats, such as OpenDocument, that use zip files as
their packaging format, and have a mimetype file at the beginning of
the archive to help identify them.

The OpenDocument specification do not require a specific zip archive
version, yet the magic data will only match those that use v2.0.

Also, if a zip v2.0 archive include a mimetype file with unknown
contents, 'file' will not report it as a zip file. This is due to a hack
to prevent both OpenDocument and Zip archive data from being printed.

The correct approach to stop the matching is to start a new 'level 0' test.

I tried to fix those problems in the attached patch.

At first, zip files which include a mimetype file are tested.
If the match succeeds, the program prints the match text and stops.
If the match fails, the program will move on to a new test for regular
zip files, and will print Zip archive data.

After changing the matching technique, I added a test for a new file
format: OCF container (EPUB), which is used for ebooks and defined in:
http://www.idpf.org/ocf/ocf1.0/download/ocf10.htm

-Ori
diff --git a/magic/Magdir/archive b/magic/Magdir/archive
index b75fac0..f2c92fc 100644
--- a/magic/Magdir/archive
+++ b/magic/Magdir/archive
@@ -560,28 +560,16 @@
 # [JW] see exe section for self-extracting version
 0	string		UC2\x1a		UC2 archive data
 
-# ZIP archives (Greg Roelofs, c/o [EMAIL PROTECTED])
+# ZIP archives with a mimetype file
+# (stops if match is found. Does not match regular ZIP archives)
 0	string		PK\003\004
-4	byte		0x00		Zip archive data
-!:mime	application/zip
-4	byte		0x09		Zip archive data, at least v0.9 to extract
-!:mime	application/zip
-4	byte		0x0a		Zip archive data, at least v1.0 to extract
-!:mime	application/zip
-4	byte		0x0b		Zip archive data, at least v1.1 to extract
-!:mime	application/zip
-0x161	string		WINZIP  Zip archive data, WinZIP self-extracting
-!:mime	application/zip
-4	byte		0x14
-30	ubelong		!0x6d696d65	Zip archive data, at least v2.0 to extract
-!:mime	application/zip
+30	string		mimetype
+38	string	application/
 
 # OpenOffice.org / KOffice / StarOffice documents
 # Listed here because they ARE zip files
 #
 # From: Abel Cheung [EMAIL PROTECTED]
-4	byte		0x14
-30	string		mimetype
 
 # KOffice (1.2 or above) formats
 50	string	vnd.kde.		KOffice (=1.2)
@@ -623,7 +611,7 @@
 77	string	-master			Master Document
 73	string	graphics		Drawing
 81	string	-template		Template
-73	string	presentation		Presentation
+73	string	presentation	Presentation
 85	string	-template		Template
 73	string	spreadsheet		Spreadsheet
 84	string	-template		Template
@@ -634,6 +622,28 @@
 73	string	database		Database
 73	string	image			Image
 
+# OCF container (EPUB)
+# http://www.idpf.org/ocf/ocf1.0/download/ocf10.htm
+#
+# From: Ori Avtalion [EMAIL PROTECTED]
+50	string	epub+zip	OCF container (EPUB)
+!:mime	application/epub+zip
+
+# ZIP archives (Greg Roelofs, c/o [EMAIL PROTECTED])
+0	string		PK\003\004	Zip archive data
+4	byte		0x00	
+!:mime	application/zip
+4	byte		0x09		\b, at least v0.9 to extract
+!:mime	application/zip
+4	byte		0x0a		\b, at least v1.0 to extract
+!:mime	application/zip
+4	byte		0x0b		\b, at least v1.1 to extract
+!:mime	application/zip
+4	byte		0x14		\b, at least v2.0 to extract
+!:mime	application/zip
+0x161	string		WINZIP  \b, WinZIP self-extracting
+!:mime	application/zip
+
 # Zoo archiver
 20	lelong		0xfdc4a7dc	Zoo archive data
 !:mime	application/x-zoo


Bug#499748: libmagic1: MP3 file identified as Infocom game data

2008-09-21 Thread Ori Avtalion
Package: file
Version: 4.26-1
Severity: normal

The mp3 file http://media.libsyn.com/media/skepticality/085_skepticality.mp3
is incorrectly identified as:
Infocom game data (Z-machine 73, Release 13058 / Serial 85_ske)

Moving the audio magic data above the adventure magic data gives the
correct output. There is a collision between the two definitions.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#499754: libmagic1: Incorrect layout in 'magic' manpage

2008-09-21 Thread Ori Avtalion
Package: file
Version: 4.26-1
Severity: minor

The 'message' field description is indented incorrectly due to an
incorrect macro.

See attached patch for the fix.
diff --git a/doc/magic.man b/doc/magic.man
index 314a014..9590300 100644
--- a/doc/magic.man
+++ b/doc/magic.man
@@ -277,7 +277,7 @@
 The special test
 .Em x
 always evaluates to true.
-.Dv message
+.It Dv message
 The message to be printed if the comparison succeeds.
 If the string contains a
 .Xr printf 3


Bug#499628: oneisenough: Typo in package description

2008-09-20 Thread Ori Avtalion
Package: oneisenough
Version: 0.40-1
Severity: minor

The package descrption reads:
... a communist balls needs to convert capitalist balls ...

It should read a communist ball or communist balls



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#492476: bash-completion: support .epub extension with unzip

2008-07-26 Thread Ori Avtalion
Package: bash-completion
Version: 20080705
Severity: wishlist

..epub is the suggested extension for ePub files - a format for e-books.
It is a ZIP container, and should be recognized by the unzip autocompletion.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#482680: RFP: calibre -- e-book library management application

2008-05-24 Thread Ori Avtalion
Package: wnpp
Severity: wishlist


* Package name: calibre
  Version : 0.4.58
  Upstream Author : Kovid Goyal kovid at kovidgoyal net
* URL : http://calibre.kovidgoyal.net
* License : GPL
  Programming Lang: Python
  Description : e-book library management application

Calibre is an e-book library management application, that can also
interface with the Sony Reader devices (PRS-500 and PRS-505).

It also includes command line tools to convert various formats into the
proprietary Sony LRF format, the ability to periodically fetch news
feeds and upload to the device, and a GUI that allows easy access to
those features.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444962: monop: program name collides with /usr/bin/monop

2007-10-02 Thread Ori Avtalion
Package: bsdgames
Version: 2.17-8
Severity: minor

Both bsdgames and mono-mcs have a program called monop (one in
/usr/games and one in /usr/bin).

According to the Debian Policy Manual 10.1:
Two different packages must not install programs with different
functionality but with the same filenames. [...] If this case happens,
one of the programs must be renamed.

http://www.debian.org/doc/debian-policy/ch-files.html

-- System Information:
Debian Release: lenny/sid
  APT prefers gutsy-updates
  APT policy: (500, 'gutsy-updates'), (500, 'gutsy-security'), (500, 'gutsy')



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441334: hdate-applet: typo in control file

2007-09-08 Thread Ori Avtalion
Package: hdate-applet
Severity: minor

The control file has Hompeage instead of Homepage


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#438615: RFP: sshmenu -- panel applet for connecting to hosts using SSH

2007-08-18 Thread Ori Avtalion
Package: wnpp
Severity: wishlist


* Package name: sshmenu
  Version : 3.13
  Upstream Author : Grant McLean [EMAIL PROTECTED]
* URL : http://www.mclean.net.nz/ruby/sshmenu/
* License : Custom - BSD-style
  Programming Lang: Ruby
  Description : panel applet for connecting to hosts using SSH

sshmenu is a standalone application which puts all your most frequently
used SSH connections on a menu. Clicking on an entry opens up a terminal
with a connection. Connections can be customized to use specific
gnome-terminal profiles.

-- System Information:
Debian Release: 4.0
  APT prefers feisty-updates
  APT policy: (500, 'feisty-updates'), (500, 'feisty-security'), (500, 'feisty')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.20-16-generic
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#424235: libsqlite3-dev: pkg-config info file lists out-of-date version

2007-05-15 Thread Ori Avtalion
Package: libsqlite3-dev
Version: 3.3.16-1
Severity: minor

The usr/lib/pkgconfig/sqlite3.pc file lists the library version as 3.3
while the current library is really 3.3.16.

This makes dependency rules such as sqlite3 = 3.3.9 fail when they
shouldn't.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#414747: RFP: iat -- Converts many CD-ROM image formats to iso

2007-03-13 Thread Ori Avtalion
Package: wnpp
Severity: wishlist


* Package name: iat
  Version : v0.1.3
  Upstream Author : Salvatore Santagati [EMAIL PROTECTED] 
* URL : http://iat.berlios.de/
* License : GPL
  Programming Lang: C
  Description : Converts many CD-ROM image formats to iso

iat (Iso9660 Analyzer Tool) is a tool for detecting the structure of many types
of CD-ROM image file formats, such as BIN, MDF, PDI, CDI, NRG, and B5I, and
converting them into ISO-9660.

-- System Information:
Debian Release: testing/unstable
  APT prefers edgy-updates
  APT policy: (500, 'edgy-updates'), (500, 'edgy-security'), (500, 'edgy')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17-11-generic
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#410942: scripts should be executable

2007-02-14 Thread Ori Avtalion
Package: libxml-encoding-perl
Version: 1.01-8
Severity: minor

The file /usr/share/doc/libxml-encoding-perl/examples/make_encmap
should be +x.

/usr/share/doc/libxml-encoding-perl/examples/compile_encoding.gz should
be gunzipped and +x as well.

These two files are one of the main uses of the package - making perl
..enc files - and therefore should be more accessible.

Just a thought - according to the debian policy manual, the examples/
dir is there for the benefit of the system administrator and
users as documentation only - could these two scripts fit in /usr/bin?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#409484: liballegro recommends the defunct timidity-patches

2007-02-03 Thread Ori Avtalion
Package: liballegro4.2
Version: 2:4.2.0-5

The package recommends the defunct timidy-patches (only available in
oldstable).

The debian README also states:
Allegro should have rational settings by default. To enable DIGMID
(software midi), please install timidity-patches package.

This is misleading since no such package exist.

Perhaps the freepats package could be used as a replacement for
timidity-patches. when liballegro installs, it could compile a patches
file from freepats and modify /etc/allegro accordingly.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#400614: package contains CVS meta-data

2006-11-27 Thread Ori Avtalion
Package: uqm
Version: 0.5.0-2
Severity: minor

The following files should be removed from the package:
usr/share/games/uqm/content/CVS/Entries
usr/share/games/uqm/content/CVS/Entries.Static
usr/share/games/uqm/content/CVS/Repository
usr/share/games/uqm/content/CVS/Root
usr/share/games/uqm/content/CVS


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#350129: The bug was fixed, according to the uqm bug db

2006-11-27 Thread Ori Avtalion
Can you update the debian package please?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#400614: package contains CVS meta-data

2006-11-27 Thread Ori Avtalion
Joey Hess wrote:
 [EMAIL PROTECTED]:~dpkg -L uqm | grep CVS
 zsh: done   dpkg -L uqm | 
 zsh: exit 1 grep CVS
 [EMAIL PROTECTED]:~dpkg -l uqm
 Desired=Unknown/Install/Remove/Purge/Hold
 | Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
 |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: 
 uppercase=bad)
 ||/ Name   VersionDescription
 +++-==-==-
 ii  uqm0.5.0-2The Ur-Quan Masters - An inter-galatic adven
 [EMAIL PROTECTED]:~dpkg -S /usr/share/games/uqm/content/CVS
 dpkg: /usr/share/games/uqm/content/CVS not found.
 zsh: exit 1 dpkg -S /usr/share/games/uqm/content/CVS
 

The i386 package is ok (I forgot to check it), but the files appear in
the *inhale* alpha, amd64, arm, hppa, ia64, m68k, mips, mipsel, powerpc,
s390 and sparc arch packages.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]