diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2024-11-01 19:21:21 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2024-11-01 19:21:21 -0400 |
| commit | 09543bdd4d4bcc0d324078e4f00ee409d4e633ee (patch) | |
| tree | 3b3076f9ec494a2f046a8dcd690b5937bee8e123 /www-apps/haunt/haunt-0.3.0.ebuild | |
| parent | b834f1c6764bc364868b90d66b50b8c1f3db2f65 (diff) | |
Add Guile 3 support to Haunt
Diffstat (limited to 'www-apps/haunt/haunt-0.3.0.ebuild')
| -rw-r--r-- | www-apps/haunt/haunt-0.3.0.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/www-apps/haunt/haunt-0.3.0.ebuild b/www-apps/haunt/haunt-0.3.0.ebuild index 516d1c8..4c63496 100644 --- a/www-apps/haunt/haunt-0.3.0.ebuild +++ b/www-apps/haunt/haunt-0.3.0.ebuild @@ -1,7 +1,10 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2024 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + +GUILE_COMPAT=( 2-2 3-0 ) +inherit guile autotools DESCRIPTION="Simple, functional, hackable static site generator." HOMEPAGE="https://dthompson.us/projects/haunt.html" @@ -10,7 +13,8 @@ SRC_URI="https://files.dthompson.us/haunt/haunt-${PV}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" +REQUIRED_USE="${GUILE_REQUIRED_USE}" IUSE="" -RDEPEND=">=dev-scheme/guile-2.0:=" +RDEPEND="${GUILE_DEPS}" DEPEND="${RDEPEND}" |