mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
34 lines
861 B
Bash
34 lines
861 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=JUERD
|
|
DIST_VERSION=1.37
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Very complete easy-to-use OO interface to DBI"
|
|
|
|
# Upstream says "Any OSI approved license from https://opensource.org/licenses/alphabetical"
|
|
LICENSE="|| ( AFL-3.0 AGPL-3 APL-1.0 Apache-2.0 BSD-2 Boost-1.0 CDDL CPAL-1.0
|
|
EPL-1.0 ECL-2.0 EUPL-1.1 GPL-2 GPL-3 LGPL-2.1 LGPL-3 HPND IBM IPAfont ISC
|
|
LPPL-1.3c LPL-1.02 MIT MPL-2.0 NOSA nethack PHP-3 POSTGRESQL PYTHON CNRI
|
|
QPL-1.0 OFL-1.1 Sleepycat Watcom-1.0 W3C wxWinLL-3 ZLIB libpng
|
|
)"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
IUSE="minimal"
|
|
|
|
RDEPEND="
|
|
>=dev-perl/DBI-1.210.0
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
test? ( !minimal? (
|
|
>=dev-perl/DBD-SQLite-1.0.0
|
|
) )
|
|
"
|
|
|
|
PERL_RM_FILES=(
|
|
"t/pod.t"
|
|
)
|