From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3889F1382C5 for ; Fri, 5 Feb 2021 21:14:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58794E0848; Fri, 5 Feb 2021 21:14:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F64CE0848 for ; Fri, 5 Feb 2021 21:14:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E113343036 for ; Fri, 5 Feb 2021 21:14:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7341E4A4 for ; Fri, 5 Feb 2021 21:14:23 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1612559660.c301613b45c4a59168a1e3285bec636d9f41ad6c.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/jsonlint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/jsonlint/jsonlint-1.8.3-r1.ebuild dev-php/jsonlint/jsonlint-1.8.3.ebuild X-VCS-Directories: dev-php/jsonlint/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: c301613b45c4a59168a1e3285bec636d9f41ad6c X-VCS-Branch: master Date: Fri, 5 Feb 2021 21:14:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4a9d261c-be93-4c25-8192-3f6a7e26dd62 X-Archives-Hash: a3385cf74e5db50807c94b2c802af6fa commit: c301613b45c4a59168a1e3285bec636d9f41ad6c Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Feb 5 21:11:50 2021 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Feb 5 21:14:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c301613b dev-php/jsonlint: fix autoload.php A wrong --basedir path for phpab caused autoload to fail. Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Thomas Deutschmann gentoo.org> dev-php/jsonlint/{jsonlint-1.8.3.ebuild => jsonlint-1.8.3-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-php/jsonlint/jsonlint-1.8.3.ebuild b/dev-php/jsonlint/jsonlint-1.8.3-r1.ebuild similarity index 95% rename from dev-php/jsonlint/jsonlint-1.8.3.ebuild rename to dev-php/jsonlint/jsonlint-1.8.3-r1.ebuild index 5882c9617f6..78001ece928 100644 --- a/dev-php/jsonlint/jsonlint-1.8.3.ebuild +++ b/dev-php/jsonlint/jsonlint-1.8.3-r1.ebuild @@ -23,7 +23,7 @@ src_prepare() { phpab \ --output src/Seld/JsonLint/autoload.php \ --template fedora2 \ - --basedir src \ + --basedir src/Seld/JsonLint \ src \ || die }