Bug#342831: security.debian.org: missing ftp access to the security updates
Package: security.debian.org Severity: grave Justification: renders package unusable i'd like to ask you to provide the security updates on ftp as well as http, so that ftp only connected systems could benefit of them, as well as with general upgrades. willing to test alex -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.8-686-smp-skas3-v7 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#342832: qa.debian.org: resolver in etch+ requires . suffix
Package: qa.debian.org Severity: normal i'm sorry i can't point you to the specific package. as debian maintainer (postgis, openev), i have several uml machines with woody distributions and newer, all getting their dhcp addresses with bind updates from the host. on one hand, woody and sarge machines can resolv the address of the host, but the host does not resolv the uml address at all. on the other hand, etch and sid can resolv the host only if i sufix the host name with `.', but the host can resolv the uml address. as i can't be sure this is uml specific problem, i am reporting this problem out of concern of probably discontinued functionality of accessing hosts without the `.' sufix. willing to help, alex -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.8-686-smp-skas3-v7 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339623: postgresql-server-dev-8.0: pg_config is been wrongly placed in libpq4
Package: postgresql-server-dev-8.0 Version: 8.0.3-15 Severity: important since pg_config is part of libpq4, it's being overwritten by libpq4 upgrading, thus leaving no pg_config to identify postgresql-server-dev-8.0, which is not and should not be removed by installing newer postgresql-server-dev-8.1. since one of the main usages of pg_config is for identifying server api, you should keep one copy within each /usr/lib/postgresql/x.y/bin for each server-dev installed, and you may allways keep thelatest in /usr/lib/postgresql/bin for the latest installed libpq*. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.8-686-smp-skas3-v7 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages postgresql-server-dev-8.0 depends on: ii libpq-dev 8.1.0-1header files for libpq4 (PostgreSQ postgresql-server-dev-8.0 recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#309528: postgis: binary-all package built in binary-arch rules target
hi christian, thanks for turning my attention. i understand the problem of rebuilding the binary-indep (all) packages on any architecture. do you mean, i should also split the build into build-arch and build-indep, and activate each build-* from it's appropriate binary-*? if not, all upstream makefiles would need to be made on every architecture, but will be packaged only when the appropriate binary-* will be invoked. please clarify this issue, so i could fix the problem. btw, the control and rules files are missing form the example you provided below (i am using sarge on i386). best regards, alex On Tue, 2005-05-17 at 21:16 +0200, Christian T. Steigies wrote: > Package: postgis > Version: 1.0.0-1 > Severity: normal > > Your package builds binary all debs on the buildds, this is from the build > log: > > dpkg-deb: building package `libpostgis1-pg74' in > `../libpostgis1-pg74_1.0.0-1_m68k.deb'. > dpkg-deb: building package `libpostgis-doc' in > `../libpostgis-doc_1.0.0-1_all.deb'. > dpkg-deb: building package `libpostgis-java' in > `../libpostgis-java_1.0.0-1_all.deb'. > > Packages that build the docs in binary-arch (Bdale's description): > > Some source packages build all of the binary packages in the binary-arch > target of debian/rules, even though at least one binary package is > architecture independent. That's wrong. > > The practical impact is that autobuilder maintainers get to manually > clean up the _all.deb packages every time your package is uploaded. > [Also it can add considerably to the build time on slow arches, > and it's another potential source of build failures.] > > Please fix this when you get a chance. > > Any architecture "all" binary packages should be built by the > binary-indep target in debian/rules. If you're using debhelper, > read about the -a and -i options, and if you have dh-make > installed, a good example rules file is available in the > /usr/share/debhelper/dh_make/debian directory. > > Christian > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#310101: createdb.postgis should update ownership of postgis tables
hi peter, thanks for considering postgis. i will consider all other reports too. i understand the ambiguity. in order to make the template_gis for pere should have run mktemplate_gis --user=pere. alex On Sat, 2005-05-21 at 17:40 +0200, Petter Reinholdtsen wrote: > Package: libpostgis1-pg74 > Version: 1.0.0-1 > Severity: normal > > When I as the postgres user create a new postgis database using the > --owner flag to set the initial owner of the database, the tables > created are still owned by the postgres user. I believe it would be > more correct to make sure the table owner is the suer listed as the > datbase owner. > > [EMAIL PROTECTED]:~$ createdb.postgis --owner pere pere_gis > CREATE DATABASE > [EMAIL PROTECTED]:~$ logout > # su - pere > % psql pere_gis > Welcome to psql 7.4.7, the PostgreSQL interactive terminal. > > Type: \copyright for distribution terms > \h for help with SQL commands > \? for help on internal slash commands > \g or terminate with semicolon to execute query > \q to quit > > pere_gis=> \d > List of relations >Schema | Name | Type | Owner > +--+---+-- >public | geometry_columns | table | postgres >public | spatial_ref_sys | table | postgres > (2 rows) > > I was unable to use the database because of this. I solved it by > running these PostgresSQL commands as the postgres user: > > [EMAIL PROTECTED]:~$ psql pere_gis > [...] > pere_gis=# ALTER TABLE geometry_columns OWNER TO pere; > ALTER TABLE > pere_gis=# ALTER TABLE spatial_ref_sys OWNER TO pere; > ALTER TABLE > pere_gis=# > > Perhaps the script should be updated to run these commands when the > --owner option is used? > > - System Information: > Debian Release: 3.1 > APT prefers testing > APT policy: (500, 'testing') > Architecture: i386 (i686) > Kernel: Linux 2.4.27-1-686 > Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) > > Versions of packages libpostgis1-pg74 depends on: > ii libc6 2.3.2.ds1-21 GNU C Library: Shared libraries > an > ii libgcc1 1:3.4.3-12 GCC support library > ii libgeos22.1.1-2 Geometry engine for Geographic > Inf > ii libpq3 7.4.7-6 PostgreSQL C client library > ii libstdc++5 1:3.3.5-12 The GNU Standard C++ Library v3 > ii postgresql 7.4.7-6 object-relational SQL database > man > ii postgresql-contrib 7.4.7-6 additional facilities for > PostgreS > ii proj4.4.9-1 Cartographic projection filter > and > ii sudo1.6.8p7-1.1 Provide limited super user > privile > > -- no debconf information > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#291562: i wish to package openev for debian
Package: wnpp Followup-For: Bug #291562 Owner: alex bodnaru <[EMAIL PROTECTED]> in the process of debianizing postgis, i wish to package openev for debian. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.8-686-smp-skas3-v7 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#328737: coreutils: the total for ls -l (and df too) is miscalculated
Package: coreutils Version: 5.2.1-2.1 Severity: important ls -l and df miscalculate the total file size. see the sample output below. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.8-686-smp-skas3-v7 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages coreutils depends on: ii libacl1 2.2.29-1.0.1 Access control list shared library ii libc6 2.3.5-6 GNU C Library: Shared libraries an coreutils recommends no packages. -- no debconf information *** /home/alex/ls-bug output of: ls -lh /smb-server/uml-net/ total 1.6G -rw-r--r-- 1 alex uml-net 23M Feb 26 2005 Debian-3.0r0.ext2.bz2 -rw-r--r-- 1 alex uml-net 162M Jul 13 04:50 Debian-3.0r2.ext2 drwxr-xr-x 2 alex uml-net 4.0K Sep 1 18:43 modules -rwxr-xr-x 1 alex uml-net 177 Aug 6 22:52 myrootstrap -rw-r--r-- 1 alex uml-net 565 Aug 7 03:50 rootstrap.conf -rw-r--r-- 1 alex uml-net 567 Aug 7 04:13 rootstrap.conf.etch -rw-r--r-- 1 alex uml-net 569 Aug 7 04:13 rootstrap.conf.sarge -rw-r--r-- 1 alex uml-net 543 Aug 7 04:13 rootstrap.conf.sid -rw-r--r-- 1 alex uml-net 569 Aug 7 04:14 rootstrap.conf.woody -rwxr-xr-x 1 alex uml-net 740 Sep 11 00:08 uml-run -rw-r--r-- 1 alex uml-net 512M Sep 16 06:25 uml.etch.ext3 -rw-r--r-- 1 alex uml-net 512M Aug 28 05:30 uml.sarge.ext3 -rw-r--r-- 1 alex uml-net 512M Sep 10 23:55 uml.sid.ext3 -rw-r--r-- 1 alex uml-net 512M Sep 7 05:50 uml.woody.ext3 output of: df Filesystem 1K-blocks Used Available Use% Mounted on /dev/hda9 6886260 2172600 4363848 34% / tmpfs 12416416124148 1% /dev/shm /dev/hda11 6989084 2859244 3774808 44% /common /dev/hda7 4917648 1656728 302 36% /smb-server -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#404623: gaim should depend on python-dbus, to be callable by irc://
Package: gaim Version: 1:2.0.0+beta5-8 Severity: normal gaim should depend on python-dbus, to be callable by irc:// -- 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-686 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages gaim depends on: ii gaim-data1:2.0.0+beta5-8 multi-protocol instant messaging c ii libatk1.0-0 1.12.3-1The ATK accessibility toolkit ii libavahi-compat-howl00.6.15-2Avahi Howl compatibility library ii libc62.3.6.ds1-8 GNU C Library: Shared libraries ii libcairo21.2.4-4 The Cairo 2D vector graphics libra ii libdbus-1-3 1.0.2-1 simple interprocess messaging syst ii libdbus-glib-1-2 0.71-3 simple interprocess messaging syst ii libfontconfig1 2.4.1-2 generic font configuration library ii libglib2.0-0 2.12.4-2The GLib library of C routines ii libgstreamer0.10-0 0.10.10-2 Core GStreamer libraries and eleme ii libgtk2.0-0 2.8.20-3The GTK+ graphical user interface ii libgtkspell0 2.0.10-3+b1 a spell-checking addon for GTK's T ii libice6 1:1.0.1-2 X11 Inter-Client Exchange library ii libncursesw5 5.5-5 Shared libraries for terminal hand ii libnspr4-0d 1.8.0.8-1 NetScape Portable Runtime Library ii libnss3-0d 1.8.0.8-1 Network Security Service libraries ii libpango1.0-01.14.8-3Layout and rendering of internatio ii libperl5.8 5.8.8-7 Shared Perl library ii libsm6 1:1.0.1-3 X11 Session Management library ii libstartup-notification0 0.8-2 library for program launch feedbac ii libx11-6 2:1.0.3-4 X11 client-side library ii libxcursor1 1.1.7-4 X cursor management library ii libxext6 1:1.0.1-2 X11 miscellaneous extension librar ii libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio ii libxi6 1:1.0.1-4 X11 Input extension library ii libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library ii libxml2 2.6.27.dfsg-1 GNOME XML library ii libxrandr2 2:1.1.0.2-5 X11 RandR extension library ii libxrender1 1:0.9.1-3 X Rendering Extension client libra ii libxss1 1:1.1.0-1 X11 Screen Saver extension library Versions of packages gaim recommends: ii gstreamer0.10-alsa0.10.10-2 GStreamer plugin for ALSA ii gstreamer0.10-plugins-base0.10.10-2 GStreamer plugins from the "base" ii gstreamer0.10-plugins-good0.10.4-3 GStreamer plugins from the "good" ii python2.4.4-2An interactive high-level object-o -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#365465: gaphor: conflict with zope*
Package: gaphor Version: 0.8.1-5 Followup-For: Bug #365465 as upstream gaphor supplies a small subset of zope3 and zope-interface files, installing gaphor as-is would naturally conflict with those other packages. this conflict could be resolved in several ways, with different levels of accuracy: 1. in the case, that the zope/* files gaphor depends on have been somehow customized, those files should install in a gaphor_zope subdirectory of site-packages. other gaphor files should be consequentially updated, and no conflict should occur with generic zope*. this might btw be the real case, since the files in zope/* differ from zope-interface, at least. 2. otherwise, the most straight forward alternative would be that gabor depend on those zope* packages. since zope is a huge package with heavy installation implications, this would be suboptimal too. but on the other hand, the zope-interface package is a rather small one, and many non zope related packages depend on it. i'd therefore suggest you may comment-out the zope.interfaces related lines from setup.py, and depend on zope-interface. having the zope maintainer export a larger zope functionality to other packages would let you end up in depending on the other zope-dependency package, as well as zope3 itself. 3. my principal reason not to aggree with your solution (to conflict with both zope3 and zope-interface) is that i use several non zope related packages that depend on the zope-interface ;-) . best regards, alex -- 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.17-2-486 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#414621: RFA: mini-dinstall -- daemon for updating Debian packages in a repository
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hello thomas, friends, as i'm currently using mini-dinstall, i'd be delighted to perform maintenance and / or development work on it. of course, not being a dd places me in need of sponsorship, and your offer thomas is being well accepted. the version i'm currently using already contains substantial improvements and closes most of the bugs filed against the package in the past. best regards, alex Thomas Viehmann wrote: > Package: wnpp > Severity: normal > X-Debbugs-CC: [EMAIL PROTECTED] > X-Debbugs-CC: [EMAIL PROTECTED] > > Hi Alex, Alexander, everybody, > > the mini-dinstall package is up for adoption. > > Kind regards > > T. > > P.S.: If you intend to rely on me as a sponsor: I don't think making > *mini*-dinstall a daemon is a good idea. For some more technical > opinions of mine, see #385289. > > The package description is: > This program implements a miniature version of the "dinstall" program > which installs packages in the Debian archive. It doesn't require a > PostgreSQL database, and is very easy to set up, maintain, and use. > mini-dinstall can be run via cron, or as a daemon. > . > This package is expressly designed for personal apt repositories, and > the like. In this vein, it contains fewer sanity checks; for > example, it will happily install a lower version of a package. You > can also generally just 'rm' files from the repository, and > mini-dinstall won't care. In fact, (when run as a daemon) it will > automatically detect that the directory changed, and update the > Packages file. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iQCVAwUBRghm+dpwN1sq38njAQJ1oQP/b518S9DACdL5appJtEYDsyN/KM+OMQRZ GXLWzL0XiSZerODXwVkpQKksxvSFtMmbEvNo+zEvrevbTX79DP43jDRdcHCWJGJi 6epz0g+g4ZGGR946tAuHqp9iAxil1sSeY+SEr5CLOfzqS4ZlcAD2yjVN731AlnRL x0De8e0hD64= =yUUI -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366172: part solution
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi i have encountered the same problem in another context, and found on the web that it's because /etc/libnss-ldap.conf is not world readable. setting it world-readable may be a security risk, thus it should not contain any secret. use /etc/libnss-ldap.secret for secret data. it is said that using nscd may remove the requirement for world readability of /etc/libnss-ldap.conf, but i didn't manage to set this in the short time i could spend on this issue. hope this helps, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iQCVAwUBRhelntpwN1sq38njAQLUOwP/Xz4v8l8afSzSaIX/dF3y6qKm6ZI54top m37UHoE72JPojw5hCh0e2iZgMp60//HZVP6PewydejTWcagWT7AGKPazw6Fn/aj1 Lc7ygba/PxhUPhI1QXZxOcXt7r7AvsFHt2sF1Y6zEYz5d+A/QA8F+jxA5rSD+GRP Xw6Wrg3cwi4= =Shov -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#329252: apt-proxy: Release.gpg is being downloaded, but only if missing. it should allways be
Package: apt-proxy Version: 1.9.35 Followup-For: Bug #329252 i have upgraded a locally served repository, adding non-free branch. mini-dinstall has properly updated the release file and Release.gpg, but apt-proxy has refreshed only it's Release file. after deleting the Release.gpg from the apt-proxy, it has refreshed properly. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages apt-proxy depends on: ii adduser 3.96 Add and remove users and groups ii bzip2 1.0.3-3high-quality block-sorting file co ii debconf [debconf-2.0] 1.5.3 Debian configuration management sy ii logrotate 3.7.1-3Log rotation utility ii python2.3.5-11 An interactive high-level object-o ii python-apt0.6.19 Python interface to libapt-pkg ii python-central0.5.5 register and build utility for Pyt ii python-twisted-web0.6.0-1An HTTP protocol implementation to apt-proxy recommends no packages. -- debconf information excluded -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#385289: mini-dinstall: i have fixed almost all reported bugs and a few more. bugfix on mentors
Package: mini-dinstall Version: 0.6.21-0.2 Severity: normal willing to use mini-dinstall on my lan, i have patched it a little to implement most of the reported mis-features, and added a few features of myself, both on the script part and on it's packaging facility. as it contains more than a trivial patch, i have re-packaged the software and uploaded it to mentors. please see http://mentors.debian.net/debian/pool/main/m/mini-dinstall. my work and todo intentions are documented in both ChangeLog and debian/changelog. there was no intention to take the maintainership over, and my name is on top of the changelog only to allow me to sign the package. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages mini-dinstall depends on: ii apt-utils 0.6.45 APT utility programs ii gnupg 1.4.5-1GNU privacy guard - a free PGP rep ii python2.3.5-11 An interactive high-level object-o ii python-apt0.6.19 Python interface to libapt-pkg ii python-support0.4.1 automated rebuilding support for p mini-dinstall recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#385289: mini-dinstall: i have fixed almost all reported bugs and a few more. bugfix on mentors
hi thomas, thanks for your prompt answer. Thomas Viehmann wrote: > Hi Alex, > > thank you for your interest in mini-dinstall and your efforts. It's good > to see work done on mini-dinstall! > > One or two general comments (I've not look at details yet): > - smaller patches for individual bugs would generally be preferable, though i began with applying the patches contributed on the devpage, it happens that applying some of them would require additional work when applying the others. my patches were much more obtrusive, and i haven't even dared to make a diff (i have even automatically translated tabs to spaces). > - I don't like the default installation of the init scripts for daemon > mode as I believe that queue mode is the more common and appropriate, i can't argue with your taste, but since each repository may take more than 20mb ram, and the documentation recommends daemon mode, i won't discourage an optional server installation. please take all my configuration files as examples. using debconf would generate much better environment, but i have no experience with this. > - gnupg should not be a dependency, only Suggests saying *should* means you know what you're saying ;-) . > - todo doesn't belong in the changelog, > - please capitalize correctly in the changelog, everything you saw there is a draft, so please feel free to comment or even overwrite. > - mini-dinstall will certainly not support alex-sid by default :) > (in fact "stable", "testing" and "unstable" are preferable to >sarge, etch, sid - if for nothing else then for apt behaviour w.r.t >default distros (but maybe this has been fixed)), apt works fine with either sid or unstable, provided they are defined in Release as codename and suite. this applies to the debian archive style, of course. > - providing a real mail address in any example file is not good. again, even though i have dput to mentors, i had no intention to directly publish it, so please make any changes you see suitable. > > alex bodnaru wrote: > >>my work and todo intentions are documented in both ChangeLog and >>debian/changelog. >>there was no intention to take the maintainership over, and my name is >>on top of the changelog only to allow me to sign the package. > > Eh, if you have a todo list, do you plan to sustain supporting > mini-dinstall? If so and you're not demotivated to much by above > critizism, you should become (co-)maintainer. mini-dinstall could > certainly profit from this. Ideally, we'd set up alioth project and svn > and commit-list or so. ... and maybe open a startup firm to provide mini-dinstall to the masses ;-) . sorry for the extrapolation. i would definitelly contribute to mini-dinstall, even officially, but btw, maintainers of native packages are also upstream maintainers? i hope to be able to devote some work to further improve mini-dinstall in the close future. btw i would add integration with apt-proxy to the todo list. > > Kind regards > > T. best wishes, alex -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#390725: ITP: vb2py -- convert existing visual basic applications into python
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> see below. * Package name: vb2py Version : 0.2.1 Upstream Author : Name <[EMAIL PROTECTED]> * URL : http://vb2py.sourceforge.net * License : BSD Programming Lang: Python Description : convert existing visual basic applications into python (Include the long description here.) The vb2Py project is developing a suite of conversion tools to aid in translating existing Visual Basic projects into Python. * The conversion includes, * VB code modules translating to Python code modules * VB classes to Python classes * VB Forms to PythonCard forms * VB Projects to PythonCard projects The project is also aiming to support translation of VB Script, ASP and VBA code into Python equivalent code. If you have experience in ASP and are interesting in contributing, please get in touch. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#173879: i have a python-leo package, and wish to contribute to existing effort
Package: wnpp Followup-For: Bug #173879 Owner: alex bodnaru <[EMAIL PROTECTED]> -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#383933: gnupg: --list-keys lists all keys with uid starting with that requested
Package: gnupg Version: 1.4.5-1 Severity: normal here is the list of all my secret keys (gpg --homedir `pwd` --list-secret-keys): /var/lib/mini-dinstall/.gnupg/secring.gpg - sec 1024D/9911519C 2006-08-18 uid resheteva mini-dinstall repository ssb 2048g/C759CB9D 2006-08-18 sec 1024D/BA8EF4FB 2006-08-20 uid resheteva mini-dinstall repository2 ssb 2048g/6086A696 2006-08-20 and now i'm filtering the list: gpg --homedir `pwd` --list-secret-keys "resheteva mini-dinstall repository" with the same result, despite the second key should not have apeared here. however, gpg --homedir `pwd` --list-secret-keys "resheteva mini-dinstall repository2" shows only the last key, but request for a keyid that doesn't match the prefix of any key in the secring, properly reports an error. in conclusion, this may have been intended as a feature, but exact matching or regular expression matching would do it better, in my opinion. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages gnupg depends on: ii libbz2-1.0 1.0.3-3 high-quality block-sorting file co ii libc6 2.3.6-15 GNU C Library: Shared libraries ii libldap22.1.30-13+b1 OpenLDAP libraries ii libreadline55.1-7GNU readline and history libraries ii libusb-0.1-42:0.1.12-2 userspace USB programming library ii makedev 2.3.1-82 creates device files in /dev ii zlib1g 1:1.2.3-13 compression library - runtime gnupg recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#392291: ITP: mooedit -- a useful programming and around-programming text editor
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: mooedit Version : x.y.z Upstream Author : Name <[EMAIL PROTECTED]> * URL : http://www.example.org/ * License : (GPL, LGPL, BSD, MIT/X, etc.) Programming Lang: (C, C++, C#, Perl, Python, etc.) Description : a useful programming and around-programming text editor (Include the long description here.) mooedit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. Features * Configurable syntax highlighting. * Configurable keyboard accelerators. * Multiplatform - works both on unix and windows. * Plugins: can be written in C or Python. * Configurable tools available from the main and context menus. They can be written in Python, or it can be a shell script, or in MooScript - simple builtin scripting lanugage. * Regular expression search/replace, grep and find frontends, builtin file selector and whatnot. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#386780: please recommend the vde package for networking of qemu and uml
Package: qemu Version: 0.8.1-1 Severity: minor as the uml networking method, present in qemu 0.8.0, discontinued with current 0.8.1, i'd like to recommend vde, that provides the same functionality for both packages. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages qemu depends on: ii bochsbios2.2.6-2 BIOS for the Bochs emulator ii libasound2 1.0.11-7ALSA library ii libc62.3.6.ds1-4 GNU C Library: Shared libraries ii libsdl1.2debian 1.2.11-3Simple DirectMedia Layer ii openhackware 0.4.1-2 OpenFirmware emulator for PowerPC ii proll18-2JavaStation PROM 2.x compatible re ii vgabios 0.6a-1 VGA BIOS software for the Bochs an ii zlib1g 1:1.2.3-13 compression library - runtime Versions of packages qemu recommends: ii debootstrap 0.3.3 Bootstrap a basic Debian system ii sharutils 1:4.2.1-15 shar, unshar, uuencode, uudecode -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#386779: qemu keyboard focus acts erroneosly
Package: qemu Version: 0.8.1-1 Severity: normal since the importance of separating between the hosting os and the guest, qemu designers have implemented and published the necessity to press ctrl+alt in order to pass focus from qemu back to x-window. i have observed two cases in which this focus is not been set correctly: 1. if the x-window in focus changes by using al-tab to the qemu window, keyboard actions are been passed to the guest, but unfortunately not entirely: pressing alt-tab again will switch to another x window, and more gravely, alt-f4 will not go to the guest (although it has keyboard focus) but to the host, and will thus kill the guest entirely. 2. xscreensaver is entirely taking the focus from the guest. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages qemu depends on: ii bochsbios2.2.6-2 BIOS for the Bochs emulator ii libasound2 1.0.11-7ALSA library ii libc62.3.6.ds1-4 GNU C Library: Shared libraries ii libsdl1.2debian 1.2.11-3Simple DirectMedia Layer ii openhackware 0.4.1-2 OpenFirmware emulator for PowerPC ii proll18-2JavaStation PROM 2.x compatible re ii vgabios 0.6a-1 VGA BIOS software for the Bochs an ii zlib1g 1:1.2.3-13 compression library - runtime Versions of packages qemu recommends: ii debootstrap 0.3.3 Bootstrap a basic Debian system ii sharutils 1:4.2.1-15 shar, unshar, uuencode, uudecode -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#380825: gnue-common: gnue doesn't find it's modules library. it needs python-support
Package: gnue-common Version: 0.6.1-1 Followup-For: Bug #380825 in order to activate any of the gnue suite, i need to change the source to add it's private libraries to the path. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages gnue-common depends on: ii python2.4.3-11 An interactive high-level object-o ii python-egenix-mxdatetime 2.0.6-4date and time handling routines fo Versions of packages gnue-common recommends: ii gnue-forms0.5.13-1 An XML-based forms painter ii gnue-reports 0.1.8-1An XML-based output-independent re ii python-mysqldb1.2.1-p2-4 A Python interface to MySQL ii python-psycopg1.1.21-9 Python module for PostgreSQL -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#392291: ITP: mooedit -- a useful programming and around-programming text editor
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: mooedit Version : 0.7.1 Upstream Author : Yevgen Muntyan <[EMAIL PROTECTED]> * URL : http://mooedit.org/ * License : GPL Programming Lang: C Description : a useful programming and around-programming text editor (Include the long description here.) mooedit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. Features * Configurable syntax highlighting. * Configurable keyboard accelerators. * Multiplatform - works both on unix and windows. * Plugins: can be written in C or Python. * Configurable tools available from the main and context menus. They can be written in Python, or it can be a shell script, or in MooScript - simple builtin scripting lanugage. * Regular expression search/replace, grep and find frontends, builtin file selector and whatnot. - -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (GNU/Linux) Comment: Using GnuPG with Debian - http://enigmail.mozdev.org iQCVAwUBRTMjFdpwN1sq38njAQL22AP/VF5XlwaEcA4ma83TC55fAcBYH9G+jA9i XSgpGiNRvqp3C6S1h7026UrGb5ujvoTFHeb46X4FoxiG2qBZJ2R2JXhCM2awQLek AxgIReMZY9B88CtyMPzGfYP4R8u+xs4GivI8py1QBZr23VTB+AdDxofnqDNEHhhq lUOSJpkTG2A= =r61A -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#394608: linux-image-2.6-686: the system halts on boot with 2.6.17 - 686 only
Package: linux-image-2.6-686 Version: 2.6.17 Severity: important the system halts during boot, most often during attempt to detect unexistent /dev/hdb. in the rare cases the boot process passes this hop, it finally hangs when hald is been actived. this happens only with the 2.6.17 kernel, in the 686 flavour. 486 works ok. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-686 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#730534: gawk: patsplit values and separators result arrays seem to be switched
Package: gawk Version: 1:4.0.1+dfsg-2.1 Severity: normal Dear Maintainer, thank you for maintaining this package. wishing to make a filter in the bluefish editor, i turned to awk. i needed to perform a matchall equivalent, so split/patsplit were chosen. the gawk man says "patsplit(s, a [, r [, seps] ])" the sepatator matches would be in the last param, as with split. in reality, for patsplit they were switched, as opposed to split, where they matched the man. i don't know which of them: the man or the program is to be fixed. thanks again, alex -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.11-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages gawk depends on: ii libc6 2.17-93 ii libreadline6 6.2+dfsg-0.1 ii libsigsegv2 2.10-2 gawk recommends no packages. Versions of packages gawk suggests: pn gawk-doc -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#730543: bluefish: changes to the filters table are not being saved with pressing ok
Package: bluefish Version: 2.2.4-2 Severity: normal Dear Maintainer, thank you for maintaining bluefish. i have added an awk filter to preprocess an sql buffer before pasting it in vbscript. after editing the command field for the filter, i pressed ok/apply to apply the changes, but the old command value came back. in order to have the command saved, i had to click on another command, of another filter, before ok/apply. my opinion is, that pressing ok/apply should commit all changes. thanks in advance, alex *** Please consider answering these questions, where appropriate *** * What led up to the situation? * What exactly did you do (or not do) that was effective (or ineffective)? * What was the outcome of this action? * What outcome did you expect instead? *** End of the template - remove these lines *** -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.11-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages bluefish depends on: ii bluefish-data 2.2.4-2 ii bluefish-plugins2.2.4-2 ii gvfs-backends 1.16.3-1+b2 ii libc6 2.17-93 ii libcairo2 1.12.16-2 ii libenchant1c2a 1.6.0-10 ii libgdk-pixbuf2.0-0 2.28.2-1 ii libglib2.0-02.36.4-1 ii libgtk-3-0 3.8.4-1 ii libpango1.0-0 1.36.0-1 ii libxml2 2.9.1+dfsg1-3 bluefish recommends no packages. Versions of packages bluefish suggests: ii bluefish-dbg2.2.4-2 ii chromium [www-browser] 31.0.1650.57-1 ii epiphany-browser [www-browser] 3.8.2-4 ii iceweasel [www-browser] 25.0-1 ii libxml2-utils 2.9.1+dfsg1-3 ii lynx-cur [www-browser] 2.8.8dev.16-1 ii midori [www-browser]0.4.3+dfsg-0.1 ii netsurf-gtk [www-browser] 2.9-2 ii opera [www-browser] 12.11.1661 pn php5-cli ii tidy20091223cvs-1.2 ii uzbl [www-browser] 0.0.0~git.20120514-1.1 ii weblint-perl [weblint] 2.20+dfsg-1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#730605: gnome-shell: after a short while from starting session, new windows show as black
Package: gnome-shell Version: 3.8.4-5 Severity: important Dear Maintainer, hello friends. thank you very much for maintaining gnome. unfortunately, a while ago i'm experiencing black new windows, and even black tooltips. my session crashes with every shell restart. i'll be willing to check and send anything you'd need to fix the problems. best regards, alex -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.11-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages gnome-shell depends on: ii dconf-gsettings-backend [gsettings-backend] 0.18.0-1 ii evolution-data-server3.8.5-3 ii gdm3 3.8.4-6 ii gir1.2-accountsservice-1.0 0.6.34-2 ii gir1.2-caribou-1.0 0.4.12-1 ii gir1.2-clutter-1.0 1.14.4-3 ii gir1.2-freedesktop 1.36.0-2+b1 ii gir1.2-gcr-3 3.8.2-4 ii gir1.2-gkbd-3.0 3.6.0-1 ii gir1.2-glib-2.0 1.36.0-2+b1 ii gir1.2-gmenu-3.0 3.8.0-2 ii gir1.2-gnomebluetooth-1.03.8.1-2 ii gir1.2-gnomedesktop-3.0 3.8.4-2 ii gir1.2-gtk-3.0 3.8.4-1 ii gir1.2-ibus-1.0 1.5.3-7 ii gir1.2-mutter-3.03.8.4-2 ii gir1.2-networkmanager-1.00.9.8.0-5 ii gir1.2-nmgtk-1.0 0.9.8.4-1 ii gir1.2-pango-1.0 1.36.0-1 ii gir1.2-polkit-1.00.105-4 ii gir1.2-soup-2.4 2.44.1-1 ii gir1.2-telepathyglib-0.120.22.0-1 ii gir1.2-telepathylogger-0.2 0.8.0-2 ii gir1.2-upowerglib-1.00.9.23-2+b1 ii gjs 1.36.1-2 ii gnome-bluetooth 3.8.1-2 ii gnome-icon-theme-symbolic3.10.1-1 ii gnome-settings-daemon3.8.5-2 ii gnome-shell-common 3.8.4-5 ii gnome-themes-standard3.8.4-1 ii gsettings-desktop-schemas3.8.2-2 ii libatk-bridge2.0-0 2.10.0-1+b1 ii libatk1.0-0 2.10.0-2 ii libc62.17-93 ii libcairo-gobject21.12.16-2 ii libcairo21.12.16-2 ii libcamel-1.2-43 3.8.5-3 ii libcanberra-gtk3-0 0.30-2 ii libcanberra0 0.30-2 ii libclutter-1.0-0 1.14.4-3 ii libcogl-pango12 1.14.0-3 ii libcogl121.14.0-3 ii libcroco30.6.8-2 ii libdbus-1-3 1.6.18-1 ii libdbus-glib-1-2 0.100.2-1 ii libecal-1.2-15 3.8.5-3 ii libedataserver-1.2-173.8.5-3 ii libegl1-mesa [libegl1-x11] 9.2.2-1 ii libgck-1-0 3.8.2-4 ii libgcr-base-3-1 3.8.2-4 ii libgdk-pixbuf2.0-0 2.28.2-1 ii libgirepository-1.0-11.36.0-2+b1 ii libgjs0c [libgjs0-libmozjs185-1.0] 1.36.1-2 ii libglib2.0-0 2.36.4-1 ii libgnome-menu-3-03.8.0-2 ii libgstreamer1.0-01.2.1-1 ii libgtk-3-0 3.8.4-1 ii libical0 0.48-2 ii libjson-glib-1.0-0 0.16.2-1 ii libmozjs185-1.0 1.8.5-1.0.0+dfsg-4+b1 ii libmutter0b 3.8.4-2 ii libnm-glib4 0.9.8.0-5 ii libnm-gtk0 0.9.8.4-1 ii libnm-util2 0.9.8.0-5 ii libnspr4 2:4.10.2-1 ii libnspr4-0d 2:4.10.2-1 ii libnss3 2:3.15.3-1 ii libnss3-1d 2:3.15.3-1 ii libp11-kit0 0.20.1-3 ii libpango-1.0-0 1.36.0-1 ii libpangocairo-1.0-0 1.36.0-1 ii libpolkit-agent-1-0 0.105-4 ii libpolkit-gobject-1-00.105-4 ii libpulse-mainloop-glib0
Bug#740724: bluefish: fails to open remote files, like sftp://..........
Package: bluefish Version: 2.2.5-3 Severity: important Dear olivier, daniel, other friends, i've just upgraded bluefish to 2.2.5, after i'm using it for years now. sorry i can't comment more on the new version, but all my files are remote, so i can't use the editor. remote gtk bookmarks fail to open in the file dialog too, however i can easily open them in the files program. how could i investigate more? thanks in advance, alex -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.12-1-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages bluefish depends on: ii bluefish-data2.2.5-3 ii bluefish-plugins 2.2.5-3 ii gvfs-backends1.16.3-2 ii libc62.17-97 ii libcairo21.12.16-2 ii libenchant1c2a 1.6.0-10 ii libgdk-pixbuf2.0-0 2.30.5-1 ii libglib2.0-0 2.38.2-5 ii libgtk-3-0 3.10.7-1 ii libpango-1.0-0 1.36.0-1+b1 ii libpangocairo-1.0-0 1.36.0-1+b1 ii libxml2 2.9.1+dfsg1-3 bluefish recommends no packages. Versions of packages bluefish suggests: ii chromium [www-browser] 32.0.1700.123-1 pn csstidy ii dos2unix6.0.4-1 ii epiphany-browser [www-browser] 3.8.2-5 ii iceweasel [www-browser] 27.0.1-1 ii libxml2-utils 2.9.1+dfsg1-3 ii lynx-cur [www-browser] 2.8.8pre5-1 ii midori [www-browser]0.4.3+dfsg-0.1 ii netsurf-gtk [www-browser] 2.9-2+b1 ii opera [www-browser] 12.11.1661 pn php-codesniffer pn pylint ii tidy20091223cvs-1.2 ii uzbl [www-browser] 0.0.0~git.20120514-1.1 ii weblint-perl [weblint] 2.20+dfsg-1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#740726: poppler: fails to build from source
Source: poppler Version: 0.22.5 Severity: important Dear pino, i'm building poppler with every upgrade in order to apply my rtl related patches. now it fails to build, claiming for a missing aclocal-1.13 and automake-1.13 the available versions are 1.9, 1.10, 1.11, 1.14, and 1.19. the source package should probably depend on the correct version, that would have probably prevented it's dissappearance. best regards, alex -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.12-1-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#740726: poppler: fails to build from source
hi pino, thanks for your prompt response. i'm attaching my short build log. i have tried to build right after apt-get source. my patches do not refer to automake/aclocal/their version. i'm ready for any further test. thanks in advance, alex On 03/04/2014 06:05 PM, Pino Toscano wrote: Hi, On 2014-03-04 13:51, alex bodnaru wrote: Source: poppler Version: 0.22.5 Severity: important Dear pino, i'm building poppler with every upgrade in order to apply my rtl related patches. now it fails to build, claiming for a missing aclocal-1.13 and automake-1.13 the available versions are 1.9, 1.10, 1.11, 1.14, and 1.19. the source package should probably depend on the correct version, that would have probably prevented it's dissappearance. Please post the *full* build log. Also, make sure you are building in a clean way, and not from an already built source tree. Thanks, -- best regards, alex dpkg-buildpackage -rfakeroot -D -us -uc dpkg-buildpackage: source package poppler dpkg-buildpackage: source version 0.22.5-4 dpkg-buildpackage: source distribution unstable dpkg-buildpackage: source changed by Pino Toscano dpkg-source --before-build poppler-0.22.5 dpkg-buildpackage: host architecture i386 fakeroot debian/rules clean dh clean --parallel --with gir dh_testdir -O--parallel debian/rules override_dh_auto_clean make[1]: Entering directory `/usr/local/src/poppler/poppler-0.22.5' dh_auto_clean make[2]: Entering directory `/usr/local/src/poppler/poppler-0.22.5' cd . && automake-1.13 --foreign /bin/sh: line 4: automake-1.13: command not found make[2]: *** [Makefile.in] Error 1 make[2]: Leaving directory `/usr/local/src/poppler/poppler-0.22.5' dh_auto_clean: make -j1 distclean returned exit code 2 make[1]: *** [override_dh_auto_clean] Error 2 make[1]: Leaving directory `/usr/local/src/poppler/poppler-0.22.5' make: *** [clean] Error 2 dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2
Bug#740724: bluefish hangs while ptrobably waiting for a connection to the server
Package: bluefish Version: 2.2.5-3 Followup-For: Bug #740724 Dear Maintainer, nothing new, just mentioning that the program hangs, and would exit only with killall -9 bluefish. best regards, alex -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.12-1-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages bluefish depends on: ii bluefish-data2.2.5-3 ii bluefish-plugins 2.2.5-3 ii gvfs-backends1.16.3-2 ii libc62.17-97 ii libcairo21.12.16-2 ii libenchant1c2a 1.6.0-10 ii libgdk-pixbuf2.0-0 2.30.5-1 ii libglib2.0-0 2.38.2-5 ii libgtk-3-0 3.10.7-1 ii libpango-1.0-0 1.36.0-1+b1 ii libpangocairo-1.0-0 1.36.0-1+b1 ii libxml2 2.9.1+dfsg1-3 bluefish recommends no packages. Versions of packages bluefish suggests: ii chromium [www-browser] 32.0.1700.123-1 pn csstidy ii dos2unix6.0.4-1 ii epiphany-browser [www-browser] 3.8.2-5 ii iceweasel [www-browser] 27.0.1-1 ii libxml2-utils 2.9.1+dfsg1-3 ii lynx-cur [www-browser] 2.8.8pre5-1 ii midori [www-browser]0.4.3+dfsg-0.1 ii netsurf-gtk [www-browser] 2.9-2+b1 ii opera [www-browser] 12.11.1661 pn php-codesniffer pn pylint ii tidy20091223cvs-1.2 ii uzbl [www-browser] 0.0.0~git.20120514-1.1 ii weblint-perl [weblint] 2.20+dfsg-1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#740726: poppler: fails to build from source
hello tino, when i just apt-get source, debuild will run normally. but if i `touch configure.ac` the failure happens even without my patches. and my patches modify configure.ac indeed. build log attached. anything we can do? alex On 03/05/2014 08:52 AM, Pino Toscano wrote: Hi, On 2014-03-05 00:24, alex bodnaru wrote: i'm attaching my short build log. i have tried to build right after apt-get source. my patches do not refer to automake/aclocal/their version. i'm ready for any further test. What if you try to build *without* your patches, i.e. just the sources as you get them from the Debian archive? (Note a clean build is better.) -- best regards, alex dpkg-buildpackage -rfakeroot -D -us -uc dpkg-buildpackage: source package poppler dpkg-buildpackage: source version 0.22.5-4 dpkg-buildpackage: source distribution unstable dpkg-buildpackage: source changed by Pino Toscano dpkg-source --before-build poppler-0.22.5 dpkg-buildpackage: host architecture i386 fakeroot debian/rules clean dh clean --parallel --with gir dh_testdir -O--parallel debian/rules override_dh_auto_clean make[1]: Entering directory `/usr/local/src/poppler/poppler-0.22.5' dh_auto_clean rm -f glib/reference/html/* rm -f debian/libpoppler-glib8.symbols debian/libpoppler-qt4-4.symbols make[1]: Leaving directory `/usr/local/src/poppler/poppler-0.22.5' dh_clean -O--parallel dpkg-source -b poppler-0.22.5 dpkg-source: info: using source format `3.0 (quilt)' dpkg-source: info: building poppler using existing ./poppler_0.22.5.orig.tar.gz dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-poppler.html dpkg-source: warning: ignoring deletion of file glib/reference/html/index.sgml dpkg-source: warning: ignoring deletion of file glib/reference/html/right.png dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-22.html dpkg-source: warning: ignoring deletion of file glib/reference/html/annotation-glossary.html dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-12.html dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler.devhelp2 dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerAnnot.html dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerMovie.html dpkg-source: warning: ignoring deletion of file glib/reference/html/ch01.html dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-PopplerAction.html dpkg-source: warning: ignoring deletion of file glib/reference/html/left.png dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-18.html dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerPage.html dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerDocument.html dpkg-source: warning: ignoring deletion of file glib/reference/html/style.css dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-16.html dpkg-source: warning: ignoring deletion of file glib/reference/html/up.png dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerMedia.html dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-deprecated.html dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerFormField.html dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-14.html dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Version-and-Features-Information.html dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-full.html dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerAttachment.html dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerLayer.html dpkg-source: warning: ignoring deletion of file glib/reference/html/index.html dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-20.html dpkg-source: warning: ignoring deletion of file glib/reference/html/home.png dpkg-source: info: building poppler in poppler_0.22.5-4.debian.tar.xz dpkg-source: info: building poppler in poppler_0.22.5-4.dsc debian/rules build dh build --parallel --with gir dh_testdir -O--parallel debian/rules override_dh_auto_configure make[1]: Entering directory `/usr/local/src/poppler/poppler-0.22.5' dh_auto_configure -- --enable-libjpeg --enable-libpng --enable-libtiff --enable-splash-output --enable-cairo-output --enable-poppler-glib --enable-poppler-qt4 --enable-poppler-cpp --enable-gtk-doc --enable-xpdf-headers --enable-introspection=yes --enable-cms=lcms2 --disable-gtk-test configure: WARNING: u
Bug#750054: fribidi: please provide libfribidi.so, needed to python-fribidi
Package: libfribidi0 Version: 0.19.6-1 Severity: normal File: fribidi Dear Maintainer, thank you for packaging fribidi. i'm using it through python-fribidi, an interface handmade by the upstream author: https://github.com/behnam/python-fribidi. this interface is invoking libfribidi.so, which i allways have to edit to .0, as in your pachage. of course, it would be nice to package the interface too. thanks in advance, alex -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 3.14-1-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libfribidi0:i386 depends on: ii libc6 2.18-7 ii multiarch-support 2.18-7 libfribidi0:i386 recommends no packages. libfribidi0:i386 suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#750054: [Debian-hebrew-package] Bug#750054: fribidi: please provide libfribidi.so, needed to python-fribidi
On 06/02/2014 10:48 AM, أحمد المحمودي wrote: tag 750054 +wontfix quit On Sun, Jun 01, 2014 at 09:19:47AM +0300, alex bodnaru wrote: Package: libfribidi0 Version: 0.19.6-1 Severity: normal File: fribidi thank you for packaging fribidi. i'm using it through python-fribidi, an interface handmade by the upstream author: https://github.com/behnam/python-fribidi. this interface is invoking libfribidi.so, which i allways have to edit to .0, as in your pachage. of course, it would be nice to package the interface too. ---end quoted text--- A python module is already provided by Debian package: python-pyfribidi This package correctly invokes the available .so file in Debian. Anyways, to use Behnam's python module, you will have to install libfribidi-dev, which installs a libfribidi.so symlink to libfribidi.so.0 hello friend, thank you for your answer. indeed, i should have remembered that only -dev packages have the .so$ lib. and libfreebidi-dev is no exception. np you closed the bug. curiously ctypes.CDLL complains it can't find it, probably due to a clash. as of behdad's interface to fribidi, it provides wider functionality exposure than pyfribidi. i turned to his interface since i missed that functionality in pyfribidi. thanks again. -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#740724: Unreproducible
thanks daniel, now it works indeed. however, i had the issue for a long period during, and probably due to, gvfs, glib, and bluefish upgrades. yes, gedit was working ok, even while bluefish was not. now you may close the bug indeed :) . alex On 05/10/2014 11:06 PM, Daniel Leidert wrote: tags 740724 + unreproducible moreinfo Hi Alex, I cannot reproduce your issue. I've just tested and sftp:// works just fine. You can try to run bluefish in a debugger or via strace and check, where it hangs. You might check your local ~/.xsession-errors and your other log files for more information on what goes wrong. Do you see anything useful when you start bluefish from the command line? Can you access remote locations via other applications and via gvfs* commands (like gvfs-info)? Regards, Daniel -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#730543: Filters preferences dialog
thank you daniel :) On 05/11/2014 12:43 AM, Daniel Leidert wrote: Hi Alex, Unfortunately evolution sent the last mail before it was ready :( So: I'm not sure you hit a bug. I still forwarded the issue to the upstream bug tracker. Lets see, what they say. Regards, Daniel -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#730543: Probably not a bug
thanks for your response marc :). it would be more robust if the info would be updated without leaving the field. On 05/10/2014 11:45 PM, Marc wrote: Hi Alex, Thanks for the report. IMO this is not a bug. You have to leave the field first. -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#690847: poppler.
Source: poppler Version: 0.20.5-1 Severity: normal hello friend, wishing to improve upstream a little, i found myself forced to apply patches i didn't create. that was because debian/rules clean leaves configure and Makefile.in files. maybe make distclean should be invoked? thanks a lot for your work, and i'd be delighted to post the patches on debian, before you'ld package the latest upstream. alex -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.2.0-3-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#693544: python-poppler: wrong string support in poppler_document_new_from_data
Package: python-poppler Version: 0.12.1-8 Severity: important hello friend(s), thanks a lot for maintaining python-poppler. a small bug has unfortunately bit me with poppler_document_new_from_data. the python string argument is not working ok. i have applied with success the patch at https://launchpadlibrarian.net/110328766/poppler.override.patch. see author discussion at https://bugs.launchpad.net/poppler-python/+bug/312462. the only change it needed was prefixing poppler.override with a/ on line 2 and with b/ on line 3. thanks in advance, alex -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.2.0-4-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages python-poppler depends on: ii libatk1.0-0 2.4.0-2 ii libc6 2.13-36 ii libcairo2 1.12.2-2 ii libfontconfig1 2.9.0-7 ii libfreetype62.4.9-1 ii libgdk-pixbuf2.0-0 2.26.1-1 ii libglib2.0-02.33.12+really2.32.4-3 ii libgtk2.0-0 2.24.10-2 ii libpango1.0-0 1.30.0-1 ii libpoppler-glib80.20.5-1 ii python 2.7.3-3 ii python-cairo1.8.8-1+b2 ii python-gobject 3.2.2-1 ii python-gtk2 2.24.0-3 python-poppler recommends no packages. python-poppler suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#607052: closed by Carsten Schoenert (Re: Bug#607052: icedove: the window doesn't show when i upgraded to 3.17)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 no problem, thanks On 06/21/2012 08:27 PM, Debian Bug Tracking System wrote: > This is an automatic notification regarding your Bug report > which was filed against the icedove package: > > #607052: icedove: the window doesn't show when i upgraded to 3.17 > > It has been closed by Carsten Schoenert . > > Their explanation is attached below along with your original report. > If this explanation is unsatisfactory and you have not received a > better one in a separate message then please contact Carsten Schoenert by > replying to this email. > > - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAk/kFdUACgkQ2nA3WyrfyeO3/AQAkCFQAwJZdCzkRuh+vdrOe6zu qH2LHayPTDE6JnMma3YeopKQzmMUZa5hGz+HriJOrkrWW9Z1nznO45nS6Htm48Gf T5wDwZfxe+5pwENMXNjGQd56GVlzrMDxsGzIGfCIl7a7j55xS42IyGv0cZoEgjDk 5I7jJUsbNFnvS57N79g= =dldJ -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#681351: byobu: when TERM==screen-bce (ctrl and/or shift)+arrow keys don't work. mcedit breaks
Package: byobu Severity: normal Dear Maintainer, thanks a lot for byobu. the problem i'm reporting has a workaround, to guide anyone tha might run in the same problem. i'm using mc and mcedit in a screen session, now switched to byobu. the problem i've experienced was in byobu sessions, since it turns bce on, thus changing the TERM value to screen-bce. to work around this, i've turned bce off, by appending: 'defbce off' to ~/.byobu/profile. another thing i had to do properly use mc was insering: source $BYOBU_PREFIX/share/byobu/keybindings/f-keys.screen.disable after the first line in ~/.byobu/keybindings. my setup works with the screen backend, of course. best regards and thanks again, alex -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#690847: poppler.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi pino, thanks for your answer. On 10/18/2012 04:36 PM, Pino Toscano wrote: debuild -uc -us handled correctly my patches. but dpkg-source also created a patch of the Makefile.in and configure file. importing this patch does help. i've fixed and improved some issues related to rtl support. other on the way. maybe, but then they are being deleted in the debuild process. right, although upstream like the patches, they will be applied to their unstable tip. untill that tip will be stable, i'll submit them on debian too. for now, just for the test, you may take my patches, add them to series etc theb debuild. this will work only once. - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with undefined - http://www.enigmail.net/ iJwEAQECAAYFAlC48DgACgkQ2nA3WyrfyePG7QP/egBl6Susri41qIQBHsPhPTJA 9txkKWUS5eVHgTpZGvxN1J1QIjDydxuYNJ5ooG5KX8+YHc6hJ9Gj0/xyM7oChFNp O7K9pTbKan5nXh605R4LTry1kOwrJsLe5sjtxo3APj1Y+258tMTogO1xGRMmciYA NSmYphgwWKG3A7M9Oo4= =qJ4J -END PGP SIGNATURE- Index: poppler-0.20.5/CMakeLists.txt === --- poppler-0.20.5.orig/CMakeLists.txt 2012-10-18 01:53:13.0 +0200 +++ poppler-0.20.5/CMakeLists.txt 2012-10-18 01:53:53.0 +0200 @@ -30,6 +30,8 @@ option(ENABLE_LIBOPENJPEG "Use libopenjpeg for JPX streams." ON) option(ENABLE_LCMS "Use liblcms for color management." ON) option(ENABLE_LIBCURL "Build libcurl based HTTP support." OFF) +option(ENABLE_ICU "Build with ICU." ON) +option(ENABLE_FRIBIDI "Build with FRIBIDI." ON) option(ENABLE_ZLIB "Build with zlib (not totally safe)." OFF) option(USE_FIXEDPOINT "Use fixed point arithmetic in the Splash backend" OFF) option(USE_FLOAT "Use single precision arithmetic in the Splash backend" OFF) @@ -124,6 +126,21 @@ set(ENABLE_CPP ${ICONV_FOUND}) set(HAVE_ICONV ${ICONV_FOUND}) endif(ENABLE_CPP) + +# well i don't know what to do here. +# fribidi should be enabled if icu can't be. +# the modules are there. +if(ENABLE_ICU) + macro_optional_find_package(ICU) + set(ENABLE_ICU ${ICU_FOUND}) + set(HAVE_ICU ${ICU_FOUND}) +endif(ENABLE_ICU) +if(ENABLE_FRIBIDI) + macro_optional_find_package(FRIBIDI) + set(ENABLE_FRIBIDI ${FRIBIDI_FOUND}) + set(HAVE_FRIBIDI ${FRIBIDI_FOUND}) +endif(ENABLE_FRIBIDI) + if(ENABLE_ZLIB) find_package(ZLIB) if(ZLIB_FOUND) Index: poppler-0.20.5/Makefile.am === --- poppler-0.20.5.orig/Makefile.am 2012-10-18 01:53:13.0 +0200 +++ poppler-0.20.5/Makefile.am 2012-10-18 01:53:53.0 +0200 @@ -86,6 +86,8 @@ cmake/modules/PopplerDefaults.cmake \ cmake/modules/PopplerMacros.cmake \ cmake/modules/FindLIBOPENJPEG.cmake \ + cmake/modules/FindICU.cmake\ + cmake/modules/FindFriBiDi.cmake\ config.h.cmake \ poppler-cairo.pc.cmake \ poppler/poppler-config.h.cmake\ Index: poppler-0.20.5/configure.ac === --- poppler-0.20.5.orig/configure.ac 2012-10-18 01:53:13.0 +0200 +++ poppler-0.20.5/configure.ac 2012-10-18 01:53:53.0 +0200 @@ -265,6 +265,44 @@ AC_DEFINE(HAVE_FSEEK64) fi +dnl Test for icu +AC_ARG_ENABLE(icu, + AC_HELP_STRING([--enable-icu], + [Build with icu based BIDI support. Enabled by default.]), + enable_icu=$enableval, + enable_icu="yes") +if test x$enable_icu = xyes; then + PKG_CHECK_MODULES(ICU, icu-uc, +[icu_pkgconfig=yes], [icu_pkgconfig=no]) + if test "x$icu_pkgconfig" = "xyes"; then +AC_DEFINE(HAVE_ICU, 1, [Have ICU include files]) + else +ICU_LIBS= +ICU_CFLAGS= +AC_PATH_PROG(ICU_CONFIG, icu-config, no) +if test "x$ICU_CONFIG" != "xno" ; then + ICU_CFLAGS= + ICU_LIBS=`$ICU_CONFIG --ldflags-libsonly` + AC_DEFINE(HAVE_ICU, 1, [Have ICU include files]) +fi + fi +fi + +dnl Test for fribidi +if test "x$ICU_LIBS" = "x"; then +AC_ARG_ENABLE(fribidi, + AC_HELP_STRING([--enable-fribidi], + [Build with fribidi based BIDI support. Enabled by default.]), + enable_fribidi=$enableval, + enable_fribidi="yes") +if test x$enable_fribidi = xyes; then + PKG_CHECK_MODULES([FRIBIDI], [fribidi], +[AC_DEFINE(HAVE_FRIBIDI, 1, [whether FriBidi is available])], [:]) + AC_SUBST(FRIBIDI_CFLAGS) + AC_SUBST(FRIBIDI_LIBS) +fi +fi + dnl Test for zlib AC_ARG_ENABLE([zlib], [AS_HELP_STRING([--enable-zlib],[Build with zlib])], @@ -816,6 +854,8 @@ echo " use libjpeg:$enable_libjpeg" echo " use libpng: $enable_libpng" echo " use libtiff:$enable_libtiff" +echo " use icu:$enable_icu" +ec
Bug#690847: poppler.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 thanks pino, of course patches would debute on unstable. the moment the patch on upstream will maturize, i'll submit it here too. alex On 11/30/2012 08:07 PM, Pino Toscano wrote: > retitle 690847 patch for RTL issues > thanks > > Hi Alex, > > Alle venerdì 30 novembre 2012, alex bodnaru ha scritto: >> i've fixed and improved some issues related to rtl support. other on >> the way. > >> right, although upstream like the patches, they will be applied to >> their unstable tip. > > Which bugs does this patch fix? Can you please point me to upstream > bugs? > >> untill that tip will be stable, i'll submit them on debian too. > > It is way too late to introduce new dependencies now for Wheezy; after > that, there will be plently of time for updating Poppler, so having them > applied to Poppler 0.22 or 0.24 should have a good chance to have to be > part of Jessie (the stable release after Wheezy). > - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with undefined - http://www.enigmail.net/ iJwEAQECAAYFAlC5CykACgkQ2nA3WyrfyeMUIwQAqNKUb5VgcjHUy2at+9kfyxh/ H888x58KkGLEdNF4vKyE/YDTQXjDKJ105x7MqKq7ZhqZAejYZYFfN1p5l3eBImHS Jh+/5DBXQJfVA+tmmViqOZLXp4X4tcsdoZ7809ETWTuWtQ06kaUA8BMWuNRuIg+Q rmlL7s8AoSDqMhaY9uI= =UTDI -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#607690: closed by Carsten Schoenert (Re: Bug#607690: Fwd: from sender with the problem)
thank you for your consideration. the problem has been fixed by now. On 05/05/2013 01:51 PM, Debian Bug Tracking System wrote: This is an automatic notification regarding your Bug report which was filed against the icedove package: #607690: icedove: a quote mark in the sender name (with the address) hurts it's interpretation It has been closed by Carsten Schoenert . Their explanation is attached below along with your original report. If this explanation is unsatisfactory and you have not received a better one in a separate message then please contact Carsten Schoenert by replying to this email. -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#702967: icedove: charset in subject is ignored. maybe it needs an alias
Package: icedove Version: 17.0.2-1 Severity: normal Dear Maintainer(s), some of the messages i receive have the following subject field: Subject: =?windows-1255?B?QXZuZXQvSURUIFNlbWluYXI6RU1DLSBUaGUgQ3VycmVudCBMb29wIGFuYWx5c2lzIG9mIHNpZ25h bHMgMjAuMy4xMw==?= that's the way it shows, both in the messages list and in the message's title and headers. however the from field seems to be similarly encoded, i can see it correctly in both places: From: =?windows-1255?B?4OHw6CDp+fjg7P==?= what would you think of it? maybe it happens because the long subject line gets split? thanks a lot for your time and consideration, alex -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.2.0-4-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages icedove depends on: ii debianutils 4.3.4 ii fontconfig2.9.0-7.1 ii libasound21.0.25-4 ii libatk1.0-0 2.4.0-2 ii libc6 2.13-38 ii libcairo2 1.12.2-3 ii libdbus-1-3 1.6.8-1 ii libdbus-glib-1-2 0.100.2-1 ii libevent-2.0-52.0.19-stable-3 ii libffi5 3.0.10-3 ii libfontconfig12.9.0-7.1 ii libfreetype6 2.4.9-1.1 ii libgcc1 1:4.7.2-5 ii libgdk-pixbuf2.0-02.26.1-1 ii libglib2.0-0 2.33.12+really2.32.4-5 ii libgtk2.0-0 2.24.10-2 ii libhunspell-1.3-0 1.3.2-4 ii libjpeg8 8d-1 ii libnspr4 2:4.9.5-1 ii libnss3 2:3.14.2-1 ii libnss3-1d2:3.14.2-1 ii libpango1.0-0 1.30.0-1 ii libpixman-1-0 0.26.0-4 ii libsqlite3-0 3.7.15.2-1 ii libstartup-notification0 0.12-1 ii libstdc++64.7.2-5 ii libvpx1 1.1.0-1 ii libx11-6 2:1.5.0-1 ii libxext6 2:1.3.1-2 ii libxrender1 1:0.9.7-1 ii libxt61:1.1.3-1 ii psmisc22.20-1 ii zlib1g1:1.2.7.dfsg-13 Versions of packages icedove recommends: ii hunspell-ro [hunspell-dictionary] 1:3.3.0-4 ii myspell-en-us [myspell-dictionary] 1:3.3.0-4 ii myspell-he [myspell-dictionary] 1.2-2 Versions of packages icedove suggests: ii fonts-lyx 2.0.3-3 ii libgssapi-krb5-2 1.10.1+dfsg-4 -- debconf information: * icedove/browser: GNOME -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#702967: Acknowledgement (icedove: charset in subject is ignored. maybe it needs an alias)
hello, i have made some inquiry since, so you could see reference on the net for this problem: a similar question, unanswered: https://getsatisfaction.com/mozilla_messaging/topics/message_subject_shows_charset_info_e_g_windows_1252 a similar bug report, reported as fixed: https://bugzilla.mozilla.org/show_bug.cgi?id=460443 in the hope to help, best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#572170: openoffice.org: when a macro removes a macro library from a doc, the save option is grey
Package: openoffice.org Version: 1:3.2.0-2 Severity: normal hello friends, rene, i've done a macro to remove libraries of macros from a document. the document was saved, so the save option is grey. i've run the macro, which removed the libraries indeed. but the save option remained grey as before. this is the macro: sub libRemove() oLibs = ThisComponent.BasicLibraries If oLibs.hasByName("autocontract") Then oLibs.removeLibrary("autocontract") End If end sub best regards, alex -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.32-trunk-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages openoffice.org depends on: ii liblucene2-java 2.9.1+ds1-5 Full-text search engine library fo ii openoffice.org-base 1:3.2.0-2 full-featured office productivity ii openoffice.org-calc 1:3.2.0-2 full-featured office productivity ii openoffice.org-core 1:3.2.0-2 full-featured office productivity ii openoffice.org-draw 1:3.2.0-2 full-featured office productivity ii openoffice.org-filter-mobile 1:3.2.0-2 full-featured office productivity ii openoffice.org-impress 1:3.2.0-2 full-featured office productivity ii openoffice.org-java-common 1:3.2.0-2 full-featured office productivity ii openoffice.org-math 1:3.2.0-2 full-featured office productivity ii openoffice.org-officebean1:3.2.0-2 full-featured office productivity ii openoffice.org-report-builde 1:3.2.0-2 OpenOffice.org extension for build ii openoffice.org-writer1:3.2.0-2 full-featured office productivity ii ttf-dejavu 2.30-2 Metapackage to pull in ttf-dejavu- ii ttf-sil-gentium-basic1.1-2 smart Unicode font families (Basic Versions of packages openoffice.org recommends: ii openoffice.org-filter- 1:3.2.0-2 full-featured office productivity ii ttf-liberation 1.05.2.20091019-4 Fonts with the same metrics as Tim ii ttf-mscorefonts-instal 3.2 Installer for Microsoft TrueType c Versions of packages openoffice.org suggests: ii cups-bsd 1.4.2-4 Common UNIX Printing System(tm) - ii default-jre [java5-runtime 1.6-34Standard Java or Java compatible R ii gstreamer0.10-ffmpeg 0.10.9-3+b1 FFmpeg plugin for GStreamer ii gstreamer0.10-plugins-bad 0.10.17-1 GStreamer plugins from the "bad" s ii gstreamer0.10-plugins-base 0.10.26-1 GStreamer plugins from the "base" ii gstreamer0.10-plugins-good 0.10.18-1 GStreamer plugins from the "good" ii gstreamer0.10-plugins-ugly 0.10.13-2 GStreamer plugins from the "ugly" pn hunspell-dictionary(no description available) ii icedove3.0.2-1 mail/news client with RSS and inte ii iceweasel 3.5.8-1 Web browser based on Firefox ii imagemagick7:6.5.8.3-1 image manipulation programs ii libgl1-mesa-glx [libgl1] 7.6.1-1 A free implementation of the OpenG ii libldap-2.4-2 2.4.17-2.1OpenLDAP libraries ii libpaper-utils 1.1.23+nmu1 library for handling paper charact ii libsane1.0.20-14+b1 API library for scanners ii libxrender11:0.9.5-1 X Rendering Extension client libra ii menu 2.1.43generates programs menu for all me ii myspell-en-us [myspell-dic 1:3.2.0~rc2-1 English_american dictionary for my ii myspell-he [myspell-dictio 1.0-4.1 Hebrew dictionary for myspell pn openclipart-openoffice.org (no description available) ii openjdk-6-jre [java5-runti 6b17-1.7-1OpenJDK Java runtime, using Hotspo ii openoffice.org-gnome 1:3.2.0-2 full-featured office productivity ii openoffice.org-help-en-us 1:3.2.0-2 full-featured office productivity pn openoffice.org-hyphenation (no description available) ii openoffice.org-l10n-he [op 1:3.2.0-2 full-featured office productivity pn openoffice.org2-thesaurus (no description available) ii pstoedit 3.45-8PostScript and PDF files to editab ii unixodbc 2.2.11-21 ODBC tools libraries Versions of packages openoffice.org-core depends on: ii fontconfig 2.8.0-2 generic font configuration library ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra ii libcurl37.19.7-1 Multi-protocol file transfer libra ii libdb4.84.8.26-1 Berkeley v4.8 Database Libraries [ ii libexpat1 2.0.1-7 XML parsing C library - runtime li ii libfreet
Bug#562064: closed by Arnaud Quette (Bug#562064: fixed in nut 2.4.3-1)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 thanks a lot arnaud :) On 03/06/2010 01:06 AM, Debian Bug Tracking System wrote: > This is an automatic notification regarding your Bug report > which was filed against the nut package: > > #562064: deprecated udev rules installed by nut in > /etc/udev/rules.d/52-nut-usbups.rules > > It has been closed by Arnaud Quette . > > Their explanation is attached below along with your original report. > If this explanation is unsatisfactory and you have not received a > better one in a separate message then please contact Arnaud Quette > by > replying to this email. > > - -- - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAkuSNJkACgkQ2nA3WyrfyeOuvwQAqmQP1eri4WvzrSsUzlxxAAWU gSWN24psGrpldefhmkRNvzdR/deaytXYlrBJC5VBJAZmC83GotFQ0Ar6Xv5ZZiyM IpHPIc0+Tu+RH9Php0KTZfY45ihM5OaHc5Uuzhuxbwy+w3Ahm1ERcowQH5oozhVf Mpl8nnPaXz+18lG0XCs= =/OBG -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#629649: icedove: fails to display birthday field in address book contact summary
Package: icedove Version: 3.1.10-1 Severity: normal hello friends, thanks for providing icedove. it's wonderful beyond small fixes that may improve it further. i'm reporting a quite queer bug: my friend is born on march 15, 1968. while there's no problem setting his birthday, and even viewing it in the calendar using thunderbirthday, in the summary window under the list of contacts, the birthday field under other shows 03/14/1968. this didn't fail for days around this, or for years around this. any idea? best regards, alex -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.38-2-686 (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages icedove depends on: ii debianutils 4Miscellaneous utilities specific t ii fontconfig 2.8.0-2.2generic font configuration library ii libasound2 1.0.23-4 shared library for ALSA applicatio ii libatk1.0-0 2.0.0-1 The ATK accessibility toolkit ii libc6 2.13-4 Embedded GNU C Library: Shared lib ii libcairo2 1.10.2-6 The Cairo 2D vector graphics libra ii libdbus-1-3 1.4.8-3 simple interprocess messaging syst ii libffi5 3.0.9-4 Foreign Function Interface library ii libfontconfig1 2.8.0-2.2generic font configuration library ii libfreetype62.4.4-1 FreeType 2 font engine, shared lib ii libgcc1 1:4.6.0-10 GCC support library ii libgdk-pixbuf2.0-0 2.23.3-3 GDK Pixbuf library ii libglib2.0-02.28.6-1 The GLib library of C routines ii libgtk2.0-0 2.24.4-3 The GTK+ graphical user interface ii libhunspell-1.2-0 1.2.14-4 spell checker and morphological an ii libjpeg62 6b1-1The Independent JPEG Group's JPEG ii libnspr4-0d 4.8.8-1 NetScape Portable Runtime Library ii libnss3-1d 3.12.10-1Network Security Service libraries ii libpango1.0-0 1.28.3-6 Layout and rendering of internatio ii libpixman-1-0 0.21.8-1 pixel-manipulation library for X a ii libpng12-0 1.2.44-2 PNG library - runtime ii libsqlite3-03.7.6.3-1SQLite 3 shared library ii libstartup-notification 0.12-1 library for program launch feedbac ii libstdc++6 4.6.0-10 The GNU Standard C++ Library v3 ii libx11-62:1.4.3-1X11 client-side library ii libxrender1 1:0.9.6-1X Rendering Extension client libra ii libxt6 1:1.1.1-1X11 toolkit intrinsics library ii psmisc 22.13-1 utilities that use the proc file s ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime Versions of packages icedove recommends: ii hunspell-ro [hunspell-diction 1:3.3.0-3 Romanian dictionary for hunspell ii myspell-en-us [myspell-dictio 1:3.3.0-3 English_american dictionary for my ii myspell-he [myspell-dictionar 1.1-1 Hebrew dictionary for myspell Versions of packages icedove suggests: ii libdbus-glib-1-2 0.92-1simple interprocess messaging syst ii libgconf2-42.28.1-6 GNOME configuration database syste ii libgnomevfs2-0 1:2.24.4-1GNOME Virtual File System (runtime ii libgssapi-krb5-2 1.9+dfsg-1+b1 MIT Kerberos runtime libraries - k ii libnotify1 [libnotify1-gtk 0.5.0-2 sends desktop notifications to a n ii ttf-lyx2.0.0-1 TrueType versions of some TeX font -- debconf information: * icedove/browser: GNOME -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#639266: libpoppler13: poppler_page_get_selected_text is broken
Package: libpoppler13 Version: 0.16.7-2 Severity: normal hello friends, by the diff, this function should replace the former get_text, but not vertical mirror the selection range. however, it's behaviour is incoherent, it doesn't get the entire page text, as part of the header is missing. these worked as expected in the previous debian version. thanks for your great work, alex -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libpoppler13 depends on: ii libc62.13-16 Embedded GNU C Library: Shared lib ii libfontconfig1 2.8.0-3 generic font configuration library ii libfreetype6 2.4.6-1 FreeType 2 font engine, shared lib ii libjpeg626b1-2 Independent JPEG Group's JPEG runt ii liblcms1 1.19.dfsg-1 Little CMS color management librar ii libopenjpeg2 1.3+dfsg-4 JPEG 2000 image compression/decomp ii libpng12-0 1.2.46-3PNG library - runtime ii libstdc++6 4.6.1-4 GNU Standard C++ Library v3 Versions of packages libpoppler13 recommends: ii poppler-data 0.4.4-1Encoding data for the poppler PDF libpoppler13 suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#608732: a macro in an extension i'm working at crashes libreoffice
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hello rene, other friends, i've suspected for a while that this bug is java related, and upgrading openjdk today i found the bug vanished. my sincere thanks for trying to help, and apologies for suspecting libreoffice :) On 01/09/2011 04:49 PM, Rene Engelhard wrote: > forwarded 608732 https://bugs.freedesktop.org/show_bug.cgi?id=32939 > thanks > > Hi, > > On Mon, Jan 03, 2011 at 05:21:32AM +0200, alex bodnaru wrote: >> as i said, a macro in an extension i'm working at crashes libreoffice. > ^ > > Can you please stop that? You didn't say *anything* before filing this bug, > so this "as i said" is nonsense. > >> i will attach the extension and instructions to reproduce problem. > > Forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=32939 > > Grüße/Regards, > > René - -- - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAk59wqgACgkQ2nA3WyrfyePxYQP/fasmDIeOIVu1UEWaNtuKryZV klqARI/jsQ27v3+FOAlNjjdd5xe0wg7r+k0QAvAgKhOoYZbvUOLFJPv1Rn9oamdE Cw81V2fbe3b0y0c74ZHOwODnJiRRBlKOBKulbAG5FEgz2+0SOgVEEXrEJwaZfh+6 EbfVp18YASHdju9Xi1A= =tQRC -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#608732: a macro in an extension i'm working at crashes libreoffice
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi rene, On 09/24/2011 04:12 PM, Rene Engelhard wrote: > Hi, > > On Sat, Sep 24, 2011 at 02:44:40PM +0300, alex bodnaru wrote: >> i've suspected for a while that this bug is java related, and upgrading >> openjdk today i found the bug vanished. > > From what to what? i've experienced the crash with various versions of java, but openjdk 6b23~pre9-2 seems to have done the trick. btw java crashed even when libreoffice seemed to end cleanly, even when nfs was not there at all. thanks a lot for your patience, rene. > > > Grüße/Regards, > > René - -- - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAk5+MR8ACgkQ2nA3WyrfyeO+xwP9Fayt9eBvegzfkjHI/mRslx4b QBB4VEmw3u441XEPn9PSPeIvEYDwNBwG58B+jkFm7Tuwh+bnxlaZak5jNupx/Z6y Tb1ChIlk1yRv+rjTXttFI6Ie4W0WtBo5l//hWrXs94swHABtB5djdcAdgYx1DE+j JVwugsoCu3S4fXt3AEU= =NjHm -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#627080: remmina-plugins: please document changes to make to files in ~/.remmina
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hello luca, thanks for considering my report. there was a change in the format of the configuration file that i suggested to have been done automatically. On 10/02/2011 01:40 AM, Luca Falavigna wrote: > I'm sorry, but I'm not sure what you mean here. > > Could you please rephrase the sentence to better understand where the > problem is? Thank you! > - -- - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAk6Jn5oACgkQ2nA3WyrfyeNy9AP7BYk8uU6mCh+TF/kPhZOU99h0 b+8GygCHE5ExlgB3mwHttlJwgEFabWnzPxXVPP+GplO/wm+l/qczXurUTw5xsEad ovPmizYDNJBeOKRWYmUzMxqw3p1DO+vGe7IKzFjCYp+7aAfvPXW3N8t8p/Stoh1g Agcu8R9D5TXauduAAIM= =mvj9 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#627080: remmina-plugins: please document changes to make to files in ~/.remmina
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hello luca, it's all about a change (or my impression thereof) in the format of the remmina conf file for the user. a very well organized program would read the old conf files too, but write everything in the new file only. very stable programs never change the format of their confs. remmina was neither, but it is however a wonderful program :) . it's not an important bug, and remmina has advanced again in between, with no other issues here. i would have insisted otherwise :) . On 10/03/2011 01:53 PM, Luca Falavigna wrote: > Il 03 ottobre 2011 13:42, alex bodnaru ha scritto: >> there was a change in the format of the configuration file that i suggested >> to have been done automatically. > > Can you remember which versions were involved? That way, I can try > reproducing this behaviour. - -- - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAk6JsAEACgkQ2nA3WyrfyeNsLwQAvbcoZkrSa3ul3LdH87RLur6a 6XAGqwKm9MbsjXlGTxeKuCXVc0YgZawPCuat5pZKAKTOlgW3fQ3cWe9Fw7NJB3CC hHyI6gh/gIYMNeAeaMIoKvTYk4BH8IM9bYpMKz1Y4wMumpMNu25gSUZnppI2+2Xr 53tSbT6+HSOJFJVK1AA= =1MYJ -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#644243: regression: get_text doesn't work as it should and did. patch included
Package: libpoppler-glib6 Version: 0.16.7-2+b1 Severity: important Dear Maintainer, theanks a lot for providing poppler. my problem: the poppler_page_get_text function began to return only part of the full text of a page, while pdftotext kept returning the whole text, correctly. after some research, with the help of albert from upstream, i found the problem has been introduced by brian in a selection with right to left related patch, between 0.13.2 and 0.13.3. me and albert tryed to contact brian, with no success yet. but since the offending patch was about selected text, i've modified the poppler_page_get_text function to directly get the whole text, and not to invoke the poppler_page_get_selected_text, which naturally fell victim to this bug. i hope albert, maybe together with brian, would consider applying this patch on 0.18.x, but they refused to apply it on older 0.16.x, that we have in debian. hence i'd ask you to apply it for debian users. diff --git a/glib/poppler-page.cc b/glib/poppler-page.cc index 9850d44..63f9955 100644 --- a/glib/poppler-page.cc +++ b/glib/poppler-page.cc @@ -843,13 +843,21 @@ poppler_page_get_selected_text (PopplerPage *page, char * poppler_page_get_text (PopplerPage *page) { - PopplerRectangle rectangle = {0, 0, 0, 0}; + GooString *sel_text; + double width, height; + char *result; + TextPage *text; g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); - poppler_page_get_size (page, &rectangle.x2, &rectangle.y2); + poppler_page_get_size (page, &width, &height); + + text = poppler_page_get_text_page (page); + sel_text = text->getText (0, 0, width, height); + result = g_strdup (sel_text->getCString ()); + delete sel_text; - return poppler_page_get_selected_text (page, POPPLER_SELECTION_GLYPH, &rectangle); + return result; } -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libpoppler-glib6 depends on: ii libc6 2.13-21 ii libcairo2 1.10.2-6.1 ii libfreetype62.4.6-2 ii libgcc1 1:4.6.1-4 ii libgdk-pixbuf2.0-0 2.24.0-1 ii libglib2.0-02.28.6-1 ii libpoppler130.16.7-2 ii libstdc++6 4.6.1-4 libpoppler-glib6 recommends no packages. libpoppler-glib6 suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#629649: icedove: fails to display birthday field in address book contact summary
hello carsten, thanks a lot for considering my report. On 06/07/2013 08:41 PM, Carsten Schoenert wrote: Hello Alex, On Wed, Jun 08, 2011 at 03:43:50PM +0300, alex bodnaru wrote: Package: icedove Version: 3.1.10-1 Severity: normal hello friends, thanks for providing icedove. it's wonderful beyond small fixes that may improve it further. i'm reporting a quite queer bug: my friend is born on march 15, 1968. while there's no problem setting his birthday, and even viewing it in the calendar using thunderbirthday, in the summary window under the list of contacts, the birthday field under other shows 03/14/1968. this didn't fail for days around this, or for years around this. any idea? your bug is quite a little bit older. Did this issue happen with current versions of Icedove? I don't know "Thunderbirthday", this is not a regular Addon packaged for Debian I think so we can't do anything here if this plugin does something wrong. You have to contact the author of this plugin. my report is old indeed, but the bug does still manifest with latest experimental 17.0.5. thunderbirthday is the program that uses the birthday correctly, so it's not part of the bug report. please add to your address book a contact born on march 15, 1968. when you look at the address book you'll see summary data under the list. when this specific contact is selected,his/her birthday, displayed in the "other" subsection of the summary, shows march 14, instead of 15. other dates, even around this one, seem to show correctly. would you give it a try? Or do you mean the package iceowl-extension? Regards Carsten -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#702967: icedove: charset in subject is ignored. maybe it needs an alias
hello carsten, thanks for your interest. please have a look. alex On 09/19/2013 09:16 PM, Carsten Schoenert wrote: Hello Alex, On Wed, Mar 13, 2013 at 03:46:21PM +0200, alex bodnaru wrote: Package: icedove Version: 17.0.2-1 Severity: normal Dear Maintainer(s), some of the messages i receive have the following subject field: Subject: =?windows-1255?B?QXZuZXQvSURUIFNlbWluYXI6RU1DLSBUaGUgQ3VycmVudCBMb29wIGFuYWx5c2lzIG9mIHNpZ25h bHMgMjAuMy4xMw==?= that's the way it shows, both in the messages list and in the message's title and headers. however the from field seems to be similarly encoded, i can see it correctly in both places: From: =?windows-1255?B?4OHw6CDp+fjg7P==?= what would you think of it? maybe it happens because the long subject line gets split? could you append a mail as example in source format (Strg + u)? I believe you get this mail already with this missformed subject header. Regards Carsten -- best regards, alex --- Begin Message --- לקוח יקר, אנו נאלצים לדחות את הסמינר בעקבות מחלה של המרצה. נודיעכם על מועד חדש בהקדם. מתנצלים על אי הנוחות. בברכה, צוות אבנט דיוור זה נשלח אליך מאבנט באמצעות מערכת הניוזלטר BIZPOWER,במידה ואינך מעוניין לקבל דיוור מאבנט לחץ כאן --- End Message ---
Bug#634974: task-hebrew-desktop: recommends openoffice.org-l10n-he. should recommend libreoffice-l10n-he instead
Package: task-hebrew-desktop Version: 3.01 Severity: normal hello friends, thanks for your contribution. this package should recommend libreoffice-l10n-he, instead of openoffice.org-l10n-he. -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.38-2-686 (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#634975: user-he: recommends openoffice.org-l10n-he. should recommend libreoffice-l10n-he instead
Package: user-he Version: 1.0.19 Severity: normal hello friends, thanks for your contribution. this package should recommend libreoffice-l10n-he, instead of openoffice.org-l10n-he. best regards, alex -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.38-2-686 (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#625511: [Debian-hebrew-package] Bug#625511: icedove-bidiui: does not work at all
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/23/2011 07:45 PM, Lior Kaplan wrote: > > thanks lior, > > let me know how i could help. > > > I'm not aware of any clean up, and both version works fine for me. > > Kaplan the main problem i remember about 0.96 seems to be that it works for the main mail window, but not for per message windows. this doesn't let me edit rtl messages, or see them in separated windows. - -- - -- best regards, alex -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAk4rzT8ACgkQ2nA3WyrfyeMdDwP/QHyYSiXjSx0oeDF37B3tpPEN Y/dVZ1dGeze6tvIl7w2Wkawpu/JEcItPzOvWXlE4RjgKxR0s8dg9oOuVdhecBLTu DfJypvKVP49zjtxOrjhLJWll+BfdoMzQkl987140qvFrNvAWnKEdDqtNpiOQJmOq 3zU9TJIYfNVuoV7HGUQ= =m56A -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#666930: iceowl-extension: DST should be ignored when setting / showing appointments
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Package: iceowl-extension Version: 10.0.3-3 Severity: normal Dear Maintainer, thanks a lot for providing this great piece of software. i came across of some singular situation: an appointment set during winter (DST off) for a date during spring (DST on) for 11:00, shows in the spring at 12:00. my advice that the DST bit should be ignored in iceowl, so that the appointment will be fired by the system, according to the current situation. hope this will make iceowl even better, and i'd be willing to test or contribute anyway in order to render this fixed. best regards, alex - -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages iceowl-extension depends on: ii calendar-timezones 10.0.3-3 ii icedove 10.0.3-3 ii libc6 2.13-27 ii libgcc1 1:4.6.3-1 ii libnspr4-0d 4.9-1 ii libstdc++6 4.6.3-1 Versions of packages iceowl-extension recommends: ii calendar-google-provider 10.0.3-3 Versions of packages iceowl-extension suggests: ii ttf-lyx 2.0.3-2 - -- no debconf information -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iJwEAQECAAYFAk954F4ACgkQ2nA3WyrfyeOsIwP/WcqW5wFx6jBxpZlIgF8O9FLO WmoAT2+6szEDml/MzDUOc35sqVXGPmmMtIaCzIvwIvZRZ9RjXkBCQfmWoaPE1p3V hd0eylINt/58SN5tWAqcsonzXdSlXxaZ1OQpNdpY5z3PvDUuYjX/IkCsBodvd9zw iktdRfmF52vxp54UFgA= =bkmN -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#799024: isc-dhcp: please re-enable ddns nsupdate
Source: isc-dhcp Version: 4.3.3 Severity: important Dear Maintainer, *** Reporter, please consider answering these questions, where appropriate *** hello friends, and a big thank for maintaining isc dhcp stack. as i'm using dhcp in conjunction with bind by ddns, i was quite struck to find this wonderful feature disabled. please return this feature, by disabling patch disable-nsupdate.patch thanks in advance, alex *** End of the template - remove these template lines *** -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 3.16-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: systemd (via /run/systemd/system)
Bug#753308: iceweasel: urlbar autofill forces itself and works wrong with http://
Package: iceweasel Version: 31.0~b3-1 Severity: important hello friend(s), sorry, i simply cannot use the browser on our site: http://www.misradia.co.il the site is available on either port 443 and 80, for access by https or http. our former site was https only, and heavily sanctioned by google. the development version runs ath http://www.misradia.co.il:8080, and it's http only. since a recent upgrade on this machine, no matter what i'm entering in the urlbar, it is converted to an https address, which i cannot use for development. this happens even if urlbar.autofill* are off, and even if urlbar.autocomplete is off. to make it complete, it happens even if there is a redirect from the site to an http address. this behaviour is also on current android firefox, and on this machine, even in chromium 35-36. it happened here with iceweasel 30 as well. i have a jesse/testing only machine, with iceweasel 29, that had not this bug, however there were https://misradia.co.il/* records in the history. but once i visited https://www.misradia.co.il now, the bug popped in. thanks for your consideration, alex -- Package-specific info: -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.14-1-686-pae (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/bash Versions of packages iceweasel depends on: ii debianutils 4.4 ii fontconfig2.11.0-5 ii libasound21.0.27.2-4 ii libatk1.0-0 2.12.0-1 ii libc6 2.19-4 ii libcairo2 1.12.16-2 ii libdbus-1-3 1.8.4-1 ii libdbus-glib-1-2 0.102-1 ii libevent-2.0-52.0.21-stable-1 ii libffi6 3.1-2 ii libfontconfig12.11.0-5 ii libfreetype6 2.5.2-1 ii libgcc1 1:4.9.0-7 ii libgdk-pixbuf2.0-02.30.7-1 ii libglib2.0-0 2.40.0-3 ii libgtk2.0-0 2.24.24-1 ii libhunspell-1.3-0 1.3.3-1 ii libnspr4 2:4.10.6-1 ii libnss3 2:3.16.1-1 ii libpango-1.0-01.36.3-1 ii libsqlite3-0 3.8.5-2 ii libstartup-notification0 0.12-3 ii libstdc++64.9.0-7 ii libvpx1 1.3.0-2 ii libx11-6 2:1.6.2-2 ii libxext6 2:1.3.2-1 ii libxrender1 1:0.9.8-1 ii libxt61:1.1.4-1 ii procps1:3.3.9-5 ii zlib1g1:1.2.8.dfsg-1 iceweasel recommends no packages. Versions of packages iceweasel suggests: ii fonts-mathjax 2.4-1 pn fonts-oflb-asana-math ii fonts-stix [otf-stix] 1.1.1-1 ii libcanberra0 0.30-2 ii libgnomeui-0 2.24.5-3 ii libgssapi-krb5-2 1.12.1+dfsg-3 ii mozplugger 1.14.5-2 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#753308: iceweasel: please close the bug.
Package: iceweasel Followup-For: Bug #753308 Dear Maintainer, it's a server problem. the apache header Strict-Transport-Security enforced use of https on this server. thanks a lot, alex -- Package-specific info: -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.14-1-686-pae (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/bash Versions of packages iceweasel depends on: ii debianutils 4.4 ii fontconfig2.11.0-5 ii libasound21.0.27.2-4 ii libatk1.0-0 2.12.0-1 ii libc6 2.19-4 ii libcairo2 1.12.16-2 ii libdbus-1-3 1.8.4-1 ii libdbus-glib-1-2 0.102-1 ii libevent-2.0-52.0.21-stable-1 ii libffi6 3.1-2 ii libfontconfig12.11.0-5 ii libfreetype6 2.5.2-1 ii libgcc1 1:4.9.0-7 ii libgdk-pixbuf2.0-02.30.7-1 ii libglib2.0-0 2.40.0-3 ii libgtk2.0-0 2.24.24-1 ii libhunspell-1.3-0 1.3.3-1 ii libnspr4 2:4.10.6-1 ii libnss3 2:3.16.1-1 ii libpango-1.0-01.36.3-1 ii libsqlite3-0 3.8.5-2 ii libstartup-notification0 0.12-3 ii libstdc++64.9.0-7 ii libvpx1 1.3.0-2 ii libx11-6 2:1.6.2-2 ii libxext6 2:1.3.2-1 ii libxrender1 1:0.9.8-1 ii libxt61:1.1.4-1 ii procps1:3.3.9-5 ii zlib1g1:1.2.8.dfsg-1 iceweasel recommends no packages. Versions of packages iceweasel suggests: ii fonts-mathjax 2.4-1 pn fonts-oflb-asana-math ii fonts-stix [otf-stix] 1.1.1-1 ii libcanberra0 0.30-2 ii libgnomeui-0 2.24.5-3 ii libgssapi-krb5-2 1.12.1+dfsg-3 ii mozplugger 1.14.5-2 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#753355: iceweasel: the basic logon form is being skipped, and the authentication fails.
Package: iceweasel Version: 31.0~b3-1 Severity: important Dear Maintainer, after upgrading iceweasel to experimental v31, pages that need ntlm authentication, and return status 401, fail to load. previously, a basic authentication dialog was popping up, allowing to login. thanks in advance, alex -- Package-specific info: -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.14-1-686-pae (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/bash Versions of packages iceweasel depends on: ii debianutils 4.4 ii fontconfig2.11.0-5 ii libasound21.0.27.2-4 ii libatk1.0-0 2.12.0-1 ii libc6 2.19-4 ii libcairo2 1.12.16-2 ii libdbus-1-3 1.8.4-1 ii libdbus-glib-1-2 0.102-1 ii libevent-2.0-52.0.21-stable-1 ii libffi6 3.1-2 ii libfontconfig12.11.0-5 ii libfreetype6 2.5.2-1 ii libgcc1 1:4.9.0-7 ii libgdk-pixbuf2.0-02.30.7-1 ii libglib2.0-0 2.40.0-3 ii libgtk2.0-0 2.24.24-1 ii libhunspell-1.3-0 1.3.3-1 ii libnspr4 2:4.10.6-1 ii libnss3 2:3.16.1-1 ii libpango-1.0-01.36.3-1 ii libsqlite3-0 3.8.5-2 ii libstartup-notification0 0.12-3 ii libstdc++64.9.0-7 ii libvpx1 1.3.0-2 ii libx11-6 2:1.6.2-2 ii libxext6 2:1.3.2-1 ii libxrender1 1:0.9.8-1 ii libxt61:1.1.4-1 ii procps1:3.3.9-5 ii zlib1g1:1.2.8.dfsg-1 iceweasel recommends no packages. Versions of packages iceweasel suggests: ii fonts-mathjax 2.4-1 pn fonts-oflb-asana-math ii fonts-stix [otf-stix] 1.1.1-1 ii libcanberra0 0.30-2 ii libgnomeui-0 2.24.5-3 ii libgssapi-krb5-2 1.12.1+dfsg-3 ii mozplugger 1.14.5-2 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#785728: libace-dev: ACE_OFF_T is only 32bit by the includes, thus preventing the build of JAWS
Package: libace-dev Version: 6.2.8+dfsg-1 Severity: important hello friend, when trying to build JAWS on i686 32bit, the size of ACE_OFF_T is 32bit, as opposed to the size calculated at the build time of the library, when it is 64bit, due to your flags in rules: -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 please put these definitions in the relevant includes, so that users of the library will also find it at the size the library has. thanks in advance, alex -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.16.0-4-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: systemd (via /run/systemd/system) Versions of packages libace-dev depends on: ii libace-6.2.8 6.2.8+dfsg-1 libace-dev recommends no packages. Versions of packages libace-dev suggests: ii libace-doc 6.2.8+dfsg-1 ii pkg-config 0.28-1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#785728: [Pkg-ace-devel] Bug#785728: libace-dev: ACE_OFF_T is only 32bit by the includes, thus preventing the build of JAWS
hello thomas, thanks a lot for your reply. my system is i686 32bit. thus, the default for off_t is long. however, when libace is being built, the type gets long long, by -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64. thus, if i wish to build a program and link to libace, which already use ACE_OFF_T, which is off_t. please just try JAWS. it compiles ok, but fails to link, unless i set the same flags. since it took me some time to inquire, i'm asking you to put the said definitions in a file included with the definition of ACE_OFF_T. thanks in advance, alex On 05/26/2015 10:54 PM, Thomas Girard wrote: Hello, On 19/05/2015 18:06, alex bodnaru wrote: Package: libace-dev Version: 6.2.8+dfsg-1 Severity: important hello friend, when trying to build JAWS on i686 32bit, the size of ACE_OFF_T is 32bit, as opposed to the size calculated at the build time of the library, when it is 64bit, due to your flags in rules: -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 please put these definitions in the relevant includes, so that users of the library will also find it at the size the library has. Can you please share a snippet example? The severity seems a little bit too much to me. Thanks, Regards, Thomas -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#785728: [Pkg-ace-devel] Bug#785728: Bug#785728: libace-dev: ACE_OFF_T is only 32bit by the includes, thus preventing the build of JAWS
hello pau, other friends this is the manual solution, but i wanted to let others benefit from it seamlessly. thus, i would recommend to do a little better: either add these definitions in the pkg-config --cflags, or add these definitions in a common header. what would you think? alex On 05/27/2015 05:27 PM, Pau Garcia i Quiles wrote: Hello, If the library uses -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64, then your application must also use that. You cannot combine code otherwise. I think the solution requires two actions: Make sure JAWS uses -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 too Add a note about -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 in README.Debian On Wed, May 27, 2015 at 3:42 PM, alex bodnaru <alexb...@012.net.il> wrote: hello thomas, thanks a lot for your reply. my system is i686 32bit. thus, the default for off_t is long. however, when libace is being built, the type gets long long, by -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64. thus, if i wish to build a program and link to libace, which already use ACE_OFF_T, which is off_t. please just try JAWS. it compiles ok, but fails to link, unless i set the same flags. since it took me some time to inquire, i'm asking you to put the said definitions in a file included with the definition of ACE_OFF_T. thanks in advance, alex On 05/26/2015 10:54 PM, Thomas Girard wrote: Hello, On 19/05/2015 18:06, alex bodnaru wrote: Package: libace-dev Version: 6.2.8+dfsg-1 Severity: important hello friend, when trying to build JAWS on i686 32bit, the size of ACE_OFF_T is 32bit, as opposed to the size calculated at the build time of the library, when it is 64bit, due to your flags in rules: -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 please put these definitions in the relevant includes, so that users of the library will also find it at the size the library has. Can you please share a snippet example? The severity seems a little bit too much to me. Thanks, Regards, Thomas -- best regards, alex ___ Pkg-ace-devel mailing list pkg-ace-de...@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ace-devel -- Pau Garcia i Quiles http://www.elpauer.org (Due to my workload, I may need 10 days to answer) -- best regards, alex -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#784003: anjuta: gdb launch fails. complains about has_separator
Package: anjuta Version: 2:3.14.0-1 Severity: normal hello friends, when activating Run|Debug Program, an error message is displayed: Unable to load user interface file: Invalid property: GtkDialog.has_separator on line 1775 the said file is: /usr/share/anjuta/glade/anjuta-debug-manager.ui -- System Information: Debian Release: 8.0 APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.16.0-4-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: systemd (via /run/systemd/system) Versions of packages anjuta depends on: ii anjuta-common 2:3.14.0-1 ii libanjuta-3-0 2:3.14.0-1 ii libapr1 1.5.1-3 ii libc6 2.19-18 ii libdevhelp-3-2 3.14.0-1 ii libgcc1 1:4.9.2-10 ii libgda-5.0-45.2.2-2 ii libgdk-pixbuf2.0-0 2.31.1-2+b1 ii libgdl-3-5 3.14.0-2 ii libgladeui-2-6 3.18.3-1 ii libglib2.0-02.42.1-1 ii libgtk-3-0 3.14.5-1 ii libgtksourceview-3.0-1 3.14.1-1 ii libpango-1.0-0 1.36.8-3 ii libpython2.72.7.9-2 ii libstdc++6 4.9.2-10 ii libsvn1 1.8.10-6 ii libvala-0.26-0 0.26.1-1.1 ii libvte-2.91-0 0.38.1-2 ii libwebkit2gtk-3.0-252.4.8-2 ii libxml2 2.9.1+dfsg1-5 Versions of packages anjuta recommends: ii autoconf2.69-8 ii autogen 1:5.18.4-3 ii automake1:1.14.1-4 ii g++ 4:4.9.2-2 ii gcc 4:4.9.2-2 ii gdb 7.7.1+dfsg-5 ii intltool0.50.2-2 ii liblocale-gettext-perl 1.05-8+b1 ii libtool 2.4.2-1.11 ii make4.0-8.1 pn valac ii yelp3.14.1-1 Versions of packages anjuta suggests: ii gjs 1.42.0-1 ii glade 3.18.3-1 ii libgtk-3-dev3.14.5-1 ii libgtkmm-3.0-dev3.14.0-1 ii python-distutils-extra 2.38-1 pn python-rope -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#750607: gnome-terminal: SOLVED
Package: gnome-terminal Followup-For: Bug #750607 Dear Maintainer, *** Reporter, please consider answering these questions, where appropriate *** hello friends, the problem was not terminal related, but non libc compatible locales were defined in gnome. i have installed another terminal app, evilvte and run locale inside it. here i discovered the locale was incorrect: en_US.utf8. by brute force (grep -r "en_US\.utf8" in $HOME), i found ~/.dmrc and dconf. in the dconf-editor, ctrl+f helped me find the string. ~/.dmrc is smaller. fixing that and re-login, gnome terminal is back. hope that would help, alex *** End of the template - remove these template lines *** -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (990, 'testing'), (300, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.16.0-4-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: systemd (via /run/systemd/system) Versions of packages gnome-terminal depends on: ii dconf-gsettings-backend [gsettings-backend] 0.24.0-2 ii gconf-service3.2.6-3 ii gnome-terminal-data 3.18.0-1 ii gsettings-desktop-schemas3.18.0-1 ii libatk1.0-0 2.16.0-2 ii libc62.19-22 ii libcairo-gobject21.14.2-2 ii libcairo21.14.2-2 ii libdconf10.24.0-2 ii libgconf-2-4 3.2.6-3 ii libgdk-pixbuf2.0-0 2.32.0-1 ii libglib2.0-0 2.44.1-1.1 ii libgtk-3-0 3.16.6-1 ii libnautilus-extension1a 3.14.2-1 ii libpango-1.0-0 1.36.8-3 ii libpangocairo-1.0-0 1.36.8-3 ii libuuid1 2.27-3 ii libvte-2.91-00.42.0-1 ii libx11-6 2:1.6.3-1 Versions of packages gnome-terminal recommends: ii dbus-x11 1.10.0-3 ii gvfs 1.24.2-1 ii yelp 3.16.1-1 gnome-terminal suggests no packages. -- no debconf information
Bug#755981: evolution-data-server: still happens for my setup
Package: evolution-data-server Version: 3.12.7.1-2 Followup-For: Bug #755981 hello friend, just wanted to inform you the problem is in my current setup too. good luck, alex -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 3.16-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages evolution-data-server depends on: ii evolution-data-server-common 3.12.7.1-2 ii libc6 2.19-13 ii libcamel-1.2-49 3.12.7.1-2 ii libdb5.3 5.3.28-6 ii libebackend-1.2-7 3.12.7.1-2 ii libebook-1.2-14 3.12.7.1-2 ii libebook-contacts-1.2-0 3.12.7.1-2 ii libecal-1.2-163.12.7.1-2 ii libedata-book-1.2-20 3.12.7.1-2 ii libedata-cal-1.2-23 3.12.7.1-2 ii libedataserver-1.2-18 3.12.7.1-2 ii libgcr-base-3-1 3.14.0-2 ii libgcr-ui-3-1 3.14.0-2 ii libgdata190.16.1-1 ii libglib2.0-0 2.42.0-2 ii libgoa-1.0-0b 3.14.1-1 ii libgtk-3-03.14.4-2 ii libgweather-3-6 3.14.1-1 ii libical1 1.0-1.1 ii libldap-2.4-2 2.4.40-2 ii libpango-1.0-01.36.8-2 ii libsecret-1-0 0.18-1+b1 ii libsoup2.4-1 2.48.0-1 ii libxml2 2.9.1+dfsg1-4 evolution-data-server recommends no packages. Versions of packages evolution-data-server suggests: ii evolution 3.12.7-1 pn evolution-data-server-dbg -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#438340: python-sqlalchemy has no reason to conflict with python-psycopg
Package: python-sqlalchemy Version: 0.3.10-1 Severity: important i can't officially use psycopg 1 for tinyerp. sa does even work with psycopg1, though it prefers psycopg2 -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.21-2-686 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/bash Versions of packages python-sqlalchemy depends on: ii python2.4.4-6An interactive high-level object-o ii python-central0.5.14 register and build utility for Pyt python-sqlalchemy recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#464977: libc6: iconv drops the last character in a windows-1255 string if it's non ascii
Package: libc6 Version: 2.7-6 Severity: important a valid windows-1255 string is translated to utf-8 by droping it's last char. it happens only if that last char is non-ascii itself. for example, "\xe1\xe2\xe3". it translates to a 2 characters long string. it doesn't happen with other windows-* codepages, neither with the similar iso-8859-8 equivalent. this is probably an upstream bug, but i report it here not to polute the upstream mailing list with not generally attending people. but i know debian maintainers are there :) . best regards, alex -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libc6 depends on: ii libgcc1 1:4.3-20080116-1 GCC support library libc6 recommends no packages. -- debconf information: glibc/restart-failed: glibc/restart-services: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#464977: libc6: the last char is droped if it's larger than 191 decimal only
Package: libc6 Version: 2.7-6 Followup-For: Bug #464977 i have to restrict the range of offending characters: only characters between 192 - 255 (decimal) are being droped if they are the last character in the string. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libc6 depends on: ii libgcc1 1:4.3-20080116-1 GCC support library libc6 recommends no packages. -- debconf information: glibc/restart-failed: glibc/restart-services: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#428029: gnome-screensaver: when i uninstall the package, the screensaver process remains partially up
Package: gnome-screensaver Version: 2.14.3-3 Severity: normal the screen gets blank and not responsive, and the process should be directly killed. i would expect from prerm script to do this automatically. btw: i have removed it to replace it by xscreensaver, which i learn may power gnome screensaver too. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.18-4-686 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#428031: xscreensaver: the screensaver gets active with the keyboard mapping of the window in focus
Package: xscreensaver Version: 4.24-5 Severity: important i'm using the password protection feature, and it's annoying that i can't type the password in english, as i entered it. this night definitely not be a bug. but please read on. moreover, switching the keyboard mapping in xscreensaver does the same with the window under it, unintentionally. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.18-4-686 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/bash Versions of packages xscreensaver depends on: ii libatk1.0-01.18.0-2 The ATK accessibility toolkit ii libc6 2.5-9+b1 GNU C Library: Shared libraries ii libcairo2 1.4.6-1.1 The Cairo 2D vector graphics libra ii libfontconfig1 2.4.2-1.2 generic font configuration library ii libglade2-01:2.6.0-4 library to load .glade files at ru ii libglib2.0-0 2.12.12-1 The GLib library of C routines ii libgtk2.0-02.8.20-7 The GTK+ graphical user interface ii libice61:1.0.3-2 X11 Inter-Client Exchange library ii libjpeg62 6b-13 The Independent JPEG Group's JPEG ii libpam0g 0.79-4Pluggable Authentication Modules l ii libpango1.0-0 1.16.4-1 Layout and rendering of internatio ii libsm6 2:1.0.3-1 X11 Session Management library ii libx11-6 2:1.0.3-7 X11 client-side library ii libxcursor11:1.1.8-2 X cursor management library ii libxext6 1:1.0.3-2 X11 miscellaneous extension librar ii libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio ii libxi6 1:1.0.1-4 X11 Input extension library ii libxinerama1 1:1.0.2-1 X11 Xinerama extension library ii libxml22.6.28.dfsg-1 GNOME XML library ii libxmu61:1.0.3-1 X11 miscellaneous utility library ii libxpm41:3.5.6-3 X11 pixmap library ii libxrandr2 2:1.2.1-1 X11 RandR extension library ii libxrender11:0.9.2-1 X Rendering Extension client libra ii libxt6 1:1.0.5-3 X11 toolkit intrinsics library ii libxxf86misc1 1:1.0.1-2 X11 XFree86 miscellaneous extensio ii libxxf86vm11:1.0.1-2 X11 XFree86 video mode extension l Versions of packages xscreensaver recommends: ii libjpeg-progs 6b-13 Programs for manipulating JPEG fil pn miscfiles | wordlist (no description available) ii perl [perl5] 5.8.8-7Larry Wall's Practical Extraction ii xli 1.17.0-22 command line tool for viewing imag -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#423266: backuppc: excluded files don't support symlinks
Package: backuppc Version: 3.0.0-2 Severity: important i find backuppc very useful, but when i began to use it i've had the following problem: in the backup server i have excluded, naturally, /var/lib/backuppc from being backed up, but it still got processed, since my var is a symlink to another place. same with other files. thus, i'd suggest to resolve all symlinks in exclude file names before processing host. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.18-4-686 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/bash Versions of packages backuppc depends on: ii adduser 3.102 Add and remove users and groups ii debconf [debconf-2.0] 1.5.13 Debian configuration management sy ii dpkg 1.13.25package maintenance system for Deb ii exim4 4.63-17metapackage to ease exim MTA (v4) ii exim4-daemon-heavy [mail-tran 4.63-17exim MTA (v4) daemon with extended ii libarchive-zip-perl 1.16-1 Module for manipulation of ZIP arc ii libcompress-zlib-perl 1.42-2 Perl module for creation and manip ii lighttpd [httpd] 1.4.13-10 A fast webserver with minimal memo ii perl [libdigest-md5-perl] 5.8.8-7Larry Wall's Practical Extraction ii perl-suid 5.8.8-7Runs setuid Perl scripts ii samba-common 3.0.24-6 Samba common files used by both th ii smbclient 3.0.24-6 a LanManager-like simple client fo ii tar 1.16.1-1 GNU tar ii wwwconfig-common 0.0.48 Debian web auto configuration backuppc recommends no packages. -- debconf information: * backuppc/restart-webserver: false * backuppc/configuration-note: * backuppc/reconfigure-webserver: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#423267: a client backuppc package might be useful
Package: backuppc Version: 3.0.0-2 Severity: wishlist during setting backuppc up i have consulted a good resource at http://www.ejustice.org/training/2006/06/backups-from-scratch-a-free-software-approach/ made for backuppc and ubuntu. it recommends using rsync through loginless ssh, with a few batchable actions to do on each client. i would ask you to implement this functionality in a backuppc client package, depending on rsync and ssh, that would require the backuppc user password on the server, and work in preinst. in the end of the client configuration, a client-host.pl file should be saved somewhere on the server /var/lib/backuppc/hosts, which should also be scanned for hosts. thus, a client may subscribe to a backuppc service by mere password of the server, without changing any configuration on the server. btw, a client may subscribe to several servers, or unsubscribe thereof by deleting it's file on server through ssh. i would also ask for batching the creation of a bootdisk to be able to restore a system from scratch prior to restoring it's regular backup. btw: while the name backuppc may suggest a limited pc solution, here we have a crossplatform and multiplatform enterprise class backup service (though fakeroot itself is not fully portable), and full backups may be periodically written to server specific media. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.18-4-686 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/bash Versions of packages backuppc depends on: ii adduser 3.102 Add and remove users and groups ii debconf [debconf-2.0] 1.5.13 Debian configuration management sy ii dpkg 1.13.25package maintenance system for Deb ii exim4 4.63-17metapackage to ease exim MTA (v4) ii exim4-daemon-heavy [mail-tran 4.63-17exim MTA (v4) daemon with extended ii libarchive-zip-perl 1.16-1 Module for manipulation of ZIP arc ii libcompress-zlib-perl 1.42-2 Perl module for creation and manip ii lighttpd [httpd] 1.4.13-10 A fast webserver with minimal memo ii perl [libdigest-md5-perl] 5.8.8-7Larry Wall's Practical Extraction ii perl-suid 5.8.8-7Runs setuid Perl scripts ii samba-common 3.0.24-6 Samba common files used by both th ii smbclient 3.0.24-6 a LanManager-like simple client fo ii tar 1.16.1-1 GNU tar ii wwwconfig-common 0.0.48 Debian web auto configuration backuppc recommends no packages. -- debconf information: * backuppc/restart-webserver: false * backuppc/configuration-note: * backuppc/reconfigure-webserver: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#505163: pidgin crashes when activating irc windows if xchat plugin active
Package: pidgin Version: 2.4.3-4 Severity: normal pidgin crashes on opening irc windows and on quiting if the xchat plugin is enabled. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages pidgin depends on: ii gconf2 2.22.0-1GNOME configuration database syste ii libatk1.0-0 1.22.0-1The ATK accessibility toolkit ii libc62.7-15 GNU C Library: Shared libraries ii libcairo21.6.4-6.1 The Cairo 2D vector graphics libra ii libdbus-1-3 1.2.1-4 simple interprocess messaging syst ii libdbus-glib-1-2 0.76-1 simple interprocess messaging syst ii libglib2.0-0 2.16.6-1The GLib library of C routines ii libgstreamer0.10-0 0.10.19-3 Core GStreamer libraries and eleme ii libgtk2.0-0 2.12.11-4 The GTK+ graphical user interface ii libgtkspell0 2.0.13-1+b1 a spell-checking addon for GTK's T ii libice6 2:1.0.4-1 X11 Inter-Client Exchange library ii libpango1.0-01.20.5-3Layout and rendering of internatio ii libpurple0 2.4.3-4 multi-protocol instant messaging l ii libsm6 2:1.0.3-2 X11 Session Management library ii libstartup-notification0 0.9-1 library for program launch feedbac ii libx11-6 2:1.1.5-2 X11 client-side library ii libxss1 1:1.1.3-1 X11 Screen Saver extension library ii perl 5.10.0-16 Larry Wall's Practical Extraction ii perl-base [perlapi-5.10.0] 5.10.0-16 minimal Perl system ii pidgin-data 2.4.3-4 multi-protocol instant messaging c Versions of packages pidgin recommends: ii gstreamer0.10-plugins-base0.10.19-2 GStreamer plugins from the "base" ii gstreamer0.10-plugins-good0.10.8-4 GStreamer plugins from the "good" Versions of packages pidgin suggests: ii evolution-data-server 2.22.3-1 evolution database backend server ii gnome-panel 2.20.3-5 launcher and docking facility for ii libsqlite3-0 3.5.9-5SQLite 3 shared library -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#374582: [Pkg-uml-pkgs] Bug#374582: base-config is been invoked in rootstrap, although it doesn't exist anymore
hi stefano, since on sarge deboostrap is installing base-config, but not on other distro, i'd check for it's existance under /tmp/target, with executable flag (with find, or directly with [ -x ]. but all this in the base-config module itself, since this is the only one to invoke base-config. hope that's a good idea, alex Stefano Melchior wrote: > On Tue, Jun 20, 2006 at 07:57:02PM +0200, Mattia Dongili wrote: > >>severity 374582 minor >>thanks >> >>On Tue, Jun 20, 2006 at 08:10:18AM +0300, alex bodnaru wrote: >> >>>Package: rootstrap >>>Version: 0.3.22-1 >>>Severity: grave >>>Justification: renders package unusable >>> >>>base-config has been removed from etch, hence it's invokation fails. >>>you may execute it on condition if exists, or just ignore it's failure >>>like with || true. >> >>Uh, but the base-config module is not even included in the default >>configuration. >>I wouldn't even consider this a bug, at least until sarge (with >>base-config) disappears. >> >>I'm very tempted to close this bug, I don't really see any bug here. >>Surely this is not "grave" at all. >>Maybe just documenting this issue can help? >> > > Mattia, > does it affect badly to test if there is any base-config entry? I mean if > we add a check on presence of base-config line, it is possible to avoid > the rootstrap to use this feature on a etch system. > Does it make sense? > > SteX -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#375263: ITP: rtf2xml -- rtf2xml: convert MS RTF to XML
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: rtf2xml Version : 1.32 Upstream Author : Paul Tremblay <[EMAIL PROTECTED]> * URL : http://rtf2xml.sourceforge.net * License : GPL Programming Lang: Python Description : rtf2xml: convert MS RTF to XML (Include the long description here.) The script rtf2xml faithfully converts Microsoft's RTF format to structured XML. Developers can make further transformations using standard XML tools, or use the stylsheets provided to convert to sdocbook or TEI. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#375603: ITP: zope-pgstorage -- a ZODB backend that persists to a PostgreSQL database
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: zope-pgstorage Version : 0.1 Upstream Author : Shane Hathaway, Zope Corporation, <[EMAIL PROTECTED]> * URL : http://hathawaymix.org/Software/PGStorage * License : Zope Public License (ZPL) Version 2.1 Programming Lang: Python Description : a ZODB backend that persists to a PostgreSQL database PGStorage is a ZODB backend that persists to a PostgreSQL database. PGStorage stores simple pickles in the database, so it is compatible with most Zope applications and is much simpler than Ape. Undo and packing are supported. . PGStorage also takes the place of ZEO. Any number of Zope instances can connect to a single PostgreSQL database. Furthermore, the replication options available for PostgreSQL may take the place of ZRS (Zope Replication Services.) -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#375801: ITP: zope-cmfcompositepage -- visually combine page fragments into complete pages
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: zope-cmfcompositepage Version : 0.2 Upstream Author : Shane Hathaway, Zope Corporation, <[EMAIL PROTECTED]> * URL : http://hathawaymix.org/Software/CompositePage * License : Zope Public License (ZPL) Version 2.1 Programming Lang: Python Description : visually combine page fragments into complete pages (Include the long description here.) CompositePage is a new way to assemble pages for the World Wide Web. Through the use of Zope technology, browser-based drag and drop, and custom context menus, CompositePage makes it easy to visually combine page fragments into complete pages. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#375797: ITP: zope-compositepack -- allows the Plone Manager to build composite pages
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: zope-compositepack Version : 1.0 Upstream Author : Godefroid Chapelle ([EMAIL PROTECTED]) * URL : http://plone.org/products/compositepack * License : Zope Public License (ZPL) Version 2.1 Programming Lang: Python Description : allows the Plone Manager to build composite pages (Include the long description here.) CompositePack is a product that allows the Plone Manager to build composite pages by manually aggregating archetype content from his site. . Composition of content is made through a pseudo WYSIWYG user interface: the design view. A composite page has a layout which defines its structure. Composite elements are displayed through viewlets. . Both layouts and viewlets are acquired from the skin, which implies they are customizable. . Layouts and viewlets are registered through the composite_tool in ZMI. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#314792: gnome-applets: nls configuration of the keyboard switcher causes x-window to crash
Package: gnome-applets Version: 2.12.3-1 Followup-For: Bug #314792 after adding a keyboard layout or a language switching option, the .gconf contains the configured option, but x-window crashes untill i remove these options. this happens with xserver-xorg-6.90, intermitently with gnome-vfs-2.12, and constantly with gnome-vfs-2.14. maybe an api change in 6.90 as oposed to previous 6.82? the underlying x code may be correct, as i can switch the keyboard layout by: setxkbmap -option grp:switch,grp:alt_shift_toggle,grp_led:scroll us,il , and the gnome keyboard indication applet does show the correct layout. i have also reported the bug upstream, see: http://bugzilla.gnome.org/show_bug.cgi?id=340484 -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages gnome-applets depends on: ii debconf [debconf-2.0]1.5.0 Debian configuration management sy ii gconf2 2.14.0-1GNOME configuration database syste ii gnome-applets-data 2.12.3-1Various applets for GNOME 2 panel ii gnome-icon-theme 2.14.2-1GNOME Desktop icon theme ii gnome-panel 2.12.3-1launcher and docking facility for ii gstreamer0.8-alsa [gstre 0.8.12-1ALSA plugin for GStreamer ii gstreamer0.8-artsd [gstr 0.8.12-1aRtsd plugin for GStreamer ii gstreamer0.8-esd [gstrea 0.8.12-1Enlightened Sound Daemon plugin fo ii gstreamer0.8-jack [gstre 0.8.8-3 JACK plugin for GStreamer ii gstreamer0.8-oss [gstrea 0.8.12-1OSS plugin for GStreamer ii gstreamer0.8-polypaudio 0.8.11-2polypaudio plugin for GStreamer ii libapm1 3.2.2-5 Library for interacting with APM d ii libatk1.0-0 1.11.3-1The ATK accessibility toolkit ii libbonobo2-0 2.14.0-1Bonobo CORBA interfaces library ii libbonoboui2-0 2.14.0-2The Bonobo UI library ii libc62.3.6-7 GNU C Library: Shared libraries ii libdbus-1-2 0.61-5 simple interprocess messaging syst ii libdbus-glib-1-2 0.61-5 simple interprocess messaging syst ii libgconf2-4 2.14.0-1GNOME configuration database syste ii libglade2-0 1:2.5.1-2 library to load .glade files at ru ii libglib2.0-0 2.10.2-1The GLib library of C routines ii libgnome-desktop-2 2.14.1.1-1 Utility library for loading .deskt ii libgnome2-0 2.14.1-1The GNOME 2 library - runtime file ii libgnomeui-0 2.14.1-1The GNOME 2 libraries (User Interf ii libgnomevfs2-0 2.14.0-2GNOME virtual file-system (runtime ii libgstreamer-plugins0.8- 0.8.12-1Various GStreamer libraries and li ii libgstreamer0.8-00.8.12-1Core GStreamer libraries, plugins, ii libgtk2.0-0 2.8.16-1The GTK+ graphical user interface ii libgtop2-5 2.12.2-1Libraries for gtop system monitori ii libgucharmap41:1.6.0-1 Unicode browser widget library (sh ii libhal1 0.5.7-1 Hardware Abstraction Layer - share ii libpanel-applet2-0 2.12.3-1library for GNOME 2 panel applets ii libpango1.0-01.12.1-2Layout and rendering of internatio ii libwnck182.14.0 Window Navigator Construction Kit ii libx11-6 6.9.0.dfsg.1-6 X Window System protocol client li ii libxklavier102.2-3 X Keyboard Extension high-level AP ii libxml2 2.6.23.dfsg.2-3 GNOME XML library Versions of packages gnome-applets recommends: ii gnome-media2.12.0-3 The GNOME Media Utilities pn gnome-netstatus-applet (no description available) ii gnome-system-monitor 2.12.2-2 Process viewer and system resource ii imagemagick7:6.2.4.5-0.8 Image manipulation programs -- debconf information: * gnome-applets/cpufreq_SUID_bit: false -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366287: cyclone: itp
Package: cyclone Severity: normal i wish to maintain cyclone in debian (itp) -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366422: ITP: cyclone -- a C like language, with additional safety and features
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: cyclone Version : 1.0.0 Upstream Author : Cyclone is a joint project of AT&T Labs Research, Harvard, the University of Maryland, and the University of Washington. Much of the early work was done at Cornell University. * URL : http://cyclone.thelanguage.org/wiki/Download * License : GPL Programming Lang: C, C++ Description : a C like language, with additional safety and features Cyclone is like C: it has pointers and pointer arithmetic, structs, arrays, goto, manual memory management, and C's preprocessor and syntax. Cyclone adds features such as pattern matching, algebraic datatypes, exceptions, region-based memory management, and optional garbage collection. Cyclone is safe: pure Cyclone programs are not vulnerable to a wide class of bugs that plague C programs: buffer overflows, format string attacks, double free bugs, dangling pointer accesses, etc. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366483: ITP: oci-mpc -- The Makefile, Project and Workspace Creator
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: oci-mpc Version : 3.3.95 Upstream Author : Designed by Justin Michel ([EMAIL PROTECTED]) and Chad Elliott. Implemented by Chad Elliott ([EMAIL PROTECTED]). * URL : http://www.example.org/ * License : Close to BSD: Since MPC is open source and free of licensing fees, you are free to use, modify, and distribute the source code, as long as you include this copyright statement. In particular, you can use MPC to build proprietary software and are under no obligation to redistribute any of your source code that is built using MPC. Note, however, that you may not do anything to the MPC code, such as copyrighting it yourself or claiming authorship of the MPC code, that will prevent MPC from being distributed freely using an open source development model. Programming Lang: Perl Description : The Makefile, Project and Workspace Creator A single tool (MPC) can be used to generate tool specific input (i.e. Makefile, dsp, vcproj, etc). The generator takes platform and building tool generic files (mpc files) as input which describe basic information needed to generate a "project" file for various build tools. These tools include Make, NMake, Visual C++ 6, Visual C++ 7, etc. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366483: ITP: oci-mpc -- The Makefile, Project and Workspace Creator
hi thomas, i have needed mpc to package another program. i'd rather use your prepared package, of course. pitty the aleged upstream authors (oci), didn't know anything about your effort. please close my itp bugs in your changelog, and tell me how could i totally cancel oci-mpc in favour of your package. thanks again for your good work, alex [EMAIL PROTECTED] wrote: > Selon alex bodnaru <[EMAIL PROTECTED]>: > > >>Package: wnpp >>Severity: wishlist >>Owner: alex bodnaru <[EMAIL PROTECTED]> >> >> >>* Package name: oci-mpc >> Version : 3.3.95 > > > Hello Alex, > > a slightly modified version of MPC is available with ACE+TAO. > The package is named mpc-ace. Doesn't this version suit your needs ? > > Thanks, > > Thomas > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366483: ITP: oci-mpc -- The Makefile, Project and Workspace Creator
hi, thanks very much for pointing me to the package. i acrually need to use it. i have told the maintainer to close my itp bugs, but please tell me what else should i do to eliminate oci-mpc, in favour of mcp-ace. regards, alex Ramiro Morales wrote: > Alex, > > On 5/8/06, alex bodnaru <[EMAIL PROTECTED]> wrote: > >> Package: wnpp >> Severity: wishlist >> Owner: alex bodnaru <[EMAIL PROTECTED]> >> >> >> * Package name: oci-mpc >> Version : 3.3.95 >> Upstream Author : Designed by Justin Michel ([EMAIL PROTECTED]) >> and Chad Elliott. >> Implemented by Chad Elliott ([EMAIL PROTECTED]). >> * URL : http://www.example.org/ >> * License : Close to BSD: >> Since MPC is open source and free of licensing fees, you are free to >> use, >> modify, and distribute the source code, as long as you include this >> copyright statement. >> In particular, you can use MPC to build proprietary software and are >> under >> no obligation to redistribute any of your source code that is built >> using >> MPC. Note, however, that you may not do anything to the MPC code, >> such as >> copyrighting it yourself or claiming authorship of the MPC code, that >> will >> prevent MPC from being distributed freely using an open source >> development >> model. >> >> Programming Lang: Perl >> Description : The Makefile, Project and Workspace Creator >> >> A single tool (MPC) can be used to generate tool specific input (i.e. >> Makefile, dsp, vcproj, etc). The generator takes platform and building >> tool generic files (mpc files) as input which describe basic information >> needed to generate a "project" file for various build tools. These >> tools >> include Make, NMake, Visual C++ 6, Visual C++ 7, etc. > > > MPC is already being packaged and distributed with Debian > > http://packages.debian.org/mpc-ace > > as a part of the ACE packages (ace source package) > > Regards, > > -- > Ramiro Morales > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366483: ITP: oci-mpc -- The Makefile, Project and Workspace Creator
hi thomas, examining mpc-ace, i found it's dependent on libace and libtao, which is, in my opinion, too much for a few perl scripts ;-). is this really needed for this special versions of mpc? alex [EMAIL PROTECTED] wrote: > Selon alex bodnaru <[EMAIL PROTECTED]>: > >>hi thomas, >> >>i have needed mpc to package another program. >> >>i'd rather use your prepared package, of course. >> >>pitty the aleged upstream authors (oci), didn't know anything about your >>effort. > > > Well, as you may know, OCI's version is upstream. The DOC group uses a > snapshot version for ACE+TAO[0] development, and this is the version > packaged as mpc-ace. You may find out that the mpc-ace version is > outdated. > > If that happen please let me know, and together we'll move toward the OCI > version, therefore deprecating mpc-ace. I know that ACE+TAO can be > compiled with OCI's MPC with some tweaks. > > >>please close my itp bugs in your changelog, and tell me how could i >>totally cancel oci-mpc in favour of your package. > > > I don't need to mention this ITP in ACE+TAO packages changelog. > > As soon as you have find out that mpc-ace MPC version fits your needs, > i.e. you can build your package with it, then you can close the ITP > by yourself stating that oci-mpc is not needed because of mpc-ace. > If mpc-ace does not fit, we'll use this ITP to move to OCI's version. > > Do you agree ? > > Thanks, > > Thomas > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366483: ITP: oci-mpc -- The Makefile, Project and Workspace Creator
hi thomas, no problem, i'd like to help. oc-mpc is 3.3.95 right now, as upstream were proud to announce. if you could find out what tweaks are needed for ace+tao, they may even not hurt a pure oci-mpc distribution. in the meantime, i'd also check the project i'm working on with both the versions. alex [EMAIL PROTECTED] wrote: > Selon alex bodnaru <[EMAIL PROTECTED]>: > >>hi thomas, >> >>i have needed mpc to package another program. >> >>i'd rather use your prepared package, of course. >> >>pitty the aleged upstream authors (oci), didn't know anything about your >>effort. > > > Well, as you may know, OCI's version is upstream. The DOC group uses a > snapshot version for ACE+TAO[0] development, and this is the version > packaged as mpc-ace. You may find out that the mpc-ace version is > outdated. > > If that happen please let me know, and together we'll move toward the OCI > version, therefore deprecating mpc-ace. I know that ACE+TAO can be > compiled with OCI's MPC with some tweaks. > > >>please close my itp bugs in your changelog, and tell me how could i >>totally cancel oci-mpc in favour of your package. > > > I don't need to mention this ITP in ACE+TAO packages changelog. > > As soon as you have find out that mpc-ace MPC version fits your needs, > i.e. you can build your package with it, then you can close the ITP > by yourself stating that oci-mpc is not needed because of mpc-ace. > If mpc-ace does not fit, we'll use this ITP to move to OCI's version. > > Do you agree ? > > Thanks, > > Thomas > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366647: ITP: rp-l2tp -- a user-space implementation of L2TP (RFC 2661) for Linux
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: rp-l2tp Version : 0.4 Upstream Author : Copyright 2002 Roaring Penguin Software Inc * URL : http://sourceforge.net/projects/rp-l2tp/ * License : GPL Programming Lang: C Description : a user-space implementation of L2TP (RFC 2661) for Linux rp-l2tp provides a user-space L2TP daemon. L2TP is the Layer Two Tunneling Protocol described in RFC 2661. It allows you to tunnel PPP sessions over a network or transport protocol (in this case, UDP.) -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#372259: user-mode-linux: the uml_switch control file is not been searched as in uml-utilities package
Package: user-mode-linux Version: 2.6.16-1um-2 Severity: grave Justification: renders package unusable hello, this is a change in required parameters that left me with no networking in uml. i'm using uml with eth0=daemon option. if no uml_switch control file is specified, linux has previously (probably) searched it as configured in the uml-utilities package, while now it searches it in the loacation default for uml_switch upstream itself. while it's grave (the uml networking is quite vital), there is a simple workaround: specify the exact control file location with the daemon arg. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages user-mode-linux depends on: ii uml-utilities 20060323-3 User-mode Linux (utility programs) user-mode-linux recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#378186: gnome-control-center: gnome-display-properties setting screen resolution crashes gnome-session
Package: gnome-control-center Version: 1:2.14.2-2 Severity: normal gnome-session crashes when attempting to set screen resolution. this happens either when trying to do it interactively, and also on user login, when the screen resolution is been set in: ~/.gconf/desktop/gnome/screen/`hostname`/0/%gconf.xml in case it works for you, it could be a bug in the xserver-xorg driver :-( (though i can switch resolutions with ctrl+alt+greyplus). -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages gnome-control-center depends on: ii capplets-data 1:2.14.2-2configuration applets for GNOME 2 ii desktop-file-utils 0.11-1Utilities for .desktop files ii gnome-desktop-data 2.14.2-2 Common files for GNOME 2 desktop a ii gnome-icon-theme 2.14.2-1 GNOME Desktop icon theme ii gnome-menus2.14.0-3 an implementation of the freedeskt ii libart-2.0-2 2.3.17-1 Library of functions for 2D graphi ii libatk1.0-01.11.4-2 The ATK accessibility toolkit ii libaudiofile0 0.2.6-6 Open-source version of SGI's audio ii libavahi-client3 0.6.10-1 Avahi client library ii libavahi-common3 0.6.10-1 Avahi common library ii libavahi-glib1 0.6.10-1 Avahi glib integration library ii libbonobo2-0 2.14.0-1 Bonobo CORBA interfaces library ii libbonoboui2-0 2.14.0-3 The Bonobo UI library ii libc6 2.3.6-15 GNU C Library: Shared libraries ii libcairo2 1.2.0-2 The Cairo 2D vector graphics libra ii libdbus-1-20.62-4simple interprocess messaging syst ii libebook1.2-5 1.6.2-3 Client library for evolution addre ii libesd00.2.36-3 Enlightened Sound Daemon - Shared ii libfontconfig1 2.3.2-7 generic font configuration library ii libfreetype6 2.2.1-2 FreeType 2 font engine, shared lib ii libgconf2-42.14.0-1 GNOME configuration database syste ii libgcrypt111.2.2-1 LGPL Crypto library - runtime libr ii libglade2-01:2.5.1-2 library to load .glade files at ru ii libglib2.0-0 2.10.2-1 The GLib library of C routines ii libgnome-desktop-2 2.14.2-2 Utility library for loading .deskt ii libgnome-keyring0 0.4.9-1 GNOME keyring services library ii libgnome-menu2 2.14.0-3 an implementation of the freedeskt ii libgnome-window-settings1 1:2.14.2-2Utility library for getting window ii libgnome2-02.14.1-2 The GNOME 2 library - runtime file ii libgnomecanvas2-0 2.14.0-2 A powerful object-oriented display ii libgnomeui-0 2.14.1-2 The GNOME 2 libraries (User Interf ii libgnomevfs2-0 2.14.2-1 GNOME virtual file-system (runtime ii libgnutls131.4.0-3 the GNU TLS library - runtime libr ii libgpg-error0 1.2-1 library for common error values an ii libgstreamer-plugins-base0 0.10.8-1 GStreamer libraries from the "base ii libgstreamer0.10-0 0.10.8-2 Core GStreamer libraries and eleme ii libgtk2.0-02.8.18-1 The GTK+ graphical user interface ii libice61:1.0.0-3 X11 Inter-Client Exchange library ii libjpeg62 6b-13 The Independent JPEG Group's JPEG ii libmetacity0 1:2.14.5-1library of lightweight GTK2 based ii libnautilus-extension1 2.14.1-5 libraries for nautilus components ii liborbit2 1:2.14.0-2libraries for ORBit2 - a CORBA ORB ii libpango1.0-0 1.12.3-1 Layout and rendering of internatio ii libpng12-0 1.2.8rel-5.1 PNG library - runtime ii libpopt0 1.10-2lib for parsing cmdline parameters ii libsm6 1:1.0.0-4 X11 Session Management library ii libstartup-notification0 0.8-1 library for program launch feedbac ii libtasn1-3 0.3.5-1 Manage ASN.1 structures (runtime) ii libx11-6 2:1.0.0-7 X11 client-side library ii libxcursor11.1.5.2-5 X cursor management library ii libxext6 1:1.0.0-4 X11 miscellaneous extension librar ii libxfixes3 1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio ii libxft22.1.8.2-8 FreeType-based font drawing librar ii libxi6 1:1.0.0-5 X11 Input extension library ii libxinerama1 1:1.0.1-4 X11
Bug#367442: ITP: geotypes -- classes for working with geometric types in postgresql
Package: wnpp Severity: wishlist Owner: alex bodnaru <[EMAIL PROTECTED]> * Package name: geotypes Version : 0.4.0-0.5.0+SVN Upstream Author : Richard Taylor <[EMAIL PROTECTED]>, Frederic Back <[EMAIL PROTECTED]> * URL : http://www.initd.org/tracker/psycopg/wiki/GeoTypes http://initd.org/svn/psycopg/geotypes/trunk * License : LGPL Programming Lang: Python Description : classes for working with geometric types in postgresql/postgis A package of classes for working with geometric types in postgres. The package contains two collections of classes: * The first were designed for use with the geometric functions supported by Postgresql (http://www.postgresql.com) although they do not need Postgresql to be present for them to be used. The types implemented are those listed in the Postgresql documentation at http://www.postgresql.org/docs/7.3/static/datatype-geometric.html with the exception of 'line' which, as the documentation is says, is 'not fully implemented yet'. * The second were designed for use with the PostGIS/OpenGIS extensions to postgres. All these classes begin with "OG" so as to avoid name clashed with the standard postgres types. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#374093: bind9: bind does not serve locally defined zone files
Package: bind9 Version: 1:9.3.2-2 Severity: grave Justification: renders package unusable the bind9 server failed to serve all zones i have defined, but does work as a dns forwarder. i have fixed this situation by removing the view "original" { }; from named.conf, but keeping it's contents, of course. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages bind9 depends on: ii adduser 3.87 Add and remove users and groups ii libbind9-01:9.3.2-2 BIND9 Shared Library used by BIND ii libc6 2.3.6-13 GNU C Library: Shared libraries ii libdns21 1:9.3.2-2 DNS Shared Library used by BIND ii libisc11 1:9.3.2-2 ISC Shared Library used by BIND ii libisccc0 1:9.3.2-2 Command Channel Library used by BI ii libisccfg11:9.3.2-2 Config File Handling Library used ii liblwres9 1:9.3.2-2 Lightweight Resolver Library used ii libssl0.9.8 0.9.8b-2 SSL shared libraries ii lsb-base 3.1-10 Linux Standard Base 3.1 init scrip ii netbase 4.25 Basic TCP/IP networking system bind9 recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#374093: bind9: bind does not serve locally defined zone files
hi stephen, thanks for your prompt answer. in the past, bind9 used to log a warning about the named.conf zones being not in views, while i defined other zone files within views in named.conf.local, which is included in named.conf. recently, bind9 was shipping with all the zones in named.conf included in view "original", probably to overcome that warning. the "include named.conf.local" statement is outside view "original" {...};, so my views would, without changing named.conf, be not nested within view "original". i have nevertheless changed this to have nested views, as you said, but the server fails to even load. the only possible way for it to load would be to have the include statement within view "original", but refrain from containing view or logging statements in the local file, which would unnecessarily limit it's functionality. as an obeying user, i have migrated only named.conf.local from a running server, but failed to work on a newer system. hence the problem gravity. my fix preserves the former situation, with the given warning, but lets the system run properly. alex Stephen Gran wrote: > severity 374093 normal > kthxbye > This one time, at band camp, alex bodnaru said: > >>the bind9 server failed to serve all zones i have defined, but does work >>as a dns forwarder. >>i have fixed this situation by removing the view "original" { }; from >>named.conf, but keeping it's contents, of course. > > > You'll need to define the zones you want served in a view within that > view - they do not inherit. I am glad you fixed your problem. > > There are no views defined in the Debian package for bind9. I am > guessing this is a local configuration problem, and nothing to do with > the packaging. I am downgrading to normal, but I suggest the > maintainers follow up and close this as appropriate. > > Take care, -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#374093: bind9: bind does not serve locally defined zone files
hi stephen, you were right, i have previously not understand that. while i'm sure the view came from the installation, the missing of the view now shows the bug has been already fixed. thanks again, alex Stephen Gran wrote: > This one time, at band camp, alex bodnaru said: > >>hi stephen, >> >>thanks for your prompt answer. >> >>in the past, bind9 used to log a warning about the named.conf zones >>being not in views, while i defined other zone files within views in >>named.conf.local, which is included in named.conf. >> >>recently, bind9 was shipping with all the zones in named.conf included >>in view "original", probably to overcome that warning. >>the "include named.conf.local" statement is outside view "original" >>{...};, so my views would, without changing named.conf, be not nested >>within view "original". >>i have nevertheless changed this to have nested views, as you said, but >>the server fails to even load. the only possible way for it to load >>would be to have the include statement within view "original", but >>refrain from containing view or logging statements in the local file, >>which would unnecessarily limit it's functionality. >> >>as an obeying user, i have migrated only named.conf.local from a running >>server, but failed to work on a newer system. hence the problem gravity. >> >>my fix preserves the former situation, with the given warning, but lets >>the system run properly. > > > I think you have missed what I was saying. The bind9 debian packages do > not ship with a view defined. If you have a view named original, then > you or another admin have defined it. That was my only point. As I am > not the maintainer for bind, I have forwarded your previous mail to the > bug report log, and am copying it on my reply to you. Please follow up > to there as well. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#374582: base-config is been invoked in rootstrap, although it doesn't exist anymore
Package: rootstrap Version: 0.3.22-1 Severity: grave Justification: renders package unusable base-config has been removed from etch, hence it's invokation fails. you may execute it on condition if exists, or just ignore it's failure like with || true. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages rootstrap depends on: ii debootstrap 0.3.3Bootstrap a basic Debian system ii dpkg1.13.19 package maintenance system for Deb ii python 2.3.5-5 An interactive high-level object-o ii user-mode-linux 2.6.16-1um-2 User-mode Linux (kernel) Versions of packages rootstrap recommends: ii uml-utilities 20060323-3 User-mode Linux (utility programs) -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#368475: gnue-common: the gnue init script is running before postgresql, thus it fails to connect
Package: gnue-common Version: 0.6.1-1 Severity: important during system initialization, the gnue server is trying to make postgresql connections as i configured it, but postgresql is loading later in the init process. i would change the init script calling order for gnue, to run after the supported databases are scheduled to load. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-skas3-v8.2 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages gnue-common depends on: ii python2.3.5-5An interactive high-level object-o ii python-egenix-mxdatetime 2.0.6-2date and time handling routines fo Versions of packages gnue-common recommends: ii gnue-forms0.5.13-1 An XML-based forms painter ii gnue-reports 0.1.8-1An XML-based output-independent re ii python-mysqldb1.2.1-p2-1 A Python interface to MySQL ii python-psycopg1.1.21-4 Python module for PostgreSQL [dumm -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]