Bug#697734: RM: huayra-icon-theme -- ROM/RoQA; Not part of Debian yet.

2013-01-08 Thread Mauro Lizaur
Package: ftp.debian.org
Severity: serious

Hello,
This package wasn't meant to be uploaded to Debian.
It was my mistake and I would like to be removed since it doesn't meet
the basic packaging standards (Description not in english, missing ITP,
etc).

It lays in NEW yet, so this should be removed as soon as you guys can.
http://ftp-master.debian.org/new/huayra-icon-theme_7.5-1.html

Thanks.

Saludos,
Mauro


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



Bug#587749: Upstream fixes available

2010-12-17 Thread Mauro Lizaur


2010-12-16, Robert Lange:

 Are there any plans to release an new debian package for  python-twitter
 with OAuth support?
 
 

Hi Robert,
Not for the stable release because of this oauth issue.
BTW: 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587749#20

One of the things that stoped me from finally uploading it
was the lack of oauth python library available on Debian,
which now is available [0], so I'll work/upload a new version 
of python-twitter the following days.

BTW, thanks for your support. You can always help by reporting 
bugs, writing examples and/or testing the library.

[0] http://packages.debian.org/python-oauth2  

Saludos,
Mauro

--
JID: lavaram...@nube.usla.org.ar | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1


signature.asc
Description: Digital signature


Bug#493212: trash-cli: output of 'df' misinterpreted on non-english systems or systems using long device names.

2010-09-06 Thread Mauro Lizaur
Hi Steve,
I wonder if you still need a sponsor or if you asked for this
package to be removed from «squeeze» (aka: stable release).

Saludos,
Mauro

--
JID: lavaram...@nube.usla.org.ar | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#595588: mtop: fails to install

2010-09-06 Thread Mauro Lizaur
Hi,
Adding a few checks in the post{inst,rm} scripts would prevent
the package of failing to install.
Something like this:

 is_mysql_running()
 {
   if [ -f /usr/bin/mysql ]; then
   if [ $(echo exit|LANG=C mysql -h ${mysql_server} -P 
  ${mysql_port} -u${root_mysql} ${mysqlpwd} 21|grep ^ERROR) !=  ]; 
   then
   echo WARNING: Can't connect to MySQL.;
   echo Perhaps you might want to use it other host?;
   fi
   fi
 }
[...]
   IMR=$(is_mysql_running)
   if [ $IMR !=  ]; then
   echo $IMR;
   else
   mysqlcmd=mysql -h ${mysql_server} -P ${mysql_port} -u${root_mysql} 
  ${mysqlpwd}
   if ${mysqlcmd} -B -e 'select user from user' mysql | grep -q 
  ^mysqltop$
   then
   echo User already exists;
   else
   create_user
   fi
   fi

I believe this could work since you can might have you DB in another
computer and not running locally. Otherwise, mtop should depend on 
mysql-server.

Also, I added dbconfig-common as a dependency to manage the DB, but
can be removed to solve this particular bug.

Anyway, I attached the diff hoping that it will explain the idea better
than me :-)

Saludos,
Mauro

--
JID: lavaram...@nube.usla.org.ar | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
diff -urNad mtop/mtop-0.6.6/debian/control mtop-modified/mtop-0.6.6/debian/control
--- mtop/mtop-0.6.6/debian/control	2010-09-07 01:07:54.0 +
+++ mtop-modified/mtop-0.6.6/debian/control	2010-09-07 00:41:16.0 +
@@ -8,7 +8,7 @@
 
 Package: mtop
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, libcurses-perl, libdbd-mysql-perl, libnet-perl, mysql-client
+Depends: ${perl:Depends}, ${misc:Depends}, libcurses-perl, libdbd-mysql-perl, libnet-perl, mysql-client, dbconfig-common
 Recommends: mysql-server
 Description: MySQL terminal based query monitor
  mtop (MySQL top) monitors a MySQL database showing the queries which
diff -urNad mtop/mtop-0.6.6/debian/mtop.postinst mtop-modified/mtop-0.6.6/debian/mtop.postinst
--- mtop/mtop-0.6.6/debian/mtop.postinst	2010-09-07 01:07:54.0 +
+++ mtop-modified/mtop-0.6.6/debian/mtop.postinst	2010-09-07 01:05:13.0 +
@@ -5,6 +5,17 @@
 
 set -e
 
+is_mysql_running()
+{
+	if [ -f /usr/bin/mysql ]; then
+		if [ $(echo exit|LANG=C mysql -h ${mysql_server} -P ${mysql_port} -u${root_mysql} ${mysqlpwd} 21|grep ^ERROR) !=  ]; 
+		then
+			echo WARNING: Can't connect to MySQL.;
+			echo Perhaps you might want to use it other host?;
+		fi
+	fi
+}
+
 get_config()
 {
 	db_get mtop/mysql_server
@@ -49,6 +60,10 @@
 configure)
 	# Source debconf library
 	. /usr/share/debconf/confmodule
+	. /usr/share/dbconfig-common/dpkg/postinst.mysql
+	if ! dbc_go mtop $@ ; then
+	echo 'Automatic configuration using dbconfig-common failed!'
+	fi
 	db_version 2.0
 
 	get_config
@@ -56,12 +71,17 @@
 	if [ $root_passwd != 'none' ]; then
 mysqlpwd=-p${root_passwd}
 fi
-mysqlcmd=mysql -h ${mysql_server} -P ${mysql_port} -u${root_mysql} ${mysqlpwd}
-	if ${mysqlcmd} -B -e 'select user from user' mysql | grep -q ^mysqltop$
-	then
-		echo User already exists;
+	IMR=$(is_mysql_running)
+	if [ $IMR !=  ]; then
+	echo $IMR;
 	else
+mysqlcmd=mysql -h ${mysql_server} -P ${mysql_port} -u${root_mysql} ${mysqlpwd}
+	if ${mysqlcmd} -B -e 'select user from user' mysql | grep -q ^mysqltop$
+	then
+		echo User already exists;
+	else
 		create_user
+	fi
 	fi
 ;;
 
diff -urNad mtop/mtop-0.6.6/debian/mtop.postrm mtop-modified/mtop-0.6.6/debian/mtop.postrm
--- mtop/mtop-0.6.6/debian/mtop.postrm	2010-09-07 01:07:54.0 +
+++ mtop-modified/mtop-0.6.6/debian/mtop.postrm	2010-09-07 01:06:26.0 +
@@ -5,6 +5,17 @@
 
 set -e
 
+is_mysql_running()
+{
+	if [ -f /usr/bin/mysql ]; then
+		if [ $(echo exit|LANG=C mysql -h ${mysql_server} -P ${mysql_port} -u${root_mysql} ${mysqlpwd} 21|grep ^ERROR) !=  ]; 
+		then
+			echo WARNING: Can't connect to MySQL.;
+			echo Perhaps you might want to use it other host?;
+		fi
+	fi
+}
+
 get_config()
 {
 	db_get mtop/mysql_server
@@ -45,6 +56,10 @@
 
 	if [ -f /usr/share/debconf/confmodule ]  [ -f /usr/bin/mysql ]; then
 		. /usr/share/debconf/confmodule
+		if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then
+		. /usr/share/dbconfig-common/dpkg/postrm.mysql
+		dbc_go mtop $@
+		fi
 		db_version 2.0
 
 		get_config
@@ -52,10 +67,15 @@
 		if [ $root_passwd != 'none' ]; then
 			mysqlpwd=-p${root_passwd}
 		fi
-		mysqlcmd=mysql -h ${mysql_server} -P ${mysql_port} -u${root_mysql} ${mysqlpwd}
-		if ${mysqlcmd} -B -e 'select user from user' mysql | grep -q ^mysqltop$
-		then
+		IMR=$(is_mysql_running)
+		if [ $IMR !=  ]; then
+		echo $IMR;
+		else
+		mysqlcmd=mysql -h ${mysql_server} -P ${mysql_port} -u${root_mysql} ${mysqlpwd}
+		if ${mysqlcmd} -B -e 'select 

Bug#587749: FYI

2010-08-27 Thread Mauro Lizaur
As a follow up about this bug:
The upstream maintainer released a new version which fixes this
and I plan to upload it after the Debian release (or perhaps, before
depending how long it will take :-))


Saludos,
Mauro

--
JID: lavaram...@nube.usla.org.ar | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#587749: upstream

2010-07-01 Thread Mauro Lizaur

Marcos Marado mindboosterno...@gmail.com ha escrito:


FYI,

A fix for this is being worked on upstream:
http://code.google.com/p/python-twitter/issues/detail?id=65

--
Marcos Marado



Yes, we are aware of this.
See:
http://lists.debian.org/debian-devel/2010/06/msg00559.html
http://lists.debian.org/debian-devel/2010/06/msg00641.html

Saludos,
Mauro
--
JID: lavaram...@nube.usla.org.ar | http://cacavoladora.org/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#485305: specto: diff for NMU version 0.2.2-3.1

2009-09-27 Thread Mauro Lizaur
tags 485305 + patch
thanks

Dear maintainer,

I've prepared an NMU for specto (versioned as 0.2.2-3.1) and
uploaded it to DELAYED/2. Please free to tell me if I should
delay it longer.


Saludos,
Mauro

--
JID: lavaram...@jabber.org | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
diff -u specto-0.2.2/debian/control specto-0.2.2/debian/control
--- specto-0.2.2/debian/control
+++ specto-0.2.2/debian/control
@@ -9,7 +9,7 @@
 
 Package: specto
 Architecture: all
-Depends: ${python:Depends}, python-gtk2, python-glade2, python-gnome2, python-gnome2-extras, zenity, gconf2, python-notify, python-dbus, librsvg2-common, gnome-icon-theme
+Depends: ${python:Depends}, python-gtk2, python-glade2, python-gnome2, zenity, gconf2, python-notify, python-dbus, librsvg2-common, gnome-icon-theme
 XB-Python-Version: ${python:Versions}
 Description: Unobtrusive update notification program
  Specto is a desktop application that will watch any user-specified events
diff -u specto-0.2.2/debian/changelog specto-0.2.2/debian/changelog
--- specto-0.2.2/debian/changelog
+++ specto-0.2.2/debian/changelog
@@ -1,3 +1,10 @@
+specto (0.2.2-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Dropping dependency on python-gnome2-extras (Closes: #485305)
+
+ -- Mauro Lizaur ma...@debian.org  Sun, 27 Sep 2009 15:17:09 -0300
+
 specto (0.2.2-3) unstable; urgency=low
 
   * debian/control:


signature.asc
Description: Digital signature


Bug#478453: gdesklets: should use python-numpy instead of python-n

2009-09-27 Thread Mauro Lizaur

 From: Karl Ferdinand Ebert kfeb...@gmail.com
 To: 478...@bugs.debian.org
 Subject: Re: Bug#478453: gdesklets: should use python-numpy instead of 
 python-n
 um{eric,array}
 Date: Sun, 27 Sep 2009 09:46:56 +0200
 [Message part 1 (text/plain, inline)]
 Tags: patch
 
 Hi,
 
 I switched  dependency on python-numeric to python-numpy because codebase
 contains already a import case for numpy and bumped to a newer standard
 version but some effort has to be taken to fix lintian warnings. Nevertheless
 here the link to my non-maintainer package upload:
 
 http://mentors.debian.net/debian/pool/main/p/pykaraoke/pykaraoke_0.7.1-1.1.dsc

Hi there,
Perhaps you might want to commit the changes that you've made to the PAPT svn 
to avoid stepping over other people's work (or the other way around).

Saludos,
Mauro

--
JID: lavaram...@jabber.org | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#543011: python-facebook: diff for NMU version 0.svn20090724-1.1

2009-09-21 Thread Mauro Lizaur
tags 543011 + patch
kthxbye

Hi,
I've seen this bug for a couple of weeks and I wonder if you mind if I do
a NMU to close this. I'm asking because this bug doesn't require much work
and perhaps you've been busy.
Either way, I'll attach a debdiff with the changes made to solve this.


Saludos,
Mauro

--
JID: lavaram...@jabber.org | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
diff -u python-facebook-0.svn20090724/debian/rules python-facebook-0.svn20090724/debian/rules
--- python-facebook-0.svn20090724/debian/rules
+++ python-facebook-0.svn20090724/debian/rules
@@ -3,17 +3,15 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-include /usr/share/dpatch/dpatch.make
-
 PYVERS	= $(shell pyversions -rv)
 
 build: $(PYVERS:%=build-stamp-py%)
-build-stamp-py%: patch-stamp
+build-stamp-py%:
 	dh_testdir
 	python$* setup.py build
 	touch $@
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 	rm -rf build build-stamp*
diff -u python-facebook-0.svn20090724/debian/changelog python-facebook-0.svn20090724/debian/changelog
--- python-facebook-0.svn20090724/debian/changelog
+++ python-facebook-0.svn20090724/debian/changelog
@@ -1,3 +1,11 @@
+python-facebook (0.svn20090724-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Removed the include dpatch line and all the patching
+references/instances on the debian/rules file. (Closes: #543011)
+
+ -- Mauro Lizaur ma...@cacavoladora.org  Mon, 21 Sep 2009 06:39:43 -0300
+
 python-facebook (0.svn20090724-1) unstable; urgency=low
 
   * Update homepage to new github home


signature.asc
Description: Digital signature


Bug#485197: bclock: diff for NMU version 1.0-12.1

2009-08-02 Thread Mauro Lizaur
On Mon, 03 Aug 2009, Luca Falavigna wrote:

  Here's a debdiff attached of a NMU to close this bug.
 
 Please use 1.0-12.1 as version, see Developers' reference, 5.11.2.
 

Right, my bad, sorry.

  BTW, I was about to remove the obsolote build-dep on
  x-dev, but this should be done when orphaned, may be
  it's time to do it?
 
 It could save time from doing another NMU and it's safe, so I'd say to
 go for it in a single upload right now.
 

Alright, I'll update this nmu and send back the diff with these changes.

Saludos,
Mauro

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#485197: bclock: diff for NMU version 1.0-12.1

2009-08-02 Thread Mauro Lizaur
Hi there,
I updated the nmu and made both changes described in previous emails.
Also, I uploaded this to mentors in case somebody wants to upload it.

Saludos,
Mauro

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
diff -u bclock-1.0/debian/menu bclock-1.0/debian/menu
--- bclock-1.0/debian/menu
+++ bclock-1.0/debian/menu
@@ -1,3 +1,3 @@
-?package(bclock):needs=X11 section=Apps/Tools\
+?package(bclock):needs=X11 section=Applications/Tools\
   hints=Clocks longtitle=Bezier Clock\
   title=bclock command=/usr/bin/bclock
diff -u bclock-1.0/debian/changelog bclock-1.0/debian/changelog
--- bclock-1.0/debian/changelog
+++ bclock-1.0/debian/changelog
@@ -1,3 +1,14 @@
+bclock (1.0-12.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Replaced the build-dependency on xutils by xutils-dev to fix the
+FTBFS because of the use of imake now shipped by xutils-dev.
+(Closes: #485197)
+  * Also removed the obsolete build-dep on x-dev.
+  * Updated the menu file to use 'Applications' insted of 'Apps'
+
+ -- Mauro Lizaur ma...@cacavoladora.org  Sun, 02 Aug 2009 22:38:37 -0300
+
 bclock (1.0-12) unstable; urgency=low
 
   * xlibs-dev transition (Closes: #346633)
diff -u bclock-1.0/debian/control bclock-1.0/debian/control
--- bclock-1.0/debian/control
+++ bclock-1.0/debian/control
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Teemu Hukkanen tjhuk...@iki.fi
-Build-Depends: libx11-dev, libxext-dev, libxkbfile-dev, libxmu-dev, libxt-dev, x-dev, xutils
+Build-Depends: libx11-dev, libxext-dev, libxkbfile-dev, libxmu-dev, libxt-dev, xutils-dev
 Standards-Version: 3.6.2.0
 
 Package: bclock


Bug#528738: patch is wrong

2009-07-31 Thread Mauro Lizaur

Hi Francesco,
seems like you made the patches the other way around.
See:

  diff -u codeville-0.8.0/debian/control codeville-0.8.0/debian/control
  --- codeville-0.8.0/debian/control
  +++ codeville-0.8.0/debian/control
  @@ -4,8 +4,7 @@
   Maintainer: Michael Janssen jamu...@debian.org
   Uploaders: Chad Walstrom che...@debian.org
   Build-Depends: cdbs (= 0.4.43), python-all-dev (= 2.3.5-11), debhelper (= 
5.0.37.2), python-support (= 0.3)
  -Build-Depends-Indep: lynx
  -Standards-Version: 3.8.1
  +Standards-Version: 3.7.3.0



Saludos,
Mauro

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#523107: python-constraint: package should be names python-logilab-constraint

2009-07-30 Thread Mauro Lizaur
tags 523107 + pending
thanks

The modifications required to close this bug are available in
the dpmt svn repository.

Saludos,
Mauro

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#534022: Diff with changes to be applied to debian/rules

2009-07-24 Thread Mauro Lizaur
tags 534022 + patch
thanks

Hello,
These changes (in the attach) are needed in the debian/rules 
file to avoid copying a non-existant file, this happens because the 
paths of these files were changed in the libtoolpackage.

Regards,
Mauro

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
--- rules~	2009-07-24 14:17:01.0 -0300
+++ rules	2009-07-24 14:18:27.0 -0300
@@ -40,8 +40,8 @@
 	ln -sf /usr/share/misc/config.sub admin
 	ln -sf /usr/share/misc/config.guess admin
 
-	cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh
-	cp -f /usr/share/libtool/libtool.m4 admin/libtool.m4.in
+	cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
+	cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
 
 	make -f Makefile.cvs
 	touch $@


Bug#485197: bclock: diff for NMU version 1.0-12.1

2009-07-18 Thread Mauro Lizaur
tags 485197 + patch
thanks

Hello,
Here's a debdiff attached of a NMU to close this bug.

BTW, I was about to remove the obsolote build-dep on
x-dev, but this should be done when orphaned, may be
it's time to do it?

Regards,
Mauro

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
diff -u bclock-1.0/debian/changelog bclock-1.0/debian/changelog
--- bclock-1.0/debian/changelog
+++ bclock-1.0/debian/changelog
@@ -1,3 +1,12 @@
+bclock (1.0-12+nmu1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Replaced the build-dependency on xutils by xutils-dev to fix the
+FTBFS because of the use of imake now shipped by xutils-dev.
+(Closes: #485197)
+
+ -- Mauro Lizaur ma...@cacavoladora.org  Sun, 19 Jul 2009 01:40:34 -0300
+
 bclock (1.0-12) unstable; urgency=low
 
   * xlibs-dev transition (Closes: #346633)
diff -u bclock-1.0/debian/control bclock-1.0/debian/control
--- bclock-1.0/debian/control
+++ bclock-1.0/debian/control
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Teemu Hukkanen tjhuk...@iki.fi
-Build-Depends: libx11-dev, libxext-dev, libxkbfile-dev, libxmu-dev, libxt-dev, x-dev, xutils
+Build-Depends: libx11-dev, libxext-dev, libxkbfile-dev, libxmu-dev, libxt-dev, x-dev, xutils-dev
 Standards-Version: 3.6.2.0
 
 Package: bclock


Bug#518861: nmudiff fixing this bug.

2009-05-31 Thread Mauro Lizaur
On Sat, 30 May 2009, Ana Guerrero wrote:

 On Tue, May 19, 2009 at 06:39:41PM +0200, Ana Guerrero wrote:
  On Tue, May 19, 2009 at 12:22:06AM -0300, Mauro Lizaur wrote:
   tags 518861 + patch
   
   Hi, i've prepared a nmu to fix this bug.
   See the attach with the changes.
  
  
  Nice!
  But do not NMU this yet. Actually, I think it is about time to think in a QA
  upload and orphan it. Hanna, what do you think?
 
 
 I mailed hanna privately to another email address I was told she is using now,
 but no answer. The email address she is currently using to maintain her
 packages does not longer work.
 Orphan time, I'm afraid :(
 Mauro, could you prepare a QA upload addressing this bug report (and others if
 it possible), and orphaning the package? thanks =)
 
 Ana
 

Hello,
Sure, i'll be working on this the following days.

Bye,
Mauro


-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#518861: nmudiff fixing this bug.

2009-05-18 Thread Mauro Lizaur
tags 518861 + patch

Hi, i've prepared a nmu to fix this bug.
See the attach with the changes.

Thanks

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
diff -u didiwiki-0.5/debian/rules didiwiki-0.5/debian/rules
--- didiwiki-0.5/debian/rules
+++ didiwiki-0.5/debian/rules
@@ -7 +7 @@
-	dh_install -m 644 debian/styles.css etc/didiwiki/
+	dh_install debian/styles.css debian/etc/didiwiki/
diff -u didiwiki-0.5/debian/changelog didiwiki-0.5/debian/changelog
--- didiwiki-0.5/debian/changelog
+++ didiwiki-0.5/debian/changelog
@@ -1,3 +1,12 @@
+didiwiki (0.5-5+nmu2) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Removed the non-existant '-m 644' option of dh_install from
+debian/rules. (Closes: #518861)
+  * Urgency bumped to 'High' because it closes a RC Bug.
+
+ -- Mauro Lizaur ma...@cacavoladora.org  Mon, 18 May 2009 11:01:54 -0300
+
 didiwiki (0.5-5.1) unstable; urgency=low
 
   * Non-maintainer upload.


Bug#528738: codeville: missing Build-Dependency

2009-05-14 Thread Mauro Lizaur
Package: codeville
Source: codeville
Version: 0.8.0-1
Justification: no longer builds from source
Severity: serious

This package misses 'lynx' from the build-deps, which is required to build the 
documentation.


Quoting the Source part of debian/control:

 Source: codeville
 Section: devel
 Priority: optional
 Maintainer: Michael Janssen jamu...@debian.org
 Uploaders: Chad Walstrom che...@debian.org
 Build-Depends: cdbs (= 0.4.43), python-all-dev (= 2.3.5-11), debhelper (= 
 5.0.37.2), python-support (= 0.3)
 Standards-Version: 3.7.3.0


And the doc-update-stamp part of debian/rules

 doc-update-stamp:
 @echo Fetching documentation from site and wiki.
 lynx -dump http://codeville.org/news.php  debian/NEWS.upstream
 lynx -dump http://codeville.org/doc//QuickStartGuide  
 debian/QuickStartGuide.txt
 lynx -source http://codeville.org/doc//QuickStartGuide  
 debian/QuickStartGuide.html
 lynx -dump http://codeville.org/doc/ServerReference  
 debian/ServerReference.txt
 lynx -source http://codeville.org/doc/ServerReference  
 debian/ServerReference.html
 lynx -dump http://codeville.org/doc/ClientReference  
 debian/ClientReference.txt
 lynx -source http://codeville.org/doc/ClientReference  
 debian/ClientReference.html
 lynx -dump http://codeville.org/doc/ToDoList  debian/ToDoList.txt
 lynx -source http://codeville.org/doc/ToDoList  debian/ToDoList.html
 :  $@


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#506811: pyscrabble-server: Permission denied to write pyscrabble.log

2008-11-24 Thread Mauro Lizaur
Package: pyscrabble-server
Version: 1.6.2-3
Severity: grave
Justification: renders package unusable


Everytime i try to execute pyscrabble-server i get the following error:

[20:51:16] terminaldelmal:~$ pyscrabble-server
Traceback (most recent call last):
  File /usr/games/pyscrabble-server, line 98, in module
x = ServerConsole()
  File /usr/games/pyscrabble-server, line 24, in __init__
self.configure()
  File /usr/games/pyscrabble-server, line 84, in configure
filemode='a')
  File /usr/lib/python2.5/logging/__init__.py, line 1240, in basicConfig
hdlr = FileHandler(filename, mode)
  File /usr/lib/python2.5/logging/__init__.py, line 770, in __init__
stream = open(filename, mode)
IOError: [Errno 13] Permission denied: '/var/log/pyscrabble/pyscrabble.log'

I tried changing the owner of this file (me:me), and i'm still getting the 
same error.
Also, i tried executing it as root (not the brightest ideas, but..) and i
got this:

[20:53:35] terminaldelmal:~# pyscrabble-server
bash: pyscrabble-server: command not found


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages pyscrabble-server depends on:
ii  adduser 3.110add and remove users and groups
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  pyscrabble-common   1.6.2-3  a multiplayer scrabble implementat
ii  python  2.5.2-3  An interactive high-level object-o
ii  python-central  0.6.8register and build utility for Pyt
ii  python-nevow0.9.31-3 Web application templating system 
ii  python2.4-zodb [python-zodb 1:3.6.0-2+b1 set of tools for using the Zope Ob

pyscrabble-server recommends no packages.

Versions of packages pyscrabble-server suggests:
ii  pyscrabble1.6.2-3a multiplayer scrabble implementat

-- no debconf information

-- 
JID: [EMAIL PROTECTED] | http://lusers.com.ar/
work: [EMAIL PROTECTED]   | http://gcoop.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1



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



Bug#482140: Updating from etch to lenny on 2008.10.13

2008-10-14 Thread Mauro Lizaur
Happened the same thing as many people on this bug report:

1. Installed etch from DVD.

2. Updated the package list for Etch
   # apt-get update

3. Installed the newest versions for everything installed on Etch.
   # apt-get dist-upgrade

4. Change sources.list to get packages from Lenny
   # sed -i -e 's/etch/lenny/g' /etc/apt/sources.list

5. Update the package list for Lenny
   # apt-get update

6. Dist-Upgrade to Lenny.
   # apt-get dist-upgrade

7. Finishes to download packages and start to install them, everything
   works fine until dockbook-xml package is being installed:

Configurando docbook-xml (4.5-5) ...
update-xmlcatalog: error: entity already registered
dpkg: error al procesar docbook-xml (--configure):
 el subproceso post-installation script devolvió el código de salida de 
error 1
dpkg: problemas de dependencias impiden la configuración de scrollkeeper:
 scrollkeeper depende de docbook-xml (= 4.2-11); sin embargo:
 El paquete `docbook-xml' no está configurado todavía.
dpkg: error al procesar scrollkeeper (--configure):
 problemas de dependencias - se deja sin configurar
dpkg: problemas de dependencias impiden la configuración de 
gnome-panel-data:
 gnome-panel-data depende de scrollkeeper; sin embargo:
 El paquete `scrollkeeper' no está configurado todavía.
dpkg: error al procesar gnome-panel-data (--configure):
 problemas de dependencias - se deja sin configurar
Configurando libgnome-window-settings1 (1:2.22.2.1-2) ...
Configurando libgnomekbd2 (2.22.0-1) ...
Configurando libgnomekbdui2 (2.22.0-1) ...
Configurando libnautilus-extension1 (2.20.0-7) ...
Configurando libslab0 (0.9.8.svn.20070430-1.1) ...
dpkg: problemas de dependencias impiden la configuración de capplets-data:
 capplets-data depende de scrollkeeper; sin embargo:
 El paquete `scrollkeeper' no está configurado todavía.
dpkg: error al procesar capplets-data (--configure):
 problemas de dependencias - se deja sin configurar
Configurando gnome-settings-daemon (2.22.2.1-1) ...
dpkg: problemas de dependencias impiden la configuración de 
gnome-control-center:
 gnome-control-center depende de capplets-data (= 1:2.22); sin embargo:
 El paquete `capplets-data' no está configurado todavía.
 gnome-control-center depende de capplets-data ( 1:2.23); sin embargo:
 El paquete `capplets-data' no está configurado todavía.
dpkg: error al procesar gnome-control-center (--configure):
 problemas de dependencias - se deja sin configurar
Configurando gnome-about (2.22.3-2) ...
dpkg: problemas de dependencias impiden la configuración de gnome-panel:
 gnome-panel depende de gnome-panel-data (= 2.20); sin embargo:
 El paquete `gnome-panel-data' no está configurado todavía.
 gnome-panel depende de gnome-panel-data ( 2.21); sin embargo:
 El paquete `gnome-panel-data' no está configurado todavía.
 gnome-panel depende de gnome-control-center (= 1:2.8.2-3); sin embargo:
 El paquete `gnome-control-center' no está configurado todavía.
dpkg: error al procesar gnome-panel (--configure):
 problemas de dependencias - se deja sin configurar
dpkg: problemas de dependencias impiden la configuración de bug-buddy:
 bug-buddy depende de scrollkeeper; sin embargo:
 El paquete `scrollkeeper' no está configurado todavía.
dpkg: error al procesar bug-buddy (--configure):
 problemas de dependencias - se deja sin configurar
dpkg: problemas de dependencias impiden la configuración de gnome-session:
 gnome-session depende de gnome-control-center (= 1:2.22); sin embargo:
 El paquete `gnome-control-center' no está configurado todavía.
dpkg: error al procesar gnome-session (--configure):
 problemas de dependencias - se deja sin configurar


scrollkeeper-update: deferring update until scrollkeeper is configured
dpkg: problemas de dependencias impiden la configuración de 
fast-user-switch-applet:
 fast-user-switch-applet depende de gnome-panel; sin embargo:
 El paquete `gnome-panel' no está configurado todavía.
dpkg: error al procesar fast-user-switch-applet (--configure):
 problemas de dependencias - se deja sin configurar
Configurando file-roller (2.22.4-2) ...
scrollkeeper-update: deferring update until scrollkeeper is configured
Configurando foomatic-db-gutenprint (5.0.2-4) ...
Configurando foomatic-db-hpijs (20080211-1) ...
Configurando python-foomatic (0.7.9.1) ...
Configurando foomatic-gui (0.7.9.1) ...
Configurando gcalctool (5.22.3-2) ...
scrollkeeper-update: deferring update until scrollkeeper is configured
Configurando gconf-editor (2.22.0-1) ...
scrollkeeper-update: deferring update until scrollkeeper is configured
Configurando gdebi (0.3.11debian1) ...
Configurando libgtksourceview2.0-0 (2.2.2-1) ...
Configurando python-gtksourceview2 (2.2.0-1+b1) ...
dpkg: problemas de dependencias 

Bug#382658: Not building for powerpc any more

2008-04-14 Thread Mauro Lizaur
On Mon, Apr 14, 2008 at 2:44 PM, El Amigo De La Playa
[EMAIL PROTECTED] wrote:
 Hi list,

 I am still a PPC Debian user (for my old G3 laptop), but I mostly run i386
 or amd64... I don't have a problem if the mailing list goes, as long as
 there's still forum support somewhere... Anyway, I just wanted to let you
 guys know that some of us PPC users are still around, wishing you all the
 best !


Hi all,
I'm another ppc user, i have an ibook g3 running debian testing.
Actually i'm using it to work, so  if Debian stop giving support to
powerpc-users would be a very bad thing
at least for me ;)

Regards,
Mauro

-- 
JID: [EMAIL PROTECTED]

BEGIN GEEK CODE BLOCK
Version: 3.12
GCM/O d-dpu$ s-:- a--a+++$ C+++
LU P+ L++ E W+++ N !o K w O !M !V
PS+ PE Y+ PGP t 5– X R tv++ b- DI D++ G+ e
h!h-- rr+++ y+
END GEEK CODE BLOCK