diff --git a/dev-util/beekeeper-studio/Manifest b/dev-util/beekeeper-studio/Manifest index e55aa82..c188f50 100644 --- a/dev-util/beekeeper-studio/Manifest +++ b/dev-util/beekeeper-studio/Manifest @@ -2,3 +2,5 @@ DIST beekeeper-studio_4.1.13_amd64.deb 74990132 BLAKE2B 61481c3f2c0c06811b975617 DIST beekeeper-studio_4.1.13_arm64.deb 79468928 BLAKE2B 44e19ea948e9c8166da6246d607075feaf5988a96c44ad785d6b5d8a90ce59ae9a3f4ca3d1f290beae67873e559612fecf5e0429c7b5d4f2443fb2cbc55a142f SHA512 057207aadce6e5f1bf14f98a09e428b93d198b9435c5d7a0f408061f3c90e61015587fa748e6296c46b0f6faf76778e994e4bd55c4bd47196dfeeb73f29788cc DIST beekeeper-studio_4.3.0_amd64.deb 74327702 BLAKE2B 93b4257797c9ece4dad5726d51bc002027668ce28286666383fa623577bdd3a8d2176975bb8bb5c3a7ef9f32d47e432c95e4fea8843b58706a5e198f35f3d556 SHA512 5601dc93b9c6156353a1e7cf04249f52e682219c0662f708ab5cd8ab862fc3a086bc252e4055efec6d6d491f25317f87c7103c5fcb56dd59177c8f7cec74a5f3 DIST beekeeper-studio_4.3.0_arm64.deb 78085516 BLAKE2B c452fdfb96ca2e01cdd5d9bf8b3a67a863c8b498a2de7277179861db072f36b8586d5d4353cc0a42f857f02b81e77913e9369c805af2236f7a1243692ddeb35d SHA512 92f6509b5aeeeb8d53cabe7a3c5c982620a39c74c4872e5f05f1c641876ca36951eaa83c6d1f8a8e099bd9fc723d5f37460eb495dfe3126c6252b727f7d98311 +DIST beekeeper-studio_4.3.1_amd64.deb 74313998 BLAKE2B df3cb3135e933a08a9862e5427420ec9efea134a94170cfc1df511825543500b9b182e25a5157f0022923d3c39dd58af7f720e6bab9214776b0ded178553b579 SHA512 44c88de9c343d778871f6cde989c60ba5dbf87a48fa37f93d35d5ed6acd0c98a9dee3301293e04057df8976c31c260c1460aeac1b8ad54c917fab41d4a50fa89 +DIST beekeeper-studio_4.3.1_arm64.deb 78105466 BLAKE2B 0afc79e22755373f6bec3d8f244ae311ba1b7c39c66094dfc39b81c2edb545a53ed43db44ed081c3d20a1c9fad71b37cf01d7797a63c882c8f0e7602661306ca SHA512 7cfdc233114a5344a9642fc71ce69ba192222807914489c279b6cf12ea1da028a0a297cf3f4a5500aafc937c24be8058221158eb30859aef61c77c41dab128e5 diff --git a/dev-util/beekeeper-studio/beekeeper-studio-4.3.1.ebuild b/dev-util/beekeeper-studio/beekeeper-studio-4.3.1.ebuild new file mode 100644 index 0000000..c1589f9 --- /dev/null +++ b/dev-util/beekeeper-studio/beekeeper-studio-4.3.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CHROMIUM_LANGS=" + am ar bg bn ca cs da de el en-GB en-US es-419 es et fa fi fil fr gu he hi hr hu id it ja kn ko lt + lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv sw ta te th tr uk vi zh-CN zh-TW +" + +inherit bintron-r1 unpacker + +DESCRIPTION="Modern and easy to use SQL client" +HOMEPAGE="https://www.beekeeperstudio.io/" +SRC_URI=" + amd64? ( + https://github.com/beekeeper-studio/beekeeper-studio/releases/download/v${PV}/beekeeper-studio_${PV}_amd64.deb + ) + arm64? ( + https://github.com/beekeeper-studio/beekeeper-studio/releases/download/v${PV}/beekeeper-studio_${PV}_arm64.deb + ) +" +S="${WORKDIR}/opt/Beekeeper Studio" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="-* ~amd64" + +RESTRICT="bindist mirror test" + +BINTRON_HOME="/opt/Beekeeper Studio/" + +src_prepare() { + bintron-r1_src_prepare + + # MimeType" in group "Desktop Entry" contains "application/vnd.sqlite3" more than once + sed -i \ + -e 's|application/vnd.sqlite3;application/vnd.sqlite3;application/vnd.sqlite3;|application/vnd.sqlite3;|' \ + "${WORKDIR}/usr/share/applications/beekeeper-studio.desktop" || die +}