Package Details: botan1.10 1.10.17-4

Git Clone URL: https://aur.archlinux.org/botan1.10.git (read-only, click to copy)
Package Base: botan1.10
Description: Obsolete branch of the Botan crypto library for Monotone
Upstream URL: http://botan.randombit.net/
Licenses: BSD
Submitter: grawity
Maintainer: grawity
Last Packager: grawity
Votes: 3
Popularity: 0.000000
First Submitted: 2018-04-09 04:58 (UTC)
Last Updated: 2024-03-24 11:02 (UTC)

Latest Comments

micwoj92 commented on 2022-12-31 08:39 (UTC)

I built it succesfully without python2 on system, only required changing line 30 in PKGBUILD to python.

Bakasura commented on 2021-10-17 05:00 (UTC) (edited on 2021-10-17 05:01 (UTC) by Bakasura)

@grawity please add this patch to build, now sphinx is using python3 as default:

--- conf.py 2021-10-16 23:56:42.264250000 -0500
+++ conf.py 2021-10-16 23:56:54.680651813 -0500
@@ -40,10 +40,10 @@
def check_sphinx_version():
    import sphinx

-    version = map(int, sphinx.__version__.split('.'))
+    version = list(map(int, sphinx.__version__.split('.')))
    if version[0] == 1 and version[1] == 0 and version[2] < 7:
        # Exit rather than throwing to avoid a confusing backtrace
-        print "This Sphinx is too old - upgrade to at least 1.0.7"
+        print("This Sphinx is too old - upgrade to at least 1.0.7")
        import sys
        sys.exit(1)

hvx commented on 2019-11-26 20:26 (UTC)

If anyone's still installing this in 2019 you'll need to change the source from:

source=("https://botan.randombit.net/releases/Botan-${pkgver}.tgz"{,.asc})

To:

source=("https://botan.randombit.net/releases/old/Botan-${pkgver}.tgz"{,.asc})