2022-06-19 23:52:03 +02:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
2023-03-12 22:02:34 +01:00
|
|
|
PYTHON_COMPAT=( python3_{8..11} )
|
2022-09-20 13:33:15 +02:00
|
|
|
inherit meson python-single-r1
|
2022-06-19 23:52:03 +02:00
|
|
|
|
|
|
|
MY_PV="v${PV}"
|
|
|
|
MY_P="${PN}-${MY_PV}"
|
|
|
|
|
|
|
|
DESCRIPTION="A markup language for GTK user interface files."
|
|
|
|
HOMEPAGE="https://gitlab.gnome.org/jwestman/blueprint-compiler"
|
2023-01-06 21:02:08 +01:00
|
|
|
SRC_URI="https://gitlab.gnome.org/jwestman/${PN}/-/archive/${MY_PV}/${MY_P}.tar.bz2 -> ${P}.tar.bz2"
|
2022-06-19 23:52:03 +02:00
|
|
|
|
|
|
|
LICENSE="LGPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
|
2022-09-20 13:33:15 +02:00
|
|
|
REQUIRED_USE+="${PYTHON_REQUIRED_USE}"
|
|
|
|
|
2022-06-19 23:52:03 +02:00
|
|
|
RESTRICT="mirror"
|
|
|
|
|
2022-09-20 13:33:15 +02:00
|
|
|
RDEPEND="${PYTHON_DEPS}"
|
2022-06-19 23:52:03 +02:00
|
|
|
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
|
|
|
|
S="${WORKDIR}/${MY_P}"
|