Package Details: hash-slinger 3.3-2

Git Clone URL: https://aur.archlinux.org/hash-slinger.git (read-only, click to copy)
Package Base: hash-slinger
Description: Tools to generate special DNS records (SSHFP, TLSA, OPENPGPKEY, IPSECKEY)
Upstream URL: https://github.com/letoams/hash-slinger
Licenses: GPL2
Submitter: Schnouki
Maintainer: HLFH
Last Packager: HLFH
Votes: 3
Popularity: 0.138585
First Submitted: 2014-09-10 08:44 (UTC)
Last Updated: 2023-11-19 08:12 (UTC)

Dependencies (9)

Required by (0)

Sources (1)

Latest Comments

1 2 3 Next › Last »

micwoj92 commented on 2025-01-13 19:27 (UTC)

Can you drop python-m2crypto to optdeps "for tlsa"? It currently doesn't build.

HLFH commented on 2023-11-19 08:12 (UTC)

python-ipaddress dep removed.

HLFH commented on 2023-11-19 08:08 (UTC)

3.3 released.

Coelacanthus commented on 2023-09-12 13:55 (UTC)

Hello, python-ipaddress has been a part of Python stdlib since Python 3.3. Its description also said, "for older Python versions". So I think we need it no longer.

HLFH commented on 2022-10-13 14:09 (UTC)

Updated to 3.2 release

HLFH commented on 2021-08-17 15:49 (UTC)

Hello. Thanks. I updated to the new release of hash-slinger, and as asked, I updated the deps.

yan12125 commented on 2021-07-28 12:27 (UTC)

Hi, python-unbound is gone as community/unbound now includes the Python library [1]. I'm going to remove python-unbound from provides= of unbound-python, too. Please change python-unbound to unbound in depends= of this package, thanks!

[1] https://github.com/archlinux/svntogit-community/commit/913fbaa0cb77fc426fdcb928180a67d9698c5100#diff-3e341d2d9c67be01819b25b25d5e53ea3cdf3a38d28846cda85a195eb9b7203a

HLFH commented on 2020-07-11 11:50 (UTC)

I have just submitted the git version of hash-slinger who has the bug fixes: https://aur.archlinux.org/packages/hash-slinger-git/

HLFH commented on 2020-07-11 11:32 (UTC)

The fix you mention appeared on January 7th, 2020.

https://github.com/letoams/hash-slinger/commit/af64905fe8824dc80d7a70c38b19a33bcde8f7f6#diff-caf9142b24098fc664f06d58ba8f7fe2

Last release 3.0 got released on November 3rd, 2019.

andrej commented on 2020-04-17 20:38 (UTC)

This version has a typical Python 3 string versus bytes bug. It fails on my system. To fix it, just add a b to line 396 in /usr/bin/tlsa.

Before:

    if stdout.endswith("OK\n"):

After:

    if stdout.endswith(b"OK\n"):