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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C797C15838C for ; Fri, 19 Jan 2024 10:18:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E44CE29AC; Fri, 19 Jan 2024 10:18:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E4994E29AC for ; Fri, 19 Jan 2024 10:18:23 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35E843432FB for ; Fri, 19 Jan 2024 10:18:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 988E497B for ; Fri, 19 Jan 2024 10:18:21 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1705659467.b61e5187f3dc911489d70209dccee9e334914a7b.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/redis/redis-6.2.14-r1.ebuild dev-db/redis/redis-6.2.14.ebuild dev-db/redis/redis-7.0.14-r1.ebuild dev-db/redis/redis-7.0.14.ebuild dev-db/redis/redis-7.0.15-r1.ebuild dev-db/redis/redis-7.0.15.ebuild dev-db/redis/redis-7.2.1-r1.ebuild dev-db/redis/redis-7.2.1.ebuild dev-db/redis/redis-7.2.3-r1.ebuild dev-db/redis/redis-7.2.3.ebuild dev-db/redis/redis-7.2.4-r1.ebuild dev-db/redis/redis-7.2.4.ebuild X-VCS-Directories: dev-db/redis/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: b61e5187f3dc911489d70209dccee9e334914a7b X-VCS-Branch: master Date: Fri, 19 Jan 2024 10:18:21 +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: 19f8684d-a8e8-47a1-871b-e93951fa6f21 X-Archives-Hash: 68dc9d550ae618c03affbece917f1809 commit: b61e5187f3dc911489d70209dccee9e334914a7b Author: Petr Vaněk gentoo org> AuthorDate: Fri Jan 19 08:58:58 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Fri Jan 19 10:17:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b61e5187 dev-db/redis: introduce subslots for improved version management Subslots follows redis versioning policy. Main benefits are: - better targeting of security bugs for specific release lines - allows users to select a preferred release line Signed-off-by: Petr Vaněk gentoo.org> dev-db/redis/{redis-6.2.14.ebuild => redis-6.2.14-r1.ebuild} | 4 ++-- dev-db/redis/{redis-7.0.15.ebuild => redis-7.0.14-r1.ebuild} | 2 +- dev-db/redis/{redis-7.0.14.ebuild => redis-7.0.15-r1.ebuild} | 4 ++-- dev-db/redis/{redis-7.2.1.ebuild => redis-7.2.1-r1.ebuild} | 4 ++-- dev-db/redis/{redis-7.2.4.ebuild => redis-7.2.3-r1.ebuild} | 2 +- dev-db/redis/{redis-7.2.3.ebuild => redis-7.2.4-r1.ebuild} | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dev-db/redis/redis-6.2.14.ebuild b/dev-db/redis/redis-6.2.14-r1.ebuild similarity index 98% rename from dev-db/redis/redis-6.2.14.ebuild rename to dev-db/redis/redis-6.2.14-r1.ebuild index 93779dea14c8..1ecde456a4ac 100644 --- a/dev-db/redis/redis-6.2.14.ebuild +++ b/dev-db/redis/redis-6.2.14-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,7 @@ HOMEPAGE="https://redis.io" SRC_URI="https://download.redis.io/releases/${P}.tar.gz" LICENSE="BSD" -SLOT="0" +SLOT="0/$(ver_cut 1-2)" KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="+jemalloc selinux ssl systemd tcmalloc test" RESTRICT="!test? ( test )" diff --git a/dev-db/redis/redis-7.0.15.ebuild b/dev-db/redis/redis-7.0.14-r1.ebuild similarity index 99% rename from dev-db/redis/redis-7.0.15.ebuild rename to dev-db/redis/redis-7.0.14-r1.ebuild index 5887d48b32c5..ea4ae7fc184e 100644 --- a/dev-db/redis/redis-7.0.15.ebuild +++ b/dev-db/redis/redis-7.0.14-r1.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://redis.io" SRC_URI="https://download.redis.io/releases/${P}.tar.gz" LICENSE="BSD" -SLOT="0" +SLOT="0/$(ver_cut 1-2)" KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="+jemalloc selinux ssl systemd tcmalloc test" RESTRICT="!test? ( test )" diff --git a/dev-db/redis/redis-7.0.14.ebuild b/dev-db/redis/redis-7.0.15-r1.ebuild similarity index 98% rename from dev-db/redis/redis-7.0.14.ebuild rename to dev-db/redis/redis-7.0.15-r1.ebuild index 1e67595984ec..ea4ae7fc184e 100644 --- a/dev-db/redis/redis-7.0.14.ebuild +++ b/dev-db/redis/redis-7.0.15-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ HOMEPAGE="https://redis.io" SRC_URI="https://download.redis.io/releases/${P}.tar.gz" LICENSE="BSD" -SLOT="0" +SLOT="0/$(ver_cut 1-2)" KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="+jemalloc selinux ssl systemd tcmalloc test" RESTRICT="!test? ( test )" diff --git a/dev-db/redis/redis-7.2.1.ebuild b/dev-db/redis/redis-7.2.1-r1.ebuild similarity index 98% rename from dev-db/redis/redis-7.2.1.ebuild rename to dev-db/redis/redis-7.2.1-r1.ebuild index 33316df07b63..8ccfee0d3429 100644 --- a/dev-db/redis/redis-7.2.1.ebuild +++ b/dev-db/redis/redis-7.2.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE=" SRC_URI="https://download.redis.io/releases/${P}.tar.gz" LICENSE="BSD Boost-1.0" -SLOT="0" +SLOT="0/$(ver_cut 1-2)" KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="+jemalloc selinux ssl systemd tcmalloc test" RESTRICT="!test? ( test )" diff --git a/dev-db/redis/redis-7.2.4.ebuild b/dev-db/redis/redis-7.2.3-r1.ebuild similarity index 99% rename from dev-db/redis/redis-7.2.4.ebuild rename to dev-db/redis/redis-7.2.3-r1.ebuild index 1c2177479dd1..dcdfd9625697 100644 --- a/dev-db/redis/redis-7.2.4.ebuild +++ b/dev-db/redis/redis-7.2.3-r1.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" SRC_URI="https://download.redis.io/releases/${P}.tar.gz" LICENSE="BSD Boost-1.0" -SLOT="0" +SLOT="0/$(ver_cut 1-2)" KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="+jemalloc selinux ssl systemd tcmalloc test" RESTRICT="!test? ( test )" diff --git a/dev-db/redis/redis-7.2.3.ebuild b/dev-db/redis/redis-7.2.4-r1.ebuild similarity index 98% rename from dev-db/redis/redis-7.2.3.ebuild rename to dev-db/redis/redis-7.2.4-r1.ebuild index 14563a65db85..dcdfd9625697 100644 --- a/dev-db/redis/redis-7.2.3.ebuild +++ b/dev-db/redis/redis-7.2.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE=" SRC_URI="https://download.redis.io/releases/${P}.tar.gz" LICENSE="BSD Boost-1.0" -SLOT="0" +SLOT="0/$(ver_cut 1-2)" KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="+jemalloc selinux ssl systemd tcmalloc test" RESTRICT="!test? ( test )"