Bas Couwenberg
Bas Couwenberg
I've sent you one by email.
That suggests that something changed in 0.14.1 or its dependencies (0.14.0 is packaged in Debian). I just built dmarc-cat 0.14.1 with Go 1.15 on Debian bullseye, and it still fails:...
That seems to work: ``` root@foobar:~/go/pkg/mod/github.com/keltia/[email protected]# go test -v . go: downloading github.com/stretchr/testify v1.3.0 go: downloading github.com/davecgh/go-spew v1.1.1 go: downloading github.com/pmezard/go-difflib v1.0.0 === RUN TestAnalyze --- PASS: TestAnalyze (0.00s) ===...
0.15.0 built with Go 1.18 works now: ``` root@foobar:~# ./go/bin/dmarc-cat -version dmarc-cat version 0.15.0,parallel/j4 archive/0.9.1 root@foobar:~# ./go/bin/dmarc-cat -v /tmp/protection.outlook.com\!onexs.com\!1649030400\!1649116800.xml.gz 2022/04/07 17:21:45 Analyzing /tmp/protection.outlook.com!onexs.com!1649030400!1649116800.xml.gz 2022/04/07 17:21:45 Resolving all 2 IPs 2022/04/07...
I'm aware of that :-) Since the upcoming Debian stretch release will be the first to include libosmium & friends in the release itself (not via backports as for jessie),...
[`mapproxy/source/mapnik.py`](https://github.com/mapproxy/mapproxy/blob/master/mapproxy/source/mapnik.py#L123) needs to be changed to use the new syntax like [python-mapnik](https://github.com/mapnik/python-mapnik/commit/ca66af65204d68a5496a94d36d69bf61144daf3b) e.g.: ```diff --- a/mapproxy/source/mapnik.py +++ b/mapproxy/source/mapnik.py @@ -120,7 +120,7 @@ class MapnikSource(MapLayer): m = self.map_obj(mapfile) m.resize(query.size[0], query.size[1]) -...
This patch works for me: ```diff --- a/configure.ac +++ b/configure.ac @@ -210,7 +210,6 @@ AC_CHECK_FUNCS([canonicalize_file_name f # Check for header files # Autoupdate added the next two lines to ensure...
The `H5_DEFAULT_PLUGINDIR` value in `/usr/include/hdf5/serial/H5pubconf.h` is also exposed through `pkg-config`: ``` $ grep H5_DEFAULT_PLUGINDIR /usr/include/hdf5/serial/H5pubconf.h #define H5_DEFAULT_PLUGINDIR "/usr/lib/x86_64-linux-gnu/hdf5/serial/plugins" $ pkg-config --variable=PluginDir hdf5 /usr/lib/x86_64-linux-gnu/hdf5/serial/plugins ``` Although this is a customization in...
As mentioned in #2429: > The default path (`/usr/local/hdf5/lib/plugin`) is also incorrect when using `-DCMAKE_INSTALL_PREFIX=/usr` and `-DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu`. A better default would be `${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/hdf5/plugin`. `/usr/local/hdf5/lib/plugin` is a bad default value: ```cmake...
I've enabled Python 3 support in the Debian packaging (#30), but it fails to build: ``` I: pybuild base:170: python3.4 setup.py config Traceback (most recent call last): File "setup.py", line...