webdis.git
5 years agoMerge version 0.1.4+dfsg-1+rpi1 and 0.1.4+dfsg-2 to produce 0.1.4+dfsg-2+rpi1 bullseye-staging archive/raspbian/0.1.4+dfsg-2+rpi1 raspbian/0.1.4+dfsg-2+rpi1
Raspbian automatic forward porter [Sat, 25 Apr 2020 13:35:28 +0000 (14:35 +0100)]
Merge version 0.1.4+dfsg-1+rpi1 and 0.1.4+dfsg-2 to produce 0.1.4+dfsg-2+rpi1

5 years agoMerge webdis (0.1.4+dfsg-2) import into refs/heads/workingbranch
Sandro Tosi [Fri, 10 Apr 2020 06:40:29 +0000 (07:40 +0100)]
Merge webdis (0.1.4+dfsg-2) import into refs/heads/workingbranch

5 years agopython3
Andrii Senkovych [Fri, 10 Apr 2020 06:40:29 +0000 (07:40 +0100)]
python3

Gbp-Pq: Name python3.patch

5 years ago[PATCH] Find libmsgpackc in Multi-Arch library paths
James McCoy [Fri, 22 Jul 2016 03:30:32 +0000 (23:30 -0400)]
[PATCH] Find libmsgpackc in Multi-Arch library paths

The msgpack library may be present in /usr/lib or /usr/lib/$arch,
but only the former is being searched.  Check both places and fix the
library name to use the C lib (libmsgpackc) rather than the C++ lib
(libmsgpack).

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-clib.patch

5 years ago[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions
James McCoy [Wed, 15 Jun 2016 13:26:20 +0000 (09:26 -0400)]
[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions

In msgpack-c's 1.0.0 release, the code was changed to be compatible with
the v5 msgpack spec, specifically separating out the STR and BIN types
as replacements for the old RAW type.

While the STR type is likely the right replacement type to use, it does
introduce a str 8 variant that wasn't present for the old RAW type.  For
better compatibility, the msgpack_pack_v4raw functions were added to
directly map to the old functionality.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-compat.patch

5 years ago[PATCH] Use pkg-config to find msgpack library when available
James McCoy [Wed, 15 Jun 2016 13:06:50 +0000 (09:06 -0400)]
[PATCH] Use pkg-config to find msgpack library when available

Since 0.5.8, msgpack-c has provided a pkg-config file.  If it's
installed, use pkg-config to get the relevant CFLAGS/LDFLAGS.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-pkgconfig.patch

5 years agoPass tests with python-msgpack >= 0.3
Andrii Senkovych [Fri, 10 Apr 2020 06:40:29 +0000 (07:40 +0100)]
Pass tests with python-msgpack >= 0.3

Bug: https://github.com/nicolasff/webdis/issues/92
Last-Update: 2014-08-03

Current test suite pass with python-msgpack v0.2 but fails with python-msgpack
v0.3 and later due to changes in the library. Currently Debian ships v0.3
for jessie and wheezy-backports.

Gbp-Pq: Name tests.patch

5 years agoPrint HTTP port number in the logs during startup
Andrii Senkovych [Fri, 10 Apr 2020 06:40:29 +0000 (07:40 +0100)]
Print HTTP port number in the logs during startup

Last-Update: 2016-11-17

Current test suite allows dynamic HTTP port allocation for test purpose.
Once webdis is started it is possible to discover webdis' HTTP port using
netstat. However resent builds have shown that netstat has different options
for hurd and kfreebsd and thus tests are failed and the overall package build
is marked as failed as well. In order to overcome this I have tried to use
sockstat instead of netstat but bug #679876 renders sockstat unusable.

This patch removes the need to use netstat or sockstat to discover the port
number webdis is listening to and instead allows one to simply grep the
necessary info out of webdis logs.
===================================================================

Gbp-Pq: Name print-listen-port-number.patch

5 years agoFix pubsub test when compiled w/ libevent 2.1.x
Oleksandr Senkovych [Fri, 10 Apr 2020 06:40:29 +0000 (07:40 +0100)]
Fix pubsub test when compiled w/ libevent 2.1.x

Bug: https://github.com/nicolasff/webdis/issues/149
Last-Update: 2018-08-25

The pubsub test hangs in the infinite loop due to changes in the libevent2.x
compared to the previous version. This patch makes test pass again.

Gbp-Pq: Name fix-test-new-libevent.patch

5 years agowebdis (0.1.4+dfsg-2) unstable; urgency=medium
Sandro Tosi [Fri, 10 Apr 2020 06:40:29 +0000 (07:40 +0100)]
webdis (0.1.4+dfsg-2) unstable; urgency=medium

  * Post unittests to python3; Closes: #943271, #951624

[dgit import unpatched webdis 0.1.4+dfsg-2]

5 years agoImport webdis_0.1.4+dfsg-2.debian.tar.xz
Sandro Tosi [Fri, 10 Apr 2020 06:40:29 +0000 (07:40 +0100)]
Import webdis_0.1.4+dfsg-2.debian.tar.xz

[dgit import tarball webdis 0.1.4+dfsg-2 webdis_0.1.4+dfsg-2.debian.tar.xz]

6 years agoMerge webdis (0.1.4+dfsg-1+rpi1) import into refs/heads/workingbranch
Peter Michael Green [Tue, 19 Nov 2019 08:28:46 +0000 (08:28 +0000)]
Merge webdis (0.1.4+dfsg-1+rpi1) import into refs/heads/workingbranch

6 years ago[PATCH] Find libmsgpackc in Multi-Arch library paths
James McCoy [Fri, 22 Jul 2016 03:30:32 +0000 (23:30 -0400)]
[PATCH] Find libmsgpackc in Multi-Arch library paths

The msgpack library may be present in /usr/lib or /usr/lib/$arch,
but only the former is being searched.  Check both places and fix the
library name to use the C lib (libmsgpackc) rather than the C++ lib
(libmsgpack).

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-clib.patch

6 years ago[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions
James McCoy [Wed, 15 Jun 2016 13:26:20 +0000 (09:26 -0400)]
[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions

In msgpack-c's 1.0.0 release, the code was changed to be compatible with
the v5 msgpack spec, specifically separating out the STR and BIN types
as replacements for the old RAW type.

While the STR type is likely the right replacement type to use, it does
introduce a str 8 variant that wasn't present for the old RAW type.  For
better compatibility, the msgpack_pack_v4raw functions were added to
directly map to the old functionality.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-compat.patch

6 years ago[PATCH] Use pkg-config to find msgpack library when available
James McCoy [Wed, 15 Jun 2016 13:06:50 +0000 (09:06 -0400)]
[PATCH] Use pkg-config to find msgpack library when available

Since 0.5.8, msgpack-c has provided a pkg-config file.  If it's
installed, use pkg-config to get the relevant CFLAGS/LDFLAGS.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-pkgconfig.patch

6 years agoPass tests with python-msgpack >= 0.3
Andrii Senkovych [Tue, 19 Nov 2019 08:28:46 +0000 (08:28 +0000)]
Pass tests with python-msgpack >= 0.3

Bug: https://github.com/nicolasff/webdis/issues/92
Last-Update: 2014-08-03

Current test suite pass with python-msgpack v0.2 but fails with python-msgpack
v0.3 and later due to changes in the library. Currently Debian ships v0.3
for jessie and wheezy-backports.

Gbp-Pq: Name tests.patch

6 years agoPrint HTTP port number in the logs during startup
Andrii Senkovych [Tue, 19 Nov 2019 08:28:46 +0000 (08:28 +0000)]
Print HTTP port number in the logs during startup

Last-Update: 2016-11-17

Current test suite allows dynamic HTTP port allocation for test purpose.
Once webdis is started it is possible to discover webdis' HTTP port using
netstat. However resent builds have shown that netstat has different options
for hurd and kfreebsd and thus tests are failed and the overall package build
is marked as failed as well. In order to overcome this I have tried to use
sockstat instead of netstat but bug #679876 renders sockstat unusable.

This patch removes the need to use netstat or sockstat to discover the port
number webdis is listening to and instead allows one to simply grep the
necessary info out of webdis logs.
===================================================================

Gbp-Pq: Name print-listen-port-number.patch

6 years agoFix pubsub test when compiled w/ libevent 2.1.x
Oleksandr Senkovych [Tue, 19 Nov 2019 08:28:46 +0000 (08:28 +0000)]
Fix pubsub test when compiled w/ libevent 2.1.x

Bug: https://github.com/nicolasff/webdis/issues/149
Last-Update: 2018-08-25

The pubsub test hangs in the infinite loop due to changes in the libevent2.x
compared to the previous version. This patch makes test pass again.

Gbp-Pq: Name fix-test-new-libevent.patch

6 years agowebdis (0.1.4+dfsg-1+rpi1) bullseye-staging; urgency=medium
Peter Michael Green [Tue, 19 Nov 2019 08:28:46 +0000 (08:28 +0000)]
webdis (0.1.4+dfsg-1+rpi1) bullseye-staging; urgency=medium

  * Disable testsuite.

[dgit import unpatched webdis 0.1.4+dfsg-1+rpi1]

6 years agoImport webdis_0.1.4+dfsg-1+rpi1.debian.tar.xz
Peter Michael Green [Tue, 19 Nov 2019 08:28:46 +0000 (08:28 +0000)]
Import webdis_0.1.4+dfsg-1+rpi1.debian.tar.xz

[dgit import tarball webdis 0.1.4+dfsg-1+rpi1 webdis_0.1.4+dfsg-1+rpi1.debian.tar.xz]

7 years agoMerge webdis (0.1.4+dfsg-1) import into refs/heads/workingbranch
Andrii Senkovych [Sun, 26 Aug 2018 12:30:36 +0000 (13:30 +0100)]
Merge webdis (0.1.4+dfsg-1) import into refs/heads/workingbranch

7 years agoImport webdis_0.1.4+dfsg.orig.tar.gz
Andrii Senkovych [Sun, 26 Aug 2018 12:30:36 +0000 (13:30 +0100)]
Import webdis_0.1.4+dfsg.orig.tar.gz

[dgit import orig webdis_0.1.4+dfsg.orig.tar.gz]

7 years ago[PATCH] Find libmsgpackc in Multi-Arch library paths
James McCoy [Fri, 22 Jul 2016 03:30:32 +0000 (23:30 -0400)]
[PATCH] Find libmsgpackc in Multi-Arch library paths

The msgpack library may be present in /usr/lib or /usr/lib/$arch,
but only the former is being searched.  Check both places and fix the
library name to use the C lib (libmsgpackc) rather than the C++ lib
(libmsgpack).

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-clib.patch

7 years ago[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions
James McCoy [Wed, 15 Jun 2016 13:26:20 +0000 (09:26 -0400)]
[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions

In msgpack-c's 1.0.0 release, the code was changed to be compatible with
the v5 msgpack spec, specifically separating out the STR and BIN types
as replacements for the old RAW type.

While the STR type is likely the right replacement type to use, it does
introduce a str 8 variant that wasn't present for the old RAW type.  For
better compatibility, the msgpack_pack_v4raw functions were added to
directly map to the old functionality.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-compat.patch

7 years ago[PATCH] Use pkg-config to find msgpack library when available
James McCoy [Wed, 15 Jun 2016 13:06:50 +0000 (09:06 -0400)]
[PATCH] Use pkg-config to find msgpack library when available

Since 0.5.8, msgpack-c has provided a pkg-config file.  If it's
installed, use pkg-config to get the relevant CFLAGS/LDFLAGS.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-pkgconfig.patch

7 years agoPass tests with python-msgpack >= 0.3
Andrii Senkovych [Sun, 26 Aug 2018 12:30:36 +0000 (13:30 +0100)]
Pass tests with python-msgpack >= 0.3

Bug: https://github.com/nicolasff/webdis/issues/92
Last-Update: 2014-08-03

Current test suite pass with python-msgpack v0.2 but fails with python-msgpack
v0.3 and later due to changes in the library. Currently Debian ships v0.3
for jessie and wheezy-backports.

Gbp-Pq: Name tests.patch

7 years agoPrint HTTP port number in the logs during startup
Andrii Senkovych [Sun, 26 Aug 2018 12:30:36 +0000 (13:30 +0100)]
Print HTTP port number in the logs during startup

Last-Update: 2016-11-17

Current test suite allows dynamic HTTP port allocation for test purpose.
Once webdis is started it is possible to discover webdis' HTTP port using
netstat. However resent builds have shown that netstat has different options
for hurd and kfreebsd and thus tests are failed and the overall package build
is marked as failed as well. In order to overcome this I have tried to use
sockstat instead of netstat but bug #679876 renders sockstat unusable.

This patch removes the need to use netstat or sockstat to discover the port
number webdis is listening to and instead allows one to simply grep the
necessary info out of webdis logs.
===================================================================

Gbp-Pq: Name print-listen-port-number.patch

7 years agoFix pubsub test when compiled w/ libevent 2.1.x
Oleksandr Senkovych [Sun, 26 Aug 2018 12:30:36 +0000 (13:30 +0100)]
Fix pubsub test when compiled w/ libevent 2.1.x

Bug: https://github.com/nicolasff/webdis/issues/149
Last-Update: 2018-08-25

The pubsub test hangs in the infinite loop due to changes in the libevent2.x
compared to the previous version. This patch makes test pass again.

Gbp-Pq: Name fix-test-new-libevent.patch

7 years agowebdis (0.1.4+dfsg-1) unstable; urgency=medium
Andrii Senkovych [Sun, 26 Aug 2018 12:30:36 +0000 (13:30 +0100)]
webdis (0.1.4+dfsg-1) unstable; urgency=medium

  * New upstream version 0.1.4+dfsg
  * d/control, d/copyright: update maintainers email and proper name spelling.
  * Raise compat level to 11.
  * d/control: remove explicit *-dbg package definition.
  * d/control: bump Standards-Version to 4.2.0.
  * d/control: update Vcs-* fields to point to salsa.d.o.
  * d/control: add Rules-Requires-Root header set to no.
  * d/control: add direct build dependency on pkg-config.
  * d/webdis.install: no need to explicitly install webdis binary.
  * d/rules: remove DESTDIR and CONFDIR vars setup by hand.
  * d/rules: avoid installing webdis.prod.json from upstream.
  * d/control, d/rules: remove trailing whitespace.
  * d/control: remote unnecessary Testsuite header.
  * d/copyright: use https protocol.
  * Add systemd service configuration.
  * d/patches/fix-test-new-libevent.patch: fix pubsub test when compiled w/
    libevent 2.1.x. (Closes: #869951, #901555)
  * d/rules: use /usr/share/dpkg/buildflags.mk to populate build flags.
  * Fix lintian typo check

[dgit import unpatched webdis 0.1.4+dfsg-1]

7 years agoImport webdis_0.1.4+dfsg-1.debian.tar.xz
Andrii Senkovych [Sun, 26 Aug 2018 12:30:36 +0000 (13:30 +0100)]
Import webdis_0.1.4+dfsg-1.debian.tar.xz

[dgit import tarball webdis 0.1.4+dfsg-1 webdis_0.1.4+dfsg-1.debian.tar.xz]

9 years agoMerge webdis (0.1.2+dfsg-2) import into refs/heads/workingbranch
Andriy Senkovych [Wed, 16 Nov 2016 22:46:01 +0000 (22:46 +0000)]
Merge webdis (0.1.2+dfsg-2) import into refs/heads/workingbranch

9 years ago[PATCH] Find libmsgpackc in Multi-Arch library paths
James McCoy [Fri, 22 Jul 2016 03:30:32 +0000 (23:30 -0400)]
[PATCH] Find libmsgpackc in Multi-Arch library paths

The msgpack library may be present in /usr/lib or /usr/lib/$arch,
but only the former is being searched.  Check both places and fix the
library name to use the C lib (libmsgpackc) rather than the C++ lib
(libmsgpack).

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-clib.patch

9 years ago[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions
James McCoy [Wed, 15 Jun 2016 13:26:20 +0000 (09:26 -0400)]
[PATCH] Use msgpack_pack_v4raw(_body) with new msgpack-c versions

In msgpack-c's 1.0.0 release, the code was changed to be compatible with
the v5 msgpack spec, specifically separating out the STR and BIN types
as replacements for the old RAW type.

While the STR type is likely the right replacement type to use, it does
introduce a str 8 variant that wasn't present for the old RAW type.  For
better compatibility, the msgpack_pack_v4raw functions were added to
directly map to the old functionality.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-compat.patch

9 years ago[PATCH] Use pkg-config to find msgpack library when available
James McCoy [Wed, 15 Jun 2016 13:06:50 +0000 (09:06 -0400)]
[PATCH] Use pkg-config to find msgpack library when available

Since 0.5.8, msgpack-c has provided a pkg-config file.  If it's
installed, use pkg-config to get the relevant CFLAGS/LDFLAGS.

Signed-off-by: James McCoy <jamessan@jamessan.com>
Gbp-Pq: Name msgpack-pkgconfig.patch

9 years agoPass tests with python-msgpack >= 0.3
Andriy Senkovych [Wed, 16 Nov 2016 22:46:01 +0000 (22:46 +0000)]
Pass tests with python-msgpack >= 0.3

Bug: https://github.com/nicolasff/webdis/issues/92
Last-Update: 2014-08-03

Current test suite pass with python-msgpack v0.2 but fails with python-msgpack
v0.3 and later due to changes in the library. Currently Debian ships v0.3
for jessie and wheezy-backports.

Gbp-Pq: Name tests.patch

9 years agoPrint HTTP port number in the logs during startup
Andriy Senkovych [Wed, 16 Nov 2016 22:46:01 +0000 (22:46 +0000)]
Print HTTP port number in the logs during startup

Last-Update: 2016-11-17

Current test suite allows dynamic HTTP port allocation for test purpose.
Once webdis is started it is possible to discover webdis' HTTP port using
netstat. However resent builds have shown that netstat has different options
for hurd and kfreebsd and thus tests are failed and the overall package build
is marked as failed as well. In order to overcome this I have tried to use
sockstat instead of netstat but bug #679876 renders sockstat unusable.

This patch removes the need to use netstat or sockstat to discover the port
number webdis is listening to and instead allows to simply grep the necessary
info out of webdis logs.
===================================================================

Gbp-Pq: Name print-listen-port-number.patch

9 years agowebdis (0.1.2+dfsg-2) unstable; urgency=medium
Andriy Senkovych [Wed, 16 Nov 2016 22:46:01 +0000 (22:46 +0000)]
webdis (0.1.2+dfsg-2) unstable; urgency=medium

  * Update testsuite variable names. Fixup to sockstat
  * Remove dependency on netstat or sockstat to run the tests

[dgit import unpatched webdis 0.1.2+dfsg-2]

9 years agoImport webdis_0.1.2+dfsg-2.debian.tar.xz
Andriy Senkovych [Wed, 16 Nov 2016 22:46:01 +0000 (22:46 +0000)]
Import webdis_0.1.2+dfsg-2.debian.tar.xz

[dgit import tarball webdis 0.1.2+dfsg-2 webdis_0.1.2+dfsg-2.debian.tar.xz]

9 years agoImport webdis_0.1.2+dfsg.orig.tar.gz
Andriy Senkovych [Wed, 9 Nov 2016 23:36:21 +0000 (23:36 +0000)]
Import webdis_0.1.2+dfsg.orig.tar.gz

[dgit import orig webdis_0.1.2+dfsg.orig.tar.gz]

11 years agoPass tests with python-msgpack >= 0.3
Andriy Senkovych [Fri, 24 Oct 2014 19:48:16 +0000 (20:48 +0100)]
Pass tests with python-msgpack >= 0.3

Bug: https://github.com/nicolasff/webdis/issues/92
Last-Update: 2014-08-03

Current test suite pass with python-msgpack v0.2 but fails with python-msgpack
v0.3 and later due to changes in the library. Currently Debian ships v0.3
for jessie and wheezy-backports.

Gbp-Pq: Name tests.patch

11 years agowebdis (0.1.1-2) unstable; urgency=medium
Andriy Senkovych [Fri, 24 Oct 2014 19:48:16 +0000 (20:48 +0100)]
webdis (0.1.1-2) unstable; urgency=medium

  * Use correct license names in debian/copyright
  * Document hiredis and jansson libraries
  * Add autopkgtest support
  * Update Standards-Version to 3.9.6. No changes required

[dgit import unpatched webdis 0.1.1-2]

11 years agoImport webdis_0.1.1-2.debian.tar.xz
Andriy Senkovych [Fri, 24 Oct 2014 19:48:16 +0000 (20:48 +0100)]
Import webdis_0.1.1-2.debian.tar.xz

[dgit import tarball webdis 0.1.1-2 webdis_0.1.1-2.debian.tar.xz]

11 years agoImport webdis_0.1.1.orig.tar.gz
Andriy Senkovych [Sun, 3 Aug 2014 23:10:55 +0000 (00:10 +0100)]
Import webdis_0.1.1.orig.tar.gz

[dgit import orig webdis_0.1.1.orig.tar.gz]