Bug#1052692: bookworm-pu: package spamprobe/1.4d-16+deb12u1

2023-09-26 Thread Stefano Rivera
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: spampr...@packages.debian.org
Control: affects -1 + src:spamprobe

[ Reason ]
Spamprobe is unmaintained upstream and in Debian.

In bookworm it has been crashing a lot when parsing images (#1037422)

The solution is relatively simple, add missing return statements to bool
functions, even though the return is ignored.

[ Impact ]
Spamprobe crashes enough in bookworm to not be useable.

[ Tests ]
Manually tested it on 600 odd spam emails that previously crashed it,
and it didn't crash.

[ Risks ]
Changes are very simple. The return values don't even matter, because
they are ignored.

[ Checklist ]
  [x] *all* changes are documented in the d/changelog
  [x] I reviewed all changes and I approve them
  [x] attach debdiff against the package in (old)stable
  [x] the issue is verified as fixed in unstable

[ Changes ]
Add missing return values to bool functions.
diff -Nru spamprobe-1.4d/debian/changelog spamprobe-1.4d/debian/changelog
--- spamprobe-1.4d/debian/changelog 2023-02-20 18:12:05.0 +0530
+++ spamprobe-1.4d/debian/changelog 2023-09-26 12:15:17.0 +0530
@@ -1,3 +1,11 @@
+spamprobe (1.4d-16+deb12u1) bookworm; urgency=medium
+
+  * QA Upload.
+  * Patch: Add missing return statements, fixing crashes parsing JPEG
+attachments. (Closes: #1037422)
+
+ -- Stefano Rivera   Tue, 26 Sep 2023 12:15:17 +0530
+
 spamprobe (1.4d-16) unstable; urgency=medium
 
   * QA upload.
diff -Nru spamprobe-1.4d/debian/patches/missing-returns.patch 
spamprobe-1.4d/debian/patches/missing-returns.patch
--- spamprobe-1.4d/debian/patches/missing-returns.patch 1970-01-01 
05:30:00.0 +0530
+++ spamprobe-1.4d/debian/patches/missing-returns.patch 2023-09-26 
12:15:17.0 +0530
@@ -0,0 +1,47 @@
+Description: spamprobe crashes when parsing jpeg mime attachment
+Author: Torsten Hilbrich
+
+Bug-Debian: https://bugs.debian.org/1037422
+Bug-Upstream: https://sourceforge.net/p/spamprobe/bugs/39/
+Forwarded: https://sourceforge.net/p/spamprobe/bugs/39/
+
+--- a/src/parser/GifParser.cc
 b/src/parser/GifParser.cc
+@@ -91,6 +91,7 @@
+ openImage();
+ digestImage();
+ parseImageRecords();
++return true;
+   } catch (runtime_error &ex) {
+ return false;
+   }
+--- a/src/parser/JpegParser.cc
 b/src/parser/JpegParser.cc
+@@ -61,6 +61,7 @@
+ initializeSource();
+ digestImage();
+ tokenizeImage();
++return true;
+   } catch (runtime_error &ex) {
+ return false;
+   }
+--- a/src/parser/MbxMailMessageReader.cc
 b/src/parser/MbxMailMessageReader.cc
+@@ -86,6 +86,7 @@
+   cerr << "MBX: SKIPPED DELETED MESSAGE" << endl;
+ }
+   }
++  return true;
+ }
+ 
+ OWNED MailMessage *MbxMailMessageReader::readMessage()
+--- a/src/parser/PngParser.cc
 b/src/parser/PngParser.cc
+@@ -73,6 +73,7 @@
+   try {
+ digestImage();
+ initializeImage();
++return true;
+   } catch (runtime_error &ex) {
+ return false;
+   }
diff -Nru spamprobe-1.4d/debian/patches/series 
spamprobe-1.4d/debian/patches/series
--- spamprobe-1.4d/debian/patches/series2023-02-20 18:12:05.0 
+0530
+++ spamprobe-1.4d/debian/patches/series2023-09-26 12:15:17.0 
+0530
@@ -7,3 +7,4 @@
 giflib5.diff
 gcc-11.patch
 fix-typos.patch
+missing-returns.patch


Processing of spamprobe_1.4d-17_source.changes

2023-09-26 Thread Debian FTP Masters
spamprobe_1.4d-17_source.changes uploaded successfully to localhost
along with the files:
  spamprobe_1.4d-17.dsc
  spamprobe_1.4d-17.debian.tar.xz
  spamprobe_1.4d-17_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Processing of spamprobe_1.4d-16+deb12u1_source.changes

2023-09-26 Thread Debian FTP Masters
spamprobe_1.4d-16+deb12u1_source.changes uploaded successfully to localhost
along with the files:
  spamprobe_1.4d-16+deb12u1.dsc
  spamprobe_1.4d-16+deb12u1.debian.tar.xz
  spamprobe_1.4d-16+deb12u1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Bug#1015294: marked as done (spamprobe: a few patches)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 08:35:50 +
with message-id 
and subject line Bug#1015294: fixed in spamprobe 1.4d-17
has caused the Debian Bug report #1015294,
regarding spamprobe: a few patches
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1015294: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1015294
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: spamprobe
Version: 1.4d-15
Severity: normal
Tags: patch upstream

Following the lack of reaction (upstream or here) to my previous bug
report (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1014201),
I tried to interface spamprobe to MySQL (MariaDB) myself.

While I got it somewhat working, I hit some performance problems
and a data corruption bug in MariaDB
(https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1015293),
so I'm deferring this project to a later time.

Anyway, in the process of doing so, I found some patches and had to
write some myself for some minor issues (nothing to do with MySQL)
that might be useful, e.g. when building spamprobe with newer
compiler versions.

Since upstream seems to be dead, the Debian package might be the
best place to keep the patches for anyone interested, so you might
want to include them.

Series:

warnings.patch
spamprobe.patch
strstream.patch
random.patch
Description: Fixing warnings (-Wall -Wno-deprecated)
Author: Mikhail T. (https://sourceforge.net/p/spamprobe/patches/9/)
Index: spamprobe-1.4d/src/includes/FrequencyDB.h
===
--- spamprobe-1.4d.orig/src/includes/FrequencyDB.h
+++ spamprobe-1.4d/src/includes/FrequencyDB.h
@@ -164,9 +164,9 @@ private:
 
 private:
   const DatabaseConfig *m_config;
-  Ptr m_db;
   bool m_isInterrupted;
   bool m_isBusy;
+  Ptr m_db;
 };
 
 #endif // _FrequencyDB_h
Index: spamprobe-1.4d/src/database/HashDataFile.h
===
--- spamprobe-1.4d.orig/src/database/HashDataFile.h
+++ spamprobe-1.4d/src/database/HashDataFile.h
@@ -93,7 +93,7 @@ public:
 
   bool isReadOnly() const
   {
-m_isReadOnly;
+return m_isReadOnly;
   }
 
   int createMode() const
Index: spamprobe-1.4d/src/includes/LRUCache.h
===
--- spamprobe-1.4d.orig/src/includes/LRUCache.h
+++ spamprobe-1.4d/src/includes/LRUCache.h
@@ -212,8 +212,8 @@ private:
 
 private:
   int m_maxSize;
-  int m_lockedCount;
   int m_normalCount;
+  int m_lockedCount;
   ListType m_normalList;
   ListType m_lockedList;
   MapType m_index;
Index: spamprobe-1.4d/src/includes/Ref.h
===
--- spamprobe-1.4d.orig/src/includes/Ref.h
+++ spamprobe-1.4d/src/includes/Ref.h
@@ -70,7 +70,7 @@ public:
 
 protected:
   RefBase()
-: m_ptr(0), m_count(0)
+: m_count(0), m_ptr(0)
   {
   }
 
Index: spamprobe-1.4d/src/database/FrequencyDBImpl_hash.cc
===
--- spamprobe-1.4d.orig/src/database/FrequencyDBImpl_hash.cc
+++ spamprobe-1.4d/src/database/FrequencyDBImpl_hash.cc
@@ -199,7 +199,7 @@ string FrequencyDBImpl_hash::getWordForI
 return FrequencyDB::COUNT_WORD;
   } else {
 char buffer[128];
-sprintf(buffer, "I0x%08x", key);
+sprintf(buffer, "I0x%08lx", key);
 return buffer;
   }
 }
@@ -210,7 +210,7 @@ HashDataFile::ulong_t FrequencyDBImpl_ha
   if (word == FrequencyDB::COUNT_WORD) {
 // key not used for count
   } else if (starts_with(word, "I0x")) {
-sscanf(word.c_str() + 3, "%x", &key);
+sscanf(word.c_str() + 3, "%lx", &key);
   } else {
 key = hash_string(word);
   }
Index: spamprobe-1.4d/src/database/HashDataFile.cc
===
--- spamprobe-1.4d.orig/src/database/HashDataFile.cc
+++ spamprobe-1.4d/src/database/HashDataFile.cc
@@ -122,7 +122,7 @@ void HashDataFile::populateEmptyFile(int
   unsigned char zeros[SIZE_MULTIPLE * WordArray::ENTRY_SIZE];
   WordArray::fillNullBuffer(zeros, SIZE_MULTIPLE);
 
-  for (int i = 0; i < m_indexLimit; i += SIZE_MULTIPLE) {
+  for (unsigned i = 0; i < m_indexLimit; i += SIZE_MULTIPLE) {
 ::write(fd, &zeros, min(m_indexLimit - i, (HashDataFile::ulong_t)SIZE_MULTIPLE) * WordArray::ENTRY_SIZE);
   }
 }
@@ -269,7 +269,7 @@ bool HashDataFile::write(ulong_t key,
   assert(m_base);
 
   int index = computeIndexForKey(key);
-  for (int i = 0; i < m_divisor; ++i) {
+  for (unsigned i = 0; i < m_divisor; ++i) {
 ulong_t old_key = m_array.readKey(index);
 if (old_key

Bug#1047626: marked as done (spamprobe: Fails to build source after successful build)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 08:35:50 +
with message-id 
and subject line Bug#1047626: fixed in spamprobe 1.4d-17
has caused the Debian Bug report #1047626,
regarding spamprobe: Fails to build source after successful build
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1047626: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1047626
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: spamprobe
Version: 1.4d-16
Severity: minor
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-sab-20230813 ftbfs-source-after-build
User: debian...@lists.debian.org
Usertags: qa-doublebuild

Hi,

This package fails to build a source package after a successful build
(dpkg-buildpackage ; dpkg-buildpackage -S).

This is probably a clear violation of Debian Policy section 4.9 (clean target),
but this is filed as severity:minor for now, because a discussion on
debian-devel showed that we might want to revisit the requirement of a working
'clean' target.

More information about this class of issues, included common problems and
solutions, is available at
https://wiki.debian.org/qa.debian.org/FTBFS/SourceAfterBuild

Relevant part of the build log:
> cd /<> && runuser -u user42 -- dpkg-buildpackage --sanitize-env 
> -us -uc -rfakeroot -S
> 
> 
> dpkg-buildpackage: info: source package spamprobe
> dpkg-buildpackage: info: source version 1.4d-16
> dpkg-buildpackage: info: source distribution unstable
> dpkg-buildpackage: info: source changed by Helge Kreutzmann 
> 
>  dpkg-source --before-build .
>  debian/rules clean
> dh clean
> dh: warning: Compatibility levels before 10 are deprecated (level 9 in use)
>debian/rules override_dh_auto_clean
> make[1]: Entering directory '/<>'
> dh_auto_clean
> dh_auto_clean: warning: Compatibility levels before 10 are deprecated (level 
> 9 in use)
>   make -j1 distclean
> make[2]: Entering directory '/<>'
> Making distclean in src
> make[3]: Entering directory '/<>/src'
> Making distclean in spamprobe
> make[4]: Entering directory '/<>/src/spamprobe'
> test -z "spamprobe" || rm -f spamprobe
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[4]: Leaving directory '/<>/src/spamprobe'
> Making distclean in hdl
> make[4]: Entering directory '/<>/src/hdl'
> test -z "libhdl.a" || rm -f libhdl.a
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[4]: Leaving directory '/<>/src/hdl'
> Making distclean in utility
> make[4]: Entering directory '/<>/src/utility'
> test -z "libutility.a" || rm -f libutility.a
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[4]: Leaving directory '/<>/src/utility'
> Making distclean in parser
> make[4]: Entering directory '/<>/src/parser'
> test -z "libparser.a" || rm -f libparser.a
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[4]: Leaving directory '/<>/src/parser'
> Making distclean in input
> make[4]: Entering directory '/<>/src/input'
> test -z "libinput.a" || rm -f libinput.a
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[4]: Leaving directory '/<>/src/input'
> Making distclean in includes
> make[4]: Entering directory '/<>/src/includes'
> test -z "" || rm -f 
> rm -f Makefile
> make[4]: Leaving directory '/<>/src/includes'
> Making distclean in database
> make[4]: Entering directory '/<>/src/database'
> test -z "libdatabase.a" || rm -f libdatabase.a
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[4]: Leaving directory '/<>/src/database'
> Making distclean in .
> make[4]: Entering directory '/<>/src'
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> make[4]: Leaving directory '/<>/src'
> rm -f Makefile
> make[3]: Leaving directory '/<>/src'
> Making distclean in .
> make[3]: Entering directory '/<>'
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> make[3]: Leaving directory '/<>'
> rm -f config.status config.cache config.log configure.lineno 
> configure.status.lineno
> rm -f Makefile
> make[2]: Leaving directory '/<>'
> debconf-updat

spamprobe_1.4d-16+deb12u1_source.changes ACCEPTED into proposed-updates->stable-new

2023-09-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.

Mapping bookworm to stable.
Mapping stable to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2023 12:15:17 +0530
Source: spamprobe
Architecture: source
Version: 1.4d-16+deb12u1
Distribution: bookworm
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Stefano Rivera 
Closes: 1037422
Changes:
 spamprobe (1.4d-16+deb12u1) bookworm; urgency=medium
 .
   * QA Upload.
   * Patch: Add missing return statements, fixing crashes parsing JPEG
 attachments. (Closes: #1037422)
Checksums-Sha1:
 41ace54cd08e3b8d0f2bc698a1732ed8d6870a45 1240 spamprobe_1.4d-16+deb12u1.dsc
 64ca448f5453428a9c6823db117d6b3481fa27da 41920 
spamprobe_1.4d-16+deb12u1.debian.tar.xz
 ff95740aca4681702b242135b99e52e7229555b2 5820 
spamprobe_1.4d-16+deb12u1_source.buildinfo
Checksums-Sha256:
 4236e416862722b7fe312055015483c6f949bfc18eb7affb0a3bc8b27269b99f 1240 
spamprobe_1.4d-16+deb12u1.dsc
 93ddcd99f11618c072c682fc4ba5a5049729725392bb9f9dd5a9ca22e0e84eb0 41920 
spamprobe_1.4d-16+deb12u1.debian.tar.xz
 3f856e6086cabc160e9161b3be510995867905ff743cb1b39f6b0ff92af17cdc 5820 
spamprobe_1.4d-16+deb12u1_source.buildinfo
Files:
 751641f4b06409f4d19d6ec003e145f8 1240 mail optional 
spamprobe_1.4d-16+deb12u1.dsc
 673c03a46b77a70c93b83ca521603ae8 41920 mail optional 
spamprobe_1.4d-16+deb12u1.debian.tar.xz
 a6c30544a9e9dce9fe40917ca96f1c3c 5820 mail optional 
spamprobe_1.4d-16+deb12u1_source.buildinfo

-BEGIN PGP SIGNATURE-

iIoEARYKADIWIQTumtb5BSD6EfafSCRHew2wJjpU2AUCZRKOcxQcc3RlZmFub3JA
ZGViaWFuLm9yZwAKCRBHew2wJjpU2NtpAQCSz5U7y1EKtjWMfHa+sjcXtfV+gpw6
aoWFkIlvEkOGEgEAta3uiDFIvmsp4ZPYzNWPt78OwyrXuToTebPE9aoqtgw=
=0mYK
-END PGP SIGNATURE-



spamprobe_1.4d-17_source.changes ACCEPTED into unstable

2023-09-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2023 12:15:17 +0530
Source: spamprobe
Architecture: source
Version: 1.4d-17
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Stefano Rivera 
Closes: 1015294 1037422 1047626
Changes:
 spamprobe (1.4d-17) unstable; urgency=medium
 .
   * QA Upload.
   * Patch: Add missing return statements, fixing crashes parsing JPEG
 attachments. (Closes: #1037422)
   * Clean built manpage (and remove unnecessary manpage patch, we re-build it
 from XML). (Closes: #1047626)
   * Apply miscellaneous patches fixing warnings and seeding the PRNG
 statically. (Closes: #1015294)
Checksums-Sha1:
 5d6f9faf2e4b5c88f4760196dd66045e3795cee3 1208 spamprobe_1.4d-17.dsc
 215bcff843b027ce240844e22888789d78e122a3 35392 spamprobe_1.4d-17.debian.tar.xz
 83a3045b7a63a7c4f1f78332d6458819d2d858a6 5788 
spamprobe_1.4d-17_source.buildinfo
Checksums-Sha256:
 fea16cdf3c08aed86b02541fa3f1c6dd4a0b726dd9cd42e142bc9476c836502b 1208 
spamprobe_1.4d-17.dsc
 e9644264d8937115a463edea3f783dea9268382488732f772697254c065275b5 35392 
spamprobe_1.4d-17.debian.tar.xz
 619f5f7665c5775cf839752558e4561019c810f58c5738a5c74a50651178d824 5788 
spamprobe_1.4d-17_source.buildinfo
Files:
 9e123882765398985e1f263e670f0b68 1208 mail optional spamprobe_1.4d-17.dsc
 d6f3c14def4297d35aa51d6f3974ef9d 35392 mail optional 
spamprobe_1.4d-17.debian.tar.xz
 7244f2562a7ec5c017d11c1986c44206 5788 mail optional 
spamprobe_1.4d-17_source.buildinfo

-BEGIN PGP SIGNATURE-

iIoEARYKADIWIQTumtb5BSD6EfafSCRHew2wJjpU2AUCZRKNNBQcc3RlZmFub3JA
ZGViaWFuLm9yZwAKCRBHew2wJjpU2PD/AQC1TI9+lqpCZD3B7udDaJw6FMM1YWkU
ixusJgapClEqlwEA+R83tttLAWx6IrVfPGJdTrjeNL8MYMxaBwhvcMLF3gQ=
=6YnR
-END PGP SIGNATURE-



Bug#1052879: cdist: FTBFS: make[1]: *** [debian/rules:36: override_dh_install] Error 1

2023-09-26 Thread Lucas Nussbaum
Source: cdist
Version: 7.0.0-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20230925 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> dh_install
> jdupes --linksoft --recurse debian/cdist-doc
> jdupes: unrecognized option '--linksoft'
> Try `jdupes --help' for more information.
> make[1]: *** [debian/rules:36: override_dh_install] Error 1


The full build log is available from:
http://qa-logs.debian.net/2023/09/25/cdist_7.0.0-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20230925;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20230925&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1052925: python-kaptan: FTBFS: chmod: cannot access '/<>/kaptan.egg-info/*': No such file or directory

2023-09-26 Thread Lucas Nussbaum
Source: python-kaptan
Version: 0.5.12-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20230925 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
>  debian/rules binary
> dh binary --with python3 --buildsystem=pybuild
>dh_update_autotools_config -O--buildsystem=pybuild
>dh_autoreconf -O--buildsystem=pybuild
>dh_auto_configure -O--buildsystem=pybuild
> I: pybuild base:291: python3.11 setup.py config 
> Warning: 'classifiers' should be a list, got type 'tuple'
> running config
>debian/rules execute_before_dh_auto_build
> make[1]: Entering directory '/<>'
> chmod -x /<>/kaptan.egg-info/*
> chmod: cannot access '/<>/kaptan.egg-info/*': No such file or 
> directory
> make[1]: *** [debian/rules:9: execute_before_dh_auto_build] Error 1


The full build log is available from:
http://qa-logs.debian.net/2023/09/25/python-kaptan_0.5.12-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20230925;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20230925&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Processing of cdist_7.0.0-3_source.changes

2023-09-26 Thread Debian FTP Masters
cdist_7.0.0-3_source.changes uploaded successfully to localhost
along with the files:
  cdist_7.0.0-3.dsc
  cdist_7.0.0-3.debian.tar.xz
  cdist_7.0.0-3_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Bug#1052652: ghostscript: eps2write fails on test file

2023-09-26 Thread Roland Rosenfeld
retitle 1052652 ghostscript: eps2write fails with -sPageList=1
thanks

> Running
> gs -dSAFER -sDEVICE=eps2write -sPageList=1 -o line.eps line.pdf
> on 10.01.2~dfsg-1 (and older) versions works as expected, but fails
> with the following output on 10.02.0~dfsg-2:
> 
> $ gs -dSAFER -sDEVICE=eps2write -sPageList=1 -o line.eps line.pdf
> GPL Ghostscript 10.02.0 (2023-09-13)
> Copyright (C) 2023 Artifex Software, Inc.  All rights reserved.
> This software is supplied under the GNU AGPLv3 and comes with NO WARRANTY:
> see the file COPYING for details.
> Error: /undefined in --runpdf--
> Operand stack:   --nostringval--   1   (    Error: PDF interpreter 
> encountered an error processing the file.\n)
> Execution stack:   %interp_exit   .runexec2   --nostringval--   runpdf   
> --nostringval--   2   %stopped_push   --nostringval--   runpdf   runpdf   
> false   1   %stopped_push   1944   1   3   %oparray_pop   1943   1   3   
> %oparray_pop   1928   1   3   %oparray_pop   1929   1   3   %oparray_pop   
> runpdf
> Dictionary stack:   --dict:752/1123(ro)(G)--   --dict:0/20(G)--   
> --dict:86/200(L)--   --dict:7/10(L)--
> Current allocation mode is local
> GPL Ghostscript 10.02.0: Unrecoverable error, exit code 1

> By trial-and-error I found out, that removing the option
> "-sPageList=1" avoids the error, but this may result in other side
> effects in fig2dev, since the above command only wants to convert the
> first page of the document.

It seems, that for my needs, I can replace
 -sPageList=1
by
 -dFirstPage=1 -dLastPage=1
which should do the same, but does not fail with the new ghostscript
version.

Anyway, both variants are still mentioned in the documentation
(https://ghostscript.readthedocs.io/en/gs10.02.0/Use.html), so they
should work as before, so this is still an important bug in the new
ghostscript version.

Greetings
Roland



Processed: Re: ghostscript: eps2write fails on test file

2023-09-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 1052652 ghostscript: eps2write fails with -sPageList=1
Bug #1052652 [ghostscript] ghostscript: eps2write fails on test file
Changed Bug title to 'ghostscript: eps2write fails with -sPageList=1' from 
'ghostscript: eps2write fails on test file'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1052652: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1052652
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1052879: marked as done (cdist: FTBFS: make[1]: *** [debian/rules:36: override_dh_install] Error 1)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 15:04:52 +
with message-id 
and subject line Bug#1052879: fixed in cdist 7.0.0-3
has caused the Debian Bug report #1052879,
regarding cdist: FTBFS: make[1]: *** [debian/rules:36: override_dh_install] 
Error 1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1052879: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1052879
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: cdist
Version: 7.0.0-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20230925 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> dh_install
> jdupes --linksoft --recurse debian/cdist-doc
> jdupes: unrecognized option '--linksoft'
> Try `jdupes --help' for more information.
> make[1]: *** [debian/rules:36: override_dh_install] Error 1


The full build log is available from:
http://qa-logs.debian.net/2023/09/25/cdist_7.0.0-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20230925;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20230925&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---
Source: cdist
Source-Version: 7.0.0-3
Done: Axel Beckert 

We believe that the bug you reported is fixed in the latest version of
cdist, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1052...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Axel Beckert  (supplier of updated cdist package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2023 16:22:40 +0200
Source: cdist
Architecture: source
Version: 7.0.0-3
Distribution: unstable
Urgency: high
Maintainer: Debian QA Group 
Changed-By: Axel Beckert 
Closes: 1052879
Changes:
 cdist (7.0.0-3) unstable; urgency=high
 .
   * QA upload.
   * debian/rules: Fix jdupes invocation wrt. --linksoft → --link-soft
 option renaming. (Closes: #1052879)
Checksums-Sha1:
 9c2a56a31b8b5ad162e45c30fb4a816057b81c23 1994 cdist_7.0.0-3.dsc
 d18fc0941c3982eae4cad32bd1e7173e1bdc22f2 7788 cdist_7.0.0-3.debian.tar.xz
 ccca1cd0870aac663ec1d792f2ccab2d0c6ee8d2 8275 cdist_7.0.0-3_source.buildinfo
Checksums-Sha256:
 4a19538351196d72dce1bf92e8e4e79f36832f53dd41d5ce56ca887616642991 1994 
cdist_7.0.0-3.dsc
 d2887b2ec43da4efe5d5ad502077c82ebab066c95d7fb05ce383ad10789a4e79 7788 
cdist_7.0.0-3.debian.tar.xz
 9b7e1dba1548e0c98a5b782380eae0ebc745ae50627c2e93baa5894f9a615d6a 8275 
cdist_7.0.0-3_source.buildinfo
Files:
 e3a2f1ade9ff07c4b18bc6da49b4518a 1994 admin optional cdist_7.0.0-3.dsc
 07e9260fe741ca5b6db45e1f7626460b 7788 admin optional 
cdist_7.0.0-3.debian.tar.xz
 bfcfa4d10eafe9cfc2523a133e7efe00 8275 admin optional 
cdist_7.0.0-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEERoyJeTtCmBnp12Ema+Zjx1o1yXUFAmUS6dAACgkQa+Zjx1o1
yXWbHA/+J6armbYfRM30Zs9lbqM49OEqz5SLYriNimqGB13LUAry0FqJgPcapVnA
ZN5ZfCnqxRmW+zqQHO8ufJoAxEXU4w435EDp1VTl4XrBJfOez+UTH8iWcL4Zl+2E
uSoLwEZZozPVk0cyqYpTzMbJG4hN9uQtoDFJiHpJ42rl9h8elxyVXCa1ganS7ADH
AE1XqTLCW4mCt6Os5XjlsGTiUOGYlGOKaU6GTbdup7LQlNZM0u2v77hYMsdGeJvn
Y9rtQa1kQxqHA0/QdarU9ZgYHEH7ptcUSCmIIlw97qm9pzwajifloM442IEGhIel
B7MuTehv+Zp/k0UsCPV+oiaG9g5kdMzjGJcQzbJpzjtq19zs9YRPoHaquv8etAmQ
9PJxTsKYtEmlCFEIKCgfev64X6lP/scxebTpEkjgu+3ztvkpwoQFU4wCx6OR0OFQ
ZGJHjp1TknPByhXrk7Zj0roqUTepWD4wbi/MU+2eOmsuWO00oGtodczQ6A+xoM7x
rKmAe7HqyyUBhXRzVpRbvBj6f47JqGw74OcpnsJIqO0i4LW+hzTXcn9UIF3pQHIE
rFMtYHswhbSgfkPp5Mkqu

cdist_7.0.0-3_source.changes ACCEPTED into unstable

2023-09-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2023 16:22:40 +0200
Source: cdist
Architecture: source
Version: 7.0.0-3
Distribution: unstable
Urgency: high
Maintainer: Debian QA Group 
Changed-By: Axel Beckert 
Closes: 1052879
Changes:
 cdist (7.0.0-3) unstable; urgency=high
 .
   * QA upload.
   * debian/rules: Fix jdupes invocation wrt. --linksoft → --link-soft
 option renaming. (Closes: #1052879)
Checksums-Sha1:
 9c2a56a31b8b5ad162e45c30fb4a816057b81c23 1994 cdist_7.0.0-3.dsc
 d18fc0941c3982eae4cad32bd1e7173e1bdc22f2 7788 cdist_7.0.0-3.debian.tar.xz
 ccca1cd0870aac663ec1d792f2ccab2d0c6ee8d2 8275 cdist_7.0.0-3_source.buildinfo
Checksums-Sha256:
 4a19538351196d72dce1bf92e8e4e79f36832f53dd41d5ce56ca887616642991 1994 
cdist_7.0.0-3.dsc
 d2887b2ec43da4efe5d5ad502077c82ebab066c95d7fb05ce383ad10789a4e79 7788 
cdist_7.0.0-3.debian.tar.xz
 9b7e1dba1548e0c98a5b782380eae0ebc745ae50627c2e93baa5894f9a615d6a 8275 
cdist_7.0.0-3_source.buildinfo
Files:
 e3a2f1ade9ff07c4b18bc6da49b4518a 1994 admin optional cdist_7.0.0-3.dsc
 07e9260fe741ca5b6db45e1f7626460b 7788 admin optional 
cdist_7.0.0-3.debian.tar.xz
 bfcfa4d10eafe9cfc2523a133e7efe00 8275 admin optional 
cdist_7.0.0-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEERoyJeTtCmBnp12Ema+Zjx1o1yXUFAmUS6dAACgkQa+Zjx1o1
yXWbHA/+J6armbYfRM30Zs9lbqM49OEqz5SLYriNimqGB13LUAry0FqJgPcapVnA
ZN5ZfCnqxRmW+zqQHO8ufJoAxEXU4w435EDp1VTl4XrBJfOez+UTH8iWcL4Zl+2E
uSoLwEZZozPVk0cyqYpTzMbJG4hN9uQtoDFJiHpJ42rl9h8elxyVXCa1ganS7ADH
AE1XqTLCW4mCt6Os5XjlsGTiUOGYlGOKaU6GTbdup7LQlNZM0u2v77hYMsdGeJvn
Y9rtQa1kQxqHA0/QdarU9ZgYHEH7ptcUSCmIIlw97qm9pzwajifloM442IEGhIel
B7MuTehv+Zp/k0UsCPV+oiaG9g5kdMzjGJcQzbJpzjtq19zs9YRPoHaquv8etAmQ
9PJxTsKYtEmlCFEIKCgfev64X6lP/scxebTpEkjgu+3ztvkpwoQFU4wCx6OR0OFQ
ZGJHjp1TknPByhXrk7Zj0roqUTepWD4wbi/MU+2eOmsuWO00oGtodczQ6A+xoM7x
rKmAe7HqyyUBhXRzVpRbvBj6f47JqGw74OcpnsJIqO0i4LW+hzTXcn9UIF3pQHIE
rFMtYHswhbSgfkPp5MkquE6fxE6kW+Gen59gvP/AlSs0rJZ9rSFr2Qm6hFFIdZEI
CM0Q5OKebca4wvDKbPL02cDXCsmkSO2F+/OoNB6Y9PJD/Rtg3Hg=
=VXsW
-END PGP SIGNATURE-



Processing of barcode_0.99-7_source.changes

2023-09-26 Thread Debian FTP Masters
barcode_0.99-7_source.changes uploaded successfully to localhost
along with the files:
  barcode_0.99-7.dsc
  barcode_0.99.orig.tar.xz
  barcode_0.99.orig.tar.xz.asc
  barcode_0.99-7.debian.tar.xz
  barcode_0.99-7_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



barcode_0.99-7_source.changes ACCEPTED into unstable

2023-09-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2023 10:53:59 -0400
Source: barcode
Architecture: source
Version: 0.99-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Boyuan Yang 
Changes:
 barcode (0.99-7) unstable; urgency=medium
 .
   * QA upload.
   * Orphan the package.
   * debian/control: Set package maintainer to Debian QA Group.
Checksums-Sha1:
 3f121a1d3122eac91aacbed0dc39c8f33d6189b7 2081 barcode_0.99-7.dsc
 a6283a844ebfdccc9458256e5e6db15760348384 586028 barcode_0.99.orig.tar.xz
 a2fe2d40ae385e3893abba6dea18835d65659148 163 barcode_0.99.orig.tar.xz.asc
 1610d8445cd5985ff32683f2a4c86c12f7c19147 11808 barcode_0.99-7.debian.tar.xz
 f1b0ef4874e7f8120af8865f79d7d05185e99119 6255 barcode_0.99-7_amd64.buildinfo
Checksums-Sha256:
 f2d37608d6f0576ccf14c26b6a544effd921ad3465d406dad0351a22e867baf9 2081 
barcode_0.99-7.dsc
 e87ecf6421573e17ce35879db8328617795258650831affd025fba42f155cdc6 586028 
barcode_0.99.orig.tar.xz
 45c539e8a349fd38d1c3fa4e894702d73338811bff71f01335231943942887e4 163 
barcode_0.99.orig.tar.xz.asc
 99ae86134f946a88f7ab727a521708e8dfb7c4278735fb13b0cfe73fd82117ac 11808 
barcode_0.99-7.debian.tar.xz
 bffeb1d769b6b64f29f29ce8fe11fb550141c3e7bf3fa3d2046fb38f5105b64c 6255 
barcode_0.99-7_amd64.buildinfo
Files:
 091d2dee19e3f062ba2e83c20f094e41 2081 graphics optional barcode_0.99-7.dsc
 cdc504ee1020e27fbfeebcb0718de054 586028 graphics optional 
barcode_0.99.orig.tar.xz
 dfe58b3eadb8e89c42136cdd734727d6 163 graphics optional 
barcode_0.99.orig.tar.xz.asc
 9f47e7f2a630c3abadfb2035578d0196 11808 graphics optional 
barcode_0.99-7.debian.tar.xz
 149312207762d9f7cb0942c58259c1b8 6255 graphics optional 
barcode_0.99-7_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAmUS8a0ACgkQwpPntGGC
Ws4J9A//ejRqsR9HtNyZvZayYVf8JW2NvljVSzAvqDCbqrHcs1XRjQittpbw+bmu
w/zzr+kgPtIdQnEAqwc4BNeVT41LFopCwVac6NJUfX5oCsT6FFXw1DN3DnqdXgz6
ku5pjBSmGjrEYvswYYYji7ipHXMPbtzgwJ0zgvBvqShV2PdEqgb5RxxQPtN+T/DN
E2F4kIN3eCBzp3g1jGGWAfjFgM68a3P752/i9W0S31+hUZjexBSTPPeBShVaAe4s
lOyCSB9wBpBL9nHYjgYlrIOpGzm/V8OVUHQoDIgpey/8qFSR9Autn2cKyEgJSY1Q
7iiyOpTLhdyDLMxSmTyuNA4FABoo873d1EtAsKZqZlNa5wjA7GyK7Dba77PtrEO0
JN5dEp+hupcKpH2EmiLOYcQVbuBYu2weSbu9WCe4lBtIKoeGl2mrwljkbjVkn7GQ
mNtzPD9wUlMm90sVm/yeLgqUXFn4o2dzU5zrYH/Mpp45Hj0to8RTU8VpU5wlM2Yg
gw8oH/rKwblejrFbwKWhphUIwr4LQiUJXRyzFzSzbC43c1NGMFN5Xmt7Qvz/iMMk
lY2jv71ILfSmraN0VdBSdNcUr2Ozn5ouSJ3seHZCPORPjczau51J9Qd6Fwgob4hu
N5/NOl3YZiMReMidAEzGZpUW0DXRNoZVJg8cV6GcnqRepuaQr70=
=eutN
-END PGP SIGNATURE-



Processing of easyssh_1.7.9-4_source.changes

2023-09-26 Thread Debian FTP Masters
easyssh_1.7.9-4_source.changes uploaded successfully to localhost
along with the files:
  easyssh_1.7.9-4.dsc
  easyssh_1.7.9.orig.tar.gz
  easyssh_1.7.9-4.debian.tar.xz
  easyssh_1.7.9-4_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Bug#1052986: apt-listchanges: When a source package is renamed, the entire old changelog is re-displayed

2023-09-26 Thread Stefano Rivera
Package: apt-listchanges
Version: 3.27
Severity: normal

As discussed in #1052697.

When a source package is renamed (e.g. gcc-* and python3.*), often we
carry across the old changelog. apt-listchanges then includes the full
history in its list of new changelog entries.

In these particular cases, the old history maintains the old source
package name and version, so it should be possible to check the database
and see that these changelog entries have been displayed.

One can argue that it's correct to re-display the full history, but this
has the effect of drowning out other changelog entries. When I hit these
situation, I just mark-as-read and continue. If there was anything
important in other changelogs, I'd miss it.

Stefano

-- Package-specific info:
==> /etc/apt/listchanges.conf <==
[apt]
frontend=pager
which=both
email_address=root
email_format=text
confirm=true
headers=false
reverse=false
save_seen=/var/lib/apt/listchanges.db
no_network=false


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

Kernel: Linux 6.4.0-2-amd64 (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_WARN
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages apt-listchanges depends on:
ii  apt2.7.3
ii  debconf [debconf-2.0]  1.5.82
ii  python33.11.4-5+b1
ii  python3-apt2.6.0
ii  python3-debconf1.5.82
ii  sensible-utils 0.0.20
ii  ucf3.0043+nmu1

apt-listchanges recommends no packages.

Versions of packages apt-listchanges suggests:
ii  chromium [www-browser]116.0.5845.140-1
ii  firefox [www-browser] 117.0.1-1
ii  gnome-terminal [x-terminal-emulator]  3.50.0-1
ii  lynx [www-browser]2.9.0dev.12-1
ii  mate-terminal [x-terminal-emulator]   1.26.1-1
ii  postfix [mail-transport-agent]3.8.2-1
ii  python3-gi3.46.0-1
ii  w3m [www-browser] 0.5.3+git20230121-2
ii  xterm [x-terminal-emulator]   384-1

-- debconf information excluded



easyssh_1.7.9-4_source.changes ACCEPTED into unstable

2023-09-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2023 11:05:57 -0400
Source: easyssh
Architecture: source
Version: 1.7.9-4
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Boyuan Yang 
Changes:
 easyssh (1.7.9-4) unstable; urgency=medium
 .
   * QA upload.
   * Orphan the package.
   * debian/control: Set maintainer to Debian QA Group.
   * debian/patches/backport/: Backport some upstream fixes:
 + 0001-AppData-Add-launchable-tag.patch
 + 0002-SourceListView-Fix-segfault-when-adding-account.patch
Checksums-Sha1:
 e0c55a57208fea03af2c20fc64fd78ab3c70a436 1937 easyssh_1.7.9-4.dsc
 0a3c228731ed30f975327858d4f2a601723e459f 282947 easyssh_1.7.9.orig.tar.gz
 5d6fd75798344b19c789c4e0b524ae00e01032bc 3656 easyssh_1.7.9-4.debian.tar.xz
 48414978114331e02e1b1856acd8ce8997c855a5 15419 easyssh_1.7.9-4_amd64.buildinfo
Checksums-Sha256:
 0e329b6aa96bef5112059579cfa6f12fa839cd05c4750dfc4eb11f2f6a974bc6 1937 
easyssh_1.7.9-4.dsc
 bf3145c141362997c643a9f9a22168292cee7a0a329ed018e826a65e1e8d087c 282947 
easyssh_1.7.9.orig.tar.gz
 ee71a229695c6553137499871353614af73b1ce34043cd5fed2ae6ef7b978b7e 3656 
easyssh_1.7.9-4.debian.tar.xz
 e3cd5e279bbd0ecbd0ebe715cf636bbc05162d110facf6f66f16a571977d58f7 15419 
easyssh_1.7.9-4_amd64.buildinfo
Files:
 7250cc950e1fce8c453cc98d3daf6e80 1937 net optional easyssh_1.7.9-4.dsc
 eb176e774d184c49b2cd19cc866d9f75 282947 net optional easyssh_1.7.9.orig.tar.gz
 5ab586b0aa83fac70ad36a00ef2ecfc0 3656 net optional 
easyssh_1.7.9-4.debian.tar.xz
 910bf407926a53cd52ded1d61abe3ff9 15419 net optional 
easyssh_1.7.9-4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAmUS9EcACgkQwpPntGGC
Ws7OEg/+NTdcOvDAQPd4JmJbMF+DspOM9jfnupbbmSjvj0HSSZMeGYbXAT/la3dd
aDFXj8gmib0fafkRtRPFR3PVaB1A/Q4tpBrN68MbUw+ArdZjSLGeibbIwi3O9uN0
+VKX3BbAx5a+k/3s0trhCZTsPwJ1q7vb+bzglWJxtZz5LSAhsz0MDHnFi2FjRDQp
ab7MSxnVfCrsZWdSJKUHtF+6XVvp7DMZGTrPogVpuUJ1ll3OAK/GWMgwJChXNtuT
eXP0WChbnUgcaF49pMdaYNgQ19PdrWRZUvFI6HVcwc7AijoX308lvLrPf3xvgwyY
/e3G6wMA5RkTAZ1Qptru3dcQ411IEUMN/gGCzggkhBQeIah017zkVu7+4taoKE8m
sDTi27+P92zOY9hhMKXFbstnQlQHx5Ousyo9wF0yJ3+lAm9BtZs2OJu1pTO6G2VQ
WFKPnC2J3FmkXVJRPzpXBRCm4ElYFJqHNoCJiU2OxAWDwp68ItEO1Lrt+PwDj5La
IB28Xa4Q9ctWQAi/qYHFvjA/WFIczIUy313jyo5Fcfs9tquPRIKA1cMiXt1LylRN
I6iIPd2gL0KD78qOCl8V8eBleTeQmsXmKO/9D7om0Qg6jLlj8K5JeDCLC3rV+P4b
uh9ZHahPYBIA41mO8aOS066k6YnYllROAiHl0K71M2NnsRHPyWg=
=bqRW
-END PGP SIGNATURE-



Bug#1045799: marked as done (rox: Fails to build source after successful build)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #1045799,
regarding rox: Fails to build source after successful build
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1045799: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1045799
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rox
Version: 1:2.11-7
Severity: minor
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-sab-20230813 ftbfs-source-after-build
User: debian...@lists.debian.org
Usertags: qa-doublebuild

Hi,

This package fails to build a source package after a successful build
(dpkg-buildpackage ; dpkg-buildpackage -S).

This is probably a clear violation of Debian Policy section 4.9 (clean target),
but this is filed as severity:minor for now, because a discussion on
debian-devel showed that we might want to revisit the requirement of a working
'clean' target.

More information about this class of issues, included common problems and
solutions, is available at
https://wiki.debian.org/qa.debian.org/FTBFS/SourceAfterBuild

Relevant part of the build log:
> cd /<> && runuser -u user42 -- dpkg-buildpackage --sanitize-env 
> -us -uc -rfakeroot -S
> 
> 
> dpkg-buildpackage: info: source package rox
> dpkg-buildpackage: info: source version 1:2.11-7
> dpkg-buildpackage: info: source distribution unstable
> dpkg-buildpackage: info: source changed by Jelmer Vernooij 
>  dpkg-source --before-build .
>  fakeroot debian/rules clean
> dh_testdir
> dh_testroot
> ( cd /<>/ROX-Filer && rm -f ROX-Filer ROX-Filer.dbg && rm -rf 
> build )
> rm -f build-stamp configure-stamp
> rm -rf /<>/debian/rox-filer
> dh_clean
>  dpkg-source -b .
> dpkg-source: info: using source format '3.0 (quilt)'
> dpkg-source: info: building rox using existing ./rox_2.11.orig.tar.gz
> dpkg-source: info: using patch list from debian/patches/series
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/cs/LC_MESSAGES/ROX-Filer.mo: binary file contents changed
> dpkg-source: error: add ROX-Filer/Messages/cs/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/da/LC_MESSAGES/ROX-Filer.mo: binary file contents changed
> dpkg-source: error: add ROX-Filer/Messages/da/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/de/LC_MESSAGES/ROX-Filer.mo: binary file contents changed
> dpkg-source: error: add ROX-Filer/Messages/de/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/es/LC_MESSAGES/ROX-Filer.mo: binary file contents changed
> dpkg-source: error: add ROX-Filer/Messages/es/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/et_EE/LC_MESSAGES/ROX-Filer.mo: binary file contents 
> changed
> dpkg-source: error: add ROX-Filer/Messages/et_EE/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/eu/LC_MESSAGES/ROX-Filer.mo: binary file contents changed
> dpkg-source: error: add ROX-Filer/Messages/eu/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/fi/LC_MESSAGES/ROX-Filer.mo: binary file contents changed
> dpkg-source: error: add ROX-Filer/Messages/fi/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/fr/LC_MESSAGES/ROX-Filer.mo: binary file contents changed
> dpkg-source: error: add ROX-Filer/Messages/fr/LC_MESSAGES/ROX-Filer.mo in 
> debian/source/include-binaries if you want to store the modified binary in 
> the debian tarball
> dpkg-source: error: cannot represent change to 
> ROX-Filer/Messages/gl/LC_MESSAGES

Bug#297111: marked as done (rox-filer: cant use midle click in bookmarks: cant open bm in new window)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #297111,
regarding rox-filer: cant use midle click in bookmarks: cant open bm in new 
window
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
297111: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=297111
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.2.0-2
Severity: wishlist


Please forward to upstream the following wish:

when use midle click on folders or the UP arrow, it opens parent or daughter 
folder in new vindow.

Intuitively, I used midle clic on bookmarks, and it did nothing, when I was 
expecting rox to open the bookmarked folder in a new window ...
 other wise the process to open a bm in seperate window is quiet long:
 either open parent in new window, then bm, or create a new window using right 
clic, than bm ...

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k7
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_GB)

Versions of packages rox-filer depends on:
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libglib2.0-0 2.6.2-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-3 The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libpango1.0-01.8.0-3 Layout and rendering of internatio
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxml2  2.6.16-3GNOME XML library
ii  shared-mime-info 0.15-1  FreeDesktop.org shared MIME databa
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#299135: marked as done (rox-filer: use debians mime tool)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #299135,
regarding rox-filer: use debians mime tool
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
299135: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=299135
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.2.0-2
Severity: wishlist

Hi,

the package mime-support provides some commands to select a program for a
file upon its mime type. Can you use this package. Then there is no need
to set up the apps for the filetypes by hand.

Regards, Joerg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rox-filer depends on:
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libglib2.0-0 2.6.3-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-4 The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-12 Inter-Client Exchange library
ii  libpango1.0-01.8.0-3 Layout and rendering of internatio
ii  libsm6   4.3.0.dfsg.1-12 X Window System Session Management
ii  libx11-6 4.3.0.dfsg.1-12 X Window System protocol client li
ii  libxml2  2.6.16-3GNOME XML library
ii  shared-mime-info 0.15-1  FreeDesktop.org shared MIME databa
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#299136: marked as done (rox-filer: provide a global conf)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #299136,
regarding rox-filer: provide a global conf
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
299136: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=299136
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.2.0-2
Severity: wishlist

Hi again,

I didn't find a global config file for rox, so I assume there isn't one.
Please can you add such alike to make the life of an admin of a multi
user system easier.

Regards, Joerg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rox-filer depends on:
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libglib2.0-0 2.6.3-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-4 The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-12 Inter-Client Exchange library
ii  libpango1.0-01.8.0-3 Layout and rendering of internatio
ii  libsm6   4.3.0.dfsg.1-12 X Window System Session Management
ii  libx11-6 4.3.0.dfsg.1-12 X Window System protocol client li
ii  libxml2  2.6.16-3GNOME XML library
ii  shared-mime-info 0.15-1  FreeDesktop.org shared MIME databa
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#325333: marked as done (rox-filer: Does not run commands in the current directory when associating a file type toa command)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #325333,
regarding rox-filer: Does not run commands in the current directory when 
associating a file type toa command
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
325333: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=325333
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.2.0-2
Severity: normal

This is best explained with an example, so here goes:

I have set .tar.bz2 files to be run with tar -xvjf "$@". However, when I 
then double click on a .tar.bz2 file, the files in the archive are 
extracted to my home directory, and not to the directory the archive is 
in. This works ok when selecting a file, pressing ! and entering tar 
-xvjf "$@", but not when I set such a file to be run with the same 
command. The effect is even worse with .zip files (set to be run with 
unzip "$@"), because they most often don't extract to a subdir, so the 
contents will be scattered all over my home dir. What I'd like to be able to 
do is to create a new directory, move the .zip file into it and double 
click on it to extract it into that directory. I have compiled the 
latest upstream, 2.3, and it has the same problem.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.1.custom.1.1
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)

Versions of packages rox-filer depends on:
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libc6 2.3.5-5GNU C Library: Shared libraries an
ii  libglib2.0-0  2.6.5-1The GLib library of C routines
ii  libgtk2.0-0   2.6.8-1The GTK+ graphical user interface 
ii  libice6   6.8.2-7Inter-Client Exchange library
ii  libpango1.0-0 1.8.2-1Layout and rendering of internatio
ii  libsm66.8.2-7X Window System Session Management
ii  libx11-6  6.8.2-7X Window System protocol client li
ii  libxml2   2.6.20-1   GNOME XML library
ii  shared-mime-info  0.16-3 FreeDesktop.org shared MIME databa
ii  xlibs 6.8.2-7X Window System client libraries m
ii  zlib1g1:1.2.2-4  compression library - runtime

rox-filer recommends no packages.

--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#412481: marked as done (menu-method script)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #412481,
regarding menu-method script
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
412481: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=412481
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: rox-filer
Version: 2.5-1

This package does not have a menu-method to generate menus. The
taskbar (pinboard) has a default Apps that links to /usr/share. I've
made a script (for install-menu) that generates a debian menu that
Apps link should point at.

To test this, as a normal user, put this script in ~/.menu-methods and
run update-menus. The menu is generated. Run "rox -d
~/.config/rox.sourceforge.net/menu" to see it.

--- script begin ---
#!/usr/bin/install-menu

!include lang.h
!include menu.h

compat="menu-2"

outputencoding="UTF-8";
outputlanguage="C";

function SafeDir($my_dir) = replace($my_dir, ".", "_");

function OneDir($my_dir) = replace($my_dir, "/", "_");

function Path() = prefix() "/" SafeDir($basesection) "/"
OneDir(SafeDir($title));

function NoEscOrQuote($str) = replace(replace($str, "\\", "_"), "\"", "_");

function Arg($my_path) = " \"" NoEscOrQuote($my_path) "\" ";

function MakeEntry($cmd) =
   shell("mkdir -p" Arg(Path()) ">/dev/null 2>&1")
   shell("test -f " Arg($icon) "&& cp" Arg($icon) Arg(Path()
"/.DirIcon") ">/dev/null 2>&1")
   shell("/bin/echo \"#!/bin/sh\n\"" Arg("exec " $cmd) ">"
Arg(Path() "/AppRun") "2>/dev/null")
   shell("chmod 755" Arg(Path() "/AppRun") ">/dev/null 2>&1")
   ;

supported ;
   x11 = MakeEntry($command);
   text = MakeEntry(term());
endsupported ;

genmenu = ;

userprefix = ".config/rox.sourceforge.net/menu";

--- script end ---

--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#408180: marked as done (shared-mime-info: Doesn't seem like magic actually matches correctly)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #408180,
regarding shared-mime-info: Doesn't seem like magic actually matches correctly
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
408180: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=408180
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: shared-mime-info
Version: 0.19-2
Severity: normal


Hi

I tried to set up a rule to recognise Vim sessions:


http://www.freedesktop.org/standards/shared-mime-info";>
   
 Vim session
 Vim sesjon
 
 
 
 
   


Problem is that it doesn't seem like it matters at all what I put in the
match unless I remove the glob pattern. Is this a bug or feature?


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

Versions of packages shared-mime-info depends on:
ii  libc6  2.3.6.ds1-10  GNU C Library: Shared libraries
ii  libglib2.0-0   2.12.6-2  The GLib library of C routines
ii  libxml22.6.27.dfsg-1 GNOME XML library

shared-mime-info recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#417615: marked as done (rox-filer: Rox-filer doesn't show correct mime type)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #417615,
regarding rox-filer: Rox-filer doesn't show correct mime type
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
417615: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=417615
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.5-1
Severity: normal


Rox-filer doesn't check the files for the magic filter. It only relay on
glob filtering it seems. This way all ogg vorbis sound files are
recognized as ogg theora video files. This is a very annoying bug as it
messes up run actions and icons etc...

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

Versions of packages rox-filer depends on:
ii  libatk1.0-01.12.4-3  The ATK accessibility toolkit
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libcairo2  1.2.4-4   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libglib2.0-0   2.12.6-2  The GLib library of C routines
ii  libgtk2.0-02.8.20-7  The GTK+ graphical user interface 
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.14.8-5  Layout and rendering of internatio
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libx11-6   2:1.0.3-6 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  shared-mime-info   0.19-2FreeDesktop.org shared MIME databa

rox-filer recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#380664: marked as done (rox-filer: pinboard click commands)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #380664,
regarding rox-filer: pinboard click commands
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
380664: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380664
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.4-1
Severity: wishlist
Forwarded: 
http://sourceforge.net/tracker/index.php?func=detail&aid=1531890&group_id=7023&atid=307023

Pinboard click commands are useful in situations when enabling the
forward-to-WM option isn't practical due to the WM not doing anything useful
with the information. Here, I'm using it to have right-click open the XFCE
menu via a lightly-hacked xfce4-menu-popup (since I happen to prefer
ROX-Filer over Thunar).

It may be worth tweaking the patch to provide a sensible default command to
launch a standalone popup menu program; if so, rox-filer should at least
recommend that package.

(The patch is tested with rox-filer 2.5.)

-- 
| Darren Salt| linux or ds at  | nr. Ashington, | Toon
| RISC OS, Linux | youmustbejoking,demon,co,uk | Northumberland | Army
| + Output less CO2 => avoid massive flooding.TIME IS RUNNING OUT *FAST*.

"There's nothing you can do that can't be done." - John Lennon.
diff -urNad rox-filer-2.5~/ROX-Filer/Options.xml 
rox-filer-2.5/ROX-Filer/Options.xml
--- rox-filer-2.5~/ROX-Filer/Options.xml2006-07-31 17:19:55.0 
+0100
+++ rox-filer-2.5/ROX-Filer/Options.xml 2006-07-31 17:20:16.945598165 +0100
@@ -370,6 +370,11 @@
   Blackbox, 
Fluxbox and similar window managers do not yet work well with the ROX-Filer 
pinboard. This option enables some workarounds. These window managers are 
expected to change their behaviour in new versions so that this isn't 
necessary.
   Disable this 
option if the panel stays above other windows against your wishes. Requires a 
restart to take effect.
 
+
+  The command to be executed when you middle-click on the 
pinboard or a pinboard icon (no distinction is made).
+  The command to be executed when you right-click on the 
pinboard.
+  If a command is present, then the button's normal 
behaviour is overridden.
+ 
 
   Some older 
applications don't support XDND fully and may need to have this option turned 
on. Use this if dragging files to an application shows a + sign on the pointer 
but the drop doesn't work.
 
diff -urNad rox-filer-2.5~/ROX-Filer/src/bind.c 
rox-filer-2.5/ROX-Filer/src/bind.c
--- rox-filer-2.5~/ROX-Filer/src/bind.c 2006-07-31 17:19:55.0 +0100
+++ rox-filer-2.5/ROX-Filer/src/bind.c  2006-07-31 17:19:58.285335695 +0100
@@ -63,6 +63,8 @@
gboolean release = event->type == GDK_BUTTON_RELEASE;
gboolean select = event->button == 1; /* (old RISC OS names) */
gboolean adjust = event->button != 1;
+   gboolean pinboard = context == BIND_PINBOARD_ICON ||
+ context == BIND_PINBOARD;
 
gboolean dclick = event->type == GDK_2BUTTON_PRESS;
gboolean dclick_mode =
@@ -70,14 +72,17 @@
(context == BIND_PINBOARD_ICON && !o_single_pinboard.int_value);
 
if (b > 3)
-   return ACT_IGNORE;
+   return (pinboard && press) ? ACT_PIN_USER_DEFINED : ACT_IGNORE;
 
-   if (context == BIND_PINBOARD_ICON || context == BIND_PINBOARD)
+   if (pinboard)
menu_button = 3;/* Must work with window manager */
 
if (b == menu_button)
return press ? ACT_POPUP_MENU : ACT_IGNORE;
 
+   if (b == 2 && pinboard)
+   return press ? ACT_PIN_USER_DEFINED : ACT_IGNORE;
+
if (item && dclick && dclick_mode)
return shift ? ACT_EDIT_ITEM : ACT_OPEN_ITEM;
 
diff -urNad rox-filer-2.5~/ROX-Filer/src/bind.h 
rox-filer-2.5/ROX-Filer/src/bind.h
--- rox-filer-2.5~/ROX-Filer/src/bind.h 2006-07-31 17:19:55.0 +0100
+++ rox-filer-2.5/ROX-Filer/src/bind.h  2006-07-31 17:19:58.285335695 +0100
@@ -34,6 +34,7 @@
ACT_LASSO_CLEAR,/* Clear selection, and start lasso drag */
ACT_LASSO_MODIFY,   /* Start lasso drag without clearing */
ACT_RESIZE, /* Auto-resize the filer window */
+   ACT_PIN_USER_DEFINED,   /* User-defined action on the pinboard */
 } BindAction;
 
 void bind_init(void);
diff -urNad rox-filer-2.5~/ROX-Filer/src/pinboard.c 
rox-filer-2.5/ROX-Filer/src/pinboard.c
--- rox-filer-2.5~/ROX-Filer/src/

Bug#501528: marked as done (rox-filer: Misinterpretation of the Inherits index.theme parameter results in showing icons from wrong theme.)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #501528,
regarding rox-filer: Misinterpretation of the Inherits index.theme parameter 
results in showing icons from wrong theme.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
501528: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501528
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.8-1
Severity: normal

The bug appears when icon theme that has Inherits parameter in it's
index.theme has been chosen. Instead of checking each possible name in
the selected theme before failing back to the themes, listed in the
Inherits line rox searches each possible name in all inherited themes
before starting to check for the next name. Because of this sometimes
icons from another theme are displayed, even if the selected theme has
icons for the same filetype.

An easy way to reproduce the bug is to install Tango and XFCE icon
themes, then set rox to use Rodent icons (XFCE theme). For numerous
filetypes, including folders, icons from Tango theme are displayed
instead of XFCE ones. Commenting the Inherits line in
/usr/share/icons/Rodent/index.theme allows to see icons from the
selected theme in rox but icons from Tango are not available as
fail-back anymore.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1000, 'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-plastic.nb
Locale: LANG=bg_BG.CP1251, LC_CTYPE=bg_BG.CP1251 (charmap=CP1251)
(ignored: LC_ALL set to bg_BG.CP1251)
Shell: /bin/sh linked to /bin/bash

Versions of packages rox-filer depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.18.1-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.20.5-2  Layout and rendering of internatio
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxml22.6.32.dfsg-4 GNOME XML library
ii  shared-mime-info   0.30-2FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.36-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  4.26-1 Determines file type using "magic"
ii  menu  2.1.40 generates programs menu for all me

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#415108: marked as done (rox-filer: development files)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #415108,
regarding rox-filer: development files
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
415108: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=415108
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.5-1
Severity: wishlist

Looking at the upstream package website, rox seems to have its own
python and gtk based API for applet development.  This doesn't seem to
be in the Debian package.  Please either include it in the rox-filer
package or perhaps better create a new binary package in devel section
with those files.  Thanks.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-11custom200703020153
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages rox-filer depends on:
ii  libatk1.0-01.12.4-2  The ATK accessibility toolkit
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libcairo2  1.2.4-4   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libgtk2.0-02.8.20-7  The GTK+ graphical user interface 
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.14.8-5  Layout and rendering of internatio
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libx11-6   2:1.0.3-6 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  shared-mime-info   0.19-2FreeDesktop.org shared MIME databa

rox-filer recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#451621: marked as done (rox-filer: when changing directories the box goes partially off-screen - have to drag it back on-screen)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #451621,
regarding rox-filer: when changing directories the box goes partially 
off-screen - have to drag it back on-screen
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
451621: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=451621
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.5-1
Severity: normal



when changing directories the box goes partially off-screen - have to drag it 
back on-screen
System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-2-686 (SMP w/1 CPU core)
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 rox-filer depends on:
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libc6  2.6.1-1+b1GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libglib2.0-0   2.14.1-5  The GLib library of C routines
ii  libgtk2.0-02.12.1-1  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  shared-mime-info   0.22-2FreeDesktop.org shared MIME databa

rox-filer recommends no packages.

-- debconf-show failed


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#495377: marked as done (rox-filer: Allow an optional menubar to be displayed)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #495377,
regarding rox-filer: Allow an optional menubar to be displayed
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
495377: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=495377
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.7.1-1
Severity: wishlist


There is currently no option to display a menubar instead of a toolbar. 
This proposal adds additional options to the toolbar view types to 
provide a menubar:

Rightclick: Background Window, Options, Filer windows, Tools/Minibuffer, 
Toolbar type: Menubar only

Rightclick: Background Window, Options, Filer windows, Tools/Minibuffer, 
Toolbar type: Menubar and Icons


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

Kernel: Linux 2.6.25-2-486
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages rox-filer depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.4-2  The GLib library of C routines
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.20.5-1  Layout and rendering of internatio
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  shared-mime-info   0.30-2FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.34-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  4.25-1 Determines file type using "magic"
ii  menu  2.1.39 generates programs menu for all me

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#540217: marked as done (rox-filer: A possible missing dependency)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #540217,
regarding rox-filer: A possible missing dependency
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
540217: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540217
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-1
Severity: normal

At least on lenny, apt-get install rox-filer on a base system results 
in a program that misses icon visualization. This should be checked
on sid and verified again.


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

Kernel: Linux 2.6.30-1-686 (SMP w/1 CPU core)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages rox-filer depends on:
ii  libatk1.0-0 1.26.0-1 The ATK accessibility toolkit
ii  libc6   2.9-23   GNU C Library: Shared libraries
ii  libcairo2   1.8.8-2  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.6.0-4  generic font configuration library
ii  libfreetype62.3.9-5  FreeType 2 font engine, shared lib
ii  libglade2-0 1:2.6.4-1library to load .glade files at ru
ii  libglib2.0-02.20.4-1 The GLib library of C routines
ii  libgtk2.0-0 2.16.5-1 The GTK+ graphical user interface 
ii  libice6 2:1.0.5-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.24.5-1 Layout and rendering of internatio
ii  libsm6  2:1.1.0-2X11 Session Management library
ii  libx11-62:1.2.2-1X11 client-side library
ii  libxml2 2.7.3.dfsg-2 GNOME XML library
ii  shared-mime-info0.60-2   FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.41-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  5.03-1 Determines file type using "magic"
ii  menu  2.1.41 generates programs menu for all me

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#551177: marked as done (rox-filer needs horizontally-scrolled windows if icons are listed vertically)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #551177,
regarding rox-filer needs horizontally-scrolled windows if icons are listed 
vertically
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
551177: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551177
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.7.1-1
Severity: wishlist

If icons are listed vertically (Options -> Display -> Order
(small|large) icons vertically) the window is still scrolled vertically,
meaning that a single column of icons is longer than the height of the
window. In effect this means icons are listed horizontally and
vertically at the same time.

When icons are ordered vertically, the scrollbar should be at the bottom
rather than the right of the window (possibly this should be optional).

Matthew

-- 
I must take issue with the term "a mere child", for it has been my
invariable experience that the company of a mere child is infinitely
preferable to that of a mere adult.
   --  Fran Lebowitz


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#554815: marked as done (iceweasel: drag n drop not working under squeeze)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #554815,
regarding iceweasel: drag n drop not working under squeeze
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
554815: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=554815
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: iceweasel
Version: 3.0.6-1
Severity: normal


Hello the drag n drop from a jpg to rox isnt working; although my konsole is 
installed.
it was working under lenny, but maybe i am missing a package. It would be great 
to have it in preferences, so that we can update drag n drop;
i actually like the idea  : xterm -e wget $0 

Best regards
nice browser
Y.

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
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 iceweasel depends on:
ii  debianutils 2.30 Miscellaneous utilities specific t
ii  fontconfig  2.6.0-3  generic font configuration library
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.2-1.1  GCC support library
ii  libglib2.0-02.16.6-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface 
ii  libnspr4-0d 4.7.1-4  NetScape Portable Runtime Library
ii  libstdc++6  4.3.2-1.1The GNU Standard C++ Library v3
ii  procps  1:3.2.7-11   /proc file system utilities
ii  psmisc  22.6-1   Utilities that use the proc filesy
ii  xulrunner-1.9   1.9.0.11-0lenny1 XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  latex-xft-fonts 0.1-8Xft-compatible versions of some La
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
pn  mozplugger (no description available)
pn  ttf-mathematica(no description available)
pn  xfonts-mathml  (no description available)
pn  xprint (no description available)
ii  xulrunner-1.9-g 1.9.0.11-0lenny1 Support for GNOME in xulrunner app

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#564485: marked as done (rox-filer does not eject/umount in paths with spaces)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #564485,
regarding rox-filer does not eject/umount in paths with spaces
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
564485: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=564485
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: rox-filer
Version: 2.7.1

Rox does not properly escape spaces in passing commands to external 
mount/umount/eject commands specified in Options/Action Windows/Mount 
commands.


Parameters passed on should be either properly escaped or quoted. As it 
is safe to assume only one dir is passed on to either command due to the 
gui's limitations of Eject menu items probably quoting is the easiest to 
solve the issue.


I'm using Debian/GNU Linux 5 (2.6.26-2-686 #1 SMP), ROX-Filer 2.7.1-1.

--

Kind regards,

Alexander Wagner


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#583181: marked as done (rox-filer: open rox, delete the folder, rox quits or crashes)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #583181,
regarding rox-filer: open rox, delete the folder, rox quits or crashes
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
583181: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583181
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-1.1
Severity: important

Rox shall remains whatever. Imagine that I use rox without window manager, have 
you ever thought about that ?

sub-folder shall be the key of this event... I let you guess.

Like very much Rox n use all the time 

Best regards

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

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

Versions of packages rox-filer depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglade2-0 1:2.6.4-1library to load .glade files at ru
ii  libglib2.0-02.24.0-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libice6 2:1.0.6-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  shared-mime-info0.71-1   FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.47-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  5.04-2 Determines file type using "magic"
ii  menu  2.1.43 generates programs menu for all me

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#586010: marked as done (Error in video thumbnails)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #586010,
regarding Error in video thumbnails
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
586010: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=586010
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-1.1
Severity: minor
Tags: upstream

When you try to have video thumbnails, via zeroinstallinjector, an
error spawn, saying ROX-Lib2 is unavaiable. Could it be included in the
correct directory, instead to have to download it manually?

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (800, 'testing'), (700, 'stable'),
(500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64)

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

Versions of packages rox-filer depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility
toolkit ii  libc6   2.11.2-1 Embedded GNU C
Library: Shared lib ii  libcairo2   1.8.10-4 The
Cairo 2D vector graphics libra ii  libfontconfig1
2.8.0-2.1generic font configuration library ii
libfreetype62.3.11-1 FreeType 2 font engine, shared
lib ii  libglade2-0 1:2.6.4-1library to load .glade
files at ru ii  libglib2.0-02.24.1-1 The GLib
library of C routines ii  libgtk2.0-0 2.20.1-1 The
GTK+ graphical user interface ii  libice6
2:1.0.6-1X11 Inter-Client Exchange library ii
libpango1.0-0   1.28.0-1 Layout and rendering of
internatio ii  libsm6  2:1.1.1-1X11 Session
Management library ii  libx11-62:1.3.3-3X11
client-side library ii  libxml2 2.7.7.dfsg-2 GNOME
XML library ii  shared-mime-info0.71-3
FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.48-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  5.04-2 Determines file type using
"magic" ii  menu  2.1.43 generates programs
menu for all me

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#602432: marked as done (Right click menu command uses wrong file in Squeeze)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #602432,
regarding Right click menu command uses wrong file in Squeeze
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
602432: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602432
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-1.1

When you start rox-filer and right click on a file the command of the menu 
(e.g. "Open As Text") opens the selected file. If you then right click on 
another file this file is not selected and the command of the menu still uses 
the old (first) file. 

Rox-filer 2.7.1-1 (Lenny) was fine.

-- 
os.n...@gmx.de 


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#597604: marked as done (rox-filer: Typo in german translation of option double click on background)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #597604,
regarding rox-filer: Typo in german translation of option double click on 
background
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
597604: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=597604
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-1.1
Severity: minor

In the german translation there is a typo in the option window for the
window behaviour. 
Wrong:  "Doppelklick auf Hintegrund ändert Fenstergröße"
Corrected:  "Doppelklick auf Hintergrund ändert Fenstergröße"

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

Kernel: Linux 2.6.32-bpo.5-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages rox-filer depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.2-5 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-5 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-1  FreeType 2 font engine, shared lib
ii  libglade2-0 1:2.6.4-1library to load .glade files at ru
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1+b1  The GTK+ graphical user interface 
ii  libice6 2:1.0.6-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.28.1-1 Layout and rendering of internatio
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxml2 2.7.7.dfsg-4 GNOME XML library
ii  shared-mime-info0.71-3   FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.49-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  5.04-5 Determines file type using "magic"
ii  menu  2.1.43 generates programs menu for all me

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#606484: marked as done (rox-filer: shift now working to select the files)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #606484,
regarding rox-filer: shift now working to select the files
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
606484: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=606484
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-1.1
Severity: important

best regards


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

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
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 rox-filer depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.2-7 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-6 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-2.1FreeType 2 font engine, shared lib
ii  libglade2-0 1:2.6.4-1library to load .glade files at ru
ii  libglib2.0-02.24.2-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-2 The GTK+ graphical user interface 
ii  libice6 2:1.0.6-2X11 Inter-Client Exchange library
ii  libpango1.0-0   1.28.3-1 Layout and rendering of internatio
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxml2 2.7.8.dfsg-1 GNOME XML library
ii  shared-mime-info0.71-3   FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.49-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  5.04-5 Determines file type using "magic"
pn  menu   (no description available)

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#618447: marked as done (Implement icon-size zooming with ctrl+scrollwheel)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #618447,
regarding Implement icon-size zooming with ctrl+scrollwheel
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
618447: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=618447
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-2
Severity: wishlist

It would be nice if rox-filer would implement icon-size increase/decrease by
using ctrl+scrollwheel as a shortcut.

Thanks.


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#636908: marked as done (Add a menubar for improved accessibility)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #636908,
regarding Add a menubar for improved accessibility
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
636908: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=636908
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-1.1
Severity: wishlist
Tags: upstream

It would be useful if the rox-filer utility provided a menubar in addition
to the iconic toolbar. The following accessibility enhancements to the user
interface are suggested as part of this proposal:

* Provide a menubar in addition to the toolbar
* Make menu options operable using a keyboard
* Provide an option to hide the iconic toolbar
* Provide an option to display text below icons in the toolbar

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

Kernel: Linux 2.6.39-2-486
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages rox-filer depends on:
ii  libatk1.0-0 2.0.1-1  ATK accessibility toolkit
ii  libc6   2.13-6   Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-6 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-2.1FreeType 2 font engine, shared lib
ii  libglade2-0 1:2.6.4-1library to load .glade files at ru
ii  libglib2.0-02.28.6-2 GLib library of C routines
ii  libgtk2.0-0 2.24.4-3 The GTK+ graphical user interface 
ii  libice6 2:1.0.6-2X11 Inter-Client Exchange library
ii  libpango1.0-0   1.28.3-6 Layout and rendering of internatio
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libx11-62:1.3.3-4X11 client-side library
ii  libxml2 2.7.8.dfsg-3 GNOME XML library
ii  shared-mime-info0.71-4   FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
pn  zeroinstall-injector   (no description available)

Versions of packages rox-filer suggests:
ii  file  5.04-5 Determines file type using "magic"
ii  menu  2.1.44 generates programs menu for all me

-- debconf-show failed


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#706542: marked as done (rox-filer: extend pinboard icon support to different start parameters)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #706542,
regarding rox-filer: extend pinboard icon support to different start parameters
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
706542: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=706542
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.10-3
Severity: normal

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***

Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Alek 
To: Debian Bug Tracking System 
Subject: rox-filer: extend pinboard icon diversity to differ on used parameters
Message-ID: <2013050628.12351.90216.reportbug@localhost>
X-Mailer: reportbug 6.4.3
Date: Wed, 01 May 2013 13:16:28 +0200
X-Debbugs-Cc: root@127.0.0.1

Package: rox-filer
Version: 2.10-3
Severity: wishlist

Dear Maintainer,

I'd like to see an extended support for rox's pinboard icons, if you
also would think, that following might be usefull:
When setting desktop icon symbols on the pinboard, rox should allow a
different icon not only for every used command, but also see a command
with different parameters as different programs, so that e.g. a link to
'/usr/bin/roxterm' can have two different icons on the desktop for parameters 
'-e
/usr/bin/vim' and for parameters '-e ~/bin/myLittleScript', so that
different shell scripts can be executed in the console and have
different icon on the desktop.

Thx

-- System Information:
Debian Release: 7.0
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages rox-filer depends on:
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-38
ii  libcairo2   1.12.2-3
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglade2-0 1:2.6.4-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libgtk2.0-0 2.24.10-2
ii  libice6 2:1.0.8-2
ii  libpango1.0-0   1.30.0-1
ii  libsm6  2:1.2.1-2
ii  libx11-62:1.5.0-1
ii  libxml2 2.8.0+dfsg1-7
ii  shared-mime-info1.0-1+b1

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  1.13-1

Versions of packages rox-filer suggests:
ii  file  5.11-2
ii  menu  2.1.46

-- no debconf information

-- System Information:
Debian Release: 7.0
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages rox-filer depends on:
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-38
ii  libcairo2   1.12.2-3
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglade2-0 1:2.6.4-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libgtk2.0-0 2.24.10-2
ii  libice6 2:1.0.8-2
ii  libpango1.0-0   1.30.0-1
ii  libsm6  2:1.2.1-2
ii  libx11-62:1.5.0-1
ii  libxml2 2.8.0+dfsg1-7
ii  shared-mime-info1.0-1+b1

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  1.13-1

Versions of packages rox-filer suggests:
ii  file  5.11-2
ii  menu  2.1.46

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the

Bug#796127: marked as done (rox-filer: add rox-filer to the 'x-session-manager' alternatives)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #796127,
regarding rox-filer: add rox-filer to the 'x-session-manager' alternatives
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
796127: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=796127
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 1:2.11-1
Severity: wishlist

Hi!

rox-filer, if launched with the '--rox-session' option, can handle a desktop
session. So it would be nice if we could chose it via 'update-alternatives
--config x-session-manager' without the need to add it to the alternatives
list first.
I guess it would need a new binary 'rox-session' that would call 'rox
--rox-session' (actually a shell script should be okay for this).

Please tell me if you are okay with the idea, and I’ll try to write a patch
adding this feature.
Even if it looks like something nearly trivial, it might take me some time
considering I’ve yet to learn how to write such a patch, but I have enough
free time and motivation to take care of this feature ;)


-- System Information:
Debian Release: stretch/sid
  APT prefers stable-updates
  APT policy: (800, 'stable-updates'), (800, 'unstable'), (800, 'testing'), 
(800, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages rox-filer depends on:
ii  libc6   2.19-19
ii  libgdk-pixbuf2.0-0  2.31.5-1
ii  libglib2.0-02.44.1-1.1
ii  libgtk2.0-0 2.24.28-1
ii  libice6 2:1.0.9-1+b1
ii  libpango-1.0-0  1.36.8-3
ii  libsm6  2:1.2.2-1+b1
ii  libx11-62:1.6.3-1
ii  libxml2 2.9.2+dfsg1-3
ii  shared-mime-info1.3-1

Versions of packages rox-filer recommends:
pn  zeroinstall-injector  

Versions of packages rox-filer suggests:
ii  file  1:5.22+15-2
ii  menu  2.1.47

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#978950: marked as done (rox-filer: black-on-black text with a dark GTK theme)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #978950,
regarding rox-filer: black-on-black text with a dark GTK theme
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
978950: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=978950
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 1:2.11-2
Severity: normal

Hi!
The rox-filer is unusable with a dark theme, as it displays text in black
even if the background is black as well.

It must either obey both foreground and background color from the theme,
or neither.


-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable'), (500, 'stable'), 
(150, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.11.0-rc1-umbar-00014-g59361a5e5d24 (SMP w/6 CPU threads)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages rox-filer depends on:
ii  libc62.31-6
ii  libgdk-pixbuf-2.0-0  2.42.2+dfsg-1
ii  libglib2.0-0 2.66.4-1
ii  libgtk2.0-0  2.24.33-1
ii  libice6  2:1.0.10-1
ii  libpango-1.0-0   1.46.2-3
ii  libsm6   2:1.2.3-1
ii  libx11-6 2:1.6.12-1
ii  libxml2  2.9.10+dfsg-6.3+b1
ii  shared-mime-info 2.0-1

Versions of packages rox-filer recommends:
pn  zeroinstall-injector  

Versions of packages rox-filer suggests:
ii  file  1:5.39-3
pn  menu  

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#967731: marked as done (rox: depends on deprecated GTK 2)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #967731,
regarding rox: depends on deprecated GTK 2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
967731: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=967731
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rox
Severity: normal
User: pkg-gnome-maintain...@lists.alioth.debian.org
Usertags: gtk2 oldlibs
Control: block 947713 by -1

This package has Build-Depends on GTK 2 (libgtk2.0-dev), or produces
binary packages with a Depends on GTK 2.

GTK 2 was superseded by GTK 3 in 2011 (see
). It no longer receives any significant
upstream maintenance, and in particular does not get feature development
for new features like UI scaling on high-pixel-density displays (HiDPI)
and native Wayland support. GTK 3 is in maintenance mode and GTK 4 is
approaching release, so it seems like a good time to be thinking about
minimizing the amount of GTK 2 in the archive.

GTK 2 is used by some important productivity applications like GIMP, and
has also historically been a popular UI toolkit for proprietary software
that we can't change, so perhaps removing GTK 2 from Debian will never be
feasible. However, it has reached the point where a dependency on it is
a bug - not a release-critical bug, and not a bug that can necessarily
be fixed quickly, but a piece of technical debt that maintainers should
be aware of.

A porting guide is provided in the GTK 3 documentation:
https://developer.gnome.org/gtk3/stable/migrating.html

Some libraries (for example libgtkspell0) expose GTK as part of their
API/ABI, in which case removing the deprecated dependency requires
breaking API/ABI. For these libraries, in many cases there will already
be a corresponding GTK 3 version (for example libgtkspell3-3-0), in which
case the GTK 2-based library should probably be deprecated or removed
itself. If there is no GTK 3 equivalent, of a GTK 2-based library,
maintainers should talk to the dependent library's upstream developers
about whether the dependent library should break API/ABI and switch
to GTK 3, or whether the dependent library should itself be deprecated
or removed.

A few packages extend GTK 2 by providing plugins (theme engines, input
methods, etc.) or themes, for example ibus and mate-themes. If these
packages deliberately support GTK 2 even though it is deprecated, and
they also support GTK 3, then it is appropriate to mark this mass-filed
bug as wontfix for now. I have tried to exclude these packages from
the mass-bug-filing, but I probably missed some of them.

Regards,
smcv
--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1039086: marked as done (collada2gltf: Embed yajl)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:28:07 +
with message-id 
and subject line Bug#1051399: Removed package(s) from unstable
has caused the Debian Bug report #1039086,
regarding collada2gltf: Embed yajl
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1039086: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1039086
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: collada2gltf
Severity: serious
Justification: devref

Dear Maintainer,

Your package embed a copy a yajl

Could you:
- build against yajl package
- remove by repacking the code copy in order to avoid in the future accidental
code compilation against the embed code copy

Thanks

Bastien


-- System Information:
Debian Release: trixie/sid
  APT prefers testing-debug
  APT policy: (900, 'testing-debug'), (900, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armel

Kernel: Linux 6.1.0-9-rt-amd64 (SMP w/4 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
--- End Message ---
--- Begin Message ---
Version: 20140924-9+rm

Dear submitter,

as the package collada2gltf has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051399

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1040153: marked as done (collada2gltf: embedded yajl is vulnerable to CVE-2017-16516 and CVE-2022-24795)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:28:07 +
with message-id 
and subject line Bug#1051399: Removed package(s) from unstable
has caused the Debian Bug report #1040153,
regarding collada2gltf: embedded yajl is vulnerable to CVE-2017-16516 and 
CVE-2022-24795
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1040153: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1040153
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: yajl
Severity: important
Tags: security upstream
X-Debbugs-Cc: Debian Security Team 

After preparing the LTS upload of yajl I've seen the following issues in
the upstream github issue tracker:

CVE-2017-16516 [1] portential buffer overread: A JSON file can cause denial of
 service.

CVE-2022-24795 [2] potential integer overflow which can lead to subsequent heap
  memory corruption when dealing with large (~2GB) input

The upstream issue tracker also indicates that there might be other 
vulnerabilies
(without CVEs or unknown CVEs), but I did not investiage further:
https://github.com/lloyd/yajl/issues/206 (double free)
https://github.com/lloyd/yajl/issues/204 (Uninitialized memory reads and 
out-of-bound)

It seems that the code is unmaintained upstream. It might be a good idea to 
evaluate
if any of the forks are more active and whether Debian should move there.

Cheers,
-- 
tobi

[1] https://github.com/lloyd/yajl/issues/248
Potential fix: 
https://github.com/brianmario/yajl-ruby/commit/a8ca8f476655adaa187eedc60bdc770fff3c51ce

[2] https://github.com/lloyd/yajl/issues/239
Potential fix (howver the use of abort() can cause issues.)
https://github.com/lloyd/yajl/pull/240

-- System Information:
Debian Release: 12.0
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'oldstable-security'), (500, 
'oldoldstable'), (500, 'unstable'), (500, 'testing'), (500, 'oldstable'), (100, 
'bullseye-fasttrack'), (100, 'bullseye-backports-staging'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.1.0-9-amd64 (SMP w/12 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
--- End Message ---
--- Begin Message ---
Version: 20140924-9+rm

Dear submitter,

as the package collada2gltf has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051399

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1051398: marked as done (collada2gltf: Missing source in d/copyright)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:28:07 +
with message-id 
and subject line Bug#1051399: Removed package(s) from unstable
has caused the Debian Bug report #1051398,
regarding collada2gltf: Missing source in d/copyright
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1051398: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1051398
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Source: collada2gltf
Version: 20140924-9
Severity: serious

The upstream source is missing from d/copyright. This is a Policy violation.
Please add the upstream URL where the tarball was obtained.
--- End Message ---
--- Begin Message ---
Version: 20140924-9+rm

Dear submitter,

as the package collada2gltf has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051399

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1040154: marked as done (collada2gltf: embedded yajl is vulnerable to CVE-2023-33460.)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:28:07 +
with message-id 
and subject line Bug#1051399: Removed package(s) from unstable
has caused the Debian Bug report #1040154,
regarding collada2gltf: embedded yajl is vulnerable to CVE-2023-33460.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1040154: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1040154
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: yajl
Version: 2.1.0-2
Severity: important
Tags: security upstream patch
X-Debbugs-Cc: Debian Security Team 

The following CVE was published for yajl:

CVE-2023-33460[0]:
There's a memory leak in yajl 2.1.0 with use of yajl_tree_parse function. which
will cause out-of-memory in server and cause crash.

Upstream Issue [1] links to a potential patch [2]

I'm filing this bug as I'm going to fix the issue for ELTS (stretch/jessie)
and then possibly also will NMU for sid, bookworm and bullseye and buster.


If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

[0] https://security-tracker.debian.org/tracker/CVE-2023-33460

[1] https://github.com/lloyd/yajl/issues/250

[2] 
https://github.com/openEuler-BaseService/yajl/commit/23a122eddaa28165a6c219000adcc31ff9a8a698

-- 
Cheers,
tobi

-- System Information:
Debian Release: 12.0
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'oldstable-security'), (500, 
'oldoldstable'), (500, 'unstable'), (500, 'testing'), (500, 'oldstable'), (100, 
'bullseye-fasttrack'), (100, 'bullseye-backports-staging'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.1.0-9-amd64 (SMP w/12 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled


signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Version: 20140924-9+rm

Dear submitter,

as the package collada2gltf has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051399

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#529360: marked as done (g3data: fails to correctly refresh images with transparency)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:27:15 +
with message-id 
and subject line Bug#1051363: Removed package(s) from unstable
has caused the Debian Bug report #529360,
regarding g3data: fails to correctly refresh images with transparency
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
529360: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529360
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: g3data
Version: 1:1.5.1-1
Severity: normal

Hi!

I noticed a problem with how g3data handles images with transparent
pixels (such as PNG images using the alpha channel).

If you try to load such an image with a transparent background:

  $ g3data transp-bg-image.png

the image is shown on a gray area and thus its transparent
background looks gray.
I am not sure if the gray color depends on the window manager
theme: if this is the case, it may be an issue with some themes
which may result in unreadable plots...

But anyway, the problem I am experiencing is another one:
as soon as I move the mouse over the image, the zoom area begins to
show the enlarged view of the mouse cross neighborhood in a messed
up way, with all plot lines drawn over each other.
I think this bug is caused by the refreshing strategy used by g3data:
it probably draws the updated zoom view *over* the previous one,
*without* first blanking the zoom area!  This obviously works fine,
as long as there are no transparent pixels; but an image with
transparent background will fail to refresh properly, unless the
area is blanked before the repainting occurs.

The same refreshing strategy seems to be used on the main area, with
the loaded image: after laying some points down, I click on the
"Remove all points" button; the previously layed down points are
still visible on the transparent background, even though they appear
as if they were *under* the non-transparent plot lines.
This is confusing at best.


In summary, the zoom area is mostly unusable when dealing with
images having a transparent background.  Moreover, understanding
which points are still present and which were effectively removed
is almost impossible, when dealing with transparent background images.

I think a refresh strategy with explicit blanking should be implemented
in order to avoid such issues.

Please forward this bug report to upstream, if appropriate.
Thanks in advance.


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

Kernel: Linux 2.6.26-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 g3data depends on:
ii  libatk1.0-0  1.24.0-2The ATK accessibility toolkit
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libfreetype6 2.3.9-4.1   FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.20.0-2The GLib library of C routines
ii  libgtk2.0-0  2.16.1-2The GTK+ graphical user interface 
ii  libpango1.0-01.24.0-3+b1 Layout and rendering of internatio

g3data recommends no packages.

g3data suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:1.5.3-4+rm

Dear submitter,

as the package g3data has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051363

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#511289: marked as done (g3data indicates previous file print name)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:27:15 +
with message-id 
and subject line Bug#1051363: Removed package(s) from unstable
has caused the Debian Bug report #511289,
regarding g3data indicates previous file print name
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
511289: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511289
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: g3data
Version: 1:1.5.0-2
Severity: minor

when printing data to file after one has edited output file name in
action export to file input box and presed enter the export data mouse
over still indicates previous file name before clicking. The correct
file is written to as indicated by ls  however but necessitats
checking by ls -l  before/after clicking of export to make sure
there is no over write. Time consuming checks.

-- System Information:
Debian Release: 5.0
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.25-2-686
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU (charmap=locale: Cannot set LC_CTYPE 
to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
ANSI_X3.4-1968) (ignored: LC_ALL set to en_AU)

Versions of packages g3data depends on:
ii  libatk1.0-0   1.12.4-3   The ATK accessibility toolkit
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib2.0-0  2.12.4-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-7   The GTK+ graphical user interface 
ii  libpango1.0-0 1.14.8-5   Layout and rendering of internatio

g3data recommends no packages.

-- debconf information:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "en_AU",
LC_ALL = "en_AU",
LC_TIME = "en_AU",
LC_CTYPE = "en_AU",
LC_MONETARY = "en_AU",
LC_COLLATE = "en_AU",
LC_MESSAGES = "en_AU",
LC_NUMERIC = "en_AU",
LANG = "en_AU.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory


--- End Message ---
--- Begin Message ---
Version: 1:1.5.3-4+rm

Dear submitter,

as the package g3data has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051363

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#534664: marked as done (g3data: Impossible to export data ??)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:27:15 +
with message-id 
and subject line Bug#1051363: Removed package(s) from unstable
has caused the Debian Bug report #534664,
regarding g3data: Impossible to export data ??
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
534664: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=534664
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: g3data
Version: 1:1.5.3-1
Severity: important


  Hello,

  It seems that g3data is exactly the tool I was looking for, but I
have a small problem: the "Export data point" button is always grayed
out (see attached picture). So, no way to export data points. Which
makes g3data basically useless and rather frustrating...

  Cheers,

Vincent


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

Kernel: Linux 2.6.26-1-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 g3data depends on:
ii  libatk1.0-0   1.26.0-1   The ATK accessibility toolkit
ii  libc6 2.9-13 GNU C Library: Shared libraries
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libfontconfig12.6.0-4generic font configuration library
ii  libfreetype6  2.3.9-5FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.20.3-1   The GLib library of C routines
ii  libgtk2.0-0   2.16.2-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.24.3-1   Layout and rendering of internatio

g3data recommends no packages.

g3data suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 1:1.5.3-4+rm

Dear submitter,

as the package g3data has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051363

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#967357: marked as done (g3data: depends on deprecated GTK 2)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:27:15 +
with message-id 
and subject line Bug#1051363: Removed package(s) from unstable
has caused the Debian Bug report #967357,
regarding g3data: depends on deprecated GTK 2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
967357: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=967357
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: g3data
Severity: normal
User: pkg-gnome-maintain...@lists.alioth.debian.org
Usertags: gtk2 oldlibs
Control: block 947713 by -1

This package has Build-Depends on GTK 2 (libgtk2.0-dev), or produces
binary packages with a Depends on GTK 2.

GTK 2 was superseded by GTK 3 in 2011 (see
). It no longer receives any significant
upstream maintenance, and in particular does not get feature development
for new features like UI scaling on high-pixel-density displays (HiDPI)
and native Wayland support. GTK 3 is in maintenance mode and GTK 4 is
approaching release, so it seems like a good time to be thinking about
minimizing the amount of GTK 2 in the archive.

GTK 2 is used by some important productivity applications like GIMP, and
has also historically been a popular UI toolkit for proprietary software
that we can't change, so perhaps removing GTK 2 from Debian will never be
feasible. However, it has reached the point where a dependency on it is
a bug - not a release-critical bug, and not a bug that can necessarily
be fixed quickly, but a piece of technical debt that maintainers should
be aware of.

A porting guide is provided in the GTK 3 documentation:
https://developer.gnome.org/gtk3/stable/migrating.html

Some libraries (for example libgtkspell0) expose GTK as part of their
API/ABI, in which case removing the deprecated dependency requires
breaking API/ABI. For these libraries, in many cases there will already
be a corresponding GTK 3 version (for example libgtkspell3-3-0), in which
case the GTK 2-based library should probably be deprecated or removed
itself. If there is no GTK 3 equivalent, of a GTK 2-based library,
maintainers should talk to the dependent library's upstream developers
about whether the dependent library should break API/ABI and switch
to GTK 3, or whether the dependent library should itself be deprecated
or removed.

A few packages extend GTK 2 by providing plugins (theme engines, input
methods, etc.) or themes, for example ibus and mate-themes. If these
packages deliberately support GTK 2 even though it is deprecated, and
they also support GTK 3, then it is appropriate to mark this mass-filed
bug as wontfix for now. I have tried to exclude these packages from
the mass-bug-filing, but I probably missed some of them.

Regards,
smcv
--- End Message ---
--- Begin Message ---
Version: 1:1.5.3-4+rm

Dear submitter,

as the package g3data has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051363

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1040322: marked as done (debdry: should not ship test data in /usr/lib/python3/dist-packages/control)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:31:53 +
with message-id 
and subject line Bug#1051718: Removed package(s) from unstable
has caused the Debian Bug report #1040322,
regarding debdry: should not ship test data in 
/usr/lib/python3/dist-packages/control
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1040322: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1040322
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debdry
Version: 0.2.2-1
Severity: serious

debdry creates a control file in its test suite. This file happens to
get installed into /usr/lib/python3/dist-packages/control and this
happens to cause an undeclared file conflict with python3-kombu. I'm
filing this with debdry, because it clearly should not be installing
this file.

Helmut
--- End Message ---
--- Begin Message ---
Version: 0.2.2-1+rm

Dear submitter,

as the package debdry has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051718

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#770542: marked as done (debdry: add support for Java packages with javahelper/maven-debian-helper/mh_make)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:31:53 +
with message-id 
and subject line Bug#1051718: Removed package(s) from unstable
has caused the Debian Bug report #770542,
regarding debdry: add support for Java packages with 
javahelper/maven-debian-helper/mh_make
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
770542: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770542
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debdry
Version: 0.2-1
Severity: normal

Hello, i would like to try debdry with the remotetea package
but I got this error

~/Debian/main/remotetea/remotetea$ debdry --dry
Traceback (most recent call last):
  File "/usr/bin/debdry", line 52, in 
debdry.diff()
  File "/usr/lib/python3/dist-packages/debdrylib/debdry.py", line 125, in diff
Auto.debianise(self.srcdir)
  File "/usr/lib/python3/dist-packages/debdrylib/auto.py", line 72, in debianise
debianiser = cls.instantiate(dirname)
  File "/usr/lib/python3/dist-packages/debdrylib/auto.py", line 62, in 
instantiate
if not valid: raise RuntimeError("No method found for debianising 
{}".format(dirname))
RuntimeError: No method found for debianising .


cheers

Frederic

Ps: really nice idea, connection with propellor to build the next generation 
buildd ?


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

Kernel: Linux 3.16-2-486
Locale: LANG=fr_CA.UTF-8, LC_CTYPE=fr_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages debdry depends on:
ii  python3  3.4.2-1
pn  python3:any  

debdry recommends no packages.

debdry suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 0.2.2-1+rm

Dear submitter,

as the package debdry has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051718

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#783829: marked as done (debdry: wrong management of subdir combination)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:31:53 +
with message-id 
and subject line Bug#1051718: Removed package(s) from unstable
has caused the Debian Bug report #783829,
regarding debdry: wrong management of subdir combination
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
783829: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783829
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debdry
Version: 0.2.1-1
Severity: normal
Tags: patch

Dear Maintainer,

Putting only debian/source/options, debdry die trying to copy
debian.auto/source/format into debian.auto/source/format and shutil
raise shutil.SameFileError.
A workaround could be put all needed stuff in subdir source, avoiding
to getting Directtory.combine, I guess.

I think the combination of subdirs, like source, should allow to maintain
only partial stuff.

I think the attached path can solve.




-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (500, 
'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf, armel

Kernel: Linux 3.16.0-4-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 debdry depends on:
ii  python3  3.4.2-2
ii  python3-apt  0.9.3.11
pn  python3:any  

debdry recommends no packages.

debdry suggests no packages.

-- no debconf information
commit 3aa751e1a0badd80c0466b8c9182d85e928ba6b1
Author: Marco Bardelli 
Date:   Sat Dec 13 05:01:16 2014 +0100

fix typos

diff --git a/debdrylib/tree.py b/debdrylib/tree.py
index daa82f3..0963b77 100644
--- a/debdrylib/tree.py
+++ b/debdrylib/tree.py
@@ -126,11 +126,11 @@ class Directory(DirectoryBase):
 os.makedirs(absname, exist_ok=True)
 res = self.__class__(relname, absname)
 for k in self.files.keys() - other.files.keys():
-self.files[k] = self.files[k].copy_to(k, os.path.join(self.absname, k))
+self.files[k] = self.files[k].copy_to(k, os.path.join(absname, k))
 for k in other.files.keys() - self.files.keys():
-self.files[k] = other.files[k].copy_to(k, os.path.join(self.absname, k))
+self.files[k] = other.files[k].copy_to(k, os.path.join(absname, k))
 for k in other.files.keys() & self.files.keys():
-self.files[k] = self.files[k].combine(k, os.path.join(self.absname, k), other.files[k])
+self.files[k] = self.files[k].combine(k, os.path.join(absname, k), other.files[k])
 return self
 
 def diff(self, relname, absname, other):
@@ -138,7 +138,7 @@ class Directory(DirectoryBase):
 res = self.__class__(relname, absname)
 for k in self.files.keys() - other.files.keys():
 log.warn("{}: exists in {} but not in {}: ignoring file".format(
-self.relname, base.absname, extra.absname))
+k, self.absname, other.absname))
 for k in other.files.keys() - self.files.keys():
 self.files[k] = other.files[k].copy_to(k, os.path.join(self.absname, k))
 for k in other.files.keys() & self.files.keys():
--- End Message ---
--- Begin Message ---
Version: 0.2.2-1+rm

Dear submitter,

as the package debdry has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051718

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Processed: tagging 1031842, tagging 877016, tagging 1007310, tagging 1044927, tagging 1007651, tagging 1007279 ...

2023-09-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 1031842 + sid experimental
Bug #1031842 [src:xdg-desktop-portal-gnome] xdg-desktop-portal-gnome: 44 
appears incompatible with GNOME Shell 43
Added tag(s) experimental and sid.
> tags 877016 + sid trixie
Bug #877016 [cpufrequtils] Time to drop cpufrequtils?
Added tag(s) sid and trixie.
> tags 1007310 - bookworm
Bug #1007310 {Done: Bas Wijnen } [src:z80asm] z80asm: please 
consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1044927 + experimental
Bug #1044927 {Done: Patrick Matthäi } [src:glusterfs] 
glusterfs: Fails to build source after successful build
Added tag(s) experimental.
> tags 1007651 - bookworm
Bug #1007651 {Done: Bastian Germann } [src:dmitry] dmitry: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007279 - bookworm
Bug #1007279 {Done: Bastian Germann } [src:yapps2] yapps2: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007064 - bookworm
Bug #1007064 {Done: Bastian Germann } [src:linklint] linklint: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007608 - bookworm
Bug #1007608 {Done: Bastian Germann } [src:awardeco] awardeco: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007321 - bookworm
Bug #1007321 {Done: Chris Lawrence } [src:makexvpics] 
makexvpics: please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007452 - bookworm
Bug #1007452 {Done: Bastian Germann } [src:xless] xless: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007489 - bookworm
Bug #1007489 {Done: Bastian Germann } [src:4g8] 4g8: please 
consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007390 - bookworm
Bug #1007390 {Done: Bastian Germann } 
[src:openoffice.org-en-au] openoffice.org-en-au: please consider upgrading to 
3.0 source format
Removed tag(s) bookworm.
> tags 1007600 - bookworm
Bug #1007600 {Done: Bastian Germann } [src:xfaces] xfaces: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1045959 + experimental
Bug #1045959 {Done: Thomas Goirand } [src:python-wrapt] 
python-wrapt: Fails to build source after successful build
Added tag(s) experimental.
> tags 1007320 - bookworm
Bug #1007320 {Done: Bastian Germann } [src:samhain] samhain: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007314 - bookworm
Bug #1007314 {Done: Bastian Germann } [src:swish-e] swish-e: 
please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1049446 + experimental
Bug #1049446 {Done: Paul Gevers } [src:cpp-httplib] 
src:cpp-httplib: fails to migrate to testing for too long: unresolved RC issue
Added tag(s) experimental.
> reassign 1032634 src:babeltrace 1.5.11-1
Bug #1032634 {Done: Michael Jeanson } [libbabeltrace-ctf1] 
please drop transitional package libbabeltrace-ctf1 from src:babeltrace
Bug reassigned from package 'libbabeltrace-ctf1' to 'src:babeltrace'.
No longer marked as found in versions babeltrace/1.5.11-1.
No longer marked as fixed in versions babeltrace/1.5.11-2.
Bug #1032634 {Done: Michael Jeanson } [src:babeltrace] 
please drop transitional package libbabeltrace-ctf1 from src:babeltrace
Marked as found in versions babeltrace/1.5.11-1.
> fixed 1032634 1.5.11-2
Bug #1032634 {Done: Michael Jeanson } [src:babeltrace] 
please drop transitional package libbabeltrace-ctf1 from src:babeltrace
Marked as fixed in versions babeltrace/1.5.11-2.
> reassign 1032633 src:babeltrace 1.5.11-1
Bug #1032633 {Done: Michael Jeanson } 
[libbabeltrace-ctf-dev] please drop transitional package libbabeltrace-ctf-dev 
from src:babeltrace
Bug reassigned from package 'libbabeltrace-ctf-dev' to 'src:babeltrace'.
No longer marked as found in versions babeltrace/1.5.11-1.
No longer marked as fixed in versions babeltrace/1.5.11-2.
Bug #1032633 {Done: Michael Jeanson } [src:babeltrace] 
please drop transitional package libbabeltrace-ctf-dev from src:babeltrace
Marked as found in versions babeltrace/1.5.11-1.
> fixed 1032633 1.5.11-2
Bug #1032633 {Done: Michael Jeanson } [src:babeltrace] 
please drop transitional package libbabeltrace-ctf-dev from src:babeltrace
Marked as fixed in versions babeltrace/1.5.11-2.
> tags 1047889 + experimental
Bug #1047889 {Done: Daniel Baumann } 
[src:pendulum] pendulum: Fails to build source after successful build
Added tag(s) experimental.
> tags 1007329 - bookworm
Bug #1007329 {Done: Bastian Germann } [src:loadwatch] 
loadwatch: please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 1007029 - bookworm
Bug #1007029 {Done: Keith Packard } 
[src:binutils-arm-none-eabi] binutils-arm-none-eabi: please consider upgrading 
to 3.0 source format
Removed tag(s) bookworm.
> tags 1007491 - bookworm
Bug #1007491 {Done: Bastian Germann } [src:libranlip] 
libranlip: please consider upgrading to 3.0 source format
Removed tag(s) bookworm.
> tags 10073

Bug#954560: marked as done (debdry: FTBFS: dh_auto_test: error: pybuild --test -i python{version} -p "3.7 3.8" returned exit code 13)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:31:53 +
with message-id 
and subject line Bug#1051718: Removed package(s) from unstable
has caused the Debian Bug report #954560,
regarding debdry: FTBFS: dh_auto_test: error: pybuild --test -i python{version} 
-p "3.7 3.8" returned exit code 13
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
954560: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=954560
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: debdry
Version: 0.2.2-1
Severity: serious
Justification: FTBFS on amd64
Tags: bullseye sid ftbfs
Usertags: ftbfs-20200321 ftbfs-bullseye

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

Relevant part (hopefully):
>  debian/rules build
> dh build --with python3 --buildsystem=pybuild
>dh_update_autotools_config -O--buildsystem=pybuild
>dh_auto_configure -O--buildsystem=pybuild
> I: pybuild base:217: python3.7 setup.py config 
> running config
> I: pybuild base:217: python3.8 setup.py config 
> running config
>dh_auto_build -O--buildsystem=pybuild
> I: pybuild base:217: /usr/bin/python3.7 setup.py build 
> running build
> running build_py
> creating /<>/.pybuild/cpython3_3.7_debdry/build/debdrylib
> copying debdrylib/__init__.py -> 
> /<>/.pybuild/cpython3_3.7_debdry/build/debdrylib
> copying debdrylib/tree.py -> 
> /<>/.pybuild/cpython3_3.7_debdry/build/debdrylib
> copying debdrylib/auto.py -> 
> /<>/.pybuild/cpython3_3.7_debdry/build/debdrylib
> copying debdrylib/debdry.py -> 
> /<>/.pybuild/cpython3_3.7_debdry/build/debdrylib
> running build_scripts
> creating build
> creating build/scripts-3.7
> copying and adjusting debdry -> build/scripts-3.7
> copying git-debdry-build -> build/scripts-3.7
> changing mode of build/scripts-3.7/debdry from 644 to 755
> I: pybuild base:217: /usr/bin/python3 setup.py build 
> running build
> running build_py
> creating /<>/.pybuild/cpython3_3.8_debdry/build/debdrylib
> copying debdrylib/__init__.py -> 
> /<>/.pybuild/cpython3_3.8_debdry/build/debdrylib
> copying debdrylib/tree.py -> 
> /<>/.pybuild/cpython3_3.8_debdry/build/debdrylib
> copying debdrylib/auto.py -> 
> /<>/.pybuild/cpython3_3.8_debdry/build/debdrylib
> copying debdrylib/debdry.py -> 
> /<>/.pybuild/cpython3_3.8_debdry/build/debdrylib
> running build_scripts
> creating build/scripts-3.8
> copying and adjusting debdry -> build/scripts-3.8
> copying git-debdry-build -> build/scripts-3.8
> changing mode of build/scripts-3.8/debdry from 644 to 755
>dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:217: cd /<>/.pybuild/cpython3_3.7_debdry/build; 
> python3.7 -m unittest discover -v 
> test_plainfield (test.test_control.TestCombine) ... ERROR
> test_smartfield_plain (test.test_control.TestCombine) ... ERROR
> test_smartfield_smart (test.test_control.TestCombine) ... ERROR
> test_plainfield (test.test_control.TestDiff) ... ERROR
> test_smartfield_plain (test.test_control.TestDiff) ... ERROR
> test_smartfield_smart (test.test_control.TestDiff) ... ERROR
> test_deps (test.test_fieldmerge.TestDeps) ... 
> /<>/.pybuild/cpython3_3.7_debdry/build/test/test_fieldmerge.py:61:
>  DeprecationWarning: Please use assertEqual instead.
>   self.assertEquals(f.to_string(), result)
> ok
> test_plain (test.test_fieldmerge.TestDeps) ... ok
> test_plain (test.test_fieldmerge.TestUploaders) ... ok
> test_smart (test.test_fieldmerge.TestUploaders) ... ok
> test_1 (test.test_tree.TestParse) ... ok
> 
> ==
> ERROR: test_plainfield (test.test_control.TestCombine)
> --
> Traceback (most recent call last):
>   File 
> "/<>/.pybuild/cpython3_3.7_debdry/build/test/test_control.py", 
> line 59, in test_plainfield
> """)
>   File 
> "/<>/.pybuild/cpython3_3.7_debdry/build/test/test_control.py", 
> line 43, in assertCombines
> c = c1.combine("control", "./control", c2)
>   File 
> "/<>/.pybuild/cpython3_3.7_debdry/build/debdrylib/tree.py", line 
> 314, in combine
> res.write()
>   File 
> "/<>/.pybuild/cpython3_3.7_debdry/build/debdrylib/tree.py", line 
> 293, in write
> outfd.write(self.to_string())
>   File 
> "/<>/.pybuild/cpython3_3.7_debdry/build/debdrylib/tree.py", line 
> 282, in to_string
> sections.append(self.source.to_string())
>   File 
> "/<>/.pybuild/cpython3_3.7_debdry/build/debdrylib/tree.py", line 
> 417, in to_string
> return apt_pkg.rewrite_section(section, self.REWRITE_ORDER,
> AttributeError: module 'apt_pkg' has no attribute 'rewrite_section

Bug#1043510: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

   rox |   1:2.11-7 | source
 rox-filer |   1:2.11-7 | amd64, arm64, armel, armhf, i386, mips64el, ppc64el, 
riscv64, s390x

--- Reason ---
RoQA; dead upstream; depends on gtk2
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1043...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/1043510

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



Bug#1043510: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



Bug#505930: marked as done (/usr/bin/rox: Renaming a file through rightclick menu, gives unnecessary full pathname)

2023-09-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Sep 2023 16:19:07 +
with message-id 
and subject line Bug#1043510: Removed package(s) from unstable
has caused the Debian Bug report #505930,
regarding /usr/bin/rox: Renaming a file through rightclick menu, gives 
unnecessary full pathname
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
505930: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505930
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rox-filer
Version: 2.7.1-1
Severity: minor
File: /usr/bin/rox


Browsing through a list of files, point to a file, then rightclick, 
file, rename. The data entry box is populated with the full pathname of 
the file, rather than just the filename. This makes renaming awkward, 
(especially on files in deeply nested directories), requiring the user 
to cursor through the pathname to get to the filename. Just the filename on
its own would be a sufficient default value here.

Mark.

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

Kernel: Linux 2.6.26-1-486
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages rox-filer depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6.1 The Cairo 2D vector graphics libra
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxml22.6.32.dfsg-4 GNOME XML library
ii  shared-mime-info   0.30-2FreeDesktop.org shared MIME databa

Versions of packages rox-filer recommends:
ii  zeroinstall-injector  0.34-1 run programs by URL

Versions of packages rox-filer suggests:
ii  file  4.26-1 Determines file type using "magic"
ii  menu  2.1.40 generates programs menu for all me

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:2.11-7+rm

Dear submitter,

as the package rox has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1043510

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1051363: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

g3data |  1:1.5.3-4 | source, amd64, arm64, armel, armhf, i386, mips64el, 
ppc64el, riscv64, s390x

--- Reason ---
RoQA; dead upstream; orphaned; depends on gtk2
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1051...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/1051363

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



Bug#1051363: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
Version: 1:1.5.3-4+rm

Dear submitter,

as the package g3data has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051363

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



Bug#1051399: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

collada2gltf | 20140924-9 | source
libcollada2gltfconvert-dev | 20140924-9 | amd64, arm64, armel, armhf, i386, 
mips64el, ppc64el, s390x

--- Reason ---
RoQA; dead upstream; orphaned; RC-buggy
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1051...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/1051399

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



Bug#1051399: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
Version: 20140924-9+rm

Dear submitter,

as the package collada2gltf has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051399

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



Bug#1051718: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
Version: 0.2.2-1+rm

Dear submitter,

as the package debdry has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1051718

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



Bug#1051718: Removed package(s) from unstable

2023-09-26 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

debdry |0.2.2-1 | source, all

--- Reason ---
RoQA; abandoned experiment; orphaned; FTBFS
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1051...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/1051718

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)



spamprobe_1.4d-16+deb12u1_source.changes ACCEPTED into proposed-updates

2023-09-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2023 12:15:17 +0530
Source: spamprobe
Architecture: source
Version: 1.4d-16+deb12u1
Distribution: bookworm
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Stefano Rivera 
Closes: 1037422
Changes:
 spamprobe (1.4d-16+deb12u1) bookworm; urgency=medium
 .
   * QA Upload.
   * Patch: Add missing return statements, fixing crashes parsing JPEG
 attachments. (Closes: #1037422)
Checksums-Sha1:
 41ace54cd08e3b8d0f2bc698a1732ed8d6870a45 1240 spamprobe_1.4d-16+deb12u1.dsc
 64ca448f5453428a9c6823db117d6b3481fa27da 41920 
spamprobe_1.4d-16+deb12u1.debian.tar.xz
 ff95740aca4681702b242135b99e52e7229555b2 5820 
spamprobe_1.4d-16+deb12u1_source.buildinfo
Checksums-Sha256:
 4236e416862722b7fe312055015483c6f949bfc18eb7affb0a3bc8b27269b99f 1240 
spamprobe_1.4d-16+deb12u1.dsc
 93ddcd99f11618c072c682fc4ba5a5049729725392bb9f9dd5a9ca22e0e84eb0 41920 
spamprobe_1.4d-16+deb12u1.debian.tar.xz
 3f856e6086cabc160e9161b3be510995867905ff743cb1b39f6b0ff92af17cdc 5820 
spamprobe_1.4d-16+deb12u1_source.buildinfo
Files:
 751641f4b06409f4d19d6ec003e145f8 1240 mail optional 
spamprobe_1.4d-16+deb12u1.dsc
 673c03a46b77a70c93b83ca521603ae8 41920 mail optional 
spamprobe_1.4d-16+deb12u1.debian.tar.xz
 a6c30544a9e9dce9fe40917ca96f1c3c 5820 mail optional 
spamprobe_1.4d-16+deb12u1_source.buildinfo

-BEGIN PGP SIGNATURE-

iIoEARYKADIWIQTumtb5BSD6EfafSCRHew2wJjpU2AUCZRKOcxQcc3RlZmFub3JA
ZGViaWFuLm9yZwAKCRBHew2wJjpU2NtpAQCSz5U7y1EKtjWMfHa+sjcXtfV+gpw6
aoWFkIlvEkOGEgEAta3uiDFIvmsp4ZPYzNWPt78OwyrXuToTebPE9aoqtgw=
=0mYK
-END PGP SIGNATURE-



Bug#1053019: coco-java: FTBFS with default Java 21

2023-09-26 Thread Vladimir Petko
Source: coco-java
Version: 20110419-3.3
Severity: important
Tags: ftbfs
User: debian-j...@lists.debian.org
Usertags: default-java21
X-Debbugs-Cc: vladimir.pe...@canonical.com

Dear Maintainers,

The package coco-java ftbfs with default Java 21.
The relevant part of the build log:
---
make[1]: Entering directory '/<>'
javac -d . -source 1.7 -target 1.7 Trace.java Scanner.java Tab.java DFA.java 
ParserGen.java Parser.java Coco.java
warning: [options] bootstrap class path not set in conjunction with -source 7
error: Source option 7 is no longer supported. Use 8 or later.
error: Target option 7 is no longer supported. Use 8 or later.
make[1]: *** [Makefile:2: all] Error 2
make[1]: Leaving directory '/<>'
make: *** [debian/rules:40: build-stamp] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
---


-- System Information:
Debian Release: bookworm/sid
  APT prefers lunar-updates
  APT policy: (500, 'lunar-updates'), (500, 'lunar-security'), (500, 'lunar'), 
(100, 'lunar-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.2.0-33-generic (SMP w/32 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



Bug#1053018: closure-compiler: FTBFS with default Java 21

2023-09-26 Thread Vladimir Petko
Source: closure-compiler
Version: 20130227+dfsg1-13
Severity: important
Tags: ftbfs
User: debian-j...@lists.debian.org
Usertags: default-java21
X-Debbugs-Cc: vladimir.pe...@canonical.com

Dear Maintainers,

The package closure-compiler ftbfs with default Java 21.
The relevant part of the build log:
---
javadoc:
[mkdir] Created dir: /<>/build/javadoc
  [javadoc] Generating Javadoc
  [javadoc] Using javadoc -source 8 is no longer supported, switching to 8
  [javadoc] Debian build on Java 9+ detected: Adding the --ignore-source-errors 
option
  [javadoc] Debian build on Java 9+ detected: Adding the -Xdoclint:none option
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package com.google.debugging.sourcemap...
  [javadoc] Loading source files for package com.google.javascript.jscomp...
  [javadoc] Loading source files for package com.google.javascript.jscomp.ant...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.deps...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.graph...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.jsonml...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.parsing...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.regex...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.testing...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.type...
  [javadoc] Loading source files for package 
com.google.javascript.jscomp.webservice.common...
  [javadoc] Loading source files for package com.google.javascript.rhino...
  [javadoc] Loading source files for package 
com.google.javascript.rhino.jstype...
  [javadoc] Loading source files for package 
com.google.javascript.rhino.testing...
  [javadoc] Loading source files for package 
com.google.debugging.sourcemap.proto...
  [javadoc] Constructing Javadoc information...
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:35: 
error: package org.apache.tools.ant does not exist
  [javadoc] import org.apache.tools.ant.BuildException;
  [javadoc]^
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:36: 
error: package org.apache.tools.ant does not exist
  [javadoc] import org.apache.tools.ant.Project;
  [javadoc]^
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:37: 
error: package org.apache.tools.ant does not exist
  [javadoc] import org.apache.tools.ant.Task;
  [javadoc]^
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:38: 
error: package org.apache.tools.ant.types does not exist
  [javadoc] import org.apache.tools.ant.types.FileList;
  [javadoc]  ^
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:39: 
error: package org.apache.tools.ant.types does not exist
  [javadoc] import org.apache.tools.ant.types.Parameter;
  [javadoc]  ^
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:40: 
error: package org.apache.tools.ant.types does not exist
  [javadoc] import org.apache.tools.ant.types.Path;
  [javadoc]  ^
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:62: 
error: cannot find symbol
  [javadoc] extends Task {
  [javadoc] ^
  [javadoc]   symbol: class Task
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:78: 
error: cannot find symbol
  [javadoc]   private final List defineParams;
  [javadoc]  ^
  [javadoc]   symbol:   class Parameter
  [javadoc]   location: class CompileTask
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:79: 
error: cannot find symbol
  [javadoc]   private final List externFileLists;
  [javadoc]  ^
  [javadoc]   symbol:   class FileList
  [javadoc]   location: class CompileTask
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:80: 
error: cannot find symbol
  [javadoc]   private final List sourceFileLists;
  [javadoc]  ^
  [javadoc]   symbol:   class FileList
  [javadoc]   location: class CompileTask
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:81: 
error: cannot find symbol
  [javadoc]   private final List sourcePaths;
  [javadoc]  ^
  [javadoc]   symbol:   class Path
  [javadoc]   location: class CompileTask
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:244: 
error: cannot find symbol
  [javadoc]   public void addExterns(FileList list) {
  [javadoc]  ^
  [javadoc]   symbol:   class FileList
  [javadoc]   location: class CompileTask
  [javadoc] 
/<>/src/com/google/javascript/jscomp/ant/CompileTask.java:263: 
error: cannot find symbol
  [javadoc]   public void addSo

Bug#1053038: jtb: FTBFS with default Java 21

2023-09-26 Thread Vladimir Petko
Source: jtb
Version: 1.4.12-3
Severity: important
Tags: ftbfs
User: debian-j...@lists.debian.org
Usertags: default-java21
X-Debbugs-Cc: vladimir.pe...@canonical.com

Dear Maintainers,

The package jtb ftbfs with default Java 21.
The relevant part of the build log:
---
compile_java:
[javac] Compiling 234 source files to /<>/bin
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 7
[javac] error: Source option 7 is no longer supported. Use 8 or later.
[javac] error: Target option 7 is no longer supported. Use 8 or later.

BUILD FAILED
---


-- System Information:
Debian Release: bookworm/sid
  APT prefers lunar-updates
  APT policy: (500, 'lunar-updates'), (500, 'lunar-security'), (500, 'lunar'), 
(100, 'lunar-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.2.0-33-generic (SMP w/32 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



Bug#1053070: opticalraytracer: FTBFS with default Java 21

2023-09-26 Thread Vladimir Petko
Source: opticalraytracer
Version: 9.6-1
Severity: important
Tags: ftbfs
User: debian-j...@lists.debian.org
Usertags: default-java21
X-Debbugs-Cc: vladimir.pe...@canonical.com

Dear Maintainers,

The package opticalraytracer ftbfs with default Java 21.
The relevant part of the build log:
---
make[1]: Entering directory '/<>'
mkdir -p target/classes
javac -source 7 -target 7 -encoding UTF-8 -d target/classes `find . -name 
'*.java'`
warning: [options] bootstrap class path not set in conjunction with -source 7
error: Source option 7 is no longer supported. Use 8 or later.
error: Target option 7 is no longer supported. Use 8 or later.
make[1]: *** [debian/rules:10: override_dh_auto_build] Error 2
make[1]: Leaving directory '/<>'
make: *** [debian/rules:6: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
---


-- System Information:
Debian Release: bookworm/sid
  APT prefers lunar-updates
  APT policy: (500, 'lunar-updates'), (500, 'lunar-security'), (500, 'lunar'), 
(100, 'lunar-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.2.0-33-generic (SMP w/32 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled