Bug#578086: qt4: Wrong translation name for Hebrew (s/iw/he/)

2010-04-16 Thread Diego Iastrubni
Package: qt4
Version: qt
Severity: important
Tags: l10n

The default Qt4 source names the Hebrew translation iw instead of he. This
breaks Qt4 applications (arora is one example), as the UI of the applicaiton is
Hebrew, but LTR (since the translation for Qt is not available).  Solution is
simple:  r...@new-host:/usr/share/qt4/translations# ln -s qt_iw.qm qt_he.qm
This is a hack, but it will not break working installation which depend on
Hebrew translation called with the wrong name.


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

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=he_IL.UTF-8, LC_CTYPE=he_IL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#576682: redmine: Migration from trac not working

2010-04-06 Thread Diego Iastrubni
Package: redmine
Version: 0.9.1-1
Severity: important


The migration from a previous install of trac will fail, due to a syntax error, 
and also this version is affected by upstream http://www.redmine.org/issues/4931


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-vserver-686 (SMP w/2 CPU cores)
Locale: LANG=he_IL.UTF-8, LC_CTYPE=he_IL.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages redmine depends on:
ii  dbconfig-common  1.8.44  common framework for packaging dat
ii  debconf [debconf-2.0]1.5.28  Debian configuration management sy
ii  libjs-prototype  1.6.1-1 JavaScript Framework for dynamic w
ii  libjs-scriptaculous  1.8.3-1 JavaScript library for dynamic web
ii  rails2.2.3-2 MVC ruby based framework geared fo
ii  rake 0.8.7-1 a ruby build program
ii  redmine-sqlite   0.9.1-1 metapackage providing sqlite depen
ii  ruby 4.2 An interpreter of object-oriented 
ii  ruby1.8  1.8.7.249-1 Interpreter of object-oriented scr

Versions of packages redmine recommends:
ii  libapache2-mod-fcgid  1:2.3.5-1  an alternative module compat with 
ii  libfcgi-ruby1.8 [libfcgi-ruby 0.8.7-4.1  FastCGI library for Ruby

Versions of packages redmine suggests:
ii  apache2-mpm-worker [httpd-cg 2.2.14-7Apache HTTP Server - high speed th
pn  libopenid-ruby   none  (no description available)
pn  librmagick-ruby  none  (no description available)
ii  libsvn-ruby  1.6.9dfsg-1 Ruby bindings for Subversion (dumm

-- debconf information:
  redmine/instances/default/password-confirm: (password omitted)
  redmine/instances/default/pgsql/admin-pass: (password omitted)
  redmine/instances/default/mysql/admin-pass: (password omitted)
  redmine/instances/default/app-password-confirm: (password omitted)
  redmine/instances/default/mysql/app-pass: (password omitted)
  redmine/instances/default/pgsql/app-pass: (password omitted)
  redmine/instances/default/db/app-user: redmine
  redmine/instances/default/passwords-do-not-match:
* redmine/instances/default/default-language: he
  redmine/instances/default/remote/newhost:
* redmine/instances/default/db/basepath: 
/var/lib/dbconfig-common/sqlite3/redmine/instances/default
  redmine/notify-migration:
  redmine/old-instances:
  redmine/instances/default/upgrade-error: abort
  redmine/instances/default/pgsql/changeconf: false
  redmine/instances/default/missing-db-package-error: abort
* redmine/instances/default/db/dbname: redmine_default
  redmine/instances/default/purge: false
* redmine/current-instances: default
  redmine/instances/default/remote/host:
  redmine/default-language: ${defaultLocale}
  redmine/instances/default/pgsql/no-empty-passwords:
  redmine/instances/default/dbconfig-upgrade: true
  redmine/instances/default/internal/reconfiguring: false
  redmine/instances/default/upgrade-backup: true
  redmine/instances/default/pgsql/method: unix socket
  redmine/instances/default/install-error: abort
  redmine/instances/default/mysql/admin-user: root
* redmine/instances/default/database-type: sqlite3
  redmine/instances/default/pgsql/manualconf:
  redmine/instances/default/pgsql/authmethod-admin: ident
  redmine/instances/default/mysql/method: unix socket
  redmine/instances/default/internal/skip-preseed: false
  redmine/instances/default/pgsql/admin-user: postgres
  redmine/instances/default/remove-error: abort
  redmine/instances/default/dbconfig-remove:
  redmine/instances/default/remote/port:
  redmine/instances/default/pgsql/authmethod-user: password
* redmine/instances/default/dbconfig-install: true
  redmine/instances/default/dbconfig-reinstall: false



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



Bug#576682: redmine: Migration from trac not working

2010-04-06 Thread Diego Iastrubni
Kids complain, real man submit patches. Here is one attached which fixes both 
problems (sorry, still learning how to use reportbug... I had this patch when 
I opened the bug report...)

Regarding the upstream request: I will do my best, lets hope they do want to 
do this. 

Can you explain why the other patch is needed?

--- migrate_from_trac.rake.orig	2010-04-06 13:12:15.770691205 +
+++ migrate_from_trac.rake	2010-04-06 13:22:05.532183032 +
@@ -310,7 +310,8 @@
 # Ticket number re-writing
 text = text.gsub(/#(\d+)/) do |s|
   if $1.length  10
-TICKET_MAP[$1.to_i] ||= $1
+   # see http://www.redmine.org/issues/4931
+   # TICKET_MAP[$1.to_i] ||= $1
 \##{TICKET_MAP[$1.to_i] || $1}
   else
 s
@@ -458,7 +459,9 @@
 
 # Tickets
 print Migrating tickets
-  TracTicket.find_each(:batch_size = 200) do |ticket|
+  # not sure why this works, but i like black magic anyway
+  # TracTicket.find_each(:batch_size = 200) do |ticket|
+  TracTicket.find(:all).each do |ticket|
   print '.'
   STDOUT.flush
   i = Issue.new :project = @target_project,


Bug#427835: any news ?

2008-02-20 Thread Diego Iastrubni
I see that we broke you completely... now even migrating to Qt4 
development...? ;-)

I need a sponsor. As soon as soon as a DD comes to me, I will be able to send 
him a working package.

On Wednesday 20 February 2008 15:19:47 Mohammed Sameer wrote:
 Hi,
 Any news about the package ?

 I'm interested in this package as well.





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



Bug#431506: asterisk-config does not install: Asterisk not yet configured. Edit /etc/default/asterisk first.

2007-07-03 Thread Diego Iastrubni
On Tuesday 03 July 2007 10:13, Marc Lehmann wrote:
    RUNASTERISK=no
Please modify it to 

RUNASTERISK=yes

and apt-get install -f, it should work (please report anyway so we can close 
this bug properly)



Bug#427835: ITP:qdevelop - A Development Environment for Qt4

2007-06-06 Thread Diego Iastrubni

Package: wnpp

Version: N/A; reported 2007-06-06
Severity: wishlist


* Package name : qdevelop
Version : 0.24
Upstream Author : Jean-Luc Biord [EMAIL PROTECTED]
* URL : http://qdevelop.org/
* License : GPL
Description : a Development Environment for Qt4


QDevelop is a Development Environment for Qt4. It is very simple and 
small, and uses QMake+make as it's build system.



I would like to build the package using cmake, and qt4-lsb, just for fun :)

Lior Kaplan (kaplan at debian.org) will help me uploading the package. 
We worked together in the past, and we will have no problem working as a 
team (besides mental problem caused by looking at debbuild output for 
long period of times).




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



Bug#418430: [Debian-hebrew-common] Re: [Debian-hebrew-package] Bug#418430: mixed hebrew/english spell checking is needed

2007-04-21 Thread Diego Iastrubni
for kde4, there is a system which can determinate the language, and then pass 
it to the correct spell checker. english will not be sent to hspell.

the violation of the policy is a good point. but i am pretty sure we are in 
some gray area.


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



Bug#418430: [Debian-hebrew-common] Re: [Debian-hebrew-package] Bug#418430: mixed hebrew/english spell checking is needed

2007-04-20 Thread Diego Iastrubni
baruch,

I do beleave you are right. really this is a problem in kde, and not hspell. 
but hey, this is also a problem in firefox. and then emacs, and vim, and what 
else...

with the hack i propose: we fix all those programs, without any side effect. i 
am currently using firefox and here i see that both hebrew and english are 
spelled. if i was not lazy, and i used multispell, i assume i could also use 
spanish as a 3rd fallback. go do this from mozilla.

i vote for fixing this bug. even tough it's a work arround in (n) packages. i 
would like to fix it here centrally.


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



Bug#400889: rpmbuild -ta does not work with GNU tar-1.16-1

2007-04-15 Thread Diego Iastrubni
I just wanted to confirm this. The workaround it to run rpmbuild with this 
command line:

env TAR_OPTIONS=--wildcards rpmbuild -tb my-tarball.tar.gz



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



Bug#418430: mixed hebrew/english spell checking is needed

2007-04-09 Thread Diego Iastrubni
Package: hspell
Version: 1.0-2

The problem is simple: I want to have spell checking in kmail, where I write 
Hebrew and English. The idea is to use multispell instead of hspell, or 
calling hspell -i instead of hspell.

This can be done using the update-alternatives as I did in an older spec see:
http://www.iglu.org.il/~diego/hspell/hspell.spec



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



Bug#416964: flashybrid: [INTL:de] German po-debconf template translation

2007-04-01 Thread Diego Iastrubni
Thanks Matthias, will be part of 0.15. Hopefully in Etch, I just need to know 
who to start sending Pizzas


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



Bug#397142: 10-fastcgi.conf should call php-cgi instead of php4-cgi

2007-03-22 Thread Diego Iastrubni
Please change the comments on the file debian/conf-available/10-fastcgi.conf 
from php4-cgi to php-cgi, to prevent confusion.


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



Bug#410984: flashybrid: Typos in README.Debian

2007-02-15 Thread Diego Iastrubni
Hi Reuben,

Thanks for all those bugs, I have fixed them already locally. 

I finally got you, you forgot a ) on the 2nd paragraph you quote here :)

I am not really happy with this text:
Step 3 is mandatory, because the init.d script modifies the FSH before most
of the processes start running.

This is my proposal:
Step 3 is mandatory, because the init.d script modifies the FSH before most
of the processes start running. This means some processes have some open files 
on the tmpfs, and you cannot safely unmount that tmpfs. 

Here is my propsal:
start
If you want to enable this package you only have to do three steps:

1) create the directory /ram
2) modify the value ENABLED in /etc/default/flashybrid
3) reboot

Step 3 is mandatory, because the init.d script modifies the FSH before most
of the processes start running. This means some processes have some open files 
on the tmpfs, and you cannot safely unmount that tmpfs. 

To modify any configuration you need only to modify the configuration files,
and reboot. Currently there is no alternative alternative to rebooting, since
I have not found a way to move the move the open file handles from one
filesystem (the tmpfs) into another (your real flash or HD).

If you want to remove this package, you should first disable it,
reboot the machine, and ONLY WHEN THE MACHINE HAS BEEN REBOOTED WITHOUT
FLASHYBRID RUNNING, remove the package itself. If you do not to do it
this way, you can potentially loose data (things like configuration files in
/etc/ will not get synced to the real drive, stay only in the tmpfs and lost
on reboot).

You cannot restart this service, since some file descriptors may open on the
tmpfs. The reload and restart actions are NULL, and I only put them to keep
lintain happy about LSB.
/start


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



Bug#410984: flashybrid: Typos in README.Debian

2007-02-15 Thread Diego Iastrubni
OK, I am happy. I summerize this bug by attaching the diff, which also closes
#410979, #410983, #410980, #410977, #410981, #410984, #410989 .

I will talk the Lior and we will upload this new version in the next week. As 
I know him, he will probably push me twards doing this tonight :)

Thanks Reuben!
Index: mountrw.8
===
--- mountrw.8	(revision 3346)
+++ mountrw.8	(working copy)
@@ -8,7 +8,7 @@
 normal mount command.
 
 .nf
-.B mount -o mount,ro /
+.B mount -o mount,rw /
 .fi
 
 .SH SEE ALSO
Index: debian/default_orig
===
--- debian/default_orig	(revision 3346)
+++ debian/default_orig	(working copy)
@@ -1,10 +0,0 @@
-# This file controls the flashybrid init script.
-
-# Whether to start flashybrid on boot, and shut it down on shutdown.
-# This has the potential to break your system if it is turned on, so
-# make sure you understand flashybrid, and have configured it for your
-# system, before turning this on.
-ENABLED=no
-
-# Whether to display a message before a directory is synchronized or not.
-VERBOSE=yes
Index: debian/changelog
===
--- debian/changelog	(revision 3346)
+++ debian/changelog	(working copy)
@@ -8,11 +8,16 @@
 the upgrade of packages. Closes #410053
   * Updated default configuration to match packages on Etch. Sub directories
 of /var/lib have been added or modified: 
- - added dhcp3 (keeping dhcp) Closes #410055
+ - added dhcp3 (keeping dhcp). Closes #410055
  - added php5 (keeping php4) 
  - added alsa to the ramstore setup
  - using a lower level apache directory
   * Removed directory ram in the source. It's not installed anyway.
+  * Removed the file default_orig in the source. It's not installed
+directly, but created by the config script.
+  * Updated documentation. Closes #410979, #410983, #410980, #410977, 
+#410981, #410984
+  * Updated default configuration. Closes #410989
 
  -- Diego Iastrubni [EMAIL PROTECTED]  Wed, 7 Feb 2007 12:31:11 +0200
 
Index: debian/README.Debian
===
--- debian/README.Debian	(revision 3346)
+++ debian/README.Debian	(working copy)
@@ -5,23 +5,25 @@
 3) reboot
 
 Step 3 is mandatory, because the init.d script modifies the FSH before most
-of the processes start running. 
+of the processes start running. This means some processes have some files 
+open on the tmpfs, and you cannot safely unmount that tmpfs.
 
 To modify any configuration, you need only to modify the configuration files, 
-and reboot.Currently there is no alternative, since I have not found a way 
-moving the open file handles from one file system (the tmpfs) into another 
-(your real flash, HD). 
+and reboot. Currently there is no alternative alternative to rebooting, since 
+I have not found a way to move the move the open file handles from one 
+filesystem (the tmpfs) into another (your real flash or HD). 
 
 
 If you want to remove this package, you should first disable it,
-boot the machine, and ONLY WHEN THE MACHINE HAS BEEN REBOOTED WITHOUT FLASHYBRID
-RUNNING YOU CAN REMOVE THE PACKAGE ITSELF. If you do not to do it this way,
-you can potentially loose data (things like configuration files in /etc/ will 
-not get synced to the real drive, stay only in the tmpfs and lost on reboot.
+reboot the machine, and ONLY WHEN THE MACHINE HAS BEEN REBOOTED WITHOUT 
+FLASHYBRID RUNNING, remove the package itself. If you do not to do it 
+this way, you can potentially loose data (things like configuration files in 
+/etc/ will not get synced to the real drive, stay only in the tmpfs and lost 
+on reboot).
 
 You cannot restart this service, since some file descriptors may open on the
-tmpfs. The reload and restart actions are NULL, and I only put them to keep 
+tmpfs. The reload and restart actions are null, and I only put them in to keep 
 lintain happy about LSB. 
 
 
- -- Diego Iastrubni [EMAIL PROTECTED]  Sun, 29 Oct 2006 17:00:00 +0200
+ -- Diego Iastrubni [EMAIL PROTECTED]  Thu, 15 Feb 2007 10:00:00 +0200
Index: debian/templates
===
--- debian/templates	(revision 3346)
+++ debian/templates	(working copy)
@@ -7,9 +7,9 @@
  documentation. 
  .
  If you want to remove this package, you should first disable it,
- boot the machine, and ONLY WHEN THE MACHINE HAS BEEN REBOOTED WITHOUT FLAHYBRID
+ boot the machine, and ONLY WHEN THE MACHINE HAS BEEN REBOOTED WITHOUT FLASHYBRID
  RUNNING YOU CAN REMOVE THE PACKAGE ITSELF. If you do not to do it this way,
- you can potentially loose data (things like configuration files in /etc/ will
+ you can potentially lose data (things like configuration files in /etc/ will
  not get synced to the real drive, stay only in the tmpfs and lost on reboot.
  .
  Please read the Debian documentation found

Bug#411031: flashybrid: Typos in fh-sync(8)

2007-02-15 Thread Diego Iastrubni
Changed to :

remount the root file system as read only, and synchronize all changes to the 
permanent storage



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



Bug#410050: flashybrid: package displays useless warning on updates

2007-02-07 Thread Diego Iastrubni
Package: flashybrid
Version: 0.13
Severity: important
Justification: shows warning messages about installations on upgrades

When you install the package it will warn you that it modifies the way the 
system behaves. This is crucial since this package may brake some assumptions 
about the way your system behaves.
However, those messages are needed only on the first install, and not in every 
update.

Imagine a company developing an embbeded device using flashybrid, and then they 
issue some update. The confused user will get the warning about 
somthing out of his control (he has not installed the package, and he does not 
wish to remove it).

The solution is to show the message only if the service is not up and running 
(by looking into /etc/default/flashybrid).

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
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#410055: flashybrid: default configuration does not work with dhcp3-client

2007-02-07 Thread Diego Iastrubni
Package: flashybrid
Severity: normal

The configuration supplied by default in this package does not work on default 
Etch system. For example, dhcp3-client tries to store data into 
/var/lib/dhcp3 which will be RO on the default configuration deployed by this 
package.

The fix is too trivial to describe here ;-)

-- System Information:

Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
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#410053: flashybrid: default configuration is part of the package

2007-02-07 Thread Diego Iastrubni
Package: flashybrid
Severity: important

When you install this package, the service is off by default. To enable it, 
you need to modify /etc/default/flashybrid . When a new package comes, 
dpkg will ask users what to do with the modified configuration file. We all 
know that choosing the packager version is almost always the way to go, so 
I press y and rendered my system unusable (by remove the protections needed 
on those environments).

The solution is to install a default configuration file on the package 
post-install script. This means the configuration file is not part of the 
package and users will not be asked confusing questions.


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
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#408769: php5-sqlite3: package is completay unusable out of the box

2007-01-28 Thread Diego Iastrubni
Package: php5-sqlite3
Version: 0.4-2
Severity: critical
Justification: breaks unrelated software


The package installs the include file in the path:
/usr/share/php5/DB/sqlite3.php

This path is not included by default. From what I see in php-db, that
file belongs in /usr/share/php/DB/sqlite3.php.

Now, even after I add that path to the include_path (changing default
configuration is bad, as it marks config files as dirty), applications
using sqlite3 (and pear...) still do not work. 

The reason, is that the sqlite3.so module is not loaded by php. From
what I see in php5-sqlite, this file is missing:
/etc/php5/conf.d/sqlite3.ini

The contents may be something like this:
turing:/etc/php5/apache2/conf.d# cat /etc/php5/conf.d/sqlite3.ini
# configuration for php SQLite3 module
extension=sqlite3.so

2 huge problems on a single package. great :)

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages php5-sqlite3 depends on:
ii  libapache2-mod-php5 [phpapi- 5.2.0-8 server-side, HTML-embedded scripti
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  libsqlite3-0 3.3.8-1 SQLite 3 shared library
ii  php5-cli [phpapi-20060613+lf 5.2.0-8 command-line interpreter for the p

php5-sqlite3 recommends no packages.

-- no debconf information


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



Bug#408769: php5-sqlite3: package is completay unusable out of the box

2007-01-28 Thread Diego Iastrubni
On Sunday 28 January 2007 14:51, Julien Danjou wrote:
 AHAH.
 Are you sure that can't create data loss too?
I am trying to build a package which depends on sqlite3. This breaks my 
package in funny ways. 

  The package installs the include file in the path:
  /usr/share/php5/DB/sqlite3.php
 
  This path is not included by default. From what I see in php-db, that
  file belongs in /usr/share/php/DB/sqlite3.php.

 Right.
 However I don't know yet how I can grab this files in two packages
 without being in conflict with the other one.
You are talking about php5-sqlite3 and php4-sqlite3?
I am probably not following, but I think in both packages you are installing 
the same php include file, so this can be worked around in some way.

If splitting this package is a problem (or just using the same package for 
PHP4 and PHP5), IMHO the best solution should be to modify the default 
configuration of php4 and php5 to include /usr/share/php$PHPVERSION/, as 
dictated by the php policy Draft, section 2.2.2.
http://webapps-common.alioth.debian.org/draft-php/html/ch-php-int.html#s-php-interpreter-fs

 Sure that's doing some configuration by yourself is fucking critical.
No, read my comment in the original post: it leaves a modified configuration 
file. This situation must be avoided, if we want to reduce race between 
the packager version and my version. 

Is it that hard to include a file with this content?


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



Bug#408769: php5-sqlite3: package is completay unusable out of the box

2007-01-28 Thread Diego Iastrubni
On Sunday 28 January 2007 16:45, Julien Danjou wrote:
 At 1169993410 time_t, Diego Iastrubni wrote:
  I am trying to build a package which depends on sqlite3. This breaks my
  package in funny ways.
 This still does not justify critical severity.
ok.
Thanks for the other fix in this bug. 

 The default PHP include path is:
 
 .:/etc/php:/usr/local/share/php/5.0:/usr/share/php5:/usr/share/php/5.0:/usr
/share/php:/usr/local/share/php

 So why including DB/sqlite3.php does not work for you if /usr/share/php5
 is in default include path? Do I miss something?
Yes, that policy is not enforced by default at the moment. 

If you do not specify any include_path, it's set to .:/usr/share/php. The 
directory /usr/share/php5 is not included at all. The default configuration 
is available at /usr/share/php5/php.ini-dist (look at the post-inst of 
php-cgi for example).


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



Bug#408769: php5-sqlite3: package is completay unusable out of the box

2007-01-28 Thread Diego Iastrubni
sed -i 's!...!/usr/share/php5!' /etc/php5/php.ini ...?

That's ugly, but it's an option. I assume this bug should be passed to the 
php5 package maintainer. 

The real question is, do we really need php4-sqlite3 and php5-sqlite3? Is it 
possible to merge those 2 into one big happy package? What am *I* missing 
now?


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



Bug#408769: php5-sqlite3: package is completay unusable out of the box

2007-01-28 Thread Diego Iastrubni
so, the solution is:
1) add configuration for sqlite3
2) blame php dudz? 

I am not sure that they will like this, specially since there is no real 
policy, but a draft.


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



Bug#408708: Installation of asterisk-config before/without asterisk package will not create the asterisk user

2007-01-27 Thread Diego Iastrubni
This will not happen Tzafrir. From Debian policy manual, 9.3.2:

The /etc/init.d scripts must be treated as configuration files, either (if 
they are present in the package, that is, in the .deb file) by marking them 
as conffiles, or, (if they do not exist in the .deb) by managing them 
correctly in the maintainer scripts (see Configuration files, Section 10.7). 
This is important since we want to give the local system administrator the 
chance to adapt the scripts to the local system, e.g., to disable a service 
without de-installing the package, or to specify some special command line 
options when starting a service, while making sure their changes aren't lost 
during the next package upgrade.

For those who want to read it any further, here's the link:
http://www.debian.org/doc/debian-policy/ch-opersys.html


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



Bug#394732: Patch for the 0.13-0.1 NMU of flashybrid

2007-01-21 Thread Diego Iastrubni
Huge thanks! 

Actually, I have a 0.13.3 version which fixes those two and other bugs (not 
documented on bugs.debian.org), and is available on our local repository:

http://updates.xorcom.com/rapid/pool/main/f/flashybrid/

I would like to rename 0.13.3 to 0.14, and upload this into Etch (if possible) 
and to Rapid-Xorcom.

The 2 other bugs are (from the changelog of the package available in that 
url):
  * Warning message is not longer displayed on updates, if the service is
up and running.
  * default configuration file is not a part of this package, to ease
the upgrade of packages

Lior, do you have any comments?


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



Bug#394732: flashybrid: French debconf templates translation update

2006-10-23 Thread Diego Iastrubni
Thanks Jean-Luc, I will add your translation to the next release. 


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



Bug#286277: acknowledged by developer (Rejected upstream)

2006-04-14 Thread Diego Iastrubni

Hi Denis,

The funny story is that I had that keyboard for one week, about 1 year 
ago :)


Anyway, there are layouts with similar keys and different name in the 
upstream release (look up for Brother internet keyboard, another submit 
from me). IMHO, xorg needs a setup to identify keyboards as similar 
and by that not duplicating the keyboard definitions.



Debian Bug Tracking System wrote:

Hi,

according to upstream, your layout is similar to scorpius,
so it will not be included.
Thanks for your report.

Denis
  




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



Bug#352932: Updates to flashybrid

2006-02-15 Thread Diego Iastrubni

Package: flashybrid

Version: 0.002 and 0.003


The attached patch adds more features to FH:

 - verbosity to init scripts

 - max memory to allocate to the ram drive


The patch also adds a few new commands:

- mountro: remounts / as RO

- mountrw: remounts / as RW

- fh-sync: syncs the content of the ram drive with the hard drive.


Now it's possible to install new packages on a flashybrid system this way:


mountro

as usual

apt-get update

apt-get install libfoo app-bar

... etc

/as usual

fh-sync


The last command will write all the ram drive contents to the real
drive, and eventually remount / as read only.


The package is still not usable out of the box, the user needs to do 2
steps to make it usable:

1) mkdir /ram

2) ENABLED=yes in /etc/defaults/flashybrid

3) reboot :)


Notes:

A lot of configuration has been changed. Many paths have been moved,
from ramtmp into ram storage and the other way. Now it works better, but
this in only IMHO


The whole tree of /etc/ is now on RAM and writable by the correct
owners. If you modify something on that tree, run fh-sync.


If you want to change FH configuration, you will have to reboot the
machine in a bare bones state with init=/bin/sh edit the
configuration and reboot normally. Otherwise the setup might clean up
those dirs you want to modify (if you modify the config while fh is
running, those mount points are empty and rsync will sync those empty
ram-dirs to the disk-dirs).



Future patches:

1) make the init.d function more robust, I messed up to much machines
when modifying configurations.

2) fh-sync needs more options: to sync only some dir, and to sync
everything BUT some dir.

3) fh-sync needs to follow the verbosity level of the init scripts. (and
have verbose and quiet switched as well)

4) wait for user comments :)


--

- diego



diff -u -r flashybrid-0.003/config flashybrid-0.004/config
--- flashybrid-0.003/config	2005-05-13 23:13:56.0 +0300
+++ flashybrid-0.004/config	2006-01-26 15:29:46.0 +0200
@@ -16,7 +16,7 @@
 # this controls where it will be mounted, and /etc/fstab should be set up
 # to allow mounting of the disk to this directory. If you have no disk,
 # comment it out.
-DISKMOUNT=/disk
+#DISKMOUNT=/disk
 
 # Commands to run to enter full mode. The disk will be mounted before
 # this.
@@ -27,5 +27,11 @@
 # command.
 EMBED_CMDS=mount -o remount,ro /
 
+# This controlles the maximum ammount of memory you want to allocate  
+# to the tmpfs/ram drive
+# This parameter is optional, and if you do not supply if, tmpfs will
+# occupy up to 50% of your available memory (ram+swap)
+FLASH_MAX=92m
+
 # You may also want to edit the other files in this directory:
 # ramtmp, ramstore, diskstore, and partial
diff -u -r flashybrid-0.003/debian/changelog flashybrid-0.004/debian/changelog
--- flashybrid-0.003/debian/changelog	2005-06-22 18:01:28.0 +0300
+++ flashybrid-0.004/debian/changelog	2006-02-09 16:14:59.0 +0200
@@ -1,8 +1,44 @@
-flashybrid (0.003) unstable; urgency=low
+flashybrid (0.004.7) unstable; urgency=low
+  * added -o in the init.d script, the fix of last bug caused FH not to work
+ -- Diego Iastrubni [EMAIL PROTECTED]  Sun, 9 Feb 2006 17:00:00 +0200
+  
+flashybrid (0.004.6) unstable; urgency=low
+  * Fixed  typo in init.d (missing space after an if)
+ -- Diego Iastrubni [EMAIL PROTECTED]  Sun, 29 Jan 2006 12:00:00 +0200
+  
+flashybrid (0.004.5) unstable; urgency=low
+
+  * Added /ram into the default installatoin
+  * New optional switch in config FLASH_MAX
+  
+ -- Diego Iastrubni [EMAIL PROTECTED]  Sun, 26 Jan 2006 17:00:00 +0200
+ 
+flashybrid (0.004.4) unstable; urgency=low
+
+  * Updated some ramtmp configuration (new directories)
+  * Fixed the init.d script messages (not it says what's been synced)
+  * Test for non existing directories in init.d script
+
+ -- Diego Iastrubni [EMAIL PROTECTED]  Sun, 8 Jan 2006 15:00:00 +0200
+ 
+ 
+flashybrid (0.004.3) unstable; urgency=low
+
+  * updated Uploaders in control file
+  * removed the sudo command on fh-sync (oops)
+
+ -- Diego Iastrubni [EMAIL PROTECTED]  Thu, 2 Jan 2006 12:00:00 +0200
+  
+
+flashybrid (0.004.2) unstable; urgency=low
+
+  * New mountro and mountrw scripts
+  * New flashybrid-sync script
+  * New verbose option on /etc/defaults, used by init script, set to yes by default
+  * Upgraded version to 0.004
+  * Updated Debian standards version
 
-  * Fix description typo. Closes: #309041
-
- -- Joey Hess [EMAIL PROTECTED]  Fri, 13 May 2005 22:41:34 -0400
+ -- Diego Iastrubni [EMAIL PROTECTED]  Thu, 9 Sep 2005 17:00:00 +0200
 
 flashybrid (0.002) unstable; urgency=low
 
diff -u -r flashybrid-0.003/debian/control flashybrid-0.004/debian/control
--- flashybrid-0.003/debian/control	2005-05-14 05:41:28.0 +0300
+++ flashybrid-0.004/debian/control	2006-02-15 11:34:23.0 +0200
@@ -1,9 +1,10 @@
 Source: flashybrid
 Section: admin
 Priority: extra
-Maintainer: Joey Hess [EMAIL PROTECTED]
+Maintainer: Diego Iastrubni

Bug#341561: Rapid/Debian packages for AMPortal

2006-01-02 Thread Diego Iastrubni
The debs on that site are really old, and contain A LOT of problems. 
Even the new ones I have locally (1.10.010), contain a lot of hacks 
which IMHO should not be in an official Debian package. We folks at 
Xorcom will release new debs in the not so far away future, and one of 
my personal goals is bringing that package into Debian. 



The problem is that the new package depends on rapid-scripts, for HW 
detection that we added, we have some fixes to Asterisk which are still 
not on Debian, the split to packages is not done in a smart way, 
etc there is some job to be done before we can add AMP into 
Debian. I will file an ITP as soon as I am satisfied with the quality of 
the package.



Don't worry, be happy :)





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



Bug#314813: Acknowledgement (dfsbuild: can not build a stable live cd, the output is: E: Unknown suite etch)

2005-06-20 Thread Diego Iastrubni
As input I used the attached file, here is the full command I used:

[EMAIL PROTECTED]:~/mysources/deb-live$ dfsbuild -c dfs.cfg -w deblive1
Using working directory: /home/elcuco/mysources/deb-live/deblive1
Using library directory: /usr/lib/dfsbuild
Running: cdebootstrap --debug -v -d 
unstable /home/elcuco/mysources/deb-live/deblive1/target 
http://mirror.hamakor.org.il/pub/mirrors/debian/
D: Execute mkdir 
-p /home/elcuco/mysources/deb-live/deblive1/target//var/cache/apt/archives
D: Return code: 0
D: Execute mkdir 
-p /home/elcuco/mysources/deb-live/deblive1/target//var/lib/apt/lists
D: Return code: 0
P: Retrieving Release
D: Execute wget -q 
-O 
/home/elcuco/mysources/deb-live/deblive1/target/var/lib/apt/lists/debootstrap.invalid_dists_unstable_Release
 
http://mirror.hamakor.org.il/pub/mirrors/debian//dists/unstable/Release;
D: Return code: 0
P: Parsing Release
P: Retrieving Packages.gz
D: Execute wget -q 
-O 
/home/elcuco/mysources/deb-live/deblive1/target/var/lib/apt/lists/debootstrap.invalid_dists_sid_main_binary-i386_Packages.gz
 
http://mirror.hamakor.org.il/pub/mirrors/debian//dists/sid/main/binary-i386/Packages.gz;
W: got signal

[EMAIL PROTECTED]:~/mysources/deb-live$ dfsbuild -c dfs.cfg -w deblive1  
dfsbuild.log
E: Unknown suite etch
Fatal error: exception Shell.Subprocess_error(_, 0)
# arch-tag: Default configuration file
# Copyright (c) 2004 John Goerzen

[DEFAULT]
##
# Overall settings, set defaults for all archs
##

# Name of generated disc
name = Debian From Scratch (DFS)

# Version of generated disc
version = 0.6.19

# Person that built it
builder = John Goerzen [EMAIL PROTECTED]

# Repositories to mirror.  Details about each one are configured below.
dlrepos = stable testing unstable

# Repository to build the CD with.  Must be in above list.
suite = unstable

# Whether or not to use zftree compression on ISO image
compress = yes

# Files to never compress if the above is yes
# If a dir is given, that dir and everything below is not compressed
dontcompress = /boot
/etc/*boot*
/opt/dfsruntime/initrd.dfs

# Location of dfsbuild support files
libdir = /usr/lib/dfsbuild

# Location of docs for CD
docdir = /usr/share/doc/dfsbuild

# Bootloader to place on CD.  Choices are:
# grub-hd  GRUB with ElTorito hard disk emulation (not working yet)
# grub-no-emul raw ElTorito image
# abootAlpha SRM bootloader
# yaboot   PowerPC bootloader
# (usually set in arch area)
bootloader = grub-no-emul


# Packages to install on live FS, on all archs, besides base system
allpackages = util-linux parted dmsetup
reiser4progs reiserfsprogs jfsutils xfsprogs xfsdump
e2tools e2fsprogs e2undel dosfstools mtools hfsutils ntfstools
hfsplus mkisofs cdrecord dvd+rw-tools ocaml hugs ghc6 perl
vim nano joe kernel-package libncurses5-dev
ftp ssh telnet elinks less zip unzip tar info man-db manpages-dev
manpages cdebootstrap diff patch gawk tcpdump bash tcsh
coreutils module-init-tools modutils rsh-client tftp 
traceroute iputils-tracepath strace iputils-ping iptraf
iproute ipchains ipfwadm iptables ifupdown ppp dhcp-client
bind9-host whois dnsutils rsync rdiff-backup mutt netcat
cpio buffer alien bzip2 dpkg-dev devscripts afbackup busybox-static
dash sash usbutils pciutils hotplug discover 
buffer cramfsprogs minicom hdparm binutils
ntpdate ext2resize disktype mt-st ddrescue
umsdos recover dvhtool ms-sys lde 
smbclient kernel-source-2.6.8 dpkg-repack
devscripts debhelper amanda-client dump e2fsprogs gs-esp
emacs21-nox mtr-tiny python-dev build-essential g++
wget lftp lynx pppoeconf pppoe pppconfig pcmcia-cs
wireless-tools lrzsz cu debconf tla unison star
mt-st tob afio pax dvbackup mtx kernel-patch-debian-2.6.8
grep-dctrl kernel-patch-2.6-reiser4 
kernel-patch-skas lsof
sysutils udftools epic4 screen gnupg mdadm
macutils dar dfsbuild
cvs subversion darcs lvm2

# Default mirror for repo sections
#Iirror = http://localhost/apt-cacher/ftp.debian.org/debian
#mirror = http://mirrors/debian
mirror = http://mirror.hamakor.org.il/pub/mirrors/debian/

# Devices to probe for CD
devices = scd0 scd1 scd2 scd3 scd4 hda hdb hdc hdd hde hdf hdg

# Files to place on the ramdisk
ramdisk_files = /etc/resolv.conf
/etc/lvm*
/etc/pcmcia
/tmp
/var/tmp
/dev
/etc/fstab
/var/lock
/var/run
/var/state
/etc/exports
/etc/ppp
/etc/chatscripts
/root
/etc/network
/var/lib/misc

# Directories to create on live fs
makedirs = /root/.elinks

# Files to delete from live fs
deletefiles = /etc/rcS.d/*discover 
/etc/rcS.d/*hotplug