Bug#1073425: php-oscarotero-gettext: FTBFS: make[1]: *** [debian/rules:18: override_dh_auto_test] Error 1

2024-07-21 Thread James Valleroy

The build is working in testing, so this regression is due to a recent change. 
I've narrowed down the cause of the issue to a change in one of the following 
packages:
- libxml2:
  - build works with 2.9.14+dfsg-1.3+b3
  - build fails with 2.12.7+dfsg-3+b1
- libxml2-utils:
  - build works with 2.9.14+dfsg-1.3+b3
  - build fails with 2.12.7+dfsg-3+b1
- libxml-libxml-perl:
  - build works with 2.0207+dfsg+really+2.0134-1+b3
  - build fails with 2.0207+dfsg+really+2.0134-4



Bug#1065923: python-certbot: Please drop dependencies on python3-distutils

2024-07-21 Thread James Valleroy

tags 1065923 patch
thanks

On Sun, 10 Mar 2024 18:15:58 -0100 Graham Inggs  wrote:

In fact, there is no module for Python 3.12 in python3-distutils, so
these dependencies may already be unnecessary.


Searching through the code shows that distutils is not used, and is only 
mentioned in comments. So the dependency can simply be dropped.

I opened a merge request: 
https://salsa.debian.org/letsencrypt-team/certbot/certbot/-/merge_requests/8



Bug#1072834: between: Game no longer works due to server error

2024-06-08 Thread James Valleroy

Package: between
Version: 6+dfsg1-4
Severity: grave
Tags: upstream
Justification: renders package unusable
X-Debbugs-Cc: jvalle...@mailbox.org

Dear Maintainer,

   * What led up to the situation?

I installed between and tried to run it.

   * What exactly did you do (or not do) that was effective (or 
ineffective)?


Run the "between" program.

   * What was the outcome of this action?

The following is printed in the terminal:

Screen dimensions for fullscreen mode:  640x480
L4 | Sat Jun  8 11:19:18 2024 (506 ms) | general | Checking if requested 
video mode (640x480) is available

L4 | Sat Jun  8 11:19:18 2024 (506 ms) | general | All resolutions available
Max note length in song = 16
Response:  
301 Moved Permanently

301 Moved Permanently
cloudflare



The game window opens and shows the title screen. When I press spacebar, 
it shows "Locating server..." for a second, and then shows the message 
"ERROR: Badly formatted response from server." (see attachment). There 
is no way to continue after this point, except to close the window.


   * What outcome did you expect instead?

The game would be playable. It seems to depend on a server that no 
longer exists.



-- System Information:
Debian Release: 12.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 
'stable-debug'), (500, 'proposed-updates-debug'), (500, 'stable'), (100, 
'bookworm-fasttrack')

Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.1.0-21-amd64 (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
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 between depends on:
ii  libc6   2.36-9+deb12u7
ii  libgcc-s1   12.2.0-14
ii  libgl1  1.6.0-1
ii  libglu1-mesa [libglu1]  9.0.2-1.1
ii  libsdl1.2debian 1.2.15+dfsg2-8
ii  libstdc++6  12.2.0-14

between recommends no packages.

between suggests no packages.

-- no debconf information


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1058552: [Pkg-javascript-devel] Bug#1058552: science.js: FTBFS: SyntaxError: Error parsing /<>/package.json: Unexpected end of JSON input

2024-04-05 Thread James Valleroy

On Thu, 04 Apr 2024 19:01:58 +0200 Jonas Smedegaard  wrote:

Quoting James Valleroy (2024-04-04 16:13:07)
> On 3/28/24 4:08 AM, Petter Reinholdtsen wrote:
> > [James Valleroy 2024-02-12]
> >> Here is a patch that fixes the build:
> > 
> > Btw, did you mean TEMPFILE=$(shell mktemp) to get a random temp file

> > name?
> > 
> 
> I'm not sure. It may also work, but there is a difference in when a 
> shell command runs. Some people recommend not to use shell in a 
> makefile: https://stackoverflow.com/a/76121578


Each make target (i.e. each line indended by a tab) is executed within a
shell.  The point in the SO answer you reference is that calling the
make function $(shell ...) *inside* a make target effectively spawns a
shell within another shell, and *that* you rarely really want.

What Petter is talking about above is that "TEMPFILE=mktemp", because it
is a make target (i.e. on a TAB-indented line) is passed to a shell,
which will *not* set TEMPFILE to the output of the shell command mktemp,
but simply set TEMPFILE to the _string_ "mktemp" which is unlikely that
you want.


I see, thanks for pointing that out. I think there isn't a need to use 
mktemp here, so the patch can be simplified to this:



diff --git a/Makefile b/Makefile
index c9e03c2..f5a954b 100644
--- a/Makefile
+++ b/Makefile
@@ -77,7 +77,8 @@ install:

 package.json: src/package.js
@rm -f $@
-   node src/package.js > $@
+   node src/package.js > package.json.temp
+   mv package.json.temp $@
@chmod a-w $@

 clean:


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1058552: science.js: FTBFS: SyntaxError: Error parsing /<>/package.json: Unexpected end of JSON input

2024-04-04 Thread James Valleroy

On 3/28/24 4:08 AM, Petter Reinholdtsen wrote:

[James Valleroy 2024-02-12]

Here is a patch that fixes the build:


Thank you.  Can you explain why changing the output from package.json to
mktemp and then moving the result to package.json will solve the build
problem?  I fail to understand how this could change anything.


The makefile receipe uses node to produce the content that will be 
written to package.json. It seems that node is also trying to read in 
and parse the contents of package.json. Apparently, writing the file is 
not an atomic operation, so node is reading it before the write 
operation has completed. So it reads some partially-written package.json 
file, which is not yet valid JSON, and produces an error when trying to 
parse it.


I don't know enough about node to say why it does this (reading in 
package.json after it has started running the src/package.js script).



Btw, did you mean TEMPFILE=$(shell mktemp) to get a random temp file
name?



I'm not sure. It may also work, but there is a difference in when a 
shell command runs. Some people recommend not to use shell in a 
makefile: https://stackoverflow.com/a/76121578


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1039733: php-oscarotero-gettext: FTBFS with symfony 6: make[1]: *** [debian/rules:18: override_dh_auto_test] Error 1

2024-02-29 Thread James Valleroy

Hi taffit,

On Tue, 5 Sep 2023 01:29:12 +0530 David =?iso-8859-1?Q?Pr=E9vot?= 
 wrote:

Hi James,

Le Wed, Jun 28, 2023 at 03:42:21PM -0300, Athos Ribeiro a écrit :
> Source: php-oscarotero-gettext
> Version: 4.8.7-1
[…]
> We are about to start the symfony 6 transition in unstable. During a test
> rebuild, php-oscarotero-gettext was found to fail to build with symfony 6.

Looking at the composer.json file, the dependency seems to be of the 2
era… ("symfony/yaml": "~2",).

Version 5 of php-oscarotero-gettext published four years ago, doesn’t
depend (directly) on symfony/yaml anymore. Is it possible that the
reverse dependencies (shaarli?) can use the 5 branch?

Regards,

taffit



Sorry for the delay in addressing this. I'll disable the YAML tests, and 
remove the build/test dependency on php-symfony-yaml. Shaarli doesn't 
use the YAML extractor or generator, so it's not an important feature 
currently.


Regards,
James


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1058552: science.js: FTBFS: SyntaxError: Error parsing /<>/package.json: Unexpected end of JSON input

2024-02-12 Thread James Valleroy

tags 1058552 patch
thanks

Here is a patch that fixes the build:

From: James Valleroy 
Date: Sun, 11 Feb 2024 07:40:16 -0500
Subject: Use a temp file for package.json contents

---
 Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index c9e03c2..4cbfec9 100644
--- a/Makefile
+++ b/Makefile
@@ -77,7 +77,9 @@ install:

 package.json: src/package.js
@rm -f $@
-   node src/package.js > $@
+   TEMPFILE=mktemp
+   node src/package.js > "$TEMPFILE"
+   mv "$TEMPFILE" $@
@chmod a-w $@

 clean:


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1035005: [PATCH] Add Replaces on uwsgi-plugin-jvm-openjdk-11 (Closes: #1035005)

2023-05-19 Thread James Valleroy

tags 1035005 patch
thanks

The attached patch fixes this issue. I tested by unpacking the package into a 
Debian bullseye VM where uwsgi-plugin-jvm-openjdk-11 was already installed.

--
James
From 84fe0c6bbf87399eb651b3768f6599bc08a83a78 Mon Sep 17 00:00:00 2001
From: James Valleroy 
Date: Thu, 18 May 2023 08:28:17 -0400
Subject: [PATCH] Add Replaces on uwsgi-plugin-jvm-openjdk-11 (Closes:
 #1035005)

---
 debian/control | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/control b/debian/control
index 2abd38b3..fad8a587 100644
--- a/debian/control
+++ b/debian/control
@@ -616,6 +616,8 @@ Depends:
  uwsgi-core (= ${binary:Version}),
  ${misc:Depends},
  ${shlibs:Depends},
+Replaces: uwsgi-plugin-jvm-openjdk-11 (<< 2.0.21-1)
+Breaks: uwsgi-plugin-jvm-openjdk-11 (<< 2.0.21-1)
 Description: Java plugin for uWSGI (OpenJDK 17)
  uWSGI presents a complete stack for networked/clustered web applications,
  implementing message/object passing, caching, RPC and process management.
-- 
2.39.2



OpenPGP_signature
Description: OpenPGP digital signature


Bug#1011900: monkeysphere: FTBFS: ...Could not chdir to home directory /home/user42: No such file or directory

2023-04-29 Thread James Valleroy

tags 1011900 patch
thanks

I opened an MR to fix this issue:
https://salsa.debian.org/pkg-privacy-team/monkeysphere/-/merge_requests/1



OpenPGP_signature
Description: OpenPGP digital signature


Bug#1031639: Bug#1030939: e2fsprogs: generates filesystems that grub-install doesn't recognize

2023-02-23 Thread James Valleroy

On Sun, 19 Feb 2023 19:01:22 +0100 Paul Gevers  wrote:


> On 2023-02-15 21:04:36 +0100, Sebastian Ramacher wrote:
> > 
> > On 2023-02-14 01:01:38 +0100, Daniel Leidert wrote:
> > > 
> > > This problem breaks e.g. vmdb2. I can no longer create a Bullseye

> > > system image with vmdb2 on Sid, because the grub-install step in the
> > > Bullseye chroot now fails, because the created filesystem (created with
> > > e2fsprogs on Sid) cannot be recognized by grub. I have to downgrade
> > > e2fsprogs to the version in Testing to get the build going again. It
> > > also means that a Bookworm system can never be used to format and
> > > debootstrap a Bullseye or Buster system that requires a grub
> > > installation.
> > > 
> > > I guess that the fix applied to grub2 in Sid would have to be applied

> > > to grub2 in Bullseye as well (and basically to any grub2 package in any
> > > Debian or Ubuntu or Raspbian release supported by debootstrap).
> > > 
> > > This situation is really messy. It breaks basically all my image builds

> > > with vmdb2.
> > 
> > Regardless of the outcome of #1031325, this issue will need to be fixed

> > in vmdb2 eventually. vmdb2, similar to other bootstraping tools, has to
> > account for the feature and disable it if necessary for older
> > distributions.
> > 
> > Cloning and reassign to vmdb2.
> 
> Based on more feedback from #10313225, I am also cloning and reassigning

> this issue to fai and grml-debootstrap. Dear maintainers, please check
> whether this issue is relevant for your packages.

The same appears to apply for debos and freedom-maker. Dear maintainers, 
please check whether this issue is relevant for your packages.


Control: severity -1 normal

The images built by freedom-maker have btrfs root partition by default, which 
are not affected by e2fsprogs. Although freedom-maker includes code to support 
ext4 root partition, to actually build an image using ext4 requires patching 
the source code of freedom-maker. If one modifies freedom-maker in this way, 
then there will be an error if building a bullseye image on a bookworm host:

2023-02-23 13:08:25,297 - ERROR - Target failed - virtualbox-amd64-ext4
Traceback (most recent call last):
  File "", line 198, in _run_module_as_main
  File "", line 88, in _run_code
  File "/home/james/salsa/freedombox-team/freedom-maker/freedommaker/__main__.py", 
line 13, in 
Application().run()
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/application.py", 
line 57, in run
builder.build()
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/builders/vm.py", 
line 21, in build
self.make_image()
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/builder.py", line 
106, in make_image
self._get_builder_backend().make_image()
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/internal.py", 
line 43, in make_image
self._install_boot_loader()
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/internal.py", 
line 352, in _install_boot_loader
library.install_grub(self.state)
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/library.py", line 
476, in install_grub
run_in_chroot(state, ['grub-install', device] + args)
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/library.py", line 
49, in run_in_chroot
return run(*args, **kwargs)
   
  File 
"/home/james/salsa/freedombox-team/freedom-maker/freedommaker/library.py", line 
43, in run
return cliapp.runcmd(*args, **kwargs)
   ^^
  File "/usr/lib/python3/dist-packages/cliapp/runcmd.py", line 64, in runcmd
raise cliapp.AppException(msg)
cliapp.app.AppException: Command failed: chroot /tmp/tmpxa690dib grub-install 
/dev/loop0
b''
b'Installing for i386-pc platform.\ngrub-install: error: unknown filesystem.\n'

Building a bookworm image that uses ext4 does not have this error.

In addition, it's not clear to me that there is a requirement for freedom-maker 
in bookworm to build bullseye images.


OpenPGP_signature
Description: OpenPGP digital signature


Bug#1031593: AttributeError: module 'gettext' has no attribute 'bind_textdomain_codeset

2023-02-18 Thread James Valleroy
Package: deluge-web
Version: 2.0.3-3.3
Severity: grave
Justification: renders package unusable
X-Debbugs-Cc: jvalle...@mailbox.org

When starting the deluge-web service, it produces the following error:


Feb 18 19:36:34 freedombox systemd[1]: Started deluge-web.service - Deluge 
Bittorrent Client Web Interface.
Feb 18 19:36:34 freedombox deluge-web[43842]: Unable to initialize 
gettext/locale!
Feb 18 19:36:34 freedombox deluge-web[43842]: module 'gettext' has no attribute 
'bind_textdomain_codeset'
Feb 18 19:36:34 freedombox deluge-web[43842]: Traceback (most recent call last):
Feb 18 19:36:34 freedombox deluge-web[43842]:   File 
"/usr/lib/python3/dist-packages/deluge/i18n/util.py", line 111, in 
setup_translation
Feb 18 19:36:34 freedombox deluge-web[43842]: 
gettext.bind_textdomain_codeset(I18N_DOMAIN, 'UTF-8')
Feb 18 19:36:34 freedombox deluge-web[43842]: 
^^^
Feb 18 19:36:34 freedombox deluge-web[43842]: AttributeError: module 'gettext' 
has no attribute 'bind_textdomain_codeset'
Feb 18 19:36:34 freedombox deluge-web[43842]: 19:36:34 [ERROR   
][deluge.i18n.util   :146 ] Unable to initialize gettext/locale!
Feb 18 19:36:34 freedombox deluge-web[43842]: 19:36:34 [ERROR   
][deluge.i18n.util   :147 ] module 'gettext' has no attribute 
'bind_textdomain_codeset'
Feb 18 19:36:34 freedombox deluge-web[43842]: Traceback (most recent call last):
Feb 18 19:36:34 freedombox deluge-web[43842]:   File 
"/usr/lib/python3/dist-packages/deluge/i18n/util.py", line 111, in 
setup_translation
Feb 18 19:36:34 freedombox deluge-web[43842]: 
gettext.bind_textdomain_codeset(I18N_DOMAIN, 'UTF-8')
Feb 18 19:36:34 freedombox deluge-web[43842]: 
^^^
Feb 18 19:36:34 freedombox deluge-web[43842]: AttributeError: module 'gettext' 
has no attribute 'bind_textdomain_codeset'


The bind_textdomain_codeset function was removed from Python 3.11.


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

Kernel: Linux 6.0.0-0.deb11.6-amd64 (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
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)

Versions of packages deluge-web depends on:
ii  deluge-common  2.0.3-3.3
ii  python33.11.1-3
ii  python3-mako   1.2.4+ds-1

deluge-web recommends no packages.

deluge-web suggests no packages.

-- no debconf information



Bug#1024956: marked as pending in manuel

2022-12-02 Thread James Valleroy
Control: tag -1 pending

Hello,

Bug #1024956 in manuel reported by you has been fixed in the
Git repository and is awaiting an upload. You can see the commit
message below and you can check the diff of the fix at:

https://salsa.debian.org/python-team/packages/manuel/-/commit/f58f4ae1c50d802c8232971154d2ccd5708a60f1


Handle test output change on python3.11

On Python 3.11, the test output is changed slightly.

This patch is taken from an open upstream pull request:
https://github.com/benji-york/manuel/pull/32

Closes: #1024956


(this message was generated automatically)
-- 
Greetings

https://bugs.debian.org/1024956



Bug#939497: workaround

2021-06-01 Thread James Valleroy
Please note that freedombox has implemented a workaround for this issue. The 
workaround is to avoid use of Django 2.1 decorator:

https://salsa.debian.org/freedombox-team/freedombox/-/commit/591ed5c4ae5d4154b66fb3c59b5ff54bcf53839b

So while it would be nice to get the fix from upstream, it is not strictly 
required to avoid the issue.

Therefore I would propose that the severity can be lowered.

-- 
James



OpenPGP_signature
Description: OpenPGP digital signature


Bug#982144: php-klogger: Useless in Bullseye

2021-02-07 Thread James Valleroy
Hi Paul,

On 2/7/21 2:56 PM, Paul Gevers wrote:
> Hi James,
> 
> On 07-02-2021 18:23, James Valleroy wrote:
>> It has no dependencies in Buster, so there is no reason for an end user to 
>> install it.
>>
>> A PHP developer could use the package though. But I think they are more 
>> likely to use composer to download/install what they need.
> 
> So, you're saying it was useless to ship in buster?
> 

Yes, it was useless to ship in buster.

Regards,
James



OpenPGP_signature
Description: OpenPGP digital signature


Bug#982144: php-klogger: Useless in Bullseye

2021-02-07 Thread James Valleroy
On 2/7/21 2:54 AM, Paul Gevers wrote:
> Hi James,
> 
> On Sat, 06 Feb 2021 15:10:04 -0500 James Valleroy
>> This is a dependency only for shaarli, which will not be included in 
>> Bullseye.
> 
> We already shipped this package in buster. Do you really think it's
> useless for users there without shaarli? Is it enough useless to not
> ship it?

It has no dependencies in Buster, so there is no reason for an end user to 
install it.

A PHP developer could use the package though. But I think they are more likely 
to use composer to download/install what they need.

I opened bugs like this for all the dependencies of shaarli, after discussion 
in #980134.
Do you agree with this approach in general?

Regards,
James



OpenPGP_signature
Description: OpenPGP digital signature


Bug#982144: php-klogger: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-klogger
Version: 1.2.1-4
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This is a dependency only for shaarli, which will not be included in Bullseye.

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

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

Versions of packages php-klogger depends on:
ii  php-common   2:76
ii  php-psr-log  1.1.3-2

php-klogger recommends no packages.

php-klogger suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAe95wWHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICBQjD/9si/XKAxhW+g70D28ayVKLiQMR
7TFgUUEQiSHsKxnALQYMajzqu6/j33RPOPwoVfSkd1/Dl/BMMZAqXDfytJ3b7Hm8
HYluRt4uB8eoW1XvD8wDzgDZh84CSFcvD6FjpM9xhOhVf58uVl0UEFQlEs+HOUS9
rkd9dvheNSk+kjSqqy4ikpwOdbYxms/2Vz2NFXT4IGHVax0MIw0fD4S6twOuaJzc
R5PkffPBnmF+YEAPqwG41K55VC51PG/SCpMNucm3UZxclGb2tTQY5i0v/2vJsMMB
9DrJE3uzTR3oBsTnBlPlaHvAAo3Mkg2uIvXJj9choXt9eyUoVd7N/8PLpX20uRyg
fQgD9u9wLRlHKQKLIeL81mwPVUycv6dqR3rUhNNbR2NlHxSNpqFdJCkUt/zsNR7V
rtDsMTOqDfFFSOwHlU5rgblfMkEpmqBT/NANH+m/zeTIk/TAkf3U5AtODoxrt6SI
FBvGHapQj3rc6tUj4tNW/YSZywBR8BNUK7wcGZOhb5C2LFrvNSX7940uPIHyocuL
TohbLDCW5zEc7DvGKqGKd6YoNyO7ooVReyG48jiFl7EJD8/kxrpQQJYYIw588Jif
VI7ABoJ0uum+DkGFaeBy/W2K1hdXUff4LjKZVWXdP0aZv5YXj8xyOa0W2LI4nwVN
3N1l0gAb89wb9xwjkQ==
=0qBA
-END PGP SIGNATURE-



Bug#982133: php-pimple: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-pimple
Version: 3.3.1-1
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This is a dependency only for shaarli, which will not be included in Bullseye.

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

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

Versions of packages php-pimple depends on:
ii  php-common 2:76
ii  php-psr-container  1.0.0-2

php-pimple recommends no packages.

php-pimple suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAe2gAWHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICJA8EACXXckirDCoVilGLIBRwW1SX/F/
NDGElDlk8OAeghZgFxzaaO4scoYqgWUG4v0EjbSLZ9UsUCG8jyTUuQcfh+LS9rn0
6ArRk3UAfs9O9wwldvT3BDOpeZhRfu3LbgoBN61xcoPjk6tE/V2hEZiQBPv9INui
8m76UAvdIwFirelpymh9O82bpgXHml5lnoEVDqkiPzje5IqIdKvrq1E+xApx32G+
rzbtfPG6tgiPr040n9ikHnvETm4qeoxOIRxxWu2c9sEyMlCwwpfQdNyssawwQUUw
iw1I3C8xIKvSQ6zbBHpm4cBCsoMks6WK4zpmcldwhEbCZpylmmI7F9WdxgcbQ8si
auw75Czk+gTYVGyOvm4O2apxum+1HnLeH2nzZx3GC3Nw33f0BNUo4pZ696sQBpRM
6/eQZvMBUS7bjs90bSSTd3E1KL+LBaTGAlqhL8pYiQoMxCA6cC1ZeLY1uwqGkN2p
QYgTj4c7u05rUJtBPkwrCJRqpz9E75SFg7VGzjILzXFcLA+VGr0g2BYknm6ZomZL
MoDJffTg4GqYzGA6OxGB+SXl6zo5PT/khnHwXvW5A7n6iph7ScIxN1KS1umLhQDl
6SwHJcmzTuq19tZqW1MpDupzav2lT2YFhrbZCpf5+goeIjNKaFIybDpdiuLbB8ml
bHlg0RRvVAo5+ws0dA==
=lpde
-END PGP SIGNATURE-



Bug#982132: php-netscape-bookmark-parser: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-netscape-bookmark-parser
Version: 2.1.0-3
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This is a dependency only for shaarli, which will not be included in Bullseye.

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

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

Versions of packages php-netscape-bookmark-parser depends on:
ii  php-common   2:76
ii  php-klogger  1.2.1-4

php-netscape-bookmark-parser recommends no packages.

php-netscape-bookmark-parser suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAe2ZYWHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICEWvD/sF3fO0XjTJKGrsqgUJO4PYgLbm
xKZYg0Ckjsz43exhsVqgWIgBIyAYfA2NrSWVmeR2GMVxsIkSb2CX7ICMbIAQ/hZ5
vg6YZ34bv6KKAqE/lYslYsT3M2CsoCmhsSVzR5TFudZg6TBSW7kjRYA099qBUegu
34TgejzK/EyMEV0HWR1mocMGj8J33W8qSLiJeejD9iXo8km86VnX+OvLcNGG7xXi
1ODPYSESa4PFTzQE/N92YV9AZfulcicks1rRyDLUEBZD364WjNVe2puSuJHsf/bC
Guointdh+hK4Kdz3wBIkEpH8W2PlQmGQnxS/GwO6SsM7YKnyw2XXsmGjPmJa0BMn
MaSIR0ouPTw/9y6ia/A+B0/9QQJ3yhpspW2cqNxvWyM52RG1PTZzyArAYcDmaKVG
wXxU7FSZdNT4hirsjf3yqUm4l+4ZG9oRV+Wpt84utOCnw2xLnK6D+CuYes63c6JF
Zw8JhrjSH5Xw/Pi5HjoD2l+W9SAdbsgcrDQhhiDentmx6ola67OizVt//LkYV7tn
VhP8dlPS+41WzdKr7WIwm2XpG3OUKbRDkKTF/16Pm7fwyfYeA8SeyhtNRKfcLq1/
KWprZTTzUZ5dSO4fLcOtwXiluDteKoV8qoumsQ8UEsjmE/zcuKMMem+0HI6Rbhfa
FYyNQXvfSJVBSQ5oDw==
=5wso
-END PGP SIGNATURE-



Bug#982107: php-gettext-languages: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-gettext-languages
Version: 2.6.0-2
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This is only a dependency for shaarli, which will not be included in
Bullseye.

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

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

Versions of packages php-gettext-languages depends on:
ii  php-common  2:76

php-gettext-languages recommends no packages.

php-gettext-languages suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAeuFIWHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICGqaEACyeTUztbQD1elQTfyslyajxDe0
HLFFrjD+w875ODR/1jHcFuk3fX8+tzejfA/vjQn7BkfthtdLqh+RZn62Uu97B+jA
ittPNuRnDbzWRa5dI3DmAdIup5IAtYxu6BZg9O5djEE40Nturb4TcXwECCpRvr/L
tqleYhSncV+nAcFbufkmjV3U1rCEEWoudO+NTY7grEdWsPyec+jQXNrvqZHkm/0q
abIfYKPkzmjcXA1ZCz2U5firqde30xnoTbYM44by8B50f7p1hWXdqF6ZJdFDpgUy
E/Fg3wIPaDBdPiGRPpQtADSpKFKd4E4tlNpcwdbdrL5UypciIzJmHBGuVNK8byPS
XmTLOr7pkJ4CxifKOcrm3kQ2ioINa+X9eiDgE2U0Yfmb3Yt6ceEEze48uEd01EcU
2NRm+PB3L0/X8mPJ4cn8ChC7qmyGPCXlziiZvirYEKwQnoKo5ItU8qThjZN+DKFU
Lqvo6S2IeHxcVBhCaLKyA+zdEp4oL4ayfa8KINSltTqN/C2tANUBeypkEB3SjOe8
OHLZAik4C9WvY5LD5foi7DAXa9wWsZ/ywZS8lbD/H7SGWnq3qsvsi0N0RRRpX49m
TH36zSxBKJVk34RQDPSBzH9OwOk0ulV2Kx0vBqkFr9KQmMUtlWzup2GE0eYhQzJe
gKFKIT0nPXllHUPfCg==
=rTzZ
-END PGP SIGNATURE-



Bug#982102: php-oscarotero-gettext: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-oscarotero-gettext
Version: 4.8.2-4
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This is a dependency only for shaarli, which will not be included in
Bullseye.

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

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

Versions of packages php-oscarotero-gettext depends on:
ii  php-common 2:76
ii  php-gettext-languages  2.6.0-2

php-oscarotero-gettext recommends no packages.

php-oscarotero-gettext suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAes48WHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICCNBD/9fyzcLC05VWhvwtRCnhjl2OJD+
1zuZScGKVa+lJu/O+5trezN+dZ67LYGIIpbuulKpesRTlaphxmn/5sX4t90RAFea
Xkv2hyw+b27bsoZKxduMtbYn+LZvkIjpYVs7Pmws/LYEHd4WV5zCX8BB97dtSEGW
D3Mm2MlI+kmLkm87/YsUwhV1nLPI7ovJAMZsFP1gSSJPyU5ihKwJa17wBsyojy80
Exm/WzunwASIqv+muyw0dPTvZbpJ673dN8ytrLJYQKsZ6zhSCGjuIo9maI4w4yW/
RXw+pofpaTxSlsSl6IFstb+Hh8fDv+XgPEioxWJnkdFp2FzsQuUh0oWqueXj0kVY
30u571/5ZWKf235zk8nRMhtr9ztT5/XOawlveQNKjskpcUyOMfFNEtFbAzS2TbNS
uDYOcL2jQcU2NFT/pUxLrGgY62K0JukMGf6nSVh5eXidL2lM8Nn1c+OHchGvKMoN
RpDSTLt5+i4NeL2pTw8EfsNVAWGa76g24dRlGjqn9wigjHNte94FjBEjFb+tIbJN
PBqxqtpkFA6znUViYftCLEfbXOVM0UEV/d25LZiKpGX6ngmeHkRfga6kFqudYytw
rcOpSGXyYt8z3mejPWp6awKephQJg6R1i1/PvhxeIKMdOQswjLMpC5q5yC/DrDIR
Te5M+R9/Oalcl0vO5Q==
=WinL
-END PGP SIGNATURE-



Bug#982094: php-slim: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-slim
Version: 3.12.3-4
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This is a dependency for shaarli, which will not be included in
Bullseye.

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

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

Versions of packages php-slim depends on:
ii  php-common  2:76
ii  php-nikic-fast-route1.3.0-3
ii  php-pimple  3.3.1-1
ii  php-psr-container   1.0.0-2
ii  php-psr-http-message1.0.1-2
ii  php-xml 2:7.4+76
ii  php7.4-json [php-json]  7.4.14-1
ii  php7.4-xml [php-xml]7.4.14-1
ii  php8.0-xml [php-xml]8.0.1-1

php-slim recommends no packages.

php-slim suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAeq4EWHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICBasEAC6MEHrezlqiIrd0+M9AepDnEpR
XyV7j9MOCZOXl30f+eKjNs2RsYoUsKRr8gMFSjtFxz5e3lkTHmSLHKZkDIH2UgGL
JQKvKJqmtZY5RQN8eNpoN/6TnjYvZDFy2gXLm4yfL7jkDV2M0u8xNMp4yGk2tUGr
D15uFLIEIbm6iB3WjIB9nAywMJOGtJv483x7Hb9FA7Cxp3bdZwi4b/jXnKg4zA1T
D4e/DcFQSj+VhdCW9lGyB1E44XO28OmBhIpELjisiLZoEOvSMcXX7bYUnvs/pTKI
Fc73ytbB0YTffVX+4GMwu4w+MZHPEo8wZ0rglLV+uoN0l6OzRS7e7F7RLS9kAsS+
hPpcfzTCB/haC7b/BfdQFgjCdelkAlGwVY7VaR+n338lGIBET+v+CAIiKJ/TVw2/
D2uDJQuLqQdQfUoihJ/hnnh4S3skpJnurtxzv6ht5VGgqQZ+g8LH7mTD3PHcWvwN
vvmxUlW3brjVuqLqnSo+xU9hB/RsX/no1GXNxa9Sw7GrpERS4fzw7reiPf7Qbrrf
NVRhXxACVOwpoKbgKR0zyjkXhYZGHtFkULUkoPZwtuOY8XZHL/rAmB2dH8RPtR1Q
+XKF7NpSHCrB6wOSpriRuA3sg0Q8VLjjIaje2DdX1wVYnOpFQgVN9GIesWm2ijGH
UURk0wiKDRktTiKt+w==
=Wi75
-END PGP SIGNATURE-



Bug#982093: php-pubsubhubbub-publisher: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-pubsubhubbub-publisher
Version: 0~~20181009-2
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This is a dependency only for shaarli, which will not be included in
Bullseye.

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

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

Versions of packages php-pubsubhubbub-publisher depends on:
ii  php-common  2:76
ii  php-curl2:7.4+76
ii  php7.4-curl [php-curl]  7.4.14-1

php-pubsubhubbub-publisher recommends no packages.

php-pubsubhubbub-publisher suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAeqy8WHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICHafD/0XNK9rmQZfatvDMPZsek1Ir/Gb
hrroVeLs8MhJEKOdenCc7uunBmCMmapKTei97wDelpFmcTRCPw0Y9ffE/MMA65Ku
zx0pj6shDa4sGm6XtOyl73y644CsxbveuezAPX/gv7fdghpzZenOjsvsrfKUC/E9
uB5bBXsf+AChzpI49tdg69HpivZG+/0JyWJ+BIplOWyvFQP6ttzG+cwxqBjkv80v
2HY9yXK1uMZ2V2cZ5FjnFuS5IZsafRuHtS3tWDlSRfuM6VIVu2VOJ0vQXJi8L9EX
hUXJnEgXdGrP1O06mXJ6AMtnf72rKQU3hEsJqNA+d3lMRImVhytGWeNnVgUNc187
TyuIPGYYm0va8Ch0RKNrnCXrNxaQnJhXbYYpHUh+mXWy16qn0F7YZ56hp9vqHD4G
0wlTPTQ3hx0BGhF4yCYJkkeZZOm62tUToiq1CIlsDD8lssclyG8LLlAphLzcVok2
bIFajF8gGYP7AygGA3Ba/lnYuVFud0Cr2SFGEEA4PWJntrSDRqF7p26YpDR+hJf+
WeuBUXt4qsB8FQ8ITQhxxptDMtNFrblc/j7C0DuHqZn6Ommlc/YLIYPSqqy/DiX7
a6ZkMbIPPTIn03zn/5YdBFEaP4NI/YoCm7DLYSLImv20vRFokxc4AORaQapGU4Lw
i6+Es3SdIz7vffbqCA==
=yZ5A
-END PGP SIGNATURE-



Bug#982092: php-arthurhoaro-web-thumbnailer: Useless in Bullseye

2021-02-06 Thread James Valleroy
Package: php-arthurhoaro-web-thumbnailer
Version: 2.0.3+dfsg-1
Severity: serious
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

This package is only needed for Shaarli, which will not be included in
Bullseye.

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

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

Versions of packages php-arthurhoaro-web-thumbnailer depends on:
ii  php-common  2:76
ii  php-curl2:7.4+76
ii  php-gd  2:7.4+76
ii  php-text-template   2.0.4-1
ii  php7.4-curl [php-curl]  7.4.14-1
ii  php7.4-gd [php-gd]  7.4.14-1

php-arthurhoaro-web-thumbnailer recommends no packages.

php-arthurhoaro-web-thumbnailer suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAepxoWHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICNttD/9Mmz7tphPQ+sLlRiGzLGnirKgC
xgc0P9IbZgOyOcJLA9N7rZ7bKA2YS76jzYcS0kj0Gb0pcTKcFZ5rQbRWOu120ayk
TchnvTERCLonFetNI9pTV50V80J5qgyPPyRvCX1BPp9I29ZG/8E3AR3ibO9EKgl3
9iAgDHDJbzREQSyiT4vECH8zBCkifkLy2tJJhg5Mnf2XOXrXt7OFs8FLQ6WSKfQd
K4nPYDvC/toIiGHUw2CXkBF0oTLqAs2sLKWULhhrhzHb6FxmDayf5YMdyNtCX1TV
1r/GVcEYfXvpy2wB59sQu39+Qmdb4KJGnxtHD4ZcPST6ghbZ7OgZkELIJiv435Qi
Vlyol3Jo0EZo54EDG7V8SOvPKuQ31ikVqudNNka4XvuytyMjsfIfQho+2A6MeUp8
921OEAcNuA1S7A52PMJ4AbYM8yEJvx3M2gzMm1v/h9e0GwZLyGa0t/i8Qysp70bj
pAVE0T8sj90iNrDmB0demcfMr1pSIpK+KqrTJvbGMTB7q4owoe5r5Ia8N07FaaIV
ruBf5BRuwJmLGk88DXYPuYU89HZ2hCx9JWCkBskRtlSgTbXqk/PUET9z3QASvAq4
817GW8MgHIIfbsRKUTqNUGnooudfKpkqAj7kIIifPj1Q2zupvRixqaeg+8ttI/Li
R1kKCUxhXDgHy0wQ1A==
=t581
-END PGP SIGNATURE-



Bug#980134: Keep shaarli (and dependencies) out of Bullseye? (Was: Bug#980134: shaarli: Missing minified js and css for frontend)

2021-02-05 Thread James Valleroy
Hi David,

On 2/3/21 2:46 PM, David Prévot wrote:
> Hi James,
> 
> Le Thu, Jan 14, 2021 at 07:05:21PM -0500, James Valleroy a écrit :
> […]
>> While the packaged shaarli is technically usable, it is missing both
>> functionality and styling that would be expected by users. Therefore
>> it should be kept out of stable releases until this issue is fixed.
> 
> Given the above (and the freeze schedule), it looks like shaarli won’t
> be part of Bullseye. Do you intend to also request the removal of its
> (build-)dependencies (e.g., via such kind of RC-bug), or do you intend
> to maintain them all during the Bullseye lifetime (wrt security issues)?

I agree with keeping the dependencies out of Bullseye also. I will try to start 
filing bugs this weekend.

Regards,
James



OpenPGP_signature
Description: OpenPGP digital signature


Bug#980134: shaarli: Missing minified js and css for frontend

2021-01-14 Thread James Valleroy
Package: shaarli
Version: 0.12.0+dfsg-2
Severity: grave
Justification: renders package unusable
X-Debbugs-Cc: jvalle...@mailbox.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Shaarli package is currently missing minified js and css files which
are expected by the frontend. They should be built by webpack, but
several dependencies are missing:

- - awesomeplete
- - blazy
- - sass-loader

While the packaged shaarli is technically usable, it is missing both
functionality and styling that would be expected by users. Therefore
it should be kept out of stable releases until this issue is fixed.

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

Kernel: Linux 5.10.0-1-amd64 (SMP w/4 CPU threads)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages shaarli depends on:
ii  gettext 0.21-3
ii  javascript-common   11+nmu1
ii  libapache2-mod-php7.4 [libapache2-mod-php]  7.4.11-1
ii  libapache2-mod-php8.0 [libapache2-mod-php]  8.0.1-1
ii  libjs-jquery3.5.1+dfsg+~3.5.5-5
ii  libjs-jquery-lazyload   1.7.2-1.1
ii  libjs-jquery-ui 1.12.1+dfsg-7
ii  php-arthurhoaro-web-thumbnailer 2.0.3+dfsg-1
ii  php-common  2:76
ii  php-curl2:7.4+76
ii  php-gd  2:7.4+76
ii  php-intl2:7.4+76
ii  php-ldap2:7.4+76
ii  php-mbstring2:7.4+76
ii  php-netscape-bookmark-parser2.1.0-3
ii  php-oscarotero-gettext  4.8.2-4
ii  php-parsedown   1.7.3-2
ii  php-pubsubhubbub-publisher  0~~20181009-2
ii  php-slim3.12.3-4
ii  php7.4-curl [php-curl]  7.4.11-1
ii  php7.4-gd [php-gd]  7.4.11-1
ii  php7.4-intl [php-intl]  7.4.11-1
ii  php7.4-json [php-json]  7.4.11-1
ii  php7.4-ldap [php-ldap]  7.4.11-1
ii  php7.4-mbstring [php-mbstring]  7.4.11-1
ii  php8.0 [php]8.0.1-1
ii  php8.0-mbstring [php-mbstring]  8.0.1-1

Versions of packages shaarli recommends:
ii  nginx-core [httpd]  1.18.0-6+b1

shaarli suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQJKBAEBCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmAA3EEWHGp2YWxsZXJv
eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICAEFD/94NdyTYq9ovONlDL6aKnrjdsu9
BVZp/cB4N2nGfEiEpjc4nQ0EqCZCvAwBJWNGa3FoG44jNniLZnO9Kk4+oZfCcMwE
wxR+9wuaT9EQwEj5OLseHIcX0I48B4BfRRlJbVhLerMLxJ098V5xo3jRYvUD+Ak7
ZCGvfRCuZ2LnoRbhHT4bg9w1OReU15B5nDz3mWIzSW7Q6tDQJX/Xnltfy5ahNS4k
mzCjeyUIIn2JGt+u+9Iw7DP/kdl5pYfw2W7ui7flus3oSpO5/Q1o0nBWOH5oZ/r9
fNpaoTROu+68P2Qx+/1wDneP2WnNbg07R0rV0htdy3nMMUIkcOXMygz1YaB7dO0d
hK5k2GF/EjH1t7CP4wQa4UZE2byRnVD4JeEzy3A5f7pMGxkzuxJ1HU0qUXJrUQ26
/Eh6uBTecl+k8d3WDsYKeaysfYi5AzT4MYvVx+VsK5864j/IAHokvz5NxeEhOQAM
BHVdu51yWNlKR0cqe5jwk4BVWBtzNr+1tN4TfmrZ3IwgORGWPpSmdAWA48w8IxuF
0Gv7VSIMYCt3dtm7dNhGUOApkqh73bk9RywY7b9/Qw2qabnezcu2TTrB9GArSUTa
DwDkt80aB2gb3gCJ8qpNEiPNQ3q81p6XaroC1KEvsxL0yQv+y6fufQJ+67ElyRIL
uN/19lslqG3JkbHofw==
=+EB3
-END PGP SIGNATURE-



Bug#816756: Useless in Debian

2020-01-07 Thread James Valleroy
On Fri, 4 Mar 2016 12:51:53 -0400 David =?iso-8859-1?Q?Pr=E9vot?= 
 wrote:
> I packaged php-pimle as used by owncloud, but owncloud is going away,
> see #816376. There is a priori little point to ship php-pimple in a
> stable Debian release.
> 
> I intend to follow up with an RM request in a few months if nobody
> objects (but feel free to beat me to it).

Please keep php-pimple in Debian for now. It is a dependency of php-slim 3.x, 
which is a dependency of shaarli (ITP #864559).

If/when shaarli updates its dependency to php-slim 4.x, then php-pimple will no 
longer be needed.



signature.asc
Description: OpenPGP digital signature


Bug#912184: python-testfixtures FTBFS with python 3.7 as supported version

2018-11-28 Thread James Valleroy
tags 912184 + patch
thanks

This has been fixed in upstream repo (but not yet included in a release):
https://github.com/Simplistix/testfixtures/commit/6e8807543b804946aba58e2c9e92f5bdc3656a57

The attached patch is an adaptation of this change for the current
version in Debian. With this patch, I'm able to build the package again.

Updating the package to latest upstream release would be ideal. But this
also adds a new dependency (sybil) not yet packaged in Debian.
From 43aab9a4f6f8b435ad390346cca84a3536980227 Mon Sep 17 00:00:00 2001
From: James Valleroy 
Date: Tue, 27 Nov 2018 20:17:34 -0500
Subject: [PATCH] Add patch to deal with the comma vanishing from repr in 3.7

Based on https://github.com/Simplistix/testfixtures/commit/6e8807543b804946aba58e2c9e92f5bdc3656a57
---
 ...the-comma-vanishing-from-repr-in-3.7.patch | 320 ++
 debian/patches/series |   1 +
 2 files changed, 321 insertions(+)
 create mode 100644 debian/patches/0003-Deal-with-the-comma-vanishing-from-repr-in-3.7.patch

diff --git a/debian/patches/0003-Deal-with-the-comma-vanishing-from-repr-in-3.7.patch b/debian/patches/0003-Deal-with-the-comma-vanishing-from-repr-in-3.7.patch
new file mode 100644
index 000..9da3114
--- /dev/null
+++ b/debian/patches/0003-Deal-with-the-comma-vanishing-from-repr-in-3.7.patch
@@ -0,0 +1,320 @@
+From: James Valleroy 
+Date: Tue, 27 Nov 2018 20:18:49 -0500
+Subject: Deal with the comma vanishing from repr in 3.7
+
+Based on https://github.com/Simplistix/testfixtures/commit/6e8807543b804946aba58e2c9e92f5bdc3656a57
+---
+ docs/exceptions.txt |  2 +-
+ docs/logging.txt|  2 +-
+ docs/warnings.txt   |  6 +--
+ testfixtures/compat.py  |  5 +++
+ testfixtures/tests/test_compare.py  | 38 +--
+ testfixtures/tests/test_should_raise.py | 65 -
+ testfixtures/tests/test_shouldwarn.py   | 13 +--
+ 7 files changed, 92 insertions(+), 39 deletions(-)
+
+diff --git a/docs/exceptions.txt b/docs/exceptions.txt
+index 67d7e36..eeadc0b 100644
+--- a/docs/exceptions.txt
 b/docs/exceptions.txt
+@@ -38,7 +38,7 @@ causing the tests in which it occurs to fail:
+ ... the_thrower()
+ Traceback (most recent call last):
+ ...
+-AssertionError: ValueError('Not good!',) raised, ValueError('Is good!',) expected
++AssertionError: ValueError('Not good!'...) raised, ValueError('Is good!'...) expected
+ 
+ If you're not concerned about anything more than the type of the
+ exception that's raised, you can check as follows:
+diff --git a/docs/logging.txt b/docs/logging.txt
+index e5d064d..e52b4b8 100644
+--- a/docs/logging.txt
 b/docs/logging.txt
+@@ -227,7 +227,7 @@ A common case of this is where you want to check that exception
+ information was logged for certain messages:
+ 
+ >>> print(l.records[-1].exc_info)
+-(<... '...RuntimeError'>, RuntimeError('No code to run!',), )
++(<... '...RuntimeError'>, RuntimeError('No code to run!'...), )
+ 
+ If you're working in a unit test, the following code may be more
+ appropriate: 
+diff --git a/docs/warnings.txt b/docs/warnings.txt
+index 2642fa8..147b3b9 100644
+--- a/docs/warnings.txt
 b/docs/warnings.txt
+@@ -39,7 +39,7 @@ expected:
+   ]
+ 
+ actual:
+-[UserWarning("sorry dave, I can't let you do that",)]
++[UserWarning("sorry dave, I can't let you do that"...)]
+ 
+ You can check multiple warnings in a particular piece of code:
+ 
+@@ -61,7 +61,7 @@ them into a list as follows:
+ >>> len(captured)
+ 1
+ >>> captured[0].message
+-DeprecationWarning('foo',)
++DeprecationWarning('foo'...)
+ >>> captured[0].lineno
+ 42
+ 
+@@ -87,4 +87,4 @@ expected:
+ []
+ 
+ actual:
+-[UserWarning('woah dude',)]
++[UserWarning('woah dude'...)]
+diff --git a/testfixtures/compat.py b/testfixtures/compat.py
+index fe4a632..48805b0 100644
+--- a/testfixtures/compat.py
 b/testfixtures/compat.py
+@@ -1,6 +1,11 @@
+ # compatibility module for different python versions
+ import sys
+ 
++PY_VERSION = sys.version_info[:2]
++
++PY_37_PLUS = PY_VERSION >= (3, 7)
++
++
+ if sys.version_info[:2] > (3, 0):
+ 
+ PY2 = False
+diff --git a/testfixtures/tests/test_compare.py b/testfixtures/tests/test_compare.py
+index 8e390c7..f525a14 100644
+--- a/testfixtures/tests/test_compare.py
 b/testfixtures/tests/test_compare.py
+@@ -15,7 +15,8 @@ from testfixtures import (
+ )
+ from testfixtures.compat import (
+ class_type_name, exception_module, PY3, xrange,
+-BytesLiteral, UnicodeLiteral
++BytesLiteral, UnicodeLiteral,
++PY_37_PLUS
+ )
+ from testfixtures.comparison import compare_sequence
+ from unittest import TestCase
+@@ -152,10 +153,16 @@ class TestCompare(CompareHelper, TestCase):

Bug#902892: plinth: Any change to user account will lock out user

2018-07-02 Thread James Valleroy
Package: plinth
Version: 0.33.0
Severity: grave
Justification: renders package unusable

If plinth has a single admin user account, and any changes are made to
that user account, the user will be locked out of plinth.

More information and logs:
https://salsa.debian.org/freedombox-team/plinth/issues/1314



Bug#883029: python3-django-axes: temporarily prevent migration to testing

2017-11-28 Thread James Valleroy
Package: python3-django-axes
Version: 3.0.3-1
Severity: serious

plinth, which depends on python3-django-axes, does not work with
3.0.3-1 due to breaking changes. This issue is to temporarily prevent
migration to testing, until plinth package is updated to work with
this version.



Bug#876640: plinth: Insecure crypto settings used for auth-pubtkt

2017-09-24 Thread James Valleroy
Package: plinth
Version: 0.15.1+ds-1
Severity: grave
Tags: security upstream
Justification: user security hole


Due to issues (now fixed) in libapache2-mod-auth-pubtkt, plinth
v0.15.1 has insecure settings for key generation and signing. This may
allow someone to impersonate a plinth user and gain access to apps
that support SSO.

This issue is fixed upstream, but not released yet:
https://github.com/freedombox/Plinth/commit/f9166f8e985401e598de39bd72f0304c799bc0f0#diff-c3fddc6d3c8965915ad635b6b3de49f4


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

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

Versions of packages plinth depends on:
ii  adduser 3.116
ii  augeas-tools1.8.1-2
ii  avahi-daemon0.7-3
ii  batctl  2017.2-2
ii  firewalld   0.4.4.5-2
ii  gettext 0.19.8.1-4
ii  gir1.2-glib-2.0 1.54.0-2
ii  gir1.2-networkmanager-1.0   1.8.4-1
ii  init-system-helpers 1.49
ii  javascript-common   11
ii  ldap-utils  2.4.45+dfsg-1
ii  ldapscripts 2.0.8-1
ii  libapache2-mod-auth-pubtkt  0.11-1
ii  libjs-bootstrap 3.3.7+dfsg-2
ii  libjs-jquery3.2.1-1
ii  libjs-modernizr 2.6.2+ds1-1
ii  libnss-ldapd0.9.8-1
ii  libpam-ldapd0.9.8-1
ii  network-manager 1.8.4-1
ii  nslcd   0.9.8-1
ii  ntp 1:4.2.8p10+dfsg-5
ii  openssl 1.1.0f-5
ii  ppp 2.4.7-1+4
ii  pppoe   3.12-1.1
ii  python3 3.5.3-3
ii  python3-apt 1.4.0~beta3+b1
ii  python3-augeas  0.5.0-1
ii  python3-bootstrapform   3.2.1-3
ii  python3-cherrypy3   3.5.0-2
ii  python3-django  1:1.11.5-1
ii  python3-django-stronghold   0.2.7+debian-3
ii  python3-gi  3.24.1-3
ii  python3-openssl 16.2.0-1
ii  python3-psutil  5.0.1-1+b1
ii  python3-requests2.18.1-1
ii  python3-ruamel.yaml 0.13.4-2+b1
ii  slapd   2.4.45+dfsg-1
ii  sudo1.8.21p2-1
ii  unattended-upgrades 0.97

plinth recommends no packages.

plinth suggests no packages.

-- Configuration Files:
/etc/sudoers.d/plinth [Errno 13] Permission denied: '/etc/sudoers.d/plinth'

-- no debconf information



Bug#876627: plinth fails to start after upgrade

2017-09-23 Thread James Valleroy
Package: plinth
Version: 0.15.1+ds-1
Severity: grave
Justification: renders package unusable

After upgrading plinth from 0.14.0+ds-1 to 0.15.1+ds-1, plinth fails
to start, and shows this error:

ImportError: No module named 'plinth.modules.apps'


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

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

Versions of packages plinth depends on:
ii  adduser 3.116
ii  augeas-tools1.8.1-2
ii  avahi-daemon0.7-3
ii  batctl  2017.2-2
ii  firewalld   0.4.4.5-2
ii  gettext 0.19.8.1-4
ii  gir1.2-glib-2.0 1.54.0-2
ii  gir1.2-networkmanager-1.0   1.8.2-1
ii  init-system-helpers 1.49
ii  javascript-common   11
ii  ldap-utils  2.4.45+dfsg-1
ii  ldapscripts 2.0.8-1
ii  libapache2-mod-auth-pubtkt  0.11-1
ii  libjs-bootstrap 3.3.7+dfsg-2
ii  libjs-jquery3.2.1-1
ii  libjs-modernizr 2.6.2+ds1-1
ii  libnss-ldapd0.9.8-1
ii  libpam-ldapd0.9.8-1
ii  network-manager 1.8.2-1
ii  nslcd   0.9.8-1
ii  ntp 1:4.2.8p10+dfsg-5
ii  openssl 1.1.0f-5
ii  ppp 2.4.7-1+4
ii  pppoe   3.12-1.1
ii  python3 3.5.3-3
ii  python3-apt 1.4.0~beta3+b1
ii  python3-augeas  0.5.0-1
ii  python3-bootstrapform   3.2.1-3
ii  python3-cherrypy3   3.5.0-2
ii  python3-django  1:1.11.5-1
ii  python3-django-stronghold   0.2.7+debian-3
ii  python3-gi  3.24.1-3
ii  python3-openssl 16.2.0-1
ii  python3-psutil  5.0.1-1+b1
ii  python3-requests2.18.1-1
ii  python3-ruamel.yaml 0.13.4-2+b1
ii  slapd   2.4.45+dfsg-1
ii  sudo1.8.21p2-1
ii  unattended-upgrades 0.96

plinth recommends no packages.

plinth suggests no packages.

-- Configuration Files:
/etc/sudoers.d/plinth [Errno 13] Permission denied: '/etc/sudoers.d/plinth'

-- no debconf information



Bug#851134: Info received (Bug#851134: nslcd crashes when losing contact with its server)

2017-02-07 Thread James Valleroy
Any update on this bug? Is it possible the severity could be lowered
until the analysis is complete?

I have some packages (plinth, freedombox-setup) that depend on nslcd, so
I'm hoping that it won't be removed from testing.



signature.asc
Description: OpenPGP digital signature


Bug#829743: plinth: Needs breaks/replaces on freedombox-setup

2016-07-11 Thread James Valleroy
The attached patch implements this change. I checked that with this
change, plinth could be upgraded while freedombox-setup 0.9.1 is installed.

--
James
From 158f5fe11d8bc3d27f4c3393bb12d3cf34a37e9f Mon Sep 17 00:00:00 2001
From: James Valleroy 
Date: Mon, 11 Jul 2016 20:37:22 -0400
Subject: [PATCH] Add breaks/replaces on freedombox-setup << 0.9.2~

---
 debian/control | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/control b/debian/control
index 021afb6..02ac481 100644
--- a/debian/control
+++ b/debian/control
@@ -37,6 +37,8 @@ Vcs-Git: https://anonscm.debian.org/git/freedombox/plinth.git
 Vcs-Browser: https://anonscm.debian.org/gitweb/?p=freedombox/plinth.git;a=summary
 
 Package: plinth
+Breaks: freedombox-setup (<< 0.9.2~)
+Replaces: freedombox-setup (<< 0.9.2~)
 Architecture: all
 Depends: ${python3:Depends}
  , ${misc:Depends}
-- 
2.8.1



signature.asc
Description: OpenPGP digital signature


Bug#821484: freedombox-setup: PHP 7.0 Transition

2016-05-12 Thread James Valleroy
On Wed, 11 May 2016 20:20:05 +0530 Sunil Mohan Adapa 
wrote:
> Attached is patch I prepared as discussed. This patch to the postinst
> script will disable php5 and enable php7.0 module. This rule is applied
> when upgrading from version less than or equal to 0.9. It is not
> applied when doing a fresh install.

I've applied this patch.



signature.asc
Description: OpenPGP digital signature


Bug#821484: Bumping severity of PHP 7.0 transition bugs to serious

2016-05-07 Thread James Valleroy
On 05/07/2016 12:48 AM, Sunil Mohan Adapa wrote:
> I have applied the patch and marked that it closes the bug. However,
> we need to address the issue of enabling php7 module for upgrading
> users. I propose that we add 'a2enmod php7.0' to post-install. What do
> you think? 

Yes, I think that would make sense.



signature.asc
Description: OpenPGP digital signature


Bug#821484: Bumping severity of PHP 7.0 transition bugs to serious

2016-05-06 Thread James Valleroy
tags 821484 patch
thanks

The attached patch will simply switch from PHP 5 to PHP 7.0.

--
James
From c31380d50e3f6fe55788d5302d324184273a6b6d Mon Sep 17 00:00:00 2001
From: James Valleroy 
Date: Fri, 6 May 2016 07:46:42 -0400
Subject: [PATCH] Switch to PHP 7.0.

---
 debian/control | 2 +-
 setup.d/90_apache2 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index 8fd813c..bc1b86d 100644
--- a/debian/control
+++ b/debian/control
@@ -47,7 +47,7 @@ Depends: ${misc:Depends}
  , iputils-ping
  , iw
  , libapache2-mod-gnutls
- , libapache2-mod-php5
+ , libapache2-mod-php
  , libnss-gw-name
  , libnss-mdns
  , libnss-myhostname
diff --git a/setup.d/90_apache2 b/setup.d/90_apache2
index dd132f2..30a79de 100755
--- a/setup.d/90_apache2
+++ b/setup.d/90_apache2
@@ -25,7 +25,7 @@ a2enmod headers
 
 # enable some critical modules to avoid restart while installing
 # Plinth applications.
-a2enmod php5
+a2enmod php7.0
 a2enmod cgi
 a2enmod authnz_ldap
 
-- 
2.8.1



signature.asc
Description: OpenPGP digital signature


Bug#754960: Still present in jessie

2016-01-19 Thread James Valleroy
On Fri, 24 Apr 2015 16:14:57 +0200 Stephane Bortzmeyer
 wrote:
> As of today, jessie still has the problem.
> GnuTLS 2.12.23 and 0.5.10
> That makes two serious security bugs against libapache2-mod-gnutls
> (#642357 and this one).
>
> There was a conversation on ServerFault
>  which mentions a version 0.6
> which never occurred.
>
>

The upstream ticket has been closed as fixed, and mentions the bug is no
longer present in v0.7.2.

Since 0.7.2 is in unstable now, should this bug be closed?

--
James



signature.asc
Description: OpenPGP digital signature


Bug#811217: diaspora: Configure error, Could not find gem 'timers (~> 4.0.0) ruby'

2016-01-16 Thread James Valleroy
Package: diaspora
Version: 0.5.5.1+debian-2
Severity: grave
Justification: renders package unusable

Dear Maintainer,

When trying to install Diaspora on Debian unstable, I got this error:

Setting up diaspora (0.5.5.1+debian-2) ...
Setting up environment varibales...
Using /etc/diaspora.conf...
export RAILS_ENV=production
export DB=postgres
RAILS_ENV=production DB=postgres ENVIRONMENT_URL=https://localhost
Verifying we have all required libraries...
Resolving dependencies
Bundler could not find compatible versions for gem "timers":
  In Gemfile:
sidekiq (= 3.4.2) ruby depends on
  celluloid (~> 0.16.0) ruby depends on
timers (~> 4.0.0) ruby
Could not find gem 'timers (~> 4.0.0) ruby', which is required by gem
'celluloid
(~> 0.16.0) ruby', in any of the sources.
dpkg: error processing package diaspora (--configure):
 subprocess installed post-installation script returned error exit status 6

The full log is attached.


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

Kernel: Linux 4.3.0-1-amd64 (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
Init: systemd (via /run/systemd/system)

Versions of packages diaspora depends on:
ii  adduser  3.113+nmu3
ii  bundler  1.10.6-2
ii  dbconfig-common  2.0.0
ii  diaspora-common  0.5.3.0+debian1
ii  fonts-roboto-hinted  2:0~20151012-1
ii  imagemagick  8:6.8.9.9-6+b1
ii  nodejs   4.2.4~dfsg-2
ii  postgresql-client9.5+172
ii  postgresql-client-9.5 [postgres  9.5.0-2
ii  rake 10.4.2-2
ii  ruby 1:2.2.4
ii  ruby-actionpack-action-caching   1.1.1-4
ii  ruby-actionpack-page-caching 1.0.2-4
ii  ruby-active-model-serializers0.9.3-1
ii  ruby-activerecord-import 0.10.0-1
ii  ruby-acts-as-api 0.4.2-1
ii  ruby-acts-as-taggable-on 3.5.0-2
ii  ruby-addressable 2.3.8-1
ii  ruby-asset-sync  1.1.0-2
ii  ruby-autoprefixer-rails  6.0.3-2
ii  ruby-backbone-on-rails   1.2.0.0-2
ii  ruby-carrierwave 0.10.0+gh-1
ii  ruby-client-side-validations 3.2.6+gh-1
ii  ruby-compass-rails   2.0.5-5
ii  ruby-configurate 0.3.1-1
ii  ruby-devise  3.5.2-3
ii  ruby-devise-lastseenable 0.0.6-1
ii  ruby-devise-token-authenticatab  0.4.0-1
ii  ruby-diaspora-federation-rails   0.0.8-2
ii  ruby-entypo-rails2.2.3-1
ii  ruby-eye 0.7-2
ii  ruby-facebox-rails   0.2.0-2
ii  ruby-faraday 0.9.2-2
ii  ruby-faraday-cookie-jar  0.0.6-1
ii  ruby-faraday-middleware  0.10.0-1
ii  ruby-fog 1.34.0-2
ii  ruby-foreigner   1.7.4-1
ii  ruby-gon 6.0.1-1
ii  ruby-haml4.0.7-1
ii  ruby-handlebars-assets   2:0.21.0-5
ii  ruby-http-accept-language2.0.5-3
ii  ruby-i18n-inflector-rails1.0.7-3
ii  ruby-jquery-rails4.0.5-1
ii  ruby-jquery-ui-rails 5.0.5-3
ii  ruby-js-image-paths  0.0.2-1
ii  ruby-js-routes   1.1.2-1
ii  ruby-json1.8.3-1+b1
ii  ruby-json-schema 2.5.1-1
ii  ruby-logging-rails   0.5.0-2
ii  ruby-markerb 1.1.0-1
ii  ruby-messagebus-api 
3.0.7+git.20130130.97b34ece.REALLY.1.0.3-2
ii  ruby-mini-magick 4.3.6-2
ii  ruby-mobile-fu   1.3.1-2
ii  ruby-mysql2  0.3.18-1
ii  ruby-nokogiri1.6.7.1-1
ii  ruby-oembed  0.8.14-1
ii  ruby-omniauth1.2.2-3
ii  ruby-omniauth-facebook   2.0.1-1
ii  ruby-omniauth-tumblr 1.1+git.20140424.078c18c746-1
ii  ruby-omniauth-twitter1.2.1-1
ii  ruby-omniauth-wordpress  0.2.2-1
ii  ruby-open-graph-reader   0.6.1~dfsg-1
ii  ruby-pg  0.18.3-1+b1
ii  ruby-rack-cors   0.4.0-1
ii  ruby-rack-google-analytics   1.2.0-1
ii  ruby-rack-piwik  0.3.0-2
ii  ruby-rack-protection 1.5.3-2
ii  ruby-rack-rewrite1.5.1-1
ii  ruby-rack-ssl1.4.1-2
ii  ruby-rails   2:4.2.5-1
ii  ruby-rails-admin 0.7.0~dfsg-2
ii  ruby-rails-assets-diaspora-jsxc  0.1.4+dfsg~alpha.1-2
ii  ruby-rails-assets-favico.js  0.3.9~dfsg-3
ii  ruby-rails-assets-highlightjs8.9.1-2
ii  ruby-rails-assets-jakobmattsson  1.6.11~dfsg-1
ii  ruby-rails-assets-jeresig-jquer  0.2.0-4
ii  ruby-rails-assets-jquery 1.11.3-1
ii  ruby-rails-assets-jquery-colorb  1.6.3~dfsg-5
ii  ruby-r

Bug#737456:

2014-02-17 Thread James Valleroy
The following 2 files are just sym links, that point to the installed
files from the libjs-jquery and libjs-modernizr packages:

jquery.min.js -> /usr/share/javascript/jquery/jquery.min.js
modernizr.min.js -> /usr/share/javascript/modernizr/modernizr.min.js


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



Bug#730652: volumecontrol.app: VolumeControl fails to open with error: can't open mixer /dev/mixer.

2013-11-27 Thread James Valleroy
Package: volumecontrol.app
Version: 0.5-3.1+b1
Severity: grave
Justification: renders package unusable

   * What led up to the situation?
1. Clean install of Debian testing (amd64).
2. Installed gnustep and volumecontrol.app.
3. Tried to start it through desktop menu or through console.

   * What exactly did you do (or not do) that was effective (or
 ineffective)?
$ VolumeControl

   * What was the outcome of this action?
can't open mixer /dev/mixer.
(application terminates without opening a window)

   * What outcome did you expect instead?
Application should run without error.

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

Kernel: Linux 3.11-2-amd64 (SMP w/8 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 volumecontrol.app depends on:
ii  gnustep-back0.20  0.20.1-2.1
ii  gnustep-base-runtime  1.22.1-4.2
ii  gnustep-gpbs  0.20.1-2.1
ii  gnustep-gui-runtime   0.20.0-3+b1
ii  libc6 2.17-93
ii  libgcc1   1:4.8.2-1
ii  libgnustep-base1.22   1.22.1-4.2
ii  libgnustep-gui0.200.20.0-3+b1
ii  libobjc4  4.8.2-1

volumecontrol.app recommends no packages.

volumecontrol.app suggests no packages.

-- no debconf information


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