[Bug 485059] Re: usb to parallel adapter causes segfault when adding printer

2009-11-20 Thread Ole Streicher
I disabled the usblp kernel module. 
When running /usr/lib/cups/backend/usb under strace, I get:

[...]
open("/dev/bus/usb/003/004", O_RDWR)= 3
ioctl(3, USBDEVFS_SETCONFIGURATION, 0x7fff4c1b19d4) = 0
ioctl(3, USBDEVFS_CLAIMINTERFACE, 0x7fff4c1b19cc) = 0
ioctl(3, USBDEVFS_SETINTERFACE, 0x7fff4c1b19c0) = 0
ioctl(3, USBDEVFS_CONTROL, 0x7fff4c1b1980) = 2
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++

/dev/bus/usb/003/004 is the device of the interface.

gdb says:
[...]
Program received signal SIGSEGV, Segmentation fault.
0x77479b54 in ?? () from /lib/libc.so.6
(gdb) where
#0  0x77479b54 in ?? () from /lib/libc.so.6
#1  0x77477ede in memmove () from /lib/libc.so.6
#2  0x77ff8d69 in ?? () from /usr/lib/cups/backend/usb
#3  0x77ff9c33 in ?? () from /usr/lib/cups/backend/usb
#4  0x0d7877ff in ?? ()
#5  0xab357776 in ?? ()
#6  0xdd4077ff in ?? ()
#7  0x7fff in ?? ()
#8  0xb6a0 in ?? ()
#9  0x5e88efbc86d6 in ?? ()
#10 0xf9d0773f in ?? ()
#11 0x2c5277fc in ?? ()
#12 0x000177de in ?? ()
#13 0xf4d07fff in ?? ()
#14 0x000177fc in ?? ()
#15 0x in ?? ()

-- 
usb to parallel adapter causes segfault when adding printer
https://bugs.launchpad.net/bugs/485059
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 485059] [NEW] usb to parallel adapter causes segfault when adding printer

2009-11-18 Thread Ole Streicher
Public bug reported:

Binary package hint: cups

When I try to add a printer via usb-to-parallel, the printer is not
recognized and the backend program will die with a segfault.

Dmesg reports:

[ 4875.810031] usb 3-1: new full speed USB device using ohci_hcd and address 5
[ 4876.033583] usb 3-1: configuration #1 chosen from 1 choice
[ 4876.107592] usblp0: USB Bidirectional printer dev 5 if 0 alt 0 proto 2 vid 
0x1A86 pid 0x7584
[ 4876.107642] usbcore: registered new interface driver usblp
[ 4886.380286] usb 3-1: usbfs: interface 0 claimed by usblp while 'usb' sets 
config #1
[ 4886.416955] usb[8155]: segfault at 7fff03707000 ip 7ff08cbc2b14 sp 
7fff03703248 error 4 in libc-2.10.1.so[7ff08cb4+166000]

The last line can be reproduced by calling /usr/lib/cups/backend/usb by
hand:

DEBUG: list_devices_libusb
DEBUG: usb_find_busses=4
DEBUG: usb_find_devices=6
Segmentation fault

The adapter is known to work under Ubuntu (worked at 9.04).
Affects kubuntu 9.10/amd64
cups version is 1.4.1-5ubuntu2.1

** Affects: cups (Ubuntu)
 Importance: Undecided
 Status: New

-- 
usb to parallel adapter causes segfault when adding printer
https://bugs.launchpad.net/bugs/485059
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 432459] [NEW] "clobber" fails when writing files

2009-09-18 Thread Ole Streicher
Public bug reported:

the following code fails for me if the output file already exists:
   
   >>> import pyfits
   >>> pyfits.PrimaryHDU().writeto('Map.fits', clobber='True')

   /var/lib/python-support/python2.6/pyfits/NP_pyfits.py:4895:
   DeprecationWarning: functions overriding warnings.showwarning() must
   support the 'line' argument
 warnings.warn( "Overwrite existing file '%s'." % name)
   Traceback (most recent call last):
 File "", line 1, in 
 File "/var/lib/python-support/python2.6/pyfits/NP_pyfits.py", line
   1483, in writeto
   classExtensions=classExtensions)
 File "/var/lib/python-support/python2.6/pyfits/NP_pyfits.py", line
   4895, in writeto
   warnings.warn( "Overwrite existing file '%s'." % name)
 File "/var/lib/python-support/python2.6/pyfits/NP_pyfits.py", line 76,
   in showwarning
   _showwarning(message, category, filename, lineno, file)
 File "/usr/lib/python2.6/warnings.py", line 29, in _show_warning
   file.write(formatwarning(message, category, filename, lineno, line))
   TypeError: formatwarning() takes exactly 4 arguments (5 given)

This happens on Ubuntu 9.04 with python 2.6.2 and pyfits 1.3-2.

I contacted the pyfits author and go the answer that pyfits 1.3 is not
compatible with python 2.6.

So, probably it would be the best to update the pyfits in the repository
with a current version?

Fedora Linux had the same problem, see 
https://bugzilla.redhat.com/show_bug.cgi?id=509203
>From there I got the following additional info:

This bug was fixed upstream in pyfits version 2.1.  See the CHANGELOG
here:

http://www.stsci.edu/resources/software_hardware/pyfits/release

See this scipy mailing list thread:

http://mail.scipy.org/pipermail/astropy/2009-June/000827.html

** Affects: pyfits (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  the following code fails for me if the output file already exists:
 
 >>> import pyfits
 >>> pyfits.PrimaryHDU().writeto('Map.fits', clobber='True')
  
 /var/lib/python-support/python2.6/pyfits/NP_pyfits.py:4895:
 DeprecationWarning: functions overriding warnings.showwarning() must
 support the 'line' argument
   warnings.warn( "Overwrite existing file '%s'." % name)
 Traceback (most recent call last):
   File "", line 1, in 
   File "/var/lib/python-support/python2.6/pyfits/NP_pyfits.py", line
 1483, in writeto
 classExtensions=classExtensions)
   File "/var/lib/python-support/python2.6/pyfits/NP_pyfits.py", line
 4895, in writeto
 warnings.warn( "Overwrite existing file '%s'." % name)
   File "/var/lib/python-support/python2.6/pyfits/NP_pyfits.py", line 76,
 in showwarning
 _showwarning(message, category, filename, lineno, file)
   File "/usr/lib/python2.6/warnings.py", line 29, in _show_warning
 file.write(formatwarning(message, category, filename, lineno, line))
 TypeError: formatwarning() takes exactly 4 arguments (5 given)
  
  This happens on Ubuntu 9.04 with python 2.6.2 and pyfits 1.3-2.
  
  I contacted the pyfits author and go the answer that pyfits 1.3 is not
  compatible with python 2.6.
  
  So, probably it would be the best to update the pyfits in the repository
  with a current version?
+ 
+ Fedora Linux had the same problem, see 
https://bugzilla.redhat.com/show_bug.cgi?id=509203
+ From there I got the following additional info:
+ 
+ This bug was fixed upstream in pyfits version 2.1.  See the CHANGELOG
+ here:
+ 
+ http://www.stsci.edu/resources/software_hardware/pyfits/release
+ 
+ See this scipy mailing list thread:
+ 
+ http://mail.scipy.org/pipermail/astropy/2009-June/000827.html

-- 
"clobber" fails when writing files
https://bugs.launchpad.net/bugs/432459
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1784043] Re: package jython-stilts 3.1.2-2 failed to install/upgrade: installed jython-stilts package post-installation script subprocess returned error exit status 1

2018-12-04 Thread Ole Streicher
** Also affects: jython (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1784043

Title:
  package jython-stilts 3.1.2-2 failed to install/upgrade: installed
  jython-stilts package post-installation script subprocess returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/jython/+bug/1784043/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1772905] Re: blt::RemoveBindTag not found

2018-09-06 Thread Ole Streicher
The failure is a bit mystic to me. It definitely has nothing to do with
the tkblt problem: tkblt is a widget set, while the failure comes from a
networking test (XPA is a network protocol somehow specific to saods9).

I have never seen this problem on Debian (only 64 bit, however); but it
happened occasionally on Ubuntu -- unrelated to tkblt update, f.e.:

* xorg-server/2:1.19.6-1ubuntu3, 2018-03-14 19:53:47 UTC 
* starlink-ast/8.6.2+dfsg-2 2018-01-25 00:34:41 UTC

etc. The problem also exists since a while on armhf;
http://autopkgtest.ubuntu.com/packages/s/saods9/bionic/armhf

It just depends on the speed of the test platform: the testscript
(debian/tests/saods9-xpa) starts ds9, waits one second to come up and
then tries to communicate with it. If the one second is not enough, the
communication will fail (and the test as well).

This is ofcourse a bug in the test script (will attempt to fix than in
the next release of saods9); however I don't know how to proceed here. I
am however sure that this is not related to the patch proposed here.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1772905

Title:
  blt::RemoveBindTag not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1804773] [NEW] libjide-oss-java package does not install a jide-oss.jar file

2018-11-23 Thread Ole Streicher
Public bug reported:

The installed package looks like this:

/usr/share/doc/libjide-oss-java/changelog.Debian.gz
/usr/share/doc/libjide-oss-java/copyright
/usr/share/doc/libjide-oss-java/README.Debian
/usr/share/java/jide-oss-3.7.4-3.7.4+dfsg.jar
/usr/share/java/jide-oss-3.7.4.jar
/usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.jar
/usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.pom
/usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.jar
/usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.pom

while the Debian package has a `jide-oss.jar` file:

/usr/share/doc/libjide-oss-java/changelog.Debian.gz
/usr/share/doc/libjide-oss-java/changelog.gz
/usr/share/doc/libjide-oss-java/copyright
/usr/share/doc/libjide-oss-java/README.Debian
/usr/share/java/jide-oss-3.7.4.jar
/usr/share/java/jide-oss.jar
/usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.jar
/usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.pom
/usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.jar
/usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.pom

This causes the build of starjava-ttools to fail, since it has the
version-less jide-oss.jar in the build path. See also Debian Java Policy
https://www.debian.org/doc/packaging-manuals/java-policy/ch02.html
#policy-libraries

Obviously, something mixed up between name and version in the jide-oss.

That is libjide-oss-java_3.7.4+dfsg-1 as included in the upcoming 19.04
Ubuntu release.

** Affects: libjide-oss-java (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: starjava-ttools (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: starjava-ttools (Ubuntu)
   Importance: Undecided
   Status: New

** Summary changed:

- package does not install a jide-oss.jar file
+ libjide-oss-java package does not install a jide-oss.jar file

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1804773

Title:
  libjide-oss-java package does not install a jide-oss.jar file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjide-oss-java/+bug/1804773/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1804773] Re: libjide-oss-java package does not install a jide-oss.jar file

2018-11-23 Thread Ole Streicher
** Description changed:

  The installed package looks like this:
  
  /usr/share/doc/libjide-oss-java/changelog.Debian.gz
  /usr/share/doc/libjide-oss-java/copyright
  /usr/share/doc/libjide-oss-java/README.Debian
  /usr/share/java/jide-oss-3.7.4-3.7.4+dfsg.jar
  /usr/share/java/jide-oss-3.7.4.jar
  /usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.jar
  /usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.pom
  /usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.jar
  /usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.pom
  
  while the Debian package has a `jide-oss.jar` file:
  
  /usr/share/doc/libjide-oss-java/changelog.Debian.gz
  /usr/share/doc/libjide-oss-java/changelog.gz
  /usr/share/doc/libjide-oss-java/copyright
  /usr/share/doc/libjide-oss-java/README.Debian
  /usr/share/java/jide-oss-3.7.4.jar
  /usr/share/java/jide-oss.jar
  /usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.jar
  /usr/share/maven-repo/com/jidesoft/jide-oss/3.7.4/jide-oss-3.7.4.pom
  /usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.jar
  /usr/share/maven-repo/com/jidesoft/jide-oss/debian/jide-oss-debian.pom
  
  This causes the build of starjava-ttools to fail, since it has the
  version-less jide-oss.jar in the build path. See also Debian Java Policy
  https://www.debian.org/doc/packaging-manuals/java-policy/ch02.html
  #policy-libraries
  
  Obviously, something mixed up between name and version in the jide-oss.
  
  That is libjide-oss-java_3.7.4+dfsg-1 as included in the upcoming 19.04
  Ubuntu release.
+ 
+ That is a regression; libjide-oss-java_3.7.2+dfsg-1ubuntu2 was still
+ correct. As 18.10 is affected as well, a backport of the solution would
+ be nice (otherwise topcat will not work correctly).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1804773

Title:
  libjide-oss-java package does not install a jide-oss.jar file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjide-oss-java/+bug/1804773/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1765106] Re: Program does not start due to a problem in compilation

2018-04-23 Thread Ole Streicher
This is fixed in 18.04 RC.

** Changed in: starjava-topcat (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1765106

Title:
  Program does not start due to a problem in compilation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/starjava-topcat/+bug/1765106/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768907] Re: Error when trying to import an IRAF task in Python

2018-05-04 Thread Ole Streicher
First, thank you very much for your detailed bug report and your
analysis!

The problem here is that by default, the NOAO tasks are not loaded. This
is also not done in the original IRAF login.cl script. Specifically,
your script contains the following lines at the end:

print ("  The following commands or packages are currently
defined:\n")

# noao main packages:
astutil
imred
onedspec
twodspec

# noao.imred main packages:
ccdred
crutil
generic

keep

while the original login.cl (see f.e.
https://github.com/iraf/iraf-v216/blob/master/unix/hlib/login.cl#L178-L181)
is

print ("  The following commands or packages are currently
defined:\n")

keep

With adding these lines to /etc/iraf/login.cl, the `import` Python
statements would run -- however this is your local change, not a common
bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768907

Title:
  Error when trying to import an IRAF task in Python

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pyraf/+bug/1768907/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768907] Re: Error when trying to import an IRAF task in Python

2018-05-04 Thread Ole Streicher
OK, so I am just closing this. Thanks for the response.

** Changed in: pyraf (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768907

Title:
  Error when trying to import an IRAF task in Python

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pyraf/+bug/1768907/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1831421] [NEW] Permission denied for generated parsetab

2019-06-02 Thread Ole Streicher
Public bug reported:

Taken from https://github.com/astropy/astropy/issues/8783

KeithSloan commented:

I am trying to use astroquery to access GAMA Survey.

The supplied test is

from astroquery.simbad import Simbad
result_table = Simbad.query_object("m1")
result_table.pprint(show_unit=True)

I get an error WARNING: Couldn't create 'astropy.units.format.cds_parsetab'. 
[Errno 13] Permission denied: ' 
/usr/lib/python3/dist-packages/astropy/units/format/cds_parsetab.py'
Now I could use sudo but suspect there is something I should have done at 
installation that
should cause parsetab to be created somewhere other than /usr/lib

[...] Installed on Ubuntu 18.04 with

sudo apt-get update -y
sudo apt-get install -y python3-astroquery

Setting up python3-astropy (3.0-3) ...
Setting up python3-astroquery (0.3.7+dfsg-1) ...

** Affects: astropy (Ubuntu)
 Importance: Undecided
 Assignee: Ole Streicher (olebole)
 Status: New

** Changed in: astropy (Ubuntu)
 Assignee: (unassigned) => Ole Streicher (olebole)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1831421

Title:
  Permission denied for generated parsetab

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/astropy/+bug/1831421/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1849340] Re: 'style' HTML attribute not applied

2019-10-22 Thread Ole Streicher
hv3 is basically dead upstream; so unless you can provide a patch, I am
afraid that this will remain unfixed. Sorry.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1849340

Title:
  'style' HTML attribute not applied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tk-html3/+bug/1849340/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1665355] Re: import GDL fails in python (ImportError: dynamic module does not define init function (initGDL))

2019-09-16 Thread Ole Streicher
Finally, I think I found the cause (as the problem appeared on Debian as
well): The object file pythongdl.cpp.o was empty, and all functions
(including initGDL and PyInit) were called from the library
(libgnudatalanguage0) linked to. On gcc-9 (and probably on Ubuntu's
gcc), the "as-needed" flag is implicite in the linking step, which
prevents unneded libraries from being linked. Therefore, the symbols
can't befound anymore.

This is now solved in the Debian package.

** Changed in: gnudatalanguage (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1665355

Title:
  import GDL fails in python (ImportError: dynamic module does not
  define init function (initGDL))

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnudatalanguage/+bug/1665355/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1913942] Re: package astrometry-data-2mass-00 1.1 failed to install/upgrade: installed astrometry-data-2mass-00 package post-installation script subprocess returned error exit status 18

2021-02-02 Thread Ole Streicher
Adrian, could you please post the full output of the installation of 
astrometry-data-2mass-00?
(specifically, of "sudo apt install astrometry-data-2mass-00"?

Since it works for me, it may be just a temporary network error while
downloading the data files.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1913942

Title:
  package astrometry-data-2mass-00 1.1 failed to install/upgrade:
  installed astrometry-data-2mass-00 package post-installation script
  subprocess returned error exit status 18

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/astrometry-data-2mass/+bug/1913942/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1835389] Re: ds9 suddenly wouldn't start anymore

2019-07-04 Thread Ole Streicher
** Changed in: saods9 (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1835389

Title:
  ds9 suddenly wouldn't start anymore

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1835389/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1801335] Re: remove python-casacore (ftbfs) and demote rdeps

2018-12-08 Thread Ole Streicher
This should be resolved now?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1801335

Title:
  remove python-casacore (ftbfs) and demote rdeps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casacore-data/+bug/1801335/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1807661] Re: package casacore-data-tai-utc 1.2 failed to install/upgrade: installed casacore-data-tai-utc package post-installation script subprocess returned error exit status 1

2018-12-10 Thread Ole Streicher
That is an incompatibility between numpy and casacore. Please make sure
that they are compiled against the same API version. From the terminal
log:

RuntimeError: module compiled against API version 0xc but this version of numpy 
is 0xb
Traceback (most recent call last):
  File "/usr/bin/casacore-update-tai_utc", line 84, in 
with tables.table(args.output_path) as tbl:
  File "/usr/lib/python3/dist-packages/casacore/tables/table.py", line 363, in 
__init__
Table.__init__(self, tabname, lockopt, opt)
ImportError: numpy.core.multiarray failed to import
dpkg: błąd przetwarzania pakietu casacore-data-tai-utc (--configure):
 installed casacore-data-tai-utc package post-installation script subprocess 
returned error exit status 1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1807661

Title:
  package casacore-data-tai-utc 1.2 failed to install/upgrade: installed
  casacore-data-tai-utc package post-installation script subprocess
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casacore-data-tai-utc/+bug/1807661/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1772905] Re: blt::RemoveBindTag not found

2018-08-31 Thread Ole Streicher
I tested the package tkblt-3.2.7-1ubuntu1 as updated from bionic-
proposes. All tests were successfull:

* loading tkblt within wish as stated in the original bug description

* testing saods9 as described above, and additionally did some random
usage of saods9 using the graphics widgets that require tkblt

Therefore, I am setting the tag to verification-done-bionic.

Thanks for uploading

Ole

** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1772905

Title:
  blt::RemoveBindTag not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1784043] Re: package jython-stilts 3.1.2-2 failed to install/upgrade: installed jython-stilts package post-installation script subprocess returned error exit status 1

2018-08-21 Thread Ole Streicher
I can't reproduce this.

What I did:

 * created a Ubuntu 18.04 chroot, and did a schroot into it
 * added "multiverse universe" to `/etc/apt/sources.list`
 * `apt update`
 * `apt install jython-stilts`

I get warnings, which are created by the startup of Jython:

WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by jnr.posix.JavaLibCHelper$ReflectiveAccess 
(file:/usr/share/java/jnr-posix.jar) to method sun.nio.ch.SelChImpl.getFD()
WARNING: Please consider reporting this to the maintainers of 
jnr.posix.JavaLibCHelper$ReflectiveAccess
WARNING: Use --illegal-access=warn to enable warnings of further illegal 
reflective access operations
WARNING: All illegal access operations will be denied in a future release

But the package installs fine, and a quick test afterwards shows that it
imports fine:

(bionic)oles@donar:~$ jython
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by jnr.posix.JavaLibCHelper$ReflectiveAccess 
(file:/usr/share/java/jnr-posix.jar) to method sun.nio.ch.SelChImpl.getFD()
WARNING: Please consider reporting this to the maintainers of 
jnr.posix.JavaLibCHelper$ReflectiveAccess
WARNING: Use --illegal-access=warn to enable warnings of further illegal 
reflective access operations
WARNING: All illegal access operations will be denied in a future release
Jython 2.7.1 (, Oct 22 2017, 13:43:00) 
[OpenJDK 64-Bit Server VM (Oracle Corporation)] on java10.0.1
Type "help", "copyright", "credits" or "license" for more information.
>>> import stilts
>>> 

The difference is that in the log above, there is a package "ibm-
java80-jdk" installed, which however is not part of Ubuntu 18.04.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1784043

Title:
  package jython-stilts 3.1.2-2 failed to install/upgrade: installed
  jython-stilts package post-installation script subprocess returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/starjava-ttools/+bug/1784043/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1784043] Re: package jython-stilts 3.1.2-2 failed to install/upgrade: installed jython-stilts package post-installation script subprocess returned error exit status 1

2018-08-21 Thread Ole Streicher
>From the terminal log:

Exception in thread "main" java.lang.NoSuchMethodError: 
java/nio/ByteBuffer.limit(I)Ljava/nio/ByteBuffer; (loaded from 
/usr/lib/jvm/java-ibm-x86_64-80/jre/lib/rt.jar by ) called 
from class jline.internal.InputStreamReader (loaded from 
file:/usr/share/java/jline2.jar by sun.misc.Launcher$AppClassLoader@4b7a0fb9).
at jline.internal.InputStreamReader.(InputStreamReader.java:104)
at jline.console.ConsoleReader.setInput(ConsoleReader.java:330)
at jline.console.ConsoleReader.(ConsoleReader.java:248)
at org.python.util.JLineConsole.install(JLineConsole.java:107)
at org.python.core.Py.installConsole(Py.java:1744)
at org.python.core.PySystemState.initConsole(PySystemState.java:1258)
at org.python.core.PySystemState.doInitialize(PySystemState.java:1109)
at org.python.core.PySystemState.initialize(PySystemState.java:1023)
at org.python.core.PySystemState.initialize(PySystemState.java:979)
at org.python.core.PySystemState.initialize(PySystemState.java:974)
at org.python.util.jython.run(jython.java:263)
at org.python.util.jython.main(jython.java:142)

I would also assume that the bug is not in jython-stilts, but in jython
itself. Could anyone just install jython (with the ibm-java80-jdk), and
then just start "jython"?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1784043

Title:
  package jython-stilts 3.1.2-2 failed to install/upgrade: installed
  jython-stilts package post-installation script subprocess returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/starjava-ttools/+bug/1784043/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1772905] [NEW] blt::RemoveBindTag not found

2018-05-23 Thread Ole Streicher
Public bug reported:

The tkblt package lacks the definitions that come in the `graph.tcl`
file:

% package require tkblt
3.2
% blt::RemoveBindTag
invalid command name "blt::RemoveBindTag"

This affects the saods9 package: When one selects the "Analysis -> Line
plot tool" menu item, an error message pops up with

An internal error has been detected. invalid command name
"blt::RemoveBindTag"

and the following graph is empty.

Similar error messages come up in several places, significantly
decreasing the usability of saods9.

The problem is fixed in the Debian version 3.2.8-1. I will provide a
backport for Ubuntu.

** Affects: tkblt (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: "Bugfix"
   
https://bugs.launchpad.net/bugs/1772905/+attachment/5143280/+files/Load-graph.tcl-when-the-package-is-loaded.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1772905

Title:
  blt::RemoveBindTag not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1772905] Re: blt::RemoveBindTag not found

2018-05-23 Thread Ole Streicher
This attachment is a backport of the relevant change in tkblt 3.2.8-1
that fixes the bug. The fix has been tested, discussed upstream, and is
uploaded to Debian unstable. Since the bug causes a major decrease of
saods9 functionality, I ask to apply it to the stable Ubuntu 18.04
release.

(I am the maintainer of tkblt in Debian)

Thanks!

Ole

** Patch added: "1-3.2.7-1ubuntu1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+attachment/5143284/+files/1-3.2.7-1ubuntu1.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1772905

Title:
  blt::RemoveBindTag not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1772905] Re: blt::RemoveBindTag not found

2018-05-23 Thread Ole Streicher
** Changed in: tkblt (Ubuntu)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1772905

Title:
  blt::RemoveBindTag not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1772905] Re: blt::RemoveBindTag not found

2018-05-23 Thread Ole Streicher
** Description changed:

+ [Impact]
+ 
  The tkblt package lacks the definitions that come in the `graph.tcl`
  file:
  
- % package require tkblt
- 3.2
- % blt::RemoveBindTag
- invalid command name "blt::RemoveBindTag"
+ % package require tkblt
+ 3.2
+ % blt::RemoveBindTag
+ invalid command name "blt::RemoveBindTag"
  
  This affects the saods9 package: When one selects the "Analysis -> Line
  plot tool" menu item, an error message pops up with
  
  An internal error has been detected. invalid command name
  "blt::RemoveBindTag"
  
  and the following graph is empty.
  
  Similar error messages come up in several places, significantly
  decreasing the usability of saods9.
  
  The problem is fixed in the Debian version 3.2.8-1. I will provide a
  backport for Ubuntu.
+ 
+ [Test Case]
+ 
+ 1. install tkblt, and then run the "wish" Tcl shell. With the bug, it
+ will present the output shown above.
+ 
+ 2. install saods9, start "ds9", open the "Analysis" menu and select
+ "Line Plotting tool...". With the bug, an error message will appear.
+ 
+ [Regression Potential]
+ 
+ saods9 (and tksao, which is also in the saods9 source package) is the
+ only reverse dependency of tkblt (in fact, upstream made tkblt an split-
+ off from saods9), and saods9 is tested with the fix. Also, the fix is
+ quite straightforward; so no regression is expected. In the worst case
+ (if the fix would be completely wrong), it would make saods9 unusable.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1772905

Title:
  blt::RemoveBindTag not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1772905] Re: blt::RemoveBindTag not found

2018-05-23 Thread Ole Streicher
** Description changed:

  [Impact]
  
  The tkblt package lacks the definitions that come in the `graph.tcl`
  file:
  
  % package require tkblt
  3.2
  % blt::RemoveBindTag
  invalid command name "blt::RemoveBindTag"
  
  This affects the saods9 package: When one selects the "Analysis -> Line
  plot tool" menu item, an error message pops up with
  
  An internal error has been detected. invalid command name
  "blt::RemoveBindTag"
  
  and the following graph is empty.
  
  Similar error messages come up in several places, significantly
  decreasing the usability of saods9.
  
  The problem is fixed in the Debian version 3.2.8-1. I will provide a
  backport for Ubuntu.
  
  [Test Case]
  
  1. install tkblt, and then run the "wish" Tcl shell. With the bug, it
  will present the output shown above.
  
  2. install saods9, start "ds9", open the "Analysis" menu and select
  "Line Plotting tool...". With the bug, an error message will appear.
  
  [Regression Potential]
  
  saods9 (and tksao, which is also in the saods9 source package) is the
  only reverse dependency of tkblt (in fact, upstream made tkblt an split-
  off from saods9), and saods9 is tested with the fix. Also, the fix is
  quite straightforward; so no regression is expected. In the worst case
  (if the fix would be completely wrong), it would make saods9 unusable.
+ 
+ [Other info]
+ 
+ Relevant upstream pull request: https://github.com/wjoye/tkblt/pull/13

** Description changed:

  [Impact]
  
  The tkblt package lacks the definitions that come in the `graph.tcl`
  file:
  
  % package require tkblt
  3.2
  % blt::RemoveBindTag
  invalid command name "blt::RemoveBindTag"
  
  This affects the saods9 package: When one selects the "Analysis -> Line
  plot tool" menu item, an error message pops up with
  
- An internal error has been detected. invalid command name
- "blt::RemoveBindTag"
+   An internal error has been detected
+   invalid command name "blt::RemoveBindTag"
  
  and the following graph is empty.
  
  Similar error messages come up in several places, significantly
  decreasing the usability of saods9.
  
  The problem is fixed in the Debian version 3.2.8-1. I will provide a
  backport for Ubuntu.
  
  [Test Case]
  
  1. install tkblt, and then run the "wish" Tcl shell. With the bug, it
  will present the output shown above.
  
  2. install saods9, start "ds9", open the "Analysis" menu and select
  "Line Plotting tool...". With the bug, an error message will appear.
  
  [Regression Potential]
  
  saods9 (and tksao, which is also in the saods9 source package) is the
  only reverse dependency of tkblt (in fact, upstream made tkblt an split-
  off from saods9), and saods9 is tested with the fix. Also, the fix is
  quite straightforward; so no regression is expected. In the worst case
  (if the fix would be completely wrong), it would make saods9 unusable.
  
  [Other info]
  
  Relevant upstream pull request: https://github.com/wjoye/tkblt/pull/13

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1772905

Title:
  blt::RemoveBindTag not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tkblt/+bug/1772905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1665355] Re: import GDL fails in python (ImportError: dynamic module does not define init function (initGDL))

2018-02-28 Thread Ole Streicher
I must say that this is mystic to me. When I do check the shared
library, it looks weird:

$ file /usr/lib/python2.7/dist-packages/GDL.x86_64-linux-gnu.so 
/usr/lib/python2.7/dist-packages/GDL.x86_64-linux-gnu.so: ELF 64-bit LSB shared 
object, x86-64, version 1 (SYSV), dynamically linked, 
BuildID[sha1]=e26bdadb883325ace849f8ce1fe326d6ddcb, stripped

$ ldd /usr/lib/python2.7/dist-packages/GDL.x86_64-linux-gnu.so 
statically linked

$ ls -l /usr/lib/python2.7/dist-packages/GDL.x86_64-linux-gnu.so 
-rw-r--r-- 1 root root 5608 Oct 27 14:47 /usr/lib/python2.7/dist-packages/GDL.x8

I have no idea where this "statically linked" comes from. The linking
call in the build log is the same as in Debian (reformatted; the one
exception is marked):

/usr/bin/c++
-fPIC -g  -O2
-fdebug-prefix-map=/<>=.
-fstack-protector-strong
-Wformat
-Werror=format-security
-DBUILD_DATE="\"Oct 27 2017\""
-Wdate-time
-D_FORTIFY_SOURCE=2
-Wl,-Bsymbolic-functions   # This one is only in the Ubuntu call
-Wl,-z,relro
-Wl,-z,now
-shared
-o GDL.x86_64-linux-gnu.so
CMakeFiles/pythongdl.dir/pythongdl.cpp.o
-L/usr/lib/x86_64-linux-gnu/hdf5/serial
libgnudatalanguage.so.0
-lantlr-pic
-fopenmp
-L/usr/lib/x86_64-linux-gnu
-pthread
-ldl
-lncurses
-lform
-lreadline
-lhistory
-lz
-lpng
-lgsl
-lgslcblas
-lplplot
-lplplotcxx
-lGraphicsMagick
-lGraphicsMagick++
-lwx_baseu-3.0
-lwx_gtk2u_core-3.0
-lwx_gtk2u_adv-3.0
-lnetcdf
-lhdf5_hl
-lhdf5
-lpthread
-lsz
-lz
-lm
-lcurl
-lmfhdfalt
-ldfalt
-ljpeg
/usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5.so
-lpthread
-lsz
-ldl
-lncurses
-lform
-lreadline
-lhistory
-lz
-lpng
-lgsl
-lgslcblas
-lplplot
-lplplotcxx
-lGraphicsMagick
-lGraphicsMagick++
-lwx_baseu-3.0
-lwx_gtk2u_core-3.0
-lwx_gtk2u_adv-3.0
-lnetcdf
-lhdf5_hl
-lhdf5
-lpthread
-lsz
-lz
-lm
-lcurl
-lmfhdfalt
-ldfalt
-ljpeg
/usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5.so
-lpthread
-lsz
-ldl
-lm
-lfftw3
-lfftw3f
-lpython2.7
-ludunits2
-lps
-lgrib_api
-lqhull
-lSM
-lICE
-lX11
-lXext

I have no idea why this produces an unusable shared library on Ubuntu.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1665355

Title:
  import GDL fails in python (ImportError: dynamic module does not
  define init function (initGDL))

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnudatalanguage/+bug/1665355/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1310049] Re: Invalid Python Output in Trusty

2014-04-27 Thread Ole Streicher
Since the package comes from Debian, I opened a bug on Debian for this:
http://bugs.debian.org/746163

This can be fixed by the attached patch.


** Bug watch added: Debian Bug tracker #746163
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746163

** Patch added: "lsdvd.patch"
   
https://bugs.launchpad.net/ubuntu/+source/lsdvd/+bug/1310049/+attachment/4098449/+files/lsdvd.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1310049

Title:
  Invalid Python Output in Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lsdvd/+bug/1310049/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1310049] Re: Invalid Python Output in Trusty

2014-04-27 Thread Ole Streicher
** Also affects: acidrip (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1310049

Title:
  Invalid Python Output in Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/acidrip/+bug/1310049/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1169905] Re: saods9 package not available in Ubuntu 12.04.02 LTS (precise), but is available in non-LTS releases (quantal and raring)

2014-04-21 Thread Ole Streicher
saods9 is available on 14.04 LTS, so this bug is probably  resolved. If
not, please create a backports request as described.

** Changed in: saods9 (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1169905

Title:
  saods9 package not available in Ubuntu 12.04.02 LTS (precise), but is
  available in non-LTS releases (quantal and raring)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1169905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1598152] Re: wcsaxes fails to build in 16.04 LTS

2016-07-04 Thread Ole Streicher
The version 0.9-1 (just uploaded to Debian) fixes this problem.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1598152

Title:
  wcsaxes fails to build in 16.04 LTS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wcsaxes/+bug/1598152/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1614894] [NEW] Sync cassbeam 1.1-1 (universe) from Debian unstable (main)

2016-08-19 Thread Ole Streicher
Public bug reported:

Please sync cassbeam 1.1-1 (universe) from Debian unstable (main)

All changelog entries:

cassbeam (1.1-1) unstable; urgency=low

  * New packaging from scratch. Closes: #833259

 -- Ole Streicher   Fri, 05 Aug 2016 17:23:14 +0200

cassbeam (1.0-8) unstable; urgency=low

  * QA upload.
  * Build-depend on libglib2.0 instead of 1.2.
  * Update watch file. (Closes: #450135).
  * Replace deprecated tetex-extra build-dep with texlive.
  * Make clean not ignore errors.
  * Replace pwd with $(CURDIR) in rules.
  * Add appropriate copyright holders to debian/copyright.
  * Bump debhelper build-dep and compat to 5.
  * Bump Standards Version to 3.8.1.
+ Menu policy transition. (Closes: #496096).

 -- Barry deFreese   Mon, 13 Apr 2009 12:42:35
-0400

cassbeam (1.0-7) unstable; urgency=low

  * QA upload.
  * Set maintainer to QA Group; Orphaned: #391196
  * Add missing binary-indep target to debian/rules
  * Conforms with latest Standards Version 3.7.2

 -- Michael Ablassmeier   Mon, 16 Oct 2006 08:20:34
+0200

cassbeam (1.0-6) unstable; urgency=low

  * Removed 'libkpathsea3' from the Build-Depends line of debian/control
as it is not needed; Closes: #308012

 -- Brian R Furry   Sun,  8 May 2005 20:53:30 -0400

cassbeam (1.0-5) unstable; urgency=low

  * Added more useful information to the package description; Closes: #294261
  * Added 'dh_install' to install target of the debian/rules file
instead of using '$(MAKE) install prefix=$$(pwd)/debian/cassbeam/usr'

 -- Brian R Furry   Sat, 12 Feb 2005 14:22:03 -0500

cassbeam (1.0-4) unstable; urgency=low

  * Added cassbeam.1 and Makefile to the clean target of debian/rules
since they are automatcially generated
  * Added config.sub and config.guess to the clean target of debian/rules
since they are not needed
  * Removed the .flc file from the upstream source

 -- Brian R Furry   Sun, 25 Apr 2004 01:00:34 +

cassbeam (1.0-3) unstable; urgency=low

  * Fixed debian/watch file
  * Fixed configure.in script so '-lrfftw -lfftw' are added to LIBS var
on arm and m68k archs by having XLIBS initialized first; Closes: #230027

 -- Brian R Furry   Wed, 14 Jan 2004 01:00:34 +

cassbeam (1.0-2) unstable; urgency=low

  * Fixed debian/copyright file
  * Removed cassbeam.tex as a documentation file
  * Fixed debian/rules file in regards to dh_strip and INSTALL_PROGRAM
  * Removed automatic config.sub and config.guess updates from clean target in
rules file
  * Moved cassbeam from x11 to correct section of science

 -- Brian R Furry   Sat, 15 Nov 2003 20:40:02 +

cassbeam (1.0-1) unstable; urgency=low

  * Initial Release.

 -- Brian R Furry   Sat, 13 Sep 2003 00:50:57 +

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1614894

Title:
  Sync cassbeam 1.1-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1614894/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1643151] Re: Please remove sad pandas and friends

2016-12-09 Thread Ole Streicher
sopt_2.0.0-2 does not depend on pandas anymore.

** Changed in: sopt (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1643151

Title:
  Please remove sad pandas and friends

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pandas/+bug/1643151/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1518212] Re: ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF dev$pix

2016-04-22 Thread Ole Streicher
16.04 is out, with the fixed version; so I am closing the bug.

** Changed in: saods9 (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1518212

Title:
  ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF
  dev$pix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1518212/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1306900] Re: trying to overwrite '/usr/bin/tabmerge'

2016-04-22 Thread Ole Streicher
16.04 is out now, so I am closing this bug.

** Changed in: astrometry.net (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1306900

Title:
   trying to overwrite '/usr/bin/tabmerge'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/astrometry.net/+bug/1306900/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 976103] Re: wish8.5 crashed with SIGSEGV in Tcl_PushCallFrame() using package BLT

2012-04-08 Thread Ole Streicher
** Visibility changed to: Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/976103

Title:
  wish8.5 crashed with SIGSEGV in Tcl_PushCallFrame() using package BLT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/blt/+bug/976103/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1458333] Re: DS9 crashes after loading new-image.fits downloaded from ASTROMETRY.NET website: http://nova.astrometry.net/user_images/681595#original

2015-05-27 Thread Ole Streicher
I can confirm this bug. It has its cause in libwcstools0. The following command 
(from the wcstools package) will crash as well:
wcshead wcs.fits.
The cause is that the fields in 

struct WorldCoor {
[...]
 char ctype[9][9];
 char c1type[9];
 char c2type[9];
 char ptype[9];
[...]
}

are too small to hold the CTYPE2/CTYPE2 that come with wcs.fits:

CTYPE1  = 'RA---TAN-SIP'
CTYPE2  = 'DEC--TAN-SIP'

A corrected revision of wcstools (libwcstools0) will be uploaded to
Debian and find its way into the next Ubuntu release.

** Also affects: wcstools (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: wcstools (Ubuntu)

** Package changed: saods9 (Ubuntu) => wcstools (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1458333

Title:
  DS9 crashes after loading new-image.fits downloaded from
  ASTROMETRY.NET website:
  http://nova.astrometry.net/user_images/681595#original

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wcstools/+bug/1458333/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1458333] Re: DS9 crashes after loading new-image.fits downloaded from ASTROMETRY.NET website: http://nova.astrometry.net/user_images/681595#original

2015-05-27 Thread Ole Streicher
** Changed in: wcstools (Ubuntu)
   Status: New => Fix Committed

** Changed in: wcstools (Ubuntu)
   Status: Fix Committed => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1458333

Title:
  DS9 crashes after loading new-image.fits downloaded from
  ASTROMETRY.NET website:
  http://nova.astrometry.net/user_images/681595#original

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wcstools/+bug/1458333/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1262663] Re: DS9 exits with "buffer overflow detected"

2013-12-19 Thread Ole Streicher
I cannot confirm this with my own files.

Could you provide a sample FITS file that causes the crash?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1262663

Title:
  DS9 exits with "buffer overflow detected"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1262663/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1262663] Re: DS9 exits with "buffer overflow detected"

2013-12-23 Thread Ole Streicher
** Changed in: saods9 (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1262663

Title:
  DS9 exits with "buffer overflow detected"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1262663/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1518212] Re: ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF dev$pix

2015-11-20 Thread Ole Streicher
I have no IRAF to test; could you check whether this still appears on
the 7.4 beta releases? And/or with the version downloaded from upstream:
http://ds9.si.edu/archive/source/ds9.7.2.tar.gz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1518212

Title:
  ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF
  dev$pix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1518212/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1514580] Re: package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 2

2015-11-09 Thread Ole Streicher
Please write the bug report in english; not everyone in the world
understands french (specifically I as the maintainer don't).

The problem is that ESO removed the 2.9.9 kit version from their FTP
server, so that the install script cannot find it anymore. However, this
is fixed in the recent releases of Ubuntu (15.04 and later).

** Changed in: cpl-plugin-vimos (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1514580

Title:
  package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade:
  le sous-processus script post-installation installé a retourné une
  erreur de sortie d'état 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cpl-plugin-vimos/+bug/1514580/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1503589] Re: Unable to display Quick Energy Spectrum Plot (Graph is empty)

2015-10-07 Thread Ole Streicher
Could you provide a sample FITS file and all other files that are needed
to reproduce this problem please? The Chandra-Ed tools is not in Ubuntu.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1503589

Title:
  Unable to display Quick Energy Spectrum Plot (Graph is empty)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1503589/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1306900] Re: trying to overwrite '/usr/bin/tabmerge'

2015-10-30 Thread Ole Streicher
The new version 0.64+dfsg-1 does not install tabmerge anymore... So I am
going to close this bug.

** Changed in: astrometry.net (Ubuntu)
   Status: New => Fix Committed

** Changed in: astrometry.net (Ubuntu)
 Assignee: (unassigned) => Ole Streicher (olebole)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1306900

Title:
   trying to overwrite '/usr/bin/tabmerge'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/astrometry.net/+bug/1306900/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1503589] Re: Unable to display Quick Energy Spectrum Plot (Graph is empty)

2015-11-02 Thread Ole Streicher
** Changed in: saods9 (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1503589

Title:
  Unable to display Quick Energy Spectrum Plot (Graph is empty)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1503589/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 283142] Re: X_IMAGE, Y_IMAGE, ELLIPTICITY are always zero

2012-05-07 Thread Ole Streicher
This bug has been fixed in upstream version 2.8.6.

** Changed in: sextractor (Ubuntu)
   Status: New => Fix Released

** Changed in: sextractor (Ubuntu)
 Assignee: (unassigned) => Ole Streicher (olebole)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/283142

Title:
  X_IMAGE, Y_IMAGE, ELLIPTICITY are always zero

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sextractor/+bug/283142/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 996644] [NEW] cannot load sqlite3-tcl

2012-05-08 Thread Ole Streicher
Public bug reported:

When I try to load sqlite3 or sqlite from tcl, I get some errors:

$ tclsh8.5
%  package require sqlite
error reading package index file /usr/lib/sqlite/pkgIndex.tcl: expected version 
number but got "0.0."
can't find package sqlite
%  package require sqlite3
error reading package index file /usr/lib/sqlite/pkgIndex.tcl: expected version 
number but got "0.0."
can't find package sqlite3

There is a similar bug in Debian, http://bugs.debian.org/483993 
When I change the "0.0." in /usr/lib/sqlite/pkgIndex.tcl to "2.0", I don't get 
the first error line, and sqlite seems to be loaded. However, sqlite3 does not 
load then.

This is ubuntu 12.04, libsqlite-tcl 2.8.17-7fakesync1build1, sqlite3-tcl
3.7.9-2ubuntu1.

** Affects: sqlite (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/996644

Title:
  cannot load sqlite3-tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite/+bug/996644/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 996643] [NEW] cannot load sqlite3-tcl

2012-05-08 Thread Ole Streicher
Public bug reported:

When I try to load sqlite3 or sqlite from tcl, I get some errors:

$ tclsh8.5
%  package require sqlite
error reading package index file /usr/lib/sqlite/pkgIndex.tcl: expected version 
number but got "0.0."
can't find package sqlite
%  package require sqlite3
error reading package index file /usr/lib/sqlite/pkgIndex.tcl: expected version 
number but got "0.0."
can't find package sqlite3

There is a similar bug in Debian, http://bugs.debian.org/483993 
When I change the "0.0." in /usr/lib/sqlite/pkgIndex.tcl to "2.0", I don't get 
the first error line, and sqlite seems to be loaded. However, sqlite3 does not 
load then.

This is ubuntu 12.04, libsqlite-tcl 2.8.17-7fakesync1build1, sqlite3-tcl
3.7.9-2ubuntu1.

** Affects: sqlite3 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/996643

Title:
  cannot load sqlite3-tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/996643/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 996644] Re: cannot load sqlite3-tcl

2012-05-08 Thread Ole Streicher
This may be fixed by changing the file /usr/lib/sqlite/pkgIndex.tcl to

package ifneeded sqlite 2.0 [list load [file join $dir
libtclsqlite.so.0] sqlite]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/996644

Title:
  cannot load sqlite3-tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite/+bug/996644/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 996643] Re: cannot load sqlite3-tcl

2012-05-08 Thread Ole Streicher
*** This bug is a duplicate of bug 876661 ***
https://bugs.launchpad.net/bugs/876661

This may be fixed by adding

package ifneeded sqlite3 3.7.9 [list load [file join $dir
libtclsqlite3.so]]

to /usr/lib/tcltk/sqlite3/pkgIndex.tcl

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/996643

Title:
  cannot load sqlite3-tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/996643/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 996643] Re: cannot load sqlite3-tcl

2012-05-08 Thread Ole Streicher
*** This bug is a duplicate of bug 876661 ***
https://bugs.launchpad.net/bugs/876661

** This bug has been marked a duplicate of bug 876661
   libsqlite3-tcl has a broken pkgIndex.tcl

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/996643

Title:
  cannot load sqlite3-tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/996643/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 876661] Re: libsqlite3-tcl has a broken pkgIndex.tcl

2012-05-08 Thread Ole Streicher
Still unresolved in 12.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/876661

Title:
  libsqlite3-tcl has a broken pkgIndex.tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/876661/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 876661] Re: libsqlite3-tcl has a broken pkgIndex.tcl

2012-05-09 Thread Ole Streicher
This is fixed in the Debian release sqlite3 3.7.9-3, see

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650961

Ubuntu should just sync with debian here (who to ask for that?)

** Bug watch added: Debian Bug tracker #650961
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650961

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/876661

Title:
  libsqlite3-tcl has a broken pkgIndex.tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/876661/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1545511] Re: package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2016-02-20 Thread Ole Streicher
To me this looks like a wrong invocation of apt. please re-check with
the proper syntax (without the dot at the end). If the problem still
exists, you may re-open the bug.

** Changed in: cpl-plugin-vimos (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1545511

Title:
  package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cpl-plugin-vimos/+bug/1545511/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1518212] Re: ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF dev$pix

2015-11-26 Thread Ole Streicher
@Sergio: Thanks to investigate this. I already changed this in the
Debian Development version. I will however not upload a fixed version to
Ubuntu, since I am not familar with the ways to actually bring the
changes into an LTS version. But, Ubuntu 16.04 will be fixed :-)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1518212

Title:
  ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF
  dev$pix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1518212/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1521261] [NEW] Sync cpl-plugin-xshoo 2.6.8+dfsg-4 (universe) from Debian unstable (main)

2015-11-30 Thread Ole Streicher
Public bug reported:

Please sync cpl-plugin-xshoo 2.6.8+dfsg-4 (universe) from Debian
unstable (main)

All changelog entries:

cpl-plugin-xshoo (2.6.8+dfsg-4) unstable; urgency=low

  * Depend on gdl-2.1 and re-enable test_xsh_bspline

 -- Ole Streicher   Thu, 26 Nov 2015 08:47:28 +0100

cpl-plugin-xshoo (2.6.8+dfsg-3) unstable; urgency=medium

  * Provide gsl-2.0 compatibility. Closes: 804829
  * Temporarily disable test_xsh_bspline to workaround a gsl-2 bug

 -- Ole Streicher   Thu, 12 Nov 2015 09:43:27 +0100

cpl-plugin-xshoo (2.6.8+dfsg-2) unstable; urgency=low

  * Fix ImplicitPointerConversion

 -- Ole Streicher   Thu, 29 Oct 2015 11:30:02 +0100

cpl-plugin-xshoo (2.6.8+dfsg-1) unstable; urgency=low

  * New upstream version

 -- Ole Streicher   Wed, 23 Sep 2015 11:44:02 +0200

cpl-plugin-xshoo (2.6.5+dfsg-2) unstable; urgency=low

  * Fix FTBS on big endian machines

 -- Ole Streicher   Mon, 07 Sep 2015 10:12:16 +0200

cpl-plugin-xshoo (2.6.5+dfsg-1) unstable; urgency=low

  * New upstream version

 -- Ole Streicher   Wed, 02 Sep 2015 16:20:30 +0200

cpl-plugin-xshoo (2.6.0+dfsg-3) unstable; urgency=low

  * Limit CI test dependency to plugin
  * Add -lcpldrsto xsh_cfg_recover plugin

 -- Ole Streicher   Wed, 20 May 2015 09:28:26 +0200

cpl-plugin-xshoo (2.6.0+dfsg-2) unstable; urgency=low

  * Loop over all possible upstream package names when downloading
calibration data
  * Add astropy dependency to CI test to make it work

 -- Ole Streicher   Thu, 07 May 2015 09:43:30 +0200

cpl-plugin-xshoo (2.6.0+dfsg-1) unstable; urgency=low

  * New upstream version. Closes: #777826
  * Increase tolerance to fix FTBS on mips64el. Closes: #774241
  * Update maintainers e-mail address
  * Update standards version to 3.9.6. No changes needed.
  * Add simple CI test

 -- Ole Streicher   Wed, 29 Apr 2015 16:24:04 +0200

cpl-plugin-xshoo (2.5.2+dfsg-1) unstable; urgency=low

  * New upstream version.

 -- Ole Streicher   Thu, 31 Jul 2014 18:03:58 +0200

cpl-plugin-xshoo (2.5.0+dfsg-2) unstable; urgency=low

  * Fix directory name for calibration files download. Closes: #752749

 -- Ole Streicher   Thu, 26 Jun 2014 11:23:14 +0200

cpl-plugin-xshoo (2.5.0+dfsg-1) unstable; urgency=low

  * New upstream version.

 -- Ole Streicher   Wed, 25 Jun 2014 16:18:49 +0200

cpl-plugin-xshoo (2.4.6+dfsg-1) unstable; urgency=low

  * New upstream version. Closes: #748196
  * Correct usage of sprintf. Closes: #750748

 -- Ole Streicher   Mon, 09 Jun 2014 12:30:43 +0200

cpl-plugin-xshoo (2.4.0+dfsg-1) unstable; urgency=low

  * New upstream version
  * Rename package to cpl-plugin-xshoo
  * Change maintainer and VCS location to debian-astro

 -- Ole Streicher   Fri, 11 Apr 2014 16:58:53 +0200

cpl-plugin-xsh (2.3.0+dfsg-3) unstable; urgency=low

  * Lower -doc dependency to "suggested"
  * Declare Breaks/Replaces with initial version. (Closes: #734915)

 -- Ole Streicher   Sun, 12 Jan 2014 16:55:52 +0100

cpl-plugin-xsh (2.3.0+dfsg-2) unstable; urgency=low

  * Enable verbose test output
  * Upgrade to Standards-Version 3.9.5 (no changes needed)
  * Move documentation into separate package. (Closes: #733515)
  * Fix documentation title.

 -- Ole Streicher   Tue, 31 Dec 2013 14:24:38 +0100

cpl-plugin-xsh (2.3.0+dfsg-1) unstable; urgency=low

  * Initial release. (Closes: #728368)

 -- Ole Streicher   Wed, 27 Nov 2013 16:57:02 +0100

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1521261

Title:
  Sync cpl-plugin-xshoo 2.6.8+dfsg-4 (universe) from Debian unstable
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1521261/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1518212] Re: ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF dev$pix

2016-01-04 Thread Ole Streicher
** Changed in: saods9 (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1518212

Title:
  ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF
  dev$pix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1518212/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1545511] Re: package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2016-02-15 Thread Ole Streicher
Are you sure that you actually wanted to install the VIMOS data
reduction pipeline calibration data from ESO?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1545511

Title:
  package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cpl-plugin-vimos/+bug/1545511/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1518212] Re: ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF dev$pix

2016-02-16 Thread Ole Streicher
The change is committed to Ubuntu 16.04 and will be released with that
version. I did no backporting to older versions. If you want to do this,
please follow https://wiki.ubuntu.com/UbuntuBackports

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1518212

Title:
  ds9 loops with "Error: IIS iisIO problems" when asked to display IRAF
  dev$pix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1518212/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1545511] Re: package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2016-02-16 Thread Ole Streicher
The attached file DpkgHistoryLog.txt suggests however, that you tried to
install "vim." (with a  dot at the end). That seems not the proper way
to install just vim

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1545511

Title:
  package cpl-plugin-vimos-calib 2.9.9+dfsg-2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cpl-plugin-vimos/+bug/1545511/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1423665] [NEW] Sync python-astropy 1.0-1~exp (universe) from Debian experimental (main)

2015-02-19 Thread Ole Streicher
Public bug reported:

Please sync python-astropy 1.0-1~exp (universe) from Debian experimental
(main)

Changelog entries since current vivid version 0.4.2-2:

python-astropy (1.0-1~exp) experimental; urgency=low

  * New upstream version.

 -- Ole Streicher   Thu, 19 Feb 2015 09:09:44 +0100

python-astropy (1.0~rc2-1) experimental; urgency=medium

  * New upstream release candidate

 -- Ole Streicher   Thu, 12 Feb 2015 09:26:56 +0100

python-astropy (1.0~rc1-3) experimental; urgency=low

  * Fix last FTBS on Hurd

 -- Ole Streicher   Thu, 05 Feb 2015 21:41:57 +0100

python-astropy (1.0~rc1-2) experimental; urgency=low

  * Fix FTBS on several platforms
  * Disable failing tests (temporartily)

 -- Ole Streicher   Sun, 01 Feb 2015 11:13:52 +0100

python-astropy (1.0~rc1-1) experimental; urgency=low

  * New upstream release candidate

 -- Ole Streicher   Wed, 28 Jan 2015 09:17:42 +0100

** Affects: python-astropy (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1423665

Title:
  Sync python-astropy 1.0-1~exp (universe) from Debian experimental
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-astropy/+bug/1423665/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1423665] Re: Sync python-astropy 1.0-1~exp (universe) from Debian experimental (main)

2015-02-19 Thread Ole Streicher
Rationale: astropy is one of the core packages for astropysics, having
the version 1.0 in Ubuntu 15.04 would be a great advantage. The version
compiles on Vivid on i386 and x86_64 in a PPA, and on all platforms on
Debian.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1423665

Title:
  Sync python-astropy 1.0-1~exp (universe) from Debian experimental
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-astropy/+bug/1423665/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1423665] Re: Sync python-astropy 1.0-1~exp (universe) from Debian experimental (main)

2015-02-23 Thread Ole Streicher
** Attachment added: "CHANGES file since 0.4.2"
   
https://bugs.launchpad.net/ubuntu/+source/python-astropy/+bug/1423665/+attachment/4325431/+files/CHANGES-1.0.rst

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1423665

Title:
  FFE: Sync python-astropy 1.0-1~exp (universe) from Debian experimental
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-astropy/+bug/1423665/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1423665] Re: Sync python-astropy 1.0-1~exp (universe) from Debian experimental (main)

2015-02-23 Thread Ole Streicher
** Attachment added: "Build log for x86_64"
   
https://bugs.launchpad.net/ubuntu/+source/python-astropy/+bug/1423665/+attachment/4325432/+files/buildlog_ubuntu-vivid-amd64.python-astropy_1.0-1%7Eexp%7Eu_UPLOADING.txt.gz

** Summary changed:

- Sync python-astropy 1.0-1~exp (universe) from Debian experimental (main)
+ FFE: Sync python-astropy 1.0-1~exp (universe) from Debian experimental (main)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1423665

Title:
  FFE: Sync python-astropy 1.0-1~exp (universe) from Debian experimental
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-astropy/+bug/1423665/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1409022] Re: No swarp executable after swarp installation

2015-01-22 Thread Ole Streicher
The executable is called "SWarp":

$ ls -l /usr/bin/SWarp 
-rwxr-xr-x 1 root root 369848 Nov 23  2013 /usr/bin/SWarp


** Changed in: swarp (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1409022

Title:
  No swarp executable after swarp installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/swarp/+bug/1409022/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1401482] [NEW] Sync cpl 6.5.1-1~exp1 (universe) from Debian experimental (main)

2014-12-11 Thread Ole Streicher
Public bug reported:

Please sync cpl 6.5.1-1~exp1 (universe) from Debian experimental (main)

Changelog entries since current vivid version 6.5-1:

cpl (6.5.1-1~exp1) experimental; urgency=low

  * New upstream version
  * Upload to experimental due to jessie freeze

 -- Ole Streicher   Thu, 20 Nov 2014 17:33:34 +0100

** Affects: cpl (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1401482

Title:
  Sync cpl 6.5.1-1~exp1 (universe) from Debian experimental (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cpl/+bug/1401482/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358650] [NEW] Please sync wcslib-contrib 4.23-1 from debian unstable contrib

2014-08-19 Thread Ole Streicher
Public bug reported:

This package is in contrib.

The package contains everything from wcslib (already in Ubuntu)  that
needs the non-free package pgplot5 for compilation and usage. This
package is needed by several astrophysical groups.

Best regards

Ole
(Debian Astronomy Maintainers/Uploader)

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Summary changed:

- Please sync wcslib-contrib from debian unstable
+ Please sync wcslib-contrib from debian unstable contrib

** Summary changed:

- Please sync wcslib-contrib from debian unstable contrib
+ Please sync wcslib-contrib 4.23-1 from debian unstable contrib

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1358650

Title:
  Please sync wcslib-contrib 4.23-1 from debian unstable contrib

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1358650/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358650] Re: Please sync wcslib-contrib 4.23-1 from debian unstable contrib

2014-08-19 Thread Ole Streicher
** Description changed:

  This package is in contrib.
  
  The package contains everything from wcslib (already in Ubuntu)  that
  needs the non-free package pgplot5 for compilation and usage. This
  package is needed by several astrophysical groups.
  
+ The package compiles nicely on amd64 and i386 in the Utopic Launchpad.
+ 
  Best regards
  
  Ole
  (Debian Astronomy Maintainers/Uploader)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1358650

Title:
  Please sync wcslib-contrib 4.23-1 from debian unstable contrib

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1358650/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1064279] Re: Cannot load img::tiff

2012-10-10 Thread Ole Streicher
Works for me. Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1064279

Title:
  Cannot load img::tiff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libtk-img/+bug/1064279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 330285] Re: fv crashes with "*** buffer overflow detected ***: /usr/bin/wish8.3 terminated"

2012-10-04 Thread Ole Streicher
ftools-fv-5.3+dfsg-1 was just uploaded to Debian. See
http://packages.qa.debian.org/f/ftools-fv.html

** Changed in: fv (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/330285

Title:
  fv crashes with "*** buffer overflow detected ***: /usr/bin/wish8.3
  terminated"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fv/+bug/330285/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1064279] [NEW] Cannot load img::tiff

2012-10-09 Thread Ole Streicher
Public bug reported:

In libtk-img 1:1.3-release-12ubuntu1 (ubuntu 12.10), loading img::tiff
fails:

$ tclsh
% package require img::tiff
couldn't load file "/usr/lib/tcltk/Img1.3/libtifftcl3.8.2.so": 
/usr/lib/tcltk/Img1.3/libtifftcl3.8.2.so: undefined symbol: 
TIFFReassignTagToIgnore

The same works well on Ubuntu 12.04 and on the Debian package.

** Affects: libtk-img (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1064279

Title:
  Cannot load img::tiff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libtk-img/+bug/1064279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1064279] Re: Cannot load img::tiff

2012-10-09 Thread Ole Streicher
** Description changed:

  In libtk-img 1:1.3-release-12ubuntu1 (ubuntu 12.10), loading img::tiff
  fails:
  
  $ tclsh
  % package require img::tiff
  couldn't load file "/usr/lib/tcltk/Img1.3/libtifftcl3.8.2.so": 
/usr/lib/tcltk/Img1.3/libtifftcl3.8.2.so: undefined symbol: 
TIFFReassignTagToIgnore
  
- The same works well on Ubuntu 12.04 and on the Debian package.
+ The same works well on Ubuntu 12.04 and on the Debian package, so it
+ probably was injected by the change of the build dependency from
+ libtiff4-dev to libtiff-dev.
+ 
+ This bugs makes the new "saods9" package unusable since ds9 does not
+ start, but produces a stacktrace:
+ 
+ $ ds9
+ Error in startup script: couldn't load file 
"/usr/lib/tcltk/Img1.3/libtifftcl3.8.2.so": 
/usr/lib/tcltk/Img1.3/libtifftcl3.8.2.so: undefined symbol: 
TIFFReassignTagToIgnore
+ while executing
+ "load /usr/lib/tcltk/Img1.3/libtifftcl3.8.2.so"
+ ("package ifneeded tifftcl 3.8.2" script)
+ invoked from within
+ "load /usr/lib/tcltk/Img1.3/libtkimgtiff1.3.so"
+ ("package ifneeded img::tiff 1.3" script)
+ invoked from within
+ "package require img::tiff"
+ (file "/usr/share/saods9/src/ds9.tcl" line 217)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1064279

Title:
  Cannot load img::tiff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libtk-img/+bug/1064279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 876661] Re: libsqlite3-tcl has a broken pkgIndex.tcl

2012-10-09 Thread Ole Streicher
Problems seems to be solved on Ubuntu 12.10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/876661

Title:
  libsqlite3-tcl has a broken pkgIndex.tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/876661/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 996644] Re: cannot load sqlite3-tcl

2012-10-09 Thread Ole Streicher
Seems to be solved in 12.10

** Changed in: sqlite (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/996644

Title:
  cannot load sqlite3-tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite/+bug/996644/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1064279] Re: Cannot load img::tiff

2012-10-09 Thread Ole Streicher
The missing symbol TIFFReassignTagToIgnore was removed from libtiff in
version 4.0.0 (when soversion 5 was introduced); see

http://upstream-
tracker.org/compat_reports/libtiff/3.9.7_to_4.0.0/abi_compat_report.html#Withdrawn

libtk-img uses its own "libtiff" header files. The Debian package
patches these to use libtiff4 (debian/patches/libtiff.diff;
libtfftcl.diff and tiff.diff are probably similar). However, these
header files are incompatible with libtiff5; so either the dependency
should be kept at libtiff4-dev, or the mentioned header file patch
should be made against the libtiff5 headers.

(did actually anyone *test* the change before uploading? grrml)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1064279

Title:
  Cannot load img::tiff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libtk-img/+bug/1064279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1064279] Re: Cannot load img::tiff

2012-10-09 Thread Ole Streicher
** Patch added: "Small patch to revert the dependency change"
   
https://bugs.launchpad.net/ubuntu/+source/libtk-img/+bug/1064279/+attachment/3389696/+files/libtk-img-ubuntu.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1064279

Title:
  Cannot load img::tiff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libtk-img/+bug/1064279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 876661] Re: libsqlite3-tcl has a broken pkgIndex.tcl

2012-10-10 Thread Ole Streicher
** Changed in: sqlite3 (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/876661

Title:
  libsqlite3-tcl has a broken pkgIndex.tcl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/876661/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 481052] Re: Can't open DS9 in Karmic

2012-06-10 Thread Ole Streicher
saods9 6.2+dfsg-2 was uploaded for Quantal which fixes the problem
there.

** Changed in: saods9 (Ubuntu)
   Status: Confirmed => Fix Released

** Changed in: saods9 (Ubuntu)
 Assignee: (unassigned) => Ole Streicher (olebole)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/481052

Title:
  Can't open DS9 in  Karmic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/481052/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 406509] Re: saods9 package shows wrong dependencies

2012-06-10 Thread Ole Streicher
saods9 6.2+dfsg-2 was uploaded for Quantal which fixes the problem
there.

** Changed in: saods9 (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/406509

Title:
  saods9 package shows wrong dependencies

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/406509/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292998] Re: ds9 does not work on intrepid amd64

2012-06-10 Thread Ole Streicher
saods9 6.2+dfsg-2 was uploaded for Quantal which fixes the problem
there.


** Changed in: saods9 (Ubuntu)
   Status: New => Fix Released

** Changed in: saods9 (Ubuntu)
 Assignee: (unassigned) => Ole Streicher (olebole)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/292998

Title:
  ds9 does not work on intrepid amd64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/292998/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 331580] Re: Fails to start in recent jaunty releases

2012-06-10 Thread Ole Streicher
saods9 6.2+dfsg-2 was uploaded for Quantal which fixes the problem
there.

** Changed in: saods9 (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/331580

Title:
  Fails to start in recent jaunty releases

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/331580/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 134107] Re: DS9 Astro-Image Viewer Freezes

2012-06-10 Thread Ole Streicher
saods9 6.2+dfsg-2 was uploaded for Quantal which fixes the problem
there.

** Changed in: saods9 (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/134107

Title:
  DS9 Astro-Image Viewer Freezes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/134107/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 122329] Re: ds9 in hardy/gutsy/feisty hangs on exit (version in dapper is okay)

2012-06-10 Thread Ole Streicher
saods9 6.2+dfsg-2 was uploaded for Quantal which fixes the problem
there.

** Changed in: saods9 (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/122329

Title:
  ds9 in hardy/gutsy/feisty hangs on exit (version in dapper is okay)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/122329/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 283142] Re: X_IMAGE, Y_IMAGE, ELLIPTICITY are always zero

2011-12-09 Thread Ole Streicher
I also made a new attempt to build a debian package and put it under the
debian-science git:



Maybe we could merge our attempts? BTW, I see no problem with the CeCILL
(I took v2 since it is not specified) since it is listed as a valid
OpenSource license. I just included it into the copyright file.

I also sent a mail to the original maintainer on his plans for this
package.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/283142

Title:
  X_IMAGE, Y_IMAGE, ELLIPTICITY are always zero

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sextractor/+bug/283142/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1155580] Re: aqemu crashed with SIGSEGV in QBasicAtomicInt::deref()

2013-05-02 Thread Ole Streicher
** This bug is no longer a duplicate of private bug 1035830

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1155580

Title:
  aqemu crashed with SIGSEGV in QBasicAtomicInt::deref()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/aqemu/+bug/1155580/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1169905] Re: saods9 package not available in Ubuntu 12.04.02 LTS (precise), but is available in non-LTS releases (quantal and raring)

2013-04-17 Thread Ole Streicher
The saods9 package was removed from Debian (and consequently from
Ubuntu) in 2011 due to lack of maintenance. Conseqently, it was removed
from Ubuntu as well.

While technically it is possible to backport saods9 to 12.04, it takes
some effort since a couple of dependencies needs to be backported as
well:

* funtools
* iausofa-c
* starlink-ast
* starlink-pal
* tcl-signal
* tk-table
* wcstools
* xpa

You could try to create backport requests for all of them, and for
saods9. See https://help.ubuntu.com/community/UbuntuBackports for how
this works. You could also use my personal reporitory at
https://launchpad.net/~olebole/+archive/astro-precise , but be aware
that this is my staging area. It, however, contains the latest (7.2)
release.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1169905

Title:
  saods9 package not available in Ubuntu 12.04.02 LTS (precise), but is
  available in non-LTS releases (quantal and raring)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/saods9/+bug/1169905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1852535] Re: symbol lookup error

2019-11-13 Thread Ole Streicher
sextractor is going to be renamed to source-extractor 
https://bugs.debian.org/941466 and updated to the latest version (which 
compiles nicely on Debian).
source-extractor is currently in NEW in Debian.

** Bug watch added: Debian Bug tracker #941466
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941466

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1852535

Title:
  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sextractor/+bug/1852535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939117] Re: mJPEG missing from montage-6.0+dfsg-6build3

2021-08-06 Thread Ole Streicher
When looking into the upstream Makefile

https://github.com/Caltech-IPAC/Montage/blob/main/util/Makefile

there is mJPEG not listed. Specifically, it was removed here (in 2018):

https://github.com/Caltech-IPAC/Montage/commit/b287a138

--> that is an upstream decision; please discuss it there.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939117

Title:
  mJPEG missing from  montage-6.0+dfsg-6build3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1939117/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067093] Re: astroquery: please RM from oracular

2024-08-29 Thread Ole Streicher
I am about to upload a fixed version of astroquery to Debian unstable;
this should help to fix this w/o removing.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067093

Title:
  astroquery: please RM from oracular

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/astropy/+bug/2067093/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs