From 70685dad83ab52133099a56b93ca8ab21a91e968 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 13 May 2026 20:40:42 -0400 Subject: [PATCH] dev-php/awl: add 0.65 This one should be compatible with at least php-8.3... Signed-off-by: Michael Orlitzky --- dev-php/awl/Manifest | 1 + dev-php/awl/awl-0.65.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 dev-php/awl/awl-0.65.ebuild diff --git a/dev-php/awl/Manifest b/dev-php/awl/Manifest index 9b9a546da17ee..a41b68e4727a1 100644 --- a/dev-php/awl/Manifest +++ b/dev-php/awl/Manifest @@ -1 +1,2 @@ DIST awl-0.64.tar.xz 127412 BLAKE2B f045c017a07ebdef629e3a373cf540f866d935fed493382c27c1413fd66f1d103ee715b48fa3111e13c06cd34e7a3fc5c9a845b80fc93ed8971a55fd8a011dcd SHA512 3738e422b78b1904eb3e5f6b47c5a3e9fc5c2bfef644c84285da0ff242c560ec12651c8231c8f2aa324108ef2450af955b938f44ce3d54f280da6936cfc9889e +DIST awl-0.65.tar.xz 134108 BLAKE2B 453ba309123719c68237a92b5f1b9590929f84e9ff4bd5c8499c17b3a11be778406d39ce6e5c9efa19c70017c0005952aac0c578204213a44dae8bbcaf30ffb7 SHA512 681e4de386af95d294c604e47a18d20b41f9b451cecafa4dfe6e668e2f6067df23215ef364789e038ad6070db832d98fef8f51c4a618eec5f2720767db302c35 diff --git a/dev-php/awl/awl-0.65.ebuild b/dev-php/awl/awl-0.65.ebuild new file mode 100644 index 0000000000000..3f87c5fe0a514 --- /dev/null +++ b/dev-php/awl/awl-0.65.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Andrew McMillan's Web Libraries" +HOMEPAGE="https://gitlab.com/davical-project/awl" +SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> ${P}.tar.xz" +S="${WORKDIR}" +LICENSE="GPL-2 GPL-2+ GPL-3+ LGPL-2+ LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# Requires PHPunit and we no longer have it. +RESTRICT=test + +RDEPEND="dev-lang/php:*[pdo,xml]" + +src_compile() { + : +} + +src_install() { + einstalldocs + insinto /usr/share/php/${PN} + doins -r dba inc +}