Bug#946214: chicken: FTBFS on armel

2019-12-05 Thread Davide Puricelli
On Thu, Dec 05, 2019 at 04:05:52PM +, Ivo De Decker wrote:
> package: src:chicken
> version: 5.1.0-1
> severity: serious
> tags: ftbfs
> 
> Hi,
> 
> The latest upload of chicken to unstable fails on armel:
> 
> https://buildd.debian.org/status/package.php?p=chicken
> 
> Note that, in addiotion to a fix for this FTBFS, a source-only upload is
> necessary to allow migration to testing (the last upload included binaries for
> amd64).
> 
> Cheers,
> 
> Ivo


Hello, I have being working on this issue with upstream and the new
upcoming release of Chicken (out in a few days) will address the build
error on armel.
Next upload will be source-only.

Regards,
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury



Bug#825724: chicken: diff for NMU version 4.9.0.1-1.1

2016-05-29 Thread Davide Puricelli
On Sun, May 29, 2016 at 11:02:47AM +0200, Tobias Frost wrote:
> Package: chicken
> Version: 4.9.0.1-1
> Severity: normal
> Tags: patch pending
> 
> Dear maintainer,
> 
> I've prepared an NMU for chicken (versioned as 4.9.0.1-1.1). The diff
> is attached to this message.
> 
> 
> Regards.

Hello Tobias,
could you please put this NMU on hold?

I'm planning an upload by myself this week... and, by the way, adding
chicken-bin to Build-Depends is wrong :)

Thanks,
Davide
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: PGP signature


Bug#771548: unblock: chicken/4.9.0.1

2014-11-30 Thread Davide Puricelli (evo)
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package chicken, version 4.9.0 comes with a
wrong C_MINOR_VERSION define that still refers to an old version,
see #768308 for reference.

As explained by an upstream developer into #768308 bug report the
chicken build process is peculiar, so I'm not attaching a debdiff between
the two releases (it'd look big even if it's not the case),
instead I'm attaching the diff between the two upstream releases.

Regards.


unblock chicken/4.9.0.1

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -ur chicken-4.9.0/NEWS chicken-4.9.0.1/NEWS
--- chicken-4.9.0/NEWS	2014-06-02 11:30:25.0 -0300
+++ chicken-4.9.0.1/NEWS	2014-06-07 09:58:37.0 -0300
@@ -1,3 +1,8 @@
+4.9.0.1
+
+- Runtime library
+  - C_MINOR_VERSION changed to 9; feature identifier chicken-4.8 = chicken-4.9
+
 4.9.0
 
 - Security fixes
diff -ur chicken-4.9.0/README chicken-4.9.0.1/README
--- chicken-4.9.0/README	2014-06-02 11:30:28.0 -0300
+++ chicken-4.9.0.1/README	2014-06-07 10:02:53.0 -0300
@@ -6,7 +6,7 @@
   (c) 2008-2014, The Chicken Team
   (c) 2000-2007, Felix L. Winkelmann
 
-  version 4.9.0
+  version 4.9.0.1
 
 
  1. Introduction
diff -ur chicken-4.9.0/buildversion chicken-4.9.0.1/buildversion
--- chicken-4.9.0/buildversion	2014-06-02 11:30:25.0 -0300
+++ chicken-4.9.0.1/buildversion	2014-06-07 10:02:53.0 -0300
@@ -1 +1 @@
-4.9.0
+4.9.0.1
\ No newline at end of file
diff -ur chicken-4.9.0/chicken.h chicken-4.9.0.1/chicken.h
--- chicken-4.9.0/chicken.h	2014-06-02 11:30:25.0 -0300
+++ chicken-4.9.0.1/chicken.h	2014-06-07 09:26:48.0 -0300
@@ -38,7 +38,7 @@
 #define ___CHICKEN
 
 #define C_MAJOR_VERSION   4
-#define C_MINOR_VERSION   8
+#define C_MINOR_VERSION   9
 
 #ifndef _ISOC99_SOURCE
 # define _ISOC99_SOURCE
diff -ur chicken-4.9.0/manual-html/The User's Manual.html chicken-4.9.0.1/manual-html/The User's Manual.html
--- chicken-4.9.0/manual-html/The User's Manual.html	2014-06-02 11:40:31.0 -0300
+++ chicken-4.9.0.1/manual-html/The User's Manual.html	2014-06-07 10:23:33.0 -0300
@@ -7,7 +7,7 @@
 meta name=viewport content=initial-scale=1 //html
 body
 div id=body
-div id=mainh2 id=sec:The_CHICKEN_User.27s_Manuala href=#sec:The_CHICKEN_User.27s_ManualThe CHICKEN User's Manual/a/h2pThis is the manual for Chicken Scheme, version 4.9.0/pdldta href=Getting%20started.htmlGetting started/a/dt
+div id=mainh2 id=sec:The_CHICKEN_User.27s_Manuala href=#sec:The_CHICKEN_User.27s_ManualThe CHICKEN User's Manual/a/h2pThis is the manual for Chicken Scheme, version 4.9.0.1/pdldta href=Getting%20started.htmlGetting started/a/dt
 ddWhat is CHICKEN and how do I use it?/dddta href=Basic%20mode%20of%20operation.htmlBasic mode of operation/a/dt
 ddCompiling Scheme files./dddta href=Using%20the%20compiler.htmlUsing the compiler/a/dt
 ddExplains how to use CHICKEN to compile programs and execute them./dddta href=Using%20the%20interpreter.htmlUsing the interpreter/a/dt
diff -ur chicken-4.9.0/tests/runtests.bat chicken-4.9.0.1/tests/runtests.bat
--- chicken-4.9.0/tests/runtests.bat	2014-06-02 11:30:25.0 -0300
+++ chicken-4.9.0.1/tests/runtests.bat	2014-06-07 09:29:00.0 -0300
@@ -20,6 +20,10 @@
 
 del /f /q *.exe *.so *.o *.import.* ..\foo.import.*
 
+echo  version tests ...
+%interpret% -s version-tests.scm
+if errorlevel 1 exit /b 1
+
 echo  compiler tests ...
 %compile% compiler-tests.scm
 if errorlevel 1 exit /b 1
diff -ur chicken-4.9.0/tests/runtests.sh chicken-4.9.0.1/tests/runtests.sh
--- chicken-4.9.0/tests/runtests.sh	2014-06-02 11:30:25.0 -0300
+++ chicken-4.9.0.1/tests/runtests.sh	2014-06-07 09:29:00.0 -0300
@@ -70,6 +70,8 @@
 
 rm -f *.exe *.so *.o *.import.* a.out ../foo.import.*
 
+echo  version tests ...
+$interpret -s version-tests.scm
 
 echo  compiler tests ...
 $compile compiler-tests.scm
Only in chicken-4.9.0.1/tests: version-tests.scm


Bug#689382: chicken-bin: New upstream version: 4.8.0

2012-11-14 Thread Davide Puricelli
On Tue, Nov 13, 2012 at 1:17 AM, Ivan Raikov rai...@oist.jp wrote:


 Hello,

   It has been now some time since Chicken 4.8.0 was released. This
 version appears quite stable, and including it in Debian should not
 cause problems. Please let me know if the Chicken community can help
 with anything. Thanks,

   -Ivan Raikov

Hello,
I plan to release a 4.8.0 package in a few days, thanks for your interest.

Regards,
Davide
--
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


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



Bug#632533: xchat: Getting rid of unneeded *.la

2011-07-05 Thread Davide Puricelli
On Sun, Jul 03, 2011 at 12:37:38PM +0200, Luk Claes wrote:
 Package: xchat
 Version: 2.8.8-3
 Severity: normal
 Tags: patch pending
 
 Dear maintainer,
 
 I've prepared an NMU for xchat (versioned as 2.8.8-3.1) and
 uploaded it to DELAYED/10. Please feel free to tell me if I
 should delay it longer/shorter.
 
 The patch below avoids shipping .la files.

Hello Luk,
you can go ahead with it, even if you could have contacted me before,
it's a not a RC bug and I could have fixed it with a future regular
upload.

Regards,
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#610176: O: doc-linux-it -- Linux HOWTOs in Italian

2011-01-15 Thread Davide Puricelli
Package: wnpp
Severity: normal

I intend to orphan the doc-linux-it package.

The package description is:
 This package installs the Italian translations of Linux HOWTOs
 (made by the ILDP project) on your Debian system.
 The version number reflects the packaging date.
 .
 All files are available at ftp://ftp.pluto.linux.it/pub/pluto/ildp/HOWTO/
 (with versions in ascii, html, dvi, ps and sgml formats).

-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury



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



Bug#602348: chicken-install: cannot load extension: setup-download

2010-11-05 Thread Davide Puricelli
On Thu, Nov 04, 2010 at 12:32:17AM +0100, Andreas Rottmann wrote:
 Package: chicken-bin
 Version: 4.5.0-1
 Severity: normal
 
 chicken-install seems to always fail like this:
 
 ,
 | ro...@delenn:~% chicken-install -help
 | 
 | Error: (require) cannot load extension: setup-download

Hello Andreas,

chicken-bin package comes with a /var/lib/chicken/5/setup-download.so
file, do you have it?
And what about the other .so files in the same directory?

Regards,
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#407926: xchat: 407926: two patches

2010-10-07 Thread Davide Puricelli
tags 407926 - pending
thanks

Hello Paul,

first of all thanks for your work, unfortunately xchat 2.8.8 doesn't
seem to build successfully with them applied, could you please provide
a new one?
Thanks in advance.

Regards,
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#565380: (no subject)

2010-06-24 Thread Davide Puricelli
tags 565380 + pending
thanks

Thanks, I'll update it in next package revision.

Regards,
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury



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



Bug#498785: closed by Davide Puricelli e...@debian.org ()

2010-06-19 Thread Davide Puricelli
On Sat, Jun 19, 2010 at 03:36:19PM +0200, Manuel Bilderbeek wrote:
 Tested some more: any setting I change isn't saved.
 
 When using strace, I see this:
 
 
 open(/home/manuel/.xchat2/xchat.conf, O_RDONLY) = 6
 
 that's the only line with xchat.conf... so, the file is opened read
 only and never written to. I'm not surprised the setting is not
 remembered...

Hello,

I ran strace and this is what I'm getting from it when I change that
setting:

1072:open(/home/evo/.xchat2/xchat.conf, O_RDONLY) = 6
9065:open(/home/evo/.xchat2/xchat.conf.new, O_WRONLY|O_CREAT|O_TRUNC, 0600) = 
10
9242:rename(/home/evo/.xchat2/xchat.conf.new, /home/evo/.xchat2/xchat.conf) 
= 0

I guess it can't open the new file before saving it to xchat.conf, could
you investigate why?

Regards, 
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#535950: (no subject)

2010-06-19 Thread Davide Puricelli
tags 535950 - moreinfo + confirmed pending
thanks

Hello,

I successfully tracked down this bug, soon I'll upload a new
package to fix it. 

Regards,
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#536070: (no subject)

2010-06-19 Thread Davide Puricelli
tags 536070 + pending
thanks

Hello,

I'll upload a new package with an up-to-date manpage soon.

Regards,
-- 
Davide Puricelli
http://www.puricelli.info | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury



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



Bug#578440: qviaggiatreno: segmentation fault

2010-06-17 Thread Davide Puricelli
On Tue, Apr 20, 2010 at 12:23:39AM +0200, mrmonkey wrote:
 Package: qviaggiatreno
 Version: 2009.09-1
 Severity: important
 
 When I launch by terminal qviaggiatreno, I've like answer Segmentation 
 fault,
 and not any other thing occur.

Hello,

first of all sorry for my late reply.
Do you have the segmentation fault every time you try to run it?

Regards, 
-- 
Davide Puricelli
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#582335: xchat: please build against tcl 8.5 in experimental

2010-06-17 Thread Davide Puricelli
On Wed, May 19, 2010 at 08:34:30PM -0500, Jonathan Nieder wrote:
 Source: xchat
 Version: 2.8.6-6
 Severity: wishlist
 Tags: patch
 User: pkg-tcltk-de...@lists.alioth.debian.org
 Usertags: UpgradeDefaultTclTkTo85
 
 Hi Davide and Bart,
 
 To help find problems that arise before making this change for real,
 it would be nice to have most packages depending on tcl-dev built
 against version 8.5 in experimental.

Hello Jonathan,

first of all sorry for my late reply.

Your report was very detailed and I was able to implement some of your
changes in the new package I just uploaded to unstable, but I'm a bit
confused about tcl8.5 experimental status.

It looks like that experimental comes with tcl and tcl-dev
metapackages, but tcl8.5 package is not present there, should I use the
unstable one?

Thanks in advance.

Regards,
-- 
Davide Puricelli
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#576815: chicken-bin: Chicken can't load just installed extension

2010-04-14 Thread Davide Puricelli
On Wed, Apr 07, 2010 at 04:51:01PM +0400, Paul Romanchenko wrote:
 Package: chicken-bin
 Version: 4.4.0-1
 Severity: important

[snip]

 As you can see, directory /usr/lib/chicken/5 is not accessed rather
 /var/lib/chicken/5 is.
 This renders chicken some kind of unusable (without eggs).

Hello Paul,

there's an upstream bug in the chicken-install executable (ie. it's
ignoring how we set the VARDIR variable), a fixed package will be
uploaded in a couple of days, hopefully.

Thanks for your report.

Regards,
-- 
Davide Puricelli
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#562095: ITP: qviaggiatreno -- Qt tool to monitor Italian railway traffic

2009-12-22 Thread Davide Puricelli
Package: wnpp
Severity: wishlist
Owner: Davide Puricelli e...@debian.org

* Package name: qviaggiatreno
  Version : 2009.09
  Upstream Author : fra74 francesco@gmail.com
* URL : 
http://www.mediafire.com/?sharekey=949a1fb0ff23638175a4fc82078ae6c8be9e1f338bf00c9ece018c8114394287
* License : GPL
  Programming Lang: C++
  Description : Qt tool to monitor Italian railway traffic

QViaggiaTreno is a tool to monitor the Italian railway traffic. It is based
on Qt and it acts as a GUI for ViaggiaTreno, a web tool developed by Italian
Railways.



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



Bug#539841: Please package Chicken 4.1

2009-11-11 Thread Davide Puricelli
On Wed, Nov 11, 2009 at 10:33:20AM -0800, Thomas Bushnell BSG wrote:
 retitle 539841 Please package Chicken 4.2
 thanks
 
 Hi Davide; a few months ago I asked about packaging Chicken Scheme 4.1
 for Debian, and you said it would be ready in a few days.  Chicken 4.2
 is now out...  Is there an ETA?

Hi Thomas,

I uploaded 4.2.0-1 a week ago, the package is currently sitting in the
NEW queue, because of libchicken3 - libchicken4 transition, so just be
patient, I hope it can be accepted soon.

Cheers,

Davide
-- 
Davide Puricelli
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


pgpBJ9WwdGyPH.pgp
Description: PGP signature


Bug#553457: gnome-screensaver is uninstallable

2009-10-31 Thread Davide Puricelli
Package: gnome-screensaver
Version: 2.28.0-1
Severity: grave

Hi,

gnome-screensaver is uninstallable because it still depends on libgnomekbd3,
please rebuild it against libgnomekbd4.

Regards,

Davide


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

Kernel: Linux 2.6.31-gladstone6
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-screensaver depends on:
ii  dbus-x11   1.2.16-2  simple interprocess messaging syst
ii  gconf2 2.28.0-1  GNOME configuration database syste
ii  gnome-icon-theme   2.28.0-1  GNOME Desktop icon theme
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libc6  2.10.1-3  GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.16-2  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.82-2simple interprocess messaging syst
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.11-1  FreeType 2 font engine, shared lib
ii  libgconf2-42.28.0-1  GNOME configuration database syste
ii  libgl1-mesa-glx [libgl 7.6-1 A free implementation of the OpenG
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.22.2-2  The GLib library of C routines
ii  libgnome-menu2 2.28.0-1  an implementation of the freedeskt
pn  libgnomekbd2   none(no description available)
pn  libgnomekbdui2 none(no description available)
ii  libgtk2.0-02.18.3-1  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1 0.4.5-1   sends desktop notifications to a n
ii  libpam0g   1.1.0-4   Pluggable Authentication Modules l
ii  libpango1.0-0  1.26.0-1  Layout and rendering of internatio
ii  libpixman-1-0  0.16.2-1  pixel-manipulation library for X a
ii  libpng12-0 1.2.40-1  PNG library - runtime
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libx11-6   2:1.2.2-1 X11 client-side library
ii  libxcb-render-util00.3.6-1   utility libraries for X C Binding 
ii  libxcb-render0 1.4-1 X C Binding, render extension
ii  libxcb11.4-1 X C Binding
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.2.1-2 X11 Input extension library
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
pn  libxklavier12  none(no description available)
ii  libxml22.7.6.dfsg-1  GNOME XML library
ii  libxrandr2 2:1.3.0-2 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxss11:1.1.3-1 X11 Screen Saver extension library
ii  libxxf86misc1  1:1.0.1-3 X11 XFree86 miscellaneous extensio
ii  libxxf86vm11:1.0.2-1 X11 XFree86 video mode extension l
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

Versions of packages gnome-screensaver recommends:
ii  gnome-power-manager   2.28.1-2   power management tool for the GNOM
ii  libpam-gnome-keyring  2.28.1-1   PAM module to unlock the GNOME key
pn  rss-glx   none (no description available)

Versions of packages gnome-screensaver suggests:
pn  xscreensaver-data none (no description available)



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



Bug#553457: gnome-screensaver is uninstallable

2009-10-31 Thread Davide Puricelli
reopen 553457
thanks

On Sat, Oct 31, 2009 at 04:29:20PM +0100, Emilio Pozuelo Monfort wrote:
 Please mail debian-release@ for such things, this is not a bug in the package.

Sorry but I fail to see why this should be not a gnome-screensaver bug.

According to http://ftp-master.debian.org/removals.txt we have:

Removed the following packages from unstable:

libgnomekbd3 |   2.26.0-1 | alpha, amd64, armel, hppa, hurd-i386, i386,
ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc

--- Reason ---
[auto-cruft] NBS (was built by libgnomekbd)

The libgnomekbd source package now builds a libgnomekbd4 binary package,
so all the packages that still depend on the old libgnomekbd3 one should
update their Depends, no?

Regards,

Davide



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



Bug#539841: Please package Chicken 4.1

2009-08-04 Thread Davide Puricelli
On Mon, Aug 03, 2009 at 04:22:17PM -0700, Thomas Bushnell BSG wrote:
 Package: chicken
 Severity: wishlist
 
 Please package Chicken 4.1, just released.  (And 4.0 has been out for a
 while, and has lots of good stuff.)

Hello,
I'm working on a 4.1 package, it should be ready in a couple of days.

Regards,
-- 
Davide Puricelli, dpurice...@tin.it
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#529362: linuxfacile: includes non-removable, non-modifiable text

2009-05-27 Thread Davide Puricelli
On Wed, May 20, 2009 at 10:33:44PM +0200, Francesco Poli wrote:
 Good, I hope Daniele (and any other copyright holders) may be persuaded
 to re-license or dual-license under a good license, so that the manual
 may become clearly DFSG-free.
 
 Thanks for working on this issue.

Hi again,

I spoke with Daniele and we agreed to have linuxfacile removed from
Debian, the manual was written years ago and it's really outdated right
now, so this seems to be the best thing to do.

Maybe one day the manual will be updated (with a DFSG-compliant
license), and I'll be ready and glad to repackage it.

I'm keeping this bug open as reference until linuxfacile is removed. 

Regards,
-- 
Davide Puricelli, dpurice...@tin.it
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#530742: RM: linuxfacile -- ROM; Package is outdated and with a not DFSG-compliant license

2009-05-27 Thread Davide Puricelli (evo)
Package: ftp.debian.org
Severity: normal

Hello FTP Masters,

linuxfacile is an Italian documentation package but it's not getting updated
and his author agreed with me to remove it from Debian.
Furthermore it's licensed with a GFDL license with Book Cover exception,
therefore it can't remain into main.

Thanks in advance.

Davide



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



Bug#529362: linuxfacile: includes non-removable, non-modifiable text

2009-05-20 Thread Davide Puricelli
Hi Francesco,

thanks for your detailed report, I'll immediately contact Daniele Medri
and I'll keep you posted about this issue, I feel a bit ashamed that
I didn't notice the whole thing before.

Regards,
-- 
Davide Puricelli, dpurice...@tin.it
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


pgpuYDwBIjAxX.pgp
Description: PGP signature


Bug#509367: /usr/bin/csc conflict

2009-04-27 Thread Davide Puricelli
On Mon, Apr 27, 2009 at 01:43:00PM +0900, Seo Sanghyeon wrote:
 Can't you do something about this?
 
 IMHO, any .NET projects which care about Mono uses mcs or gmcs, so
 /usr/bin/csc is unnecessary. On the other hand, Chicken compiler is
 csc. It just is.

Hi, Mono developers agreed to rename their compiler, so we should just
wait until they fix it, hopefully it won't be a long time.

Regards,
-- 
Davide Puricelli, dpurice...@tin.it
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


pgper8oHXaLe9.pgp
Description: PGP signature


Bug#517896: (no subject)

2009-04-15 Thread Davide Puricelli
reopen 517896
thanks

Unfortunately xchat DBus service file is giving us some issues, so for
now I removed it from the package, I'll readd it when it'll be fixed.

Regards,
-- 
Davide Puricelli, dpurice...@tin.it
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#509367: chicken-bin: /usr/bin/csc conflicts with mono-devel

2009-03-30 Thread Davide Puricelli
Hi, sorry for delay, I just asked some advices about this issue on
debian-mentors mailing list, I have some doubts about the best way to
solve it, just stay tuned for more info.

Cheers,
-- 
Davide Puricelli, dpurice...@tin.it
Debian Developer: e...@debian.org | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#408331: new upstream version (2.8.0) available

2007-04-16 Thread Davide Puricelli
On Mon, Apr 16, 2007 at 09:52:49AM +0200, Sebastian Dröge wrote:
 Hi,
 is there any progress on this or did the maintainer just disappear or
 doesn't want the package anymore?
 
 There's now another two new upstream versions, the latest being 2.8.2.
 Please update.
 
 Bye

I'm here, working on it after etch release.

Regards,
-- 
Davide Puricelli, [EMAIL PROTECTED]
Debian Developer: [EMAIL PROTECTED] | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#189296: (no subject)

2006-04-24 Thread Davide Puricelli
severity 189296 serious
thanks

Hi, I'm upgrading the bug severity because chicken 1.63-2 built
successfully on m68k, but 2.2-1 failed; I hope 2.3-1 will build fine,
otherwise I'll investigate about the problem.

Regards,
-- 
Davide Puricelli, [EMAIL PROTECTED]
Debian Developer: [EMAIL PROTECTED] | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


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



Bug#337679: xchat: New upstream 2.6.0

2006-01-26 Thread Davide Puricelli
Hi, work in progress, stay tuned :)

Regards,
-- 
Davide Puricelli, [EMAIL PROTECTED]
Debian Developer: [EMAIL PROTECTED] | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature


Bug#330466: New revision

2005-10-01 Thread Davide Puricelli
Hi, I prepared a new revision of xchat 2.4.5 that should fix the issues
on powerpc, you can grab it from http://people.debian.org/~evo/upload
Please provide me with feedback about it, I don't have powerpc hardware
to test it.
Thanks in advance.

Regards,
-- 
Davide Puricelli, [EMAIL PROTECTED]
Debian Developer: [EMAIL PROTECTED] | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


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



Bug#330466: does not parse server replies correctly anymore

2005-09-30 Thread Davide Puricelli
You're right, there's a problem on powerpc arch, currently it's
solved on xchat CVS branch, I'll prepare a patch as soon as possible
(unfortunately SF CVS is currently down, you know, it's called
Murphy's law).
Thanks for report.

Regards,
-- 
Davide Puricelli, [EMAIL PROTECTED]
Debian Developer: [EMAIL PROTECTED] | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


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



Bug#291222: Delayed upload

2005-02-24 Thread Davide Puricelli
On Thu, Feb 24, 2005 at 10:51:04AM -0300, Leo Antunes wrote:
 Hi Evo
 
 Since there was no answer, I assume you must be busy, I uploaded
 Bluefish 1.0 to the 7 day delayed queue.
 If there's any problem let me know.

Yep, I'm still busy, thanks for your help.

Cheers,
-- 
Davide Puricelli, [EMAIL PROTECTED]
Debian Developer: [EMAIL PROTECTED] | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


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



Bug#291222: bluefish: New upstream version: 1.0

2005-01-20 Thread Davide Puricelli
On Wed, Jan 19, 2005 at 11:47:43AM -0200, Leo Costela wrote:
 Package: bluefish
 Version: 0.13-1
 Severity: wishlist
 
 A new upstream version is available at bluefish.sf.net (1.0).
 If you don't have time to upload it, tell me and I can do a quick NMU 
 (again =] ).

I won't have time to package it before Tuesday-Wednesday, if you want to
do a NMU is ok for me, even if .. well, maybe we could wait a bit :)

Cheers,
-- 
Davide Puricelli, [EMAIL PROTECTED]
Debian Developer: [EMAIL PROTECTED] | http://www.debian.org

Time looked like snow dropping silently into a black room -- Ray Bradbury


signature.asc
Description: Digital signature