Bug#777267: new upstream version: 5.2.2

2016-05-01 Thread Douglas Calvert
Package: xz-utils
Version: 5.1.1alpha+20120614-2.1
Followup-For: Bug #777267

Things that would be nice to have in packaged version that have been 
added in the last 4 years to upstream: multithreaded compression and 
general speed improvements. Here is the changelog highlights:


Summary of fixes and new features added in the 5.1.x development
releases:

* liblzma:

- Added support for multi-threaded compression. See the
  lzma_mt structure, lzma_stream_encoder_mt(), and
  lzma_stream_encoder_mt_memusage() in ,
  lzma_get_progress() in , and lzma_cputhreads()
  in  for details.

- Made the uses of lzma_allocator const correct.

- Added lzma_block_uncomp_encode() to create uncompressed
  .xz Blocks using LZMA2 uncompressed chunks.

- Added support for LZMA_IGNORE_CHECK.

- A few speed optimizations were made.

- Added support for symbol versioning. It is enabled by default
  on GNU/Linux, other GNU-based systems, and FreeBSD.

- liblzma (not the whole XZ Utils) should now be buildable
  with MSVC 2013 update 2 or later using windows/config.h.

* xz:

- Fixed a race condition in the signal handling. It was
  possible that e.g. the first SIGINT didn't make xz exit
  if reading or writing blocked and one had bad luck. The fix
  is non-trivial, so as of writing it is unknown if it will be
  backported to the v5.0 branch.

- Multi-threaded compression can be enabled with the
  --threads (-T) option.
  [Fixed: This originally said "decompression".]

- New command line options in xz: --single-stream,
  --block-size=SIZE, --block-list=SIZES,
  --flush-timeout=TIMEOUT, and --ignore-check.

- xz -lvv now shows the minimum xz version that is required to
  decompress the file. Currently it is 5.0.0 for all supported
  .xz files except files with empty LZMA2 streams require 5.0.2.


  * liblzma speed optimizations:

- Initialization of a new LZMA1 or LZMA2 encoder has been
  optimized. (The speed of reinitializing an already-allocated
  encoder isn't affected.) This helps when compressing many
  small buffers with lzma_stream_buffer_encode() and other
  similar situations where an already-allocated encoder state
  isn't reused. This speed-up is visible in xz too if one
  compresses many small files one at a time instead running xz
  once and giving all files as command-line arguments.

- Buffer comparisons are now much faster when unaligned access
  is allowed (configured with --enable-unaligned-access). This
  speeds up encoding significantly. There is arch-specific code
  for 32-bit and 64-bit x86 (32-bit needs SSE2 for the best
  results and there's no run-time CPU detection for now).
  For other archs there is only generic code which probably
  isn't as optimal as arch-specific solutions could be.

- A few speed optimizations were made to the SHA-256 code.
  (Note that the builtin SHA-256 code isn't used on all
  operating systems.)




-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.5.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages xz-utils depends on:
ii  libc6 2.22-7
ii  liblzma5  5.1.1alpha+20120614-2.1

xz-utils recommends no packages.

xz-utils suggests no packages.

-- no debconf information



Bug#820514: crafty: Please package latest upstream 25.0.1

2016-04-09 Thread Douglas Calvert
Package: crafty
Version: 23.4-6+b1
Severity: normal

There have been a number of improvements in crafty since 23.4:

23.5   Several pieces of code cleanup, both for readability and speed.   
   We are now using stdint.h, which lets us specific the exact size  
   of an integer value which gets rid of the int vs long issues that 
   exist between MSVC and the rest of the world on X86_64.  We still 
   use things like "int" if we want to let the compiler choose the   
   most efficient size, but when we need a specific number of bits,  
   such as 64, we use a specific type (uint64_t for 64 bits).  Minor 
   change to forward pruning that does not toss out passed pawn  
   moves if they are advanced enough (compared to remaining depth)   
   that they might be worth searching.  Cleanup to passed pawn eval  
   code to help efficiency and readability.  New options to the  
   display command.  "display nothing" turns all output off except   
   for the move Crafty chooses to play.  "display everything" will   
   produce a veritable flood of information before it makes a move.  
   Cleanup of personality code to fix some values that were not  
   included, as well as clean up the formatting for simplicity.  
 
23.6   Minor tweak to "adaptive hash" code + a fix to the usage warning  
   that failed to explain how many parameters are required.  New way 
   of timing the search, replacing the old "easy move" code that was 
   simply too ineffective.  Now Crafty computes a "difficulty" level 
   after each iteration.  If the best move doesn't change, this  
   level is reduced by 10% of the current value, until it reaches
   60% where it stops dropping.  If the best move changes during an  
   iteration, it adjusts in one of two ways.  If the current 
   difficulty level is less than 100%, it reverts to 100% + the  
   number of different best moves minus 1 times 20%.  If the current 
   difficulty level is already >= 100% it is set to 80% of the   
   current value + (again) the number of different best moves - 1
   times 20%.  Repeated changes can run this up to 180% max.  As the 
   search progresses this difficulty level represents the percentage 
   of the nominal target time limit it should use.  It still tries   
   to complete the current iteration before quitting, so this limit  
   is a lower bound on the time it will use.  Restored an old idea   
   from earlier Crafty versions (and even Cray Blitz), that of   
   trying the killers from two plies earlier in the tree, once the   
   killers for the current ply have been tried.  Was a +10 Elo gain, 
   added to about +10 for the new time control logic.  Old fail-high 
   restriction removed.  At one point in time, a fail-high on the
   null-window search at the root would cause problems.  Crafty was  
   modified so that the fail-high was ignored if the re-search   
   failed low.  Removing this produced an 8 Elo gain.
 
23.7   Minor fix to time check code.  Was particularly broken at very
   low skill level settings, but it had a small impact everywhere.   
   Some simplification with the reduction code, and how moves are
   counted as they are searched, which would not count any moves 
   that were pruned, which could delay triggering reductions at a
   ply.  Fixed significant killer move bug that would only surface   
   during a parallel search.  NextMove (remaining moves phase) culls 
   killer moves as it selects, because they have already been tried. 
   Unfortunately, in a parallel search, the killers could get
   modified by other threads, which could erroneously cause a move   
   to be excluded that had not been searched.  I discovered this bug 
   on wac #266 where Crafty normally finds a mate at depth=11, but   
   a parallel search would often miss the mate completely.  Minor
   fix to new "difficulty" time management.  It was possible for a   
   move to look "easy" (several iterations without finding a new 
   best move) but it could fail low at the beginning of the next 
   iteration.  Difficulty would be reduced due to not changing the   
   best move at previous iterations, so the search could time out
   quicker than expected.  Simple fix was to reset difficulty to 
   100% on a fail low, which makes sense anyway if it was supposed   
   to be "easy" but the score is mysteriously dropping anyway.   
 
23.8   MAXPLY changed to 128, which increases the max length of the 

Bug#812823: utopia-documents: Segmentation fault on start

2016-04-08 Thread Douglas Calvert
Package: utopia-documents
Version: 2.4.4-2.1
Followup-For: Bug #812823

Ping?


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages utopia-documents depends on:
ii  libboost-python1.58.0 1.58.0+dfsg-5+b1
ii  libboost-system1.58.0 1.58.0+dfsg-5+b1
ii  libboost-thread1.58.0 1.58.0+dfsg-5+b1
ii  libc6 2.22-5
ii  libexpat1 2.1.1-1
ii  libfreetype6  2.6.3-3+b1
ii  libgcc1   1:5.3.1-13
ii  libgl1-mesa-glx [libgl1]  11.1.2-1
ii  libglew1.10   1.10.0-3
ii  libglu1-mesa [libglu1]9.0.0-2.1
ii  libpcre3  2:8.38-3.1
ii  libpcrecpp0v5 2:8.38-3.1
ii  libpython2.7  2.7.11-7
ii  libqglviewer2 2.6.3+dfsg1-1
ii  libqjson0 0.8.1-3
ii  libqt4-network4:4.8.7+dfsg-6+b1
ii  libqt4-opengl 4:4.8.7+dfsg-6+b1
ii  libqt4-script 4:4.8.7+dfsg-6+b1
ii  libqt4-svg4:4.8.7+dfsg-6+b1
ii  libqt4-xml4:4.8.7+dfsg-6+b1
ii  libqtcore44:4.8.7+dfsg-6+b1
ii  libqtgui4 4:4.8.7+dfsg-6+b1
ii  libqtwebkit4  2.3.4.dfsg-6+b1
ii  libraptor11.4.21-11+b1
ii  libssl1.0.0   1.0.2d-1
ii  libstdc++65.3.1-13
ii  python-cssselect  0.9.1+git90c72b0-1
ii  python-imaging3.1.1-1
ii  python-lxml   3.6.0-1
ii  python-suds   0.7~git20150727.94664dd-3
ii  python2.7 2.7.11-7
pn  python:any
ii  xdg-utils 1.1.1-1
ii  zlib1g1:1.2.8.dfsg-2+b1

utopia-documents recommends no packages.

utopia-documents suggests no packages.

-- no debconf information



Bug#819101: mupdf: Please package latest upstream 1.9 is available.

2016-03-23 Thread Douglas Calvert
Package: mupdf
Version: 1.7a-1+b1
Severity: wishlist

The changes from 1.7 to 1.9 are below:
List of changes in MuPDF 1.9

* Headline changes:
* New command line tools: create and run.
* New low-level Java interface for desktop and android.
* OpenType enabled EPUB text layout with BiDi.
* Noto fallback fonts for EPUB layout.

* mutool create
Create new PDF files from scratch.
Read an annotated content stream in a text file and write a PDF file,
automatically embedding font and image resources.

* mutool run
Run javascript scripts with MuPDF bindings.
The interface is similar to the new Java interface.

List of changes in MuPDF 1.8

* Headline changes:
* New OpenGL-based barebones desktop viewer.
* New URW fonts with greek and cyrillic.
* 64-bit file support.
* Ghostscript proofing mode (source only; not in shipped binaries).

* EPUB improvements:
* User style sheets.
* GIF images (also for CBZ).
* Table of contents.
* CJK text.
* Page margins.
* Many bug fixes.

* Bug fixes:
* Updated FreeType to version 2.6.1.
* Various font substitution bug fixes.
* Fix setjmp/longjmp behaviour which could cause optimizing compilers to 
misbehave.

List of changes in MuPDF 1.7a

* Bugfixes
* Fixed bug that allocated too much memory when packing paths.
* Fixed EPUB font scaling bug.
* Fixed EPUB file type handling in viewers.
* Improved tolerance for broken and unsupported CSS.

* Features
* Added mudraw -z option to compress output streams.

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages mupdf depends on:
ii  libc62.22-4
ii  libfreetype6 2.6.3-3
ii  libjbig2dec0 0.12+20150918-1
ii  libjpeg62-turbo  1:1.4.2-2
ii  libopenjp2-7 2.1.0-2.1
ii  libx11-6 2:1.6.3-1
ii  libxext6 2:1.3.3-1
ii  zlib1g   1:1.2.8.dfsg-2+b1

mupdf recommends no packages.

Versions of packages mupdf suggests:
ii  mupdf-tools  1.7a-1+b1

-- no debconf information



Bug#819099: mupdf: Multiple options in manpage do not work as described

2016-03-23 Thread Douglas Calvert
Package: mupdf
Version: 1.7a-1+b1
Severity: normal

The manpage for mupdf lists a number of options that do not work. It 
seems that the mupdf wrapper only acknowledges `-p, -r, -b`. The man
page lists a number of other options that the wrapper ignores. 

For example: 

-A bits
   Changes  the anti-aliasing quality, specified as a number 
   of bits between 0 (off) and 8 (best). The default value is 8.


$ mupdf -A 5 file.pdf 
error: "-A" file not found

-C RRGGBB
   Sets the full-page tint using hexadecimal color syntax. 
   The default value is FFFAF0.

$ mupdf -C FFF000 file.pdf 
error: "-C" file not found





-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages mupdf depends on:
ii  libc62.22-4
ii  libfreetype6 2.6.3-3
ii  libjbig2dec0 0.12+20150918-1
ii  libjpeg62-turbo  1:1.4.2-2
ii  libopenjp2-7 2.1.0-2.1
ii  libx11-6 2:1.6.3-1
ii  libxext6 2:1.3.3-1
ii  zlib1g   1:1.2.8.dfsg-2+b1

mupdf recommends no packages.

Versions of packages mupdf suggests:
ii  mupdf-tools  1.7a-1+b1

-- no debconf information



Bug#576829: xdg-settings: cannot set default-web-browser

2016-03-18 Thread Douglas Calvert
Package: xdg-utils
Version: 1.1.1-1
Followup-For: Bug #576829

I am running debian unstable with i3 as a window manager and have this bug. 

I have attached sh-x for set and then get. 

xdg-settings set default-web-browser firefox.desktop
xdg-settings get default-web-browser
xdg-mime query default  x-scheme-handler/http
xdg-mime default firefox.desktop x-scheme-handler/http


firefox's desktop file is /usr/share/applications/firefox.desktop

It is odd that xdgsettings set uses:

   xdg-mime default firefox.desktop text/html

But xdg-settings get uses: 

   xdg-mime query default x-scheme-handler/http



$ sh -x /usr/bin/xdg-settings set default-web-browser firefox.desktop
+ check_common_commands set default-web-browser firefox.desktop
+ '[' 3 -gt 0 ']'
+ parm=set
+ shift
+ case "$parm" in
+ '[' 2 -gt 0 ']'
+ parm=default-web-browser
+ shift
+ case "$parm" in
+ '[' 1 -gt 0 ']'
+ parm=firefox.desktop
+ shift
+ case "$parm" in
+ '[' 0 -gt 0 ']'
+ '[' -z '' ']'
+ unset XDG_UTILS_DEBUG_LEVEL
+ '[' 0 -lt 1 ']'
+ xdg_redirect_output=' > /dev/null 2> /dev/null'
+ '[' xset = x--list ']'
+ '[' xset '!=' x ']'
+ '[' xdefault-web-browser '!=' x ']'
+ '[' xset = xget -o xfirefox.desktop '!=' x ']'
+ op=set
+ parm=default-web-browser
+ shift 2
+ '[' xset '!=' xget -a xset '!=' xcheck -a xset '!=' xset ']'
+ detectDE
+ unset GREP_OPTIONS
+ '[' -n i3 ']'
+ case "${XDG_CURRENT_DESKTOP}" in
+ '[' x = x ']'
+ '[' x '!=' x ']'
+ '[' x '!=' x ']'
+ '[' x '!=' x ']'
++ dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus 
org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager
+ xprop -root _DT_SAVE_MODE
+ grep ' = \"xfce4\"$'
+ xprop -root
+ grep -i '^xfce_desktop_window'
+ echo
+ grep -q '^Enlightenment'
+ '[' x = x ']'
+ case "$DESKTOP_SESSION" in
+ '[' x = x ']'
+ case "$(uname 2>/dev/null)" in
++ uname
+ '[' x = xgnome ']'
+ '[' -z '' ']'
+ DE=generic
+ case "$DE" in
+ dispatch_specific generic firefox.desktop
+ local handler=generic
+ shift
+ '[' xset = xget ']'
+ '[' xset = xcheck ']'
+ case "$parm" in
+ '[' 1 -eq 1 ']'
+ check_desktop_filename firefox.desktop
+ case "$1" in
+ return
+ set_browser_generic firefox.desktop
+ '[' -n '' ']'
++ desktop_file_to_binary firefox.desktop
++ search=/home/dfc/.local/share:/usr/local/share:/usr/share
+++ basename firefox.desktop
++ desktop=firefox.desktop
++ IFS=:
++ for dir in '$search'
++ unset IFS
++ '[' /home/dfc/.local/share ']'
++ '[' -d /home/dfc/.local/share/applications ']'
++ file=/home/dfc/.local/share/applications/firefox.desktop
++ '[' -r /home/dfc/.local/share/applications/firefox.desktop ']'
++ continue
++ for dir in '$search'
++ unset IFS
++ '[' /usr/local/share ']'
++ '[' -d /usr/local/share/applications ']'
++ continue
++ for dir in '$search'
++ unset IFS
++ '[' /usr/share ']'
++ '[' -d /usr/share/applications ']'
++ file=/usr/share/applications/firefox.desktop
++ '[' -r /usr/share/applications/firefox.desktop ']'
+++ cut -d= -f 2-
+++ grep -E '^Exec(\[[^]=]*])?=' /usr/share/applications/firefox.desktop
+++ first_word
+++ read first rest
+++ echo firefox
++ command=firefox
+++ which firefox
++ command=/usr/bin/firefox
++ readlink -f /usr/bin/firefox
++ return
+ binary=/usr/lib/firefox/firefox
+ '[' -n /usr/lib/firefox/firefox ']'
+ set_browser_mime firefox.desktop text/html
+ xdg_mime_fixup
+ '[' generic = kde -a -z '' ']'
+ test -z text/html
+ MIME=text/html
++ get_browser_mime text/html
++ test -z text/html
++ MIME=text/html
++ xdg_mime_fixup
++ '[' generic = kde -a -z '' ']'
++ xdg-mime query default text/html
+ orig=userapp-Iceweasel-3YIBCY.desktop
+ fix_local_desktop_file firefox.desktop text/html
+ test -z text/html
+ MIME=text/html
+ apps=/home/dfc/.local/share/applications
+ '[' '!' -f /home/dfc/.local/share/applications/firefox.desktop ']'
+ return
+ mkdir -p /home/dfc/.local/share/applications
+ xdg-mime default firefox.desktop text/html
++ get_browser_mime
++ test -z ''
++ MIME=text/html
++ xdg_mime_fixup
++ '[' generic = kde -a -z '' ']'
++ xdg-mime query default text/html
+ '[' xuserapp-Iceweasel-3YIBCY.desktop '!=' xfirefox.desktop ']'
+ xdg-mime default userapp-Iceweasel-3YIBCY.desktop text/html
+ exit_failure_operation_failed
+ '[' 0 -gt 0 ']'
+ exit 4


$ sh -x /usr/bin/xdg-settings get default-web-browser 
+ check_common_commands get default-web-browser
+ '[' 2 -gt 0 ']'
+ parm=get
+ shift
+ case "$parm" in
+ '[' 1 -gt 0 ']'
+ parm=default-web-browser
+ shift
+ case "$parm" in
+ '[' 0 -gt 0 ']'
+ '[' -z '' ']'
+ unset XDG_UTILS_DEBUG_LEVEL
+ '[' 0 -lt 1 ']'
+ xdg_redirect_output=' > /dev/null 2> /dev/null'
+ '[' xget = x--list ']'
+ '[' xget '!=' x ']'
+ '[' xdefault-web-browser '!=' x ']'
+ '[' xget = xget -o x '!=' x ']'
+ op=get
+ parm=default-web-browser
+ shift 2
+ '[' xget '!=' xget -a xget '!=' xcheck -a xget '!=' xset ']'
+ detectDE
+ unset GREP_OPTIONS
+ '[' -n i3 ']'
+ case "${XDG_CURRENT_DESKTOP}" in
+ '[' x = x ']'
+ '[' x '!=' x ']'
+ '[' x '!=' x ']'
+ '[' x '!=' x ']'
++ dbus-send --print-reply 

Bug#773554: python-scapy: new upstream version available

2016-02-22 Thread Douglas Calvert
Package: python-scapy
Version: 2.2.0-1
Followup-For: Bug #773554

Hello,

Any news on getting the most recent version of scapy updated? The version in 
unstable is 5 years old now. 

https://github.com/secdev/scapy/releases


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages python-scapy depends on:
ii  python 2.7.11-1
ii  python2.7  2.7.11-3

python-scapy recommends no packages.

Versions of packages python-scapy suggests:
ii  ebtables2.0.10.4-3.4
ii  graphviz2.38.0-12+b1
pn  gv  
ii  hexer   0.2.3-1
ii  imagemagick 8:6.8.9.9-7+b1
ii  librsvg2-bin2.40.13-3
ii  python-crypto   2.6.1-6
ii  python-gnuplot  1.8-6
ii  python-pcapy0.10.8-1+b1
ii  python-pyx  0.12.1-4
ii  python-visual   1:5.12-1.6+b4
ii  sox 14.4.1-5
ii  tcpdump 4.7.4-1+b1
ii  tcpreplay   3.4.4-2
ii  wireshark   2.0.1+g59ea380-3+b1
pn  xpdf

-- no debconf information



Bug#812820: bokken: Please Package Latest Version

2016-01-26 Thread Douglas Calvert
Package: bokken
Severity: normal

Hello,

THere is a new version of bokken available. Among other things it drops the 
dependency on pyew. 


It looks like the debian package has not been updated in 4 years? 


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-rc8-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)



Bug#766794: radare2: new upstream version available

2016-01-26 Thread Douglas Calvert
Source: radare2
Followup-For: Bug #766794

0.10.0 is out

It would be awesome if radare2 could get a version bump so the new bokken could 
be packaged. 

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-rc8-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)



Bug#812823: utopia-documents: Segmentation fault on start

2016-01-26 Thread Douglas Calvert
Package: utopia-documents
Version: 2.4.4-2.1
Severity: normal

utopia-documents dumps core immediately after execution:

gdb followus:

gdb -c core /usr/bin/utopia-documents 
GNU gdb (Debian 7.10-1+b1) 7.10
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /usr/bin/utopia-documents...Reading symbols from 
/usr/lib/debug/.build-id/f5/27b237fb425a544a4e73a9e803e56dd84e8207.debug...done.
done.

warning: core file may not match specified executable file.
[New LWP 11438]
[New LWP 11439]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `utopia-documents'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x7fc100d95795 in QMetaObject::className() const () from 
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5
[Current thread is 1 (Thread 0x7fc157bcc7c0 (LWP 11438))]
(gdb) bt
#0  0x7fc100d95795 in QMetaObject::className() const () from 
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#1  0x7fc1017187bf in ?? () from 
/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
#2  0x7fc1016b2e77 in ?? () from 
/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
#3  0x7fc157a0c26a in call_init (l=, argc=argc@entry=1, 
argv=argv@entry=0x7ffdd0e4b218, 
env=env@entry=0x7ffdd0e4b228) at dl-init.c:72
#4  0x7fc157a0c37b in call_init (env=0x7ffdd0e4b228, argv=0x7ffdd0e4b218, 
argc=1, l=) at dl-init.c:30
#5  _dl_init (main_map=main_map@entry=0x1b96420, argc=1, argv=0x7ffdd0e4b218, 
env=0x7ffdd0e4b228) at dl-init.c:120
#6  0x7fc157a108a8 in dl_open_worker (a=a@entry=0x7ffdd0e4a738) at 
dl-open.c:569
#7  0x7fc157a0c114 in _dl_catch_error 
(objname=objname@entry=0x7ffdd0e4a728, 
errstring=errstring@entry=0x7ffdd0e4a730, 
mallocedp=mallocedp@entry=0x7ffdd0e4a727, 
operate=operate@entry=0x7fc157a104e0 , 
args=args@entry=0x7ffdd0e4a738)
at dl-error.c:187
#8  0x7fc157a0ff63 in _dl_open (file=0x1b93a18 
"/usr/lib/utopia-documents/plugins/libambrosia-atom_basic.so", 
mode=-2147483391, 
caller_dlopen=0x7fc150cc8f98 , 
nsid=-2, argc=, argv=, 
env=0x7ffdd0e4b228) at dl-open.c:653
#9  0x7fc15018af09 in dlopen_doit (a=a@entry=0x7ffdd0e4a950) at dlopen.c:66
#10 0x7fc157a0c114 in _dl_catch_error (objname=0x1afd700, 
errstring=0x1afd708, mallocedp=0x1afd6f8, 
operate=0x7fc15018aeb0 , args=0x7ffdd0e4a950) at dl-error.c:187
#11 0x7fc15018b4d9 in _dlerror_run (operate=operate@entry=0x7fc15018aeb0 
, args=args@entry=0x7ffdd0e4a950)
at dlerror.c:163
#12 0x7fc15018afa1 in __dlopen (file=, mode=mode@entry=257) 
at dlopen.c:87
#13 0x7fc150cc8f98 in Utopia::(anonymous namespace)::loadLibrary (path_=...)
at 
/build/utopia-documents-S_06Pl/utopia-documents-2.4.4/libutopia2/utopia2/library.cpp:72
#14 Utopia::Library::load (path_=...) at 
/build/utopia-documents-S_06Pl/utopia-documents-2.4.4/libutopia2/utopia2/library.cpp:177
#15 0x7fc150cc970b in Utopia::Library::loadDirectory (directory=..., 
recursive_=recursive_@entry=false)
at 
/build/utopia-documents-S_06Pl/utopia-documents-2.4.4/libutopia2/utopia2/library.cpp:199
#16 0x7fc150cbff5f in Utopia::ExtensionLibrary::loadDirectory 
(directory_=..., recursive_=recursive_@entry=false)
at 
/build/utopia-documents-S_06Pl/utopia-documents-2.4.4/libutopia2/utopia2/extensionlibrary.cpp:121
#17 0x7fc150cc3653 in Utopia::init 
(progressIndicator_=progressIndicator_@entry=0x0)
at 
/build/utopia-documents-S_06Pl/utopia-documents-2.4.4/libutopia2/utopia2/global.cpp:101
#18 0x0040bc0a in main (argc=1, argv=)
at /build/utopia-documents-S_06Pl/utopia-documents-2.4.4/papyro/main.cpp:286




-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-rc8-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages utopia-documents depends on:
ii  libboost-python1.58.0 1.58.0+dfsg-4.1
ii  libboost-system1.58.0 1.58.0+dfsg-4.1
ii  libboost-thread1.58.0 1.58.0+dfsg-4.1
ii  libc6 2.21-7
ii  libexpat1 2.1.0-7
ii  libfreetype6  2.6.1-0.1
ii  

Bug#811571: ocrfeeder: Unicode characters break exports

2016-01-19 Thread Douglas Calvert
Package: ocrfeeder
Version: 0.8.1-2
Severity: normal

Exporting is aborted if tesseract identifies any unicode character. Sample 
output:



Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/ocrfeeder/studio/studioBuilder.py", 
line 298, in exportDialog
self.EXPORT_FORMATS[format][1])
  File "/usr/lib/python2.7/dist-packages/ocrfeeder/studio/studioBuilder.py", 
line 281, in exportToFormat
name)
  File "/usr/lib/python2.7/dist-packages/ocrfeeder/studio/widgetModeler.py", 
line 606, in exportPagesWithGenerator
document_generator.save()
  File 
"/usr/lib/python2.7/dist-packages/ocrfeeder/feeder/documentGeneration.py", line 
221, in save
file.write(pages[i])
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2014' in position 
1263: ordinal not in range(128)


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.0-rc8-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages ocrfeeder depends on:
ii  cuneiform 1.1.0+dfsg-5+b2
ii  ghostscript   9.16~dfsg-2
ii  gir1.2-goocanvas-2.0  2.0.2-2
ii  gir1.2-gtk-3.03.18.6-1
ii  gir1.2-gtkspell3-3.0  3.0.7-2
ii  gocr  0.49-2
ii  iso-codes 3.64-1
ii  ocrad 0.24-1
ii  python2.7.11-1
ii  python-enchant1.6.6-2
ii  python-gi 3.18.2-2
ii  python-lxml   3.5.0-1
ii  python-pil3.0.0-1
ii  python-reportlab  3.2.0-1
ii  python-sane   2.8.2-1+b1
ii  tesseract-ocr 3.04.00-5+b1

Versions of packages ocrfeeder recommends:
ii  unpaper  6.1-1
ii  yelp 3.16.1-1

ocrfeeder suggests no packages.

-- no debconf information



Bug#806964: ifupdown: Fails to acquire IP4 address from DHCP

2015-12-03 Thread Douglas Calvert
Package: ifupdown
Followup-For: Bug #806964

Why was `-D LLT` added in the first place? The first sentence in the manpage 
description is:

"Override the default when selecting the type of DUID to use."

Moreover it seems that LLT is used when by default when dhclient is invoked 
without `-S`. 


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.3.0-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages ifupdown depends on:
ii  adduser  3.113+nmu3
ii  initscripts  2.88dsf-59.2
ii  iproute2 4.3.0-1
ii  libc62.21-1
ii  lsb-base 9.20150917

Versions of packages ifupdown recommends:
ii  isc-dhcp-client [dhcp-client]  4.3.3-5

Versions of packages ifupdown suggests:
pn  ppp 
pn  rdnssd  

-- Configuration Files:
/etc/default/networking changed [not included]

-- debconf-show failed



Bug#792263: Any update?

2015-11-05 Thread Douglas Calvert
Hello,

Any news on packaging a newer version of mcelog? The version in unstable is
so old now that it has troubles with a 6month old thinkpad.


Bug#801347: reportbug/querybts display mime encoded text instead of something humans parse

2015-10-08 Thread Douglas Calvert
Package: reportbug
Version: 6.6.5
Severity: normal


Occasionally when I view bugs via reportbug or with querybts directly or via 
apt-listbugs I get a mime encoded blob. This is a new development that I 
have not seen before. 


RePro Steps:

$ querybts 773321

<>
<>
What do you want to do now? [N|x|o|r|b|e|q|?]? 
<>

Followup 1 - must depend on the same irssi version it was built against

Date: Wed, 17 Dec 2014 00:10:04 +0100
From: 
Subject: Re: Bug#773321: irssi-plugin-otr segfaults unexpectedly

Y29udHJvbDogdGFncyAtMSArIG1vcmVpbmZvCgpIaSBBbnRvaW5lLAoKT24gRGllbnN0YWcsIDE2LiBEZXplbWJlciAyMDE0LCBBbnRvaW5lIEJlYXVwcsOpIHdyb3RlOgo+IFNldmVyaXR5OiBjcml0aWNhbAoKPiB0aGUgb3RyIHBsdWdpbiBpcyBzZXZlcmx5IGRhbWFnZWQsIGJvdGggaW4gamVzc2llIGFuZAo+IHdoZWV6eS1iYWNrcG9ydHMuCj4gCj4gaW4gd2hlZXp5LCBpcnNzaSBjb21wbGV0ZWx5IGNyYXNoZXMgYWZ0ZXIgaSAiL2xvYWQgb3RyIi4gdGhpcyBpcyBldmVuCj4gd2l0aG91dCB0aGUgeG1wcCBwbHVnaW4gbG9hZGVkLCBzbyBpdCdzIGRpZmZlcmVudCBmcm9tICM0OTkyMjkuCgpJIGNhbm5vdCBjb25maXJtIHRoaXMsIGl0IHdvcmtzIGZvciBtZSBuaWNlbHkgYW5kIGRhaWx5IHNpbmNlIG1vcmUgdGhhbiBhIAp5ZWFyLiAoU28gaW4gYSB3YXkgSSdtIHRlbXB0ZWQgdG8gZG93bmdyYWRlIHRoaXMgYnVnLiBPbmNlIHRoZXJlIGFyZSAKYXV0b3JlbW92YWwgd2FybmluZ3MgSSdsbCBkbyBzby4pCgpJIG5ldmVyIHVzZSB0aGUgeG1wcCBwbHVnaW4gKG5vciBoYXZlIGl0IGluc3RhbGxlZCkuLi4KCgpjaGVlcnMsCglIb2xnZXI=






-- Package-specific info:
** Environment settings:
EDITOR="nano"
PAGER="less"
VISUAL="nano"
INTERFACE="text"

** /home/dfc/.reportbugrc:
reportbug_version "6.6.5"
mode advanced
ui text
realname "Douglas Calvert"
email "d...@douglasfcalvert.net"
no-cc
header "X-Debbugs-CC: d...@douglasfcalvert.net"
smtphost reportbug.debian.org

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt   1.0.10.2
ii  python2.7.9-1
ii  python-reportbug  6.6.5
pn  python:any

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
ii  debconf-utils   1.5.57
ii  debsums 2.1.2
ii  dlocate 1.02+nmu3
ii  emacs24-bin-common  24.5+1-2
ii  file1:5.25-2
ii  gnupg   1.4.19-5
ii  postfix [mail-transport-agent]  2.11.3-1
ii  python-gtk2 2.24.0-4
pn  python-gtkspell 
ii  python-urwid1.3.0-2
pn  python-vte  
ii  xdg-utils   1.1.1-1

Versions of packages python-reportbug depends on:
ii  apt   1.0.10.2
ii  python-debian 0.1.27
ii  python-debianbts  2.4
pn  python:any

python-reportbug suggests no packages.

-- no debconf information



Bug#793940:

2015-07-29 Thread Douglas Calvert
Wow, this is also a duplicate of another bug you filed:

#785665 ntp: support for atom driver not included


You have three bugs for the same issue. Why? Please take a look at the
information in https://bugs.debian.org/691672

Instead of filing another duplicate of this bug all you need to do is
install pps-tools and rebuild the ntp package.


-- 
douglas f. calvert
d...@douglasfcalvert.net ··· 315.882.6220


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



Bug#793940:

2015-07-29 Thread Douglas Calvert
 Ntpd no longer opens pps-device.


ntpd frm debian has never supported pps. As can be seen in bugs:

#241548 [w|  |♙] [ntp] Request PPS refclock support (Oncore)
#691672 [n|+|♔] [ntp] build-depend on pps-tools
#790973 [n|  |  ] [ntp] ntp: does not do PPS sync

Speaking of #790973, why did you think it was appropriate to submit a
new bug that is essentially a duplicate of bug 790973, a bug which you
filed three weeks ago?

-- 
douglas f. calvert
d...@douglasfcalvert.net ··· 315.882.6220


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



Bug#793926: ntp: Use https in debian/watch file

2015-07-28 Thread douglas calvert
Package: ntp
Version: 1:4.2.8p3+dfsg-1
Severity: important


Hello, 
 Thank you for looking after the ntp package in debian. Can you please update 
the watch file to use https instead of 
http? Thank you.

Change:
 
http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-([0-9.p]+)\.tar\.gz

To:

https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-([0-9.p]+)\.tar\.gz

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.0.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages ntp depends on:
ii  adduser  3.113+nmu3
ii  dpkg 1.18.1
ii  libc62.19-19
ii  libcap2  1:2.24-9
ii  libedit2 3.1-20150325-1
ii  libgcc1  1:5.1.1-14
ii  libopts251:5.18.6~pre3-3
ii  libssl1.0.0  1.0.2d-1
ii  lsb-base 4.1+Debian13+nmu1
ii  netbase  5.3

Versions of packages ntp recommends:
ii  perl  5.20.2-6

Versions of packages ntp suggests:
ii  ntp-doc  1:4.2.8p3+dfsg-1

-- Configuration Files:
/etc/cron.daily/ntp [Errno 2] No such file or directory: u'/etc/cron.daily/ntp'
/etc/default/ntp changed [not included]
/etc/ntp.conf changed [not included]

-- no debconf information


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



Bug#691672:

2015-07-28 Thread Douglas Calvert
 Do you know if the ppsapi has been added to the standard kernel, and that
 it's enabled in Debian by default?

 PPS cannot be properly used with the default Debian kernels because they do
 not enable CONFIG_NTP_PPS. But this requires enabling CONFIG_NO_HZ_COMMON
 and CONFIG_RCU_FAST_NO_HZ, which is why CONFIG_NTP_PPS probably won't be a
 default.

 However, the NTP package should still build-depend on pps-tools. Then that's
 just one fewer step to making a PPS-enabled stratum 1 NTP server on Debian,
 and there's no harm if you're not running PPS (you're already building
 support for refclocks in the Debian NTP package, so it doesn't make sense to
 leave out PPS support). It's pretty easy to build a custom kernel nowadays
 with make deb-pkg in the standard kernel source.


Kenyon is correct that the default debian kernels do not enable
CONFIG_NTP_PPS, aka pps kernel discipline. *However,* he is incorrect that
without this option a default debian kernel+ntpd+pps-tools would not
function as a stratum 1 server using the PPS pulse.

ntpd provides two options for pps discipline, kernel and ntp. In fact ntpd
defaults to using ntp pps discipline over kernel discipline. The
choice of which pps  discipline to use is governed by flag3 in the
NMEA and the PPS ref drivers:


flag3 0 | 1

Controls the kernel PPS discipline: 0 for disable (default), 1 for
enable. Not used under Windows - if the special serialpps.sys
serial port driver is used then kernel PPS will be available and used.

See: https://www.eecis.udel.edu/~mills/ntp/html/drivers/driver20.html
 https://www.eecis.udel.edu/~mills/ntp/html/drivers/driver22.html


I have never seen a clear answer regarding wether to use kernel
discipline over ntpd disciplne in linux. The freebsd kernel discpline is
certainly superior to the ntpd discipline, but freebsd means phk so that is
not surprising. Even if things are better with kernel pps discipline, ntp
pps discipline is a lot better than no pps at all.

Last night I rebuilt the latest ntpd in debian unstable from source with
pps-tools installed. After restarting ntpd the rebuilt ntpd was able to use
the pps signal from my sure gps.

As it is I see no reason not to add pps-tools to the build-deps for ntpd.

This could also help to close:

#790973 ntp: does not do PPS sync
#241548 Request PPS refclock support (Oncore)


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



Bug#793837: ntp: Please include sntp in the ntp package

2015-07-27 Thread douglas calvert
Package: ntp
Version: 1:4.2.8p3+dfsg-1
Severity: wishlist

Dear Maintainer,

Please include sntp in the ntp package. ntpdate is going the way of the dodo 
very soon.
sntp is a useful diagnostic tool. I am not sure why it has been decided that 
sntp should not be in the debian package. 




-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.0.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages ntp depends on:
ii  adduser  3.113+nmu3
ii  dpkg 1.18.1
ii  libc62.19-19
ii  libcap2  1:2.24-9
ii  libedit2 3.1-20150325-1
ii  libgcc1  1:5.1.1-14
ii  libopts251:5.18.6~pre3-3
ii  libssl1.0.0  1.0.2d-1
ii  lsb-base 4.1+Debian13+nmu1
ii  netbase  5.3

Versions of packages ntp recommends:
ii  perl  5.20.2-6

Versions of packages ntp suggests:
ii  ntp-doc  1:4.2.8p3+dfsg-1

-- Configuration Files:
/etc/cron.daily/ntp [Errno 2] No such file or directory: u'/etc/cron.daily/ntp'
/etc/default/ntp changed:
NTPD_OPTS='-g -N '

/etc/ntp.conf changed:
driftfile /var/lib/ntp/ntp.drift
leapfile /etc/ntp/ntp.leap
saveconfigdir /etc/ntp/saveconfig
statsdir /var/log/ntpstats/
logconfig=clockall +peerall +sysall +syncall
statistics loopstats peerstats sysstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen sysstats file sysstats type day enable
interface  listen eth0
interface  listen eth1
restrict default limited notrap nomodify nopeer noquery
restrict source notrap nomodify nopeer
restrict 127.0.0.1
restrict ::1
restrict 192.168.10.0 mask 255.255.255.0 nomodify notrap
mru maxmem 2048 maxage 1800 mindepth 1024
keys /etc/ntp/ntpkey_md5_fw
trustedkey (1 ... 10)
controlkey 1
requestkey 1
tos minclock 8 minsane 5 maxclock 15
server192.168.10.50iburst prefer minpoll 4 
servernsntp2.fnal.gov   iburst
servernsntp3.fnal.gov   iburst
servernsntp4.fnal.gov   iburst
serverfnal-owamp.es.net iburst
server -4 clock.nyc.he.net  iburst
serverntp.colby.edu iburst
servernewtic.syr.eduiburst
servernewclock.syr.edu  iburst
servernewtoc.syr.eduiburst
server -6 ntp.your.org   iburst
servertock.usshc.comiburst
servertick.usshc.comiburst
server   17.253.14.123 iburst
server 17.253.14.125 iburst
server 17.253.14.251 iburst
server 17.253.14.253 iburst


-- no debconf information


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



Bug#725458: units: Table 'ansicoated' lacks unique inverse around entry 800

2013-10-05 Thread Douglas Calvert
Package: units
Version: 2.02-1
Severity: minor

With a default installation (ie no custom anything) doing a --check prints:


Table 'ansicoated' lacks unique inverse around entry 800


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

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

Versions of packages units depends on:
pn  libc6 none
pn  libreadline6  none

Versions of packages units recommends:
pn  python  none

units suggests no packages.

-- no debconf information


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



Bug#711995: libgpg-error0: Please package newest upstream

2013-06-11 Thread douglas calvert
Package: libgpg-error0
Version: 1.10-3.1
Severity: wishlist

Dear Maintainer,
Please package the newest upstream february. 


Changes:

Noteworthy changes in version 1.11 (2013-02-25)
---

 * New error source GPG_ERR_SOURCE_ASSUAN for Libassuan related
   errors.

 * New macros GPG_ERROR_VERSION and GPG_ERROR_VERSION_NUMBER.  New
   function gpg_error_check_version.

 * Interface changes relative to the 1.10 release:
 
 GPG_ERR_NO_KEYSERVER  NEW.
 GPG_ERR_INV_CURVE NEW.
 GPG_ERR_UNKNOWN_CURVE NEW.
 GPG_ERR_DUP_KEY   NEW.
 GPG_ERR_AMBIGUOUS NEW.
 GPG_ERR_SOURCE_ASSUAN NEW.
 gpg_error_check_version   NEW.
 GPG_ERROR_VERSION NEW.
 GPG_ERROR_VERSION_NUMBER  NEW.


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

Kernel: Linux 3.10.0-rc5+ (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libgpg-error0 depends on:
ii  libc6  2.17-5
ii  multiarch-support  2.17-5

libgpg-error0 recommends no packages.

libgpg-error0 suggests no packages.

-- no debconf information


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



Bug#711490: nsd3: Please package NSD 3.2.15

2013-06-07 Thread douglas calvert
Package: nsd3
Version: 3.2.12-3
Severity: normal

Dear Maintainer,

Please package nsd 3.2.15


NSD 3.2.15
Feb 4, 2013
Features

Support for ILNP RR types: NID, L32, L64, LP (RFC6742).
RRL, --enable-ratelimit at configure time and config options.
TSIG initialization only fails when there is no digest found at all.

Bugfixes

Bugfix #478: Declaration after statement (for gcc 2.95).
Bugfix #483: Better error message in case of TSIG error.
Bugfix #485: TTL should not be greater than 2^31 - 1.
Fix RCODE when CNAME loop final answer does not exist, should return 
NXDOMAIN as stated by RFC 6604.
Fix --disable-full-prehash bug, where after multiple incoming IXFRs, NSEC3 
can be removed unjustified.

NSD 3.2.14
Nov 1, 2012
Features

TCP writev support.

Bugfixes

Fix build on OpenBSD (thanks Oliver Peter).
Prioritize notify sender for requesting XFR (thanks Ilya Bakulin).
Fix crash in zonec if TXT string too long (thanks Ilya Bakulin).
tzset before chroot for correct timezone (thanks Camiel Dobbelaar).
Fix --disable-full-prehash bug when nsdc patch happens while ixfr too, it 
did not rehash the new database.
Bugfix #464: Conditionally define MAXHOSTNAMELEN.

NSD 3.2.13
Jul 27, 2012

Bugfixes

Bugfix #461 (VU#517036 CVE-2012-2979): NSD denial of service vulnerability 
from DNS packet when using --enable-zone-stats.
Bugfix #460: man page correction - identity.
Fix for nsd-patch segfault if zone has been removed from nsd.conf (thanks 
Ilya Bakulin).



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

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

Versions of packages nsd3 depends on:
ii  adduser  3.113+nmu3
ii  libc62.17-5
ii  libssl1.0.0  1.0.1e-3
ii  lsb-base 4.1+Debian12

nsd3 recommends no packages.

nsd3 suggests no packages.

-- no debconf information


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



Bug#707684:

2013-05-29 Thread Douglas Calvert
How is this still open?  Ubuntu had a bug for this opened march 30th and a
fix by April 8th.  This seems like such an easy fix:

-   listen [::]:80 default_server ipv6_only=on;
+   listen [::]:80 default_server ipv6only=on;


Bug#669704: autopsy: upstream now 3.0.4

2013-03-06 Thread Douglas Calvert
Package: autopsy
Version: 2.24-1
Followup-For: Bug #669704

Thank you for maintaining this package. Could you package the latest
upstream release?

The following releases have occured since this bug was originally filed:

 VERSION 3.0.4 --

New features:
- Results and files can be tagged with custom tags and reported on them.
- New notification area for error reporting (bottom right).

Improvements:
- Tweaked memory settings to eliminate out-of-memory errors.
- Faster application launch time.
- Netbeans RCP upgrade from 7.2.1 to 7.3
- Upgrade from Java 6 to Java 7

Bugfixes:
- fixed DLL dependency version issue causing Autopsy not to launch on
some systems
- fixed bug when keyword search ingest would search also images
previously ingested, creating duplicate results
- fixed crash and hang in html and excel report generation, due to
special characters present
- fixed cancellation when creating file or result bookmark
- fixed text not being extracted and searched from all MS Office
documents  (such as docx, xlsx and pptx extensions)
- fixed Exif meta-data extraction in Exif ingest module


 VERSION 3.0.3 --

*Note: Due to major changes in Keyword search module indexing this
release is not fully backward compatible.
As a workaround, you will need to rebuild index by re-running Keyword
Search ingest on Cases created with previous versions.

Improvements:
- Upgrade to Solr4.0 / Tika 1.2: Improved performance and highlighting
- Remake of reporting UI and functionality
- Significant increase in reporting speed
- New option to keep the most specific file viewer (default) or the
lastly used viewer active.


Bugfixes:
- Fixed bug that caused the ends of large amounts of text to not be
indexed (occurs mostly in unallocated space).
- Fix scrolling to first keyword hit when Text View is first loaded
- Imported keyword lists are now always enabled for ingest by default


 VERSION 3.0.2 --

New features:
- Extraction of all unallocated blocks as a single file
- Results bookmarks with comments and basic bookmark reporting
- Hashkeeper hash database support

Improvements:
- File Ingest: minimized file queuing time and memory usage, also
improving ingest stability
- Jump to arbitrary page in Thumbnail View
- Add Image Wizard - better work-flow, better device size reporting,
info on currently processed directory
- Reporting: reorganized columns, sorted by 1st column, added logo,
better styling

Bugfixes:
- fixed periodic keyword search during ingest, when it would only
search max. 2 times
- fixed Downloads target in Recent Activity
- fixed missing hash and keyword search hits in reports
- fixed deselecting NSRL database for hash ingest


 VERSION 3.0.1 --

New features:
- Physical and logical disk devices discovery in Add image wizard

Improvements:
- Significant performance improvements when adding images.
- Slight improvements in UI performance for large number of results.
- Improved stability when running ingest on multiple images.
- Removed limit on number of results displayed.
- Thumbnail viewer - added paging and removed limit of images.
- Better HTML report navigation, handling large reports better.
- Netbeans RCP upgrade from 7.2 to 7.2.1
- Build scripts enhancements to include module version tracking.

Bugfixes:
- Fixed reading content from multiple file attributes (NTFS, HFS).
- Add Extract action to Unalloc content file nodes (per file).
- Fixes bugs with case re-opening.
- UI fix for keyword search box when case is changed.
- Enable user to select any image file extension when opening image.
- Thunderbird parser module fixes.
- Reporting fixes: added missing artifacts (keyword search, hash hits,
file bookmarks).


 VERSION 3.0.0 --
New features:
- Using Sleuthkit 4.0.0
- Integrated plugin installer.
- New options menu to globally access module options.
- Added custom ingest module loader and ingest module auto-discovery

Improvements:
- Updated ingest framework APIs.
- Merged the main modules into Autopsy-Core and Autopsy-CoreLibs.
- Improved logging infrastructure.
- Improved configuration infrastructure.
- Keyword search: upgraded Lucene from 34 to 36.
- Build system improvements.
- Updated documentation.

Bugfixes:
- UI selection fix in Content and Result viewer
- UI fixes in Hash Database and Keyword Search options.
- Excel report export produced corrupt files sometimes.
- Fix for Keyword Search sometimes not property initializing when
application starts.

3.0.0b5 (September 12, 2012)
New features:
- Added international string extraction from unknown file types.
- Removed size limitations of large files for keyword searching.
- Added full html parsing and extraction (including comments, scripts,
meta tags, etc).
- Added support for indexing and searching disk images that have no
volume and file system.
- Solr (3.6.1) and Tika (1.0) upgrade.
- Search a file by hash GUI 

Bug#702470: sleuthkit: sleuthkit is 3 versions behind upstream

2013-03-06 Thread Douglas Calvert
Package: sleuthkit
Version: 3.2.3-2
Severity: normal

Hello,
 Thank you for maintaining this package in debian. Can you package the
latest upstream? Thanks in advance.

Features added since package available in debian:

 VERSION 4.0.2 --
Core:
New Features:
- Added fiwalk tool from Simson. Not supported in Visual Studio yet.

Bug Fixes:
- Fixed fcat to work on NTFS files (still doesn't support ADS though).
- Fixed HFS+ support in tsk_loaddb / SQLite -- root directory was not added.
- NTFS code now looks at all MFT entries when listing directory
contents. It used to only look at unallocated entries for orphan
files. This fixes an image that had allocated files missing from the
directory b-tree.
- NTFS code uses sequence number when searching MFT entries for all files.
- Libewf detection code change to support v2 API more reliably (ID: 3596212).
- NTFS $SII code could crash in rare cases if $SDS was multiple of block size.

Framework:
- Added new API to TskImgDB that returns the base name of an image.
- Numerous performance improvements to framework.
- Removed requirement in framework to specify module extension in
pipeline configuration file.
- Added blackboard artifacts to represent both operating system and
network service user accounts.

Java Bindings:
- added more APIs to find files by name, path and where clause
- added API to get currently processed dir when image is being added,
- added API to return specific types of children of image, volume
system, volume, file system.
- moved more common methods up to Content interface
- deprecated context of blackboard attributes,
- deprecated SleuthkitCase.runQuery() and SleuthkitCase.closeRunQuery()
- fixed ReadContentInputStream bugs (ignoring offset into a buffer,
implementing available() )
- methods that are lazy loading are now thread safe
- Hash class is now thread-safe
- use more PreparedStatements to improve performance
- changed source level from java 1.6 to 1.7
- Throw exceptions from C++ side better


 VERSION 4.0.1 --
New Features:
- Can open raw Windows devices with write mode sharing.
- More DOS partition types are displayed.
- Added fcat tool that takes in file name and exports content
(equivalent to using ifind and icat together).
- Added new API to TskImgDB that returns hash value associated with
carved files.
- performance improvements with FAT code (maps and dir_add)
- performance improvements with NTFS code (maps)
- added AONLY flag to block_walk
- Updated blkls and blkcalc to use AONLY flag -- MUCH faster.

Bug Fixes:
- Fixed mactime issue where it could choose the wrong timezone that did
  not follow daylight savings times.
- Fixed file size of alternate data streams in framework.
- Incorporated memory leak fixes and raw device fixes from ADF Solutions.



 VERSION 4.0.0 --
New Features:
- Added multithreaded support
- Added C++ wrapper classes
- Added JNI bindings / Java data model classes
- 3314047: Added utf8-specific versions of 'toid' methods for img,vs,fs types
- 3184429: More consistent printing of unset times (all zerso instead of 1970)
- New database design that allows for multiple images in the same database
- GPT volume system tries other sector sizes if first attempt fails.
- Added hash calculation and lookup to AutoDB and JNI.
- Upgraded SQLite to 3.7.9.
- Added Framework in (windows-only)
- EnCase hash support
- Libewf v2 support (it is now non-beta)
- First file in a raw split or E01 can be specified and the rest of the files
  are found.
- mactime displays times as 0 if the time is not set (isntead of 1970)
- Changed behavior of 'mactime -y' to use ISO8601 format.
- Updated HFS+ code from ATC-NY.
- FAT orphan file improvements to reduce false positives.
- TskAuto better reports errors.
- Upgrade build projects from Visual Studio 2008 to 2010.

Bug Fixes:
- Relaxed checking when conflict exists between DOS and GPT partitions.
Had a Mac image that was failing to resolve which partition table
to use.



-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages sleuthkit depends on:
ii  file5.11-2
ii  libc6   2.13-38
ii  libdate-manip-perl  6.37-1
ii  libgcc1 1:4.7.2-5
ii  libstdc++6  4.7.2-5
ii  libtsk3-3   3.2.3-2
ii  perl5.14.2-18

sleuthkit recommends no packages.

Versions of packages sleuthkit suggests:
ii  autopsy  2.24-1

-- no debconf information


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



Bug#698447:

2013-02-11 Thread Douglas Calvert
I just installed 1.0.1e on amd64 and it does not seem that
enable-ec_nistp_64_gcc_128 made it in. When do you think it will hit
unstable?


OpenSSL 1.0.1e 11 Feb 2013
built on: Mon Feb 11 18:52:45 UTC 2013
platform: debian-amd64
options:  bn(64,64) rc4(8x,int) des(idx,cisc,16,int) blowfish(idx)
compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS
-D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -DTERMIO -g
-O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat
-Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro
-Wa,--noexecstack -Wall -DMD32_REG_T=int -DOPENSSL_IA32_SSE2
-DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m
-DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM
-DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
OPENSSLDIR: /usr/lib/ssl


tor gives the following warning:

Feb 12 00:28:13.000 [notice] We were built to run on a 64-bit CPU,
with OpenSSL 1.0.1 or later, but with a version of OpenSSL that
apparently lacks accelerated support for the NIST P-224 and P-256
groups. Building openssl with such support (using the
enable-ec_nistp_64_gcc_128 option when configuring it) would make ECDH
much faster.


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



Bug#699872: python-keyczar: Please upgrade to latest version: 0.71c (last update in sid 05/26/2011)

2013-02-05 Thread douglas calvert
Package: python-keyczar
Version: 0.6~b.061709+svn502-1
Severity: normal

Dear Maintainer,

Please upgrade to the latest version: 0.71c. 

The changes include the following but the list is not complete. Upstream 
changelog starts 
six months after latest release in unstable:



Keyczar Python release 0.71c
==

Overview of Changes:
* Remove hashbangs from code
* Make test files executable
* Add LICENSE file to repo and MANIFEST.in to comply with ASL 2.0
* Bumped version to 0.71c in setup.py etc.

Keyczar Python release 0.71b
===

Overview of Changes:
* Streaming encryption/decryption support (Robert Leftwich)
* M2Crypto support (Robert Leftwich)
* Pluggable back-ends (Robert Leftwich)
* Made base-64 encoding optional (Shawn Willden)
* Added signed session support (Shawn Willden)

2012-12-20 23:30:00 +0100 Maxim Burgerhout / Shawn Willden

2012-01-27 15:35:44 +1100 Robert Leftwich

* Change KZ_BACKEND_PATHS to KEYCZAR_BACKEND_PATHS

2011-12-29 17:13:12 +1100 Robert Leftwich

* Fix for a long-standing issue with the crypter passed to the
encrypted reader being an Encrypter, not a Crypter capable of
decrypting any existing keys. Refactored creation of Crypter for
encrypted keysets to a single function for reuse and ease of
testing.

2011-12-29 17:06:53 +1100 Robert Leftwich

* Fix issue with FileReader and StaticKeyReader assuming that they
work for every location. Added unit tests for CreateReader and
CreateWriter. Made CreateReader/Writer error messages a little
more explicit.

2011-12-29 17:03:23 +1100 Robert Leftwich

* Added the ability to specify paths to additional backends using
an environment variable.

2011-12-23 15:40:14 +1100 Robert Leftwich

* Rationalised crypter_test.py permutations to improve unit test
performance. Added missing import to keyczar.py and a test for it.

2011-11-26 16:42:27 +1100 rl-0x0

* Add streaming encryption and decryption support and
tests. Separate Base64 encoding from streaming
encryption/decryption. Added Base64 streaming
encoding/decoding. Allow default Base64 encoding/decoding on
encrypt/decrypt to be overridden. Renamed util.Decode/Encode to
util.Base64Decode/Base64Encode and added deprecation
wrappers. Tweaks to unit test setup to remove use of undocumented
makeSuite(). Changed util.Decode() to remove line endings to
handle reflowed input data. Added tests for simulated reflowed
data. Sundry style guide fixes to old and new code. Added
util_test.py with tests for Base64 streaming.

2011-12-02 14:54:02 -0700 Shawn Willden

* Fix Python signed session encryption. It was erroneously base64
encoding the ciphertext before signing, making it incompatible
with the other language implementations.

2011-12-02 14:49:43 -0700 Shawn Willden

* Made base 64 encoding optional for encryption and decryption.

2011-12-02 14:39:51 -0700 Shawn Willden

* Renamed Encode and Decode to Base64WSEncode and Base64WSDecode.

2011-11-27 16:15:58 +1100 Robert Leftwich

* Added support for pluggable backends, allowing key sets to be
stored outside the local file system. Kept Keyczar.Write backward
compatible, allowing but deprecating use of a string instead of a
Writer.

2011-12-01 22:22:19 -0700 Shawn Willden

* Added signed session encryption and decryption to Python.

2011-12-01 22:17:07 -0700 Shawn Willden

* Added attached signing and verification to Python.

2011-12-01 22:09:54 -0700 Shawn Willden

* Added session encryption to Keyczar Python.

2011-11-27 09:29:25 +1100 Robert Leftwich

* Add initial support for M2Crypto, allowing switching between it
and PyCrypto as required. Changed tests to run in both modes and
added an interop test of varying key sizes.

2011-12-01 00:41:52 -0700 Shawn Willden

* Added an assertion to ensure no one tries to create non CBC-mode
AES keys, since we don't actually support them.




-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.8.0-rc4+ (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-keyczar depends on:
ii  python 2.7.3-3
ii  python-crypto  2.6-3
ii  python-pyasn1  0.1.3-1
ii  python-simplejson  2.6.2-1
ii  python-support 1.0.15

python-keyczar recommends no packages.

python-keyczar suggests no packages.

-- no debconf information


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



Bug#395826:

2012-11-12 Thread Douglas Calvert
What is the status of this bug? It is six years old now?

--


Bug#668325: colord-sane consumes 40-82% cpu at all times

2012-04-16 Thread Douglas Calvert
Package: colord
Version: 0.1.18-1
Followup-For: Bug #668325

I am also experiencing high CPU usage. It seems to happen when I plug in a usb 
device that is not a camera/scanner. is there any way to get debugging info? 

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.3.0-rc5+ (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages colord depends on:
ii  acl2.2.51-5
ii  adduser3.113+nmu1
ii  libc6  2.13-27
ii  libcolord1 0.1.18-1
ii  libglib2.0-0   2.32.0-4
ii  libgudev-1.0-0 175-3.1
ii  libgusb2   0.1.3-3
ii  liblcms2-2 2.2+git20110628-2.1
ii  libpolkit-gobject-1-0  0.104-2
ii  libsane1.0.22-7.1
ii  libsqlite3-0   3.7.11-2
ii  libusb-1.0-0   2:1.0.9~rc3-4
ii  multiarch-support  2.13-27
ii  policykit-10.104-2

colord recommends no packages.

colord suggests no packages.

-- no debconf information



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



Bug#666564: Incorrect version reported.

2012-03-31 Thread Douglas Calvert
I filed this bug against the wrong version. The bug exists in 1.12.0-2.

1.10.2-7 - 1.12.0-2
works- bug




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



Bug#657698:

2012-01-28 Thread Douglas Calvert
Hello,
 Why was suhosin disabled in the first place? I have not found any
information regarding the reasoning. I looked at open and closed php5
bugs mentioning suhosin and could not find an explanation.

Bug #657697: php5: suhosin silently disabled documents the removal
but does not explain why...



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



Bug#625572: NTPBug 1026 - ntpq -c rv variable name changes breaks scripting

2011-10-03 Thread Douglas Calvert
I believe the disappearance of rv state can be traced to this ntp bug:

http://bugs.ntp.org/show_bug.cgi?id=1026


--
douglas f. calvert
d...@douglasfcalvert.net ··· 315.882.6220



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



Bug#630553: linux-image-3.0.0-rc2-amd64: Please Enable BPF_JIT

2011-06-15 Thread douglas calvert
Package: linux-2.6
Version: 3.0.0~rc2-1~experimental.1
Severity: wishlist


Hello,
 Please enable BPF_JIT. Thanks. 


root@fw:~# grep -i bpf /boot/config*
/boot/config-3.0.0-rc2-amd64:CONFIG_HAVE_BPF_JIT=y
/boot/config-3.0.0-rc2-amd64:# CONFIG_BPF_JIT is not set


root@fw:~# sysctl net.core.bpf_jit_enable 
error: net.core.bpf_jit_enable is an unknown key

-- Package-specific info:
** Version:
Linux version 3.0.0-rc2-amd64 (Debian 3.0.0~rc2-1~experimental.1) 
(b...@decadent.org.uk) (gcc version 4.5.3 (Debian 4.5.3-2) ) #1 SMP Thu Jun 9 
19:02:26 UTC 2011

** Command line:
BOOT_IMAGE=/vmlinuz-3.0.0-rc2-amd64 
root=UUID=9ae205a7-9425-4ebb-9d0e-3020887ffa7a ro

** Not tainted

** Kernel log:
[5.338089] [drm] Initialized drm 1.1.0 20060810
[5.344588] cfg80211: Calling CRDA to update world regulatory domain
[5.482367] [drm] radeon defaulting to kernel modesetting.
[5.482414] [drm] radeon kernel modesetting enabled.
[5.482616] radeon :01:05.0: PCI INT A - GSI 17 (level, low) - IRQ 17
[5.482903] [drm] initializing kernel modesetting (RS480 0x1002:0x5954).
[5.482965] [drm] register mmio base: 0xDFEF
[5.483001] [drm] register mmio size: 65536
[5.485487] [drm] Generation 2 PCI interface, using max accessible memory
[5.485527] radeon :01:05.0: VRAM: 64M 0x3C00 - 
0x3FFF (64M used)
[5.485574] radeon :01:05.0: GTT: 512M 0x4000 - 
0x5FFF
[5.485634] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[5.485677] [drm] Driver supports precise vblank timestamp query.
[5.485722] [drm] radeon: irq initialized.
[5.486005] [drm] Detected VRAM RAM=64M, BAR=128M
[5.486051] [drm] RAM width 128bits DDR
[5.486195] [TTM] Zone  kernel: Available graphics memory: 480266 kiB.
[5.486233] [TTM] Initializing pool allocator.
[5.486304] [drm] radeon: 64M of VRAM memory ready
[5.486341] [drm] radeon: 512M of GTT memory ready.
[5.486398] [drm] GART: num cpu pages 131072, num gpu pages 131072
[5.490682] [drm] radeon: 1 quad pipes, 1 z pipes initialized.
[5.499821] radeon :01:05.0: WB enabled
[5.499934] [drm] Loading R300 Microcode
[5.596327] [drm] radeon: ring at 0x40001000
[5.596387] [drm] ring test succeeded in 3 usecs
[5.596573] [drm] radeon: ib pool ready.
[5.596822] [drm] ib test succeeded in 0 usecs
[5.597148] [drm:radeon_get_legacy_connector_info_from_bios] *ERROR* Unknown 
connector type: 8
[5.597230] [drm] Radeon Display Connectors
[5.597265] [drm] Connector 0:
[5.597300] [drm]   VGA
[5.597336] [drm]   DDC: 0x68 0x68 0x68 0x68 0x68 0x68 0x68 0x68
[5.597373] [drm]   Encoders:
[5.597409] [drm] CRT1: INTERNAL_DAC2
[5.597445] [drm] Connector 1:
[5.597481] [drm]   DVI-D
[5.597516] [drm]   HPD1
[5.597552] [drm]   DDC: 0x198 0x198 0x19c 0x19c 0x1a0 0x1a0 0x1a4 0x1a4
[5.597590] [drm]   Encoders:
[5.597625] [drm] DFP1: INTERNAL_DVO1
[5.597661] [drm] Connector 2:
[5.597696] [drm]   S-video
[5.597731] [drm]   Encoders:
[5.597766] [drm] TV1: INTERNAL_DAC2
[5.686014] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[5.686768] ieee80211 phy0: hwaddr 00:c0:ca:1b:52:1a, RTL8187vB (default) V1 
+ rtl8225z2, rfkill mask 2
[5.702802] rtl8187: Customer ID is 0xFF
[5.702903] Registered led device: rtl8187-phy0::radio
[5.702930] Registered led device: rtl8187-phy0::tx
[5.702963] Registered led device: rtl8187-phy0::rx
[5.704111] rtl8187: wireless switch is on
[5.704198] usbcore: registered new interface driver rtl8187
[5.735678] [drm] fb mappable at 0xD004
[5.735719] [drm] vram apper at 0xD000
[5.735754] [drm] size 7057408
[5.735789] [drm] fb depth is 24
[5.735823] [drm]pitch is 6720
[5.735961] fbcon: radeondrmfb (fb0) is primary device
[5.803013] Console: switching to colour frame buffer device 210x65
[5.816349] fb0: radeondrmfb frame buffer device
[5.816406] drm: registered panic notifier
[5.816475] [drm] Initialized radeon 2.10.0 20080528 for :01:05.0 on 
minor 0
[7.510848] Adding 1951740k swap on /dev/sda5.  Priority:-1 extents:1 
across:1951740k 
[8.054440] EXT3-fs (sda1): using internal journal
[8.153590] loop: module loaded
[   14.234173] EXT3-fs: barriers not enabled
[   14.240768] kjournald starting.  Commit interval 5 seconds
[   14.241142] EXT3-fs (sda6): using internal journal
[   14.241204] EXT3-fs (sda6): mounted filesystem with ordered data mode
[   14.420213] EXT4-fs (sda10): mounted filesystem with ordered data mode. 
Opts: (null)
[   14.518637] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: 
(null)
[   14.623863] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: 
(null)
[   14.727014] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: 
(null)
[   15.995322] ADDRCONF(NETDEV_UP): eth1: link is not ready
[   

Bug#622819: Please build the ntpsnmpd binary.

2011-04-14 Thread douglas calvert
Package: ntp
Version: 1:4.2.6.p2+dfsg-1+b2
Severity: important


Hello,
 Please buikd the ntpsnmpd binary. The man page is built but not the binary?

~# dpkg -L ntp ntp-doc |grep snmp 
/usr/share/man/man1/ntpsnmpd.1.gz
~# 


You need to add --with-ntpsnmpd to ./configure


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

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

Versions of packages ntp depends on:
ii  adduser  3.112+nmu2  add and remove users and groups
ii  dpkg 1.16.0.1Debian package management system
ii  libc62.11.2-13   Embedded GNU C Library: Shared lib
ii  libcap2  1:2.20-1support for getting/setting POSIX.
ii  libedit2 2.11-20080614-2 BSD editline and history libraries
ii  libopts251:5.10-1.1  automated option processing librar
ii  libssl1.0.0  1.0.0d-2SSL shared libraries
ii  lsb-base 3.2-27  Linux Standard Base 3.2 init scrip
ii  netbase  4.45Basic TCP/IP networking system

Versions of packages ntp recommends:
ii  perl  5.10.1-19  Larry Wall's Practical Extraction 

Versions of packages ntp suggests:
ii  ntp-doc1:4.2.6.p2+dfsg-1 Network Time Protocol documentatio

-- Configuration Files:
/etc/cron.daily/ntp changed [not included]
/etc/default/ntp changed [not included]
/etc/ntp.conf changed [not included]

-- no debconf information



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



Bug#426627: with broadcast 224.0.1.1 not send multicast packets

2011-04-14 Thread douglas calvert
Package: ntp
Followup-For: Bug #426627


the proper config for this is 

multicast w.x.y.z


This bug should be closed

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

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

Versions of packages ntp depends on:
ii  adduser  3.112+nmu2  add and remove users and groups
ii  dpkg 1.16.0.1Debian package management system
ii  libc62.11.2-13   Embedded GNU C Library: Shared lib
ii  libcap2  1:2.20-1support for getting/setting POSIX.
ii  libedit2 2.11-20080614-2 BSD editline and history libraries
ii  libopts251:5.10-1.1  automated option processing librar
ii  libssl1.0.0  1.0.0d-2SSL shared libraries
ii  lsb-base 3.2-27  Linux Standard Base 3.2 init scrip
ii  netbase  4.45Basic TCP/IP networking system

Versions of packages ntp recommends:
ii  perl  5.10.1-19  Larry Wall's Practical Extraction 

Versions of packages ntp suggests:
ii  ntp-doc1:4.2.6.p2+dfsg-1 Network Time Protocol documentatio

-- Configuration Files:
/etc/cron.daily/ntp changed [not included]
/etc/default/ntp changed [not included]
/etc/ntp.conf changed [not included]

-- no debconf information



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



Bug#621051: crafty: README.Debian incorrectly describes the installation of a wrapper

2011-04-05 Thread Douglas Calvert
Package: crafty
Version: 23.4-3
Severity: minor

Hello,

The R.D in /u/s/d/c/ states:

A wrapper has been added to the originally build binary file. The wrapper has 
been called crafty and 
it launches the binary file that's called crafty.bin Also added a conf file 
called /etc/crafty.rc

However:

/usr/games/crafty: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), 
dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped



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

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

Versions of packages crafty depends on:
ii  libc6 2.11.2-13  Embedded GNU C Library: Shared lib
ii  libnuma1  2.0.5-1Libraries for controlling NUMA pol
ii  libstdc++64.6.0-2The GNU Standard C++ Library v3

Versions of packages crafty recommends:
pn  crafty-books-medtosmall | cra none (no description available)
ii  xboard4.5.1-1X Window System Chess Board

crafty suggests no packages.

-- no debconf information



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



Bug#621052: crafty: README.Debian states that games are saved to /var/games

2011-04-05 Thread Douglas Calvert
Package: crafty
Version: 23.4-3
Severity: minor


Hello,
 I know it is minor but Readme.Debian states that games are saved to 
/var/games. 
Without the use of the nofty setup_crafty the game is saved to cwd. with the
env_settings from setup_crafty the games are saved to ~/.crafty


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

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

Versions of packages crafty depends on:
ii  libc6 2.11.2-13  Embedded GNU C Library: Shared lib
ii  libnuma1  2.0.5-1Libraries for controlling NUMA pol
ii  libstdc++64.6.0-2The GNU Standard C++ Library v3

Versions of packages crafty recommends:
pn  crafty-books-medtosmall | cra none (no description available)
ii  xboard4.5.1-1X Window System Chess Board

crafty suggests no packages.

-- no debconf information



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



Bug#583172: latexila should depend/recommend/suggest latexila-data

2010-05-25 Thread Douglas Calvert
Package: latexila
Version: 0.2.0-1
Severity: important

It appears that latexila assumes that latexila-data is installed...

Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/111.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/112.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/113.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/114.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/115.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/116.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/117.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/118.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/119.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/120.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/121.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/122.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/123.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/124.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/125.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/126.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/127.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/128.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/129.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/130.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/131.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/132.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/133.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/134.png': No such file or directory
Warning: impossible to load the symbol: Failed to open file
'/usr/share/latexila/images/misc-text/135.png': No such file or directory
Warning: impossible to load the icon of the template: Failed to open file
'/usr/share/latexila/images/templates/empty.png': No such file or directory
Warning: impossible to load the template Article: Failed to open file
'/usr/share/latexila/templates/article-en.tex': No such file or directory
Warning: impossible to load the template Report: Failed to open file
'/usr/share/latexila/templates/report-en.tex': No such file or directory
Warning: impossible to load the template Book: Failed to open file
'/usr/share/latexila/templates/book-en.tex': No such file or directory
Warning: impossible to load the template Letter: Failed to open file
'/usr/share/latexila/templates/letter-en.tex': No such file or directory
Warning: impossible to load the template Presentation: Failed to open file
'/usr/share/latexila/templates/beamer-en.tex': No such file or directory

(latexila:28853): Gtk-WARNING **: Error loading icon: Failed to open file
'/usr/share/latexila/images/icons/compile_latex.png': No such file or directory

(latexila:28853): Gtk-WARNING **: Error loading icon: Failed to open file
'/usr/share/latexila/images/icons/view_dvi.png': No such file or directory

(latexila:28853): Gtk-WARNING **: Error loading icon: Failed to open file
'/usr/share/latexila/images/icons/compile_pdflatex.png': No such file or
directory

(latexila:28853): Gtk-WARNING **: Error loading icon: Failed to open file
'/usr/share/latexila/images/icons/view_pdf.png': No such file or directory

(latexila:28853): Gtk-WARNING **: Error 

Bug#579621: xboard assumes fairymax is installed

2010-04-29 Thread Douglas Calvert
Package: xboard
Version: 4.5~git20100118-1
Severity: important
Tags: experimental

xboard assumes that fairymax is installed. When you start xboard with no
options it eats a lot of cpu and then dies. I don't know debian packaging
policies by heart but i do not think that a program should assume that a
recommended application is installed.

u...@host$ xboard -debug
StartChildProcess (dir=.) fairymax
xboard: Failed to start first chess program fairymax on localhost: fairymax: No
such file or directory

xboard: Error writing to first chess program: Broken pipe
xboard: Error writing to first chess program: Broken pipe
xboard: Error writing to first chess program: Broken pipe
xboard: Error writing to first chess program: Broken pipe



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

Kernel: Linux 2.6.34-rc5-git8 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xboard depends on:
ii  dpkg  1.15.7.1   Debian package management system
ii  install-info  4.13a.dfsg.1-5 Manage installed documentation in 
ii  libc6 2.11-0exp7 Embedded GNU C Library: Shared lib
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxmu6   2:1.0.5-1  X11 miscellaneous utility library
ii  libxpm4   1:3.5.8-1  X11 pixmap library
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library
ii  xaw3dg1.5+E-18   Xaw3d widget set

Versions of packages xboard recommends:
pn  fairymax  none (no description available)
ii  xfonts-100dpi 1:1.0.1100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.175 dpi fonts for X

Versions of packages xboard suggests:
ii  aterm [x-terminal-emulator]   1.0.1-7Afterstep XVT - a VT102 emulator f
ii  eterm [x-terminal-emulator]   0.9.5-2Enlightened Terminal Emulator
ii  gnome-terminal [x-terminal-em 2.30.0-1   The GNOME terminal emulator applic
ii  mrxvt [x-terminal-emulator]   0.5.4-1lightweight multi-tabbed X termina
ii  rxvt-beta [x-terminal-emulato 2.7.10-6   VT102 terminal emulator for the X 
ii  terminator [x-terminal-emulat 0.93-1 multiple GNOME terminals in one wi
ii  xterm [x-terminal-emulator]   256-1  X terminal emulator

-- no debconf information



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



Bug#579328: Unexpected behavior with ept-cache --sort list no list of sortable fields provided...

2010-04-26 Thread Douglas Calvert
Package: ept-cache
Version: 0.5.30
Severity: normal



The ept-cache man page says:

 -s method, --sort=method
 sort order (use 'list' for a list of supported options).


However when you try to have it print the list it errors out:

# ept-cache search --sort list
invalid sort type (use 'list' for a list). Context:
parsing sort type



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

Kernel: Linux 2.6.34-rc5-git7 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ept-cache depends on:
ii  apt [libapt-pkg-libc6.9 0.7.25.3 Advanced front-end for dpkg
ii  apt-xapian-index0.30 maintenance tools for a Xapian ind
ii  libc6   2.11-0exp7   Embedded GNU C Library: Shared lib
ii  libept0 0.5.30   High-level library for managing De
ii  libgcc1 1:4.5.0-1GCC support library
ii  libstdc++6  4.5.0-1  The GNU Standard C++ Library v3
ii  libxapian15 1.0.19-1 Search engine library
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages ept-cache recommends:
ii  debtags   1.7.9+b2   Enables support for package tags

ept-cache suggests no packages.

-- no debconf information



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



Bug#573059: emacs-goodies-el: Please update to color-theme 6.6

2010-03-08 Thread Douglas Calvert
Package: emacs-goodies-el
Version: 31.5
Severity: wishlist

Hello,
 Can you please upgrade the color-theme package to 6.6? Among other things it 
fixes the Wrong type argument: symbolp error. Thanks...


Changes since current:


2006-05-28  Xavier Maillard  ze...@gnu.org

* Version 6.6.0 is released

* Tagged source with RELEASE_6-6-0 for Back in the business release

* HAGKING, BUGS, README: New files.

* color-theme.el (color-theme-libraries): Changed docstring.
(define-color-theme): Reworked macro to properly define themes.
(color-theme-initialize): Actually does what expected.
(color-theme-theme): Removed this useless variable.

Removed commentary section (splitted into specific files)

* Makefile.defs (DEBNAME): Changed default value to reveal all
  needed informations
  (LASTUPLOAD): New version.
  (CVSMODULE, CVSBRANCH, CVSROOT): New variables used to
  prepare a release.

* Makefile (dist, dist-prepare, debian, 
tarball, realease, upload, $TARBALL, $DEBNAME): New targets.
(distclean): Delete old build traces (files, package, etc...)

* debian/control: Changed Maintainer informations. 

* debian/emacsen-startup: Safely load autoloads file or die if tests 
fail.

* debian/rules: Fixed bad package construction.

* debian/emacsen-install: Handle theme files installation correctfully. 

2006-05-27  Xavier Maillard  ze...@gnu.org

* debian: New directory. Contains all stuff to build a neat and
  cool color-theme-el Debian package.

* AUTHORS: New file.

* color-theme-autoloads.in: Ditto..

* Makefile.defs: Ditto.

* Makefile: Ditto.

* color-theme.el (replace-in-string): New function. Used in 
define-color-theme
(color-theme-directory): New variable.
(color-theme-libraries): Changed default value to color-theme
official theme directory
(color-theme-load-all-themes): New variable.
(color-theme-initialize): Load theme files defined either in
color-theme-libraries or color-theme-directory.

2006-05-22  Xavier Maillard  ze...@gnu.org

* color-theme-library.el: make bytecompiler happy.

* color-theme.el (color-theme-initialize, color-theme-select)
(color-theme-describe, color-theme-install-at-mouse)
(color-theme-install-at-point)
(color-theme-install-at-point-for-current-frame)
(color-theme-print, color-theme-analyze-defun)
(color-theme-make-snapshot, color-theme-compare)
(color-theme-submit, color-theme-initialize): Added autoload cookies

* COPYING: New file

2006-05-21  Xavier Maillard  ze...@gnu.org

* color-theme.el: Make byte compiler happy.
Added autoload cookie on color-theme-install (useless ??)
Added eval-when-compile in color-theme-print

2006-05-14  Xavier Maillard  ze...@gnu.org

* color-theme.el: Cosmetic changes

* color-theme-library.el: Ditto (added header, legal notice)

2006-05-11  Xavier Maillard  ze...@gnu.org

* color-theme.el (color-theme-xemacs-p): Check for xemacs feature.
(color-theme-face-attr-construct): New function. Use it when
face-custom-attributes-get is bound. Fixes a bug on M-x
color-theme-select.

2006-05-07  Xavier Maillard  ze...@gnu.org

* color-theme.el (color-theme-entry-path): New variable used for 
easymenu definition.
We now check which (x)emacs version is used to correctly define our 
menu.
(Fixes a long standing bug)

2006-03-31  Brian Palmer  bpal...@gmail.com

* color-theme-library.el (color-theme-renegade): Added new theme
by Dave Benjamin. Thanks Dave.

* color-theme.el (color-theme-select): Call
color-theme-initialized if it has not been called before.
(color-theme-initialized): Variable tracking initialization state, used 
in color-theme-select
(color-themes): Added renegade theme by Dave Benjamin. Thanks Dave.


2006-01-13  Xavier Maillard  ze...@gnu.org

* color-theme.el: Changed copyright header (just to test Gna services)

2006-01-10  Brian Palmer  bpal...@gmail.com

* color-theme-library.el: Added color-theme-library.el, containing
the defined themes.
* color-theme.el (color-theme-libraries): Customizable variable.
* color-theme.el (color-theme-initialize): Load each file
specified in color-theme-libraries.


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

Kernel: Linux 2.6.33-git13 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Bug#565437: R600_rlc.bin and R700_rlc.bin added to upstream...

2010-02-20 Thread Douglas Calvert

Hello,
 R600_rlc.bin and R700_rlc.bin added to upstream. Please update...



http://git.kernel.org/?p=linux/kernel/git/dwmw2/linux-firmware.git;a=commit;h=d9076a54d74e371a11e1206b4a26e2e428045b9e




authorDave Airlie airl...@redhat.com
Wed, 3 Feb 2010 23:29:57 + (09:29 +1000)
committerDavid Woodhouse david.woodho...@intel.com
Wed, 10 Feb 2010 14:10:50 + (14:10 +)
commitd9076a54d74e371a11e1206b4a26e2e428045b9e
tree48916309099fc6474a687187e3aec83fa95bcb10tree | snapshot
parentc024a251e1dd1a39de610bbdc2af65b36e42637dcommit | diff
radeon: add RLC firmwares from AMD.

License is redistributable but no RE or modification.

Signed-off-by: Dave Airlie airl...@redhat.com
Signed-off-by: David Woodhouse david.woodho...@intel.com
LICENSE.radeon_rlc [new file with mode: 0644] blob
WHENCE diff | blob | history
radeon/R600_rlc.bin [new file with mode: 0644] blob
radeon/R700_rlc.bin [new file with mode: 0644] blob



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