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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3445615807B for ; Sun, 27 Oct 2024 07:38:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82DBDE088A; Sun, 27 Oct 2024 07:38:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65E51E0887 for ; Sun, 27 Oct 2024 07:38:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 817243430EB for ; Sun, 27 Oct 2024 07:38:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BD4CF32 for ; Sun, 27 Oct 2024 07:38:08 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1730014677.bae2b4bca8ad1e0521d6966eb75ece5042bff5c0.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/cache2k-api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/cache2k-api/cache2k-api-0.23.1.ebuild X-VCS-Directories: dev-java/cache2k-api/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: bae2b4bca8ad1e0521d6966eb75ece5042bff5c0 X-VCS-Branch: master Date: Sun, 27 Oct 2024 07:38:08 +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: d9af02c9-0fed-4ca5-aa30-1b3c0b06d261 X-Archives-Hash: 4bd4f0ae683ad19eb685e4e09b1d9324 commit: bae2b4bca8ad1e0521d6966eb75ece5042bff5c0 Author: Valérian Rousset users noreply github com> AuthorDate: Sat Oct 26 08:51:41 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sun Oct 27 07:37:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bae2b4bc dev-java/cache2k-api: reorder variables Signed-off-by: Valérian Rousset users.noreply.github.com> Signed-off-by: Miroslav Šulc gentoo.org> dev-java/cache2k-api/cache2k-api-0.23.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-java/cache2k-api/cache2k-api-0.23.1.ebuild b/dev-java/cache2k-api/cache2k-api-0.23.1.ebuild index 2ce7b773296a..fef04eece7ac 100644 --- a/dev-java/cache2k-api/cache2k-api-0.23.1.ebuild +++ b/dev-java/cache2k-api/cache2k-api-0.23.1.ebuild @@ -11,6 +11,8 @@ inherit java-pkg-2 java-pkg-simple DESCRIPTION="light weight and high performance Java caching library: API" HOMEPAGE="https://cache2k.org" SRC_URI="https://github.com/cache2k/cache2k/archive/v${PV}.tar.gz -> cache2k-${PV}.tar.gz" +S="${WORKDIR}/cache2k-${PV}/api" + LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 ~arm64" @@ -18,6 +20,4 @@ KEYWORDS="amd64 ~arm64" DEPEND=">=virtual/jdk-1.8:*" RDEPEND=">=virtual/jre-1.8:*" -S="${WORKDIR}/cache2k-${PV}/api" - JAVA_SRC_DIR="src/main/java"