Gentoo Archives: gentoo-commits

From: Artemis Everfree <artemis@×××××××.sh>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/openSeaChest/
Date: Thu, 02 Mar 2023 10:00:20
Message-Id: 1677750833.91c5f25ea7ff33f94a06c506748c1c5ad5758d27.artemis@gentoo
1 commit: 91c5f25ea7ff33f94a06c506748c1c5ad5758d27
2 Author: Artemis Everfree <artemis <AT> artemis <DOT> sh>
3 AuthorDate: Thu Mar 2 09:53:53 2023 +0000
4 Commit: Artemis Everfree <artemis <AT> artemis <DOT> sh>
5 CommitDate: Thu Mar 2 09:53:53 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=91c5f25e
7
8 sys-apps/openSeaChest: add 23.03
9
10 Signed-off-by: Artemis Everfree <artemis <AT> artemis.sh>
11
12 sys-apps/openSeaChest/Manifest | 1 +
13 sys-apps/openSeaChest/openSeaChest-23.03.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/sys-apps/openSeaChest/Manifest b/sys-apps/openSeaChest/Manifest
17 index 0e99d4675..18335cd7d 100644
18 --- a/sys-apps/openSeaChest/Manifest
19 +++ b/sys-apps/openSeaChest/Manifest
20 @@ -1,3 +1,4 @@
21 +DIST SourceCode_With_Submodules.tar.xz 1116144 BLAKE2B 6e1f900c07fb8094e46b3382fabee27ddf23954b66e849853a02f635b8058155bbfd57fadb93f4478a4b42e63bf98d3dc6343d12d765cb2277a53cbbd964c329 SHA512 525b4234c43178944c7afea3a429c7f640c6fd668cc6b544014cde1cd79c9934b848c93b25d28113605a7a75a0d029d1b77ac51cd37397fb25eb5a009c619161
22 DIST openSeaChest-22.07.tar.gz 806167 BLAKE2B 937b67aaaa071f7ade15039d4239c63aadbf43ff2e06e86e4bcc8f45b5767898d52a1a518754ec3dddb3baee7688885c24bca7dd58f8e6292fde7890e1f59876 SHA512 314e466d64104dd949833f72b089b3cea3f0cded55ddc8aec945fd69374baa6e2409269fee679618e6893e2dc4aafac4878cf54a5621f116f9c721c8b7a5db60
23 DIST opensea-common-a2155bb5d1f45e50cc2e0158ed183d15e12de6bd.tar.gz 123800 BLAKE2B ecfe7a464907e2f1f444f7080349e889b314612d05588450589659eb42f98045212d631f65fbb866b6587f302bc7b89697074ddfc30b3b108cffdc044768fbe8 SHA512 5f9561bdef38b8099db9c592c1ca16f0072b5b3d014d815ab855951d9e963187c56c1c06ca03cb9eab47bd19bac6310787ce8a38f8840daf587c8ca2b3505048
24 DIST opensea-operations-f9eab78b3cc349a74a1878b484ca27812506357b.tar.gz 463379 BLAKE2B 216ac13290ba1be7c6404b981327c46cddc7197ee3c978f156a7a42f0dde0ad38bdeaf4b5f88ce118143494f9c4de1a953a510cb6dfeb42675b264957bbaaf5f SHA512 3e145108ec4a557c237f135a3afe0c716bd6b8ab3db940338c8543b8a58105db44fca9d10c8e8914e37c4f7759912b14abacd123bf2b59a4fefb6e32d2e8cb58
25
26 diff --git a/sys-apps/openSeaChest/openSeaChest-23.03.ebuild b/sys-apps/openSeaChest/openSeaChest-23.03.ebuild
27 new file mode 100644
28 index 000000000..eaa18a859
29 --- /dev/null
30 +++ b/sys-apps/openSeaChest/openSeaChest-23.03.ebuild
31 @@ -0,0 +1,21 @@
32 +# Copyright 1999-2023 Gentoo Authors
33 +#
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +inherit meson
38 +
39 +DESCRIPTION="SeaGate's open source harddrive control utilities"
40 +HOMEPAGE="https://github.com/Seagate/openSeaChest"
41 +SRC_URI="https://github.com/Seagate/openSeaChest/releases/download/v${PV}/SourceCode_With_Submodules.tar.xz"
42 +LICENSE="MPL-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64"
45 +
46 +src_unpack() {
47 + default
48 +
49 + # upstream decompresses to openSeaChest-vXX.YY. We need openSeaChest-XX.YY
50 + # without the 'v'
51 + mv "${WORKDIR}/openSeaChest-v${PV}" "${S}"
52 +}