mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
License is changed (or clarified?) to GPL-2 only. The test framework is switched from ounit to alcotest. Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz> Part-of: https://codeberg.org/gentoo/gentoo/pulls/356 Merges: https://codeberg.org/gentoo/gentoo/pulls/356 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
19 lines
479 B
Bash
19 lines
479 B
Bash
# Copyright 2019-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit dune
|
|
|
|
DESCRIPTION="Convert dates between gregorian/julian/french/hebrew calendars"
|
|
HOMEPAGE="https://github.com/geneweb/calendars"
|
|
SRC_URI="https://github.com/geneweb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
IUSE="+ocamlopt test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="test? ( dev-ml/alcotest )"
|