* [gentoo-commits] repo/gentoo:master commit in: www-apps/vaultwarden-web/
@ 2025-06-01 9:09 Fabian Groffen
0 siblings, 0 replies; 6+ messages in thread
From: Fabian Groffen @ 2025-06-01 9:09 UTC (permalink / raw
To: gentoo-commits
commit: d5e134842ea6b106de1c8c574b0941aa2006d139
Author: Rahil Bhimjiani <me <AT> rahil <DOT> rocks>
AuthorDate: Wed Apr 30 10:58:49 2025 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Jun 1 08:56:08 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e13484
www-apps/vaultwarden-web: Prebuilt webvault frontend for Vaultwarden
Bug: https://github.com/gentoo/gentoo/pull/41864
Signed-off-by: Rahil Bhimjiani <me <AT> rahil.rocks>
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
www-apps/vaultwarden-web/Manifest | 1 +
www-apps/vaultwarden-web/metadata.xml | 18 ++++++++++++++
.../vaultwarden-web-2025.5.0.ebuild | 29 ++++++++++++++++++++++
3 files changed, 48 insertions(+)
diff --git a/www-apps/vaultwarden-web/Manifest b/www-apps/vaultwarden-web/Manifest
new file mode 100644
index 000000000000..622d2042ce42
--- /dev/null
+++ b/www-apps/vaultwarden-web/Manifest
@@ -0,0 +1 @@
+DIST vaultwarden-web-2025.5.0.tar.gz 17927067 BLAKE2B 7e26c8549e4b58846a59957d1f2d8e1bcb94203b601563e9f9db01f685d82f39ca6607c652c9e2fd71744a786739d250675ee7d855077224f199c6fd4103baa7 SHA512 a92d88d9f4baece4e59954c23c0f56a10374db33ad0c96f5278d79692ad36547e6e623c5d168c2d718eba18e8fc60fb188b9ed622b460b51129adafa6854e502
diff --git a/www-apps/vaultwarden-web/metadata.xml b/www-apps/vaultwarden-web/metadata.xml
new file mode 100644
index 000000000000..dedd616a08f8
--- /dev/null
+++ b/www-apps/vaultwarden-web/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>me@rahil.rocks</email>
+ <name>Rahil Bhimjiani</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>grobian@gentoo.org</email>
+ <name>Fabian Groffen</name>
+ </maintainer>
+ <stabilize-allarches/>
+ <upstream>
+ <remote-id type="github">dani-garcia/bw_web_builds</remote-id>
+ <bugs-to>https://github.com/dani-garcia/bw_web_builds/issues</bugs-to>
+ <doc>https://github.com/dani-garcia/bw_web_builds/blob/master/README.md</doc>
+ </upstream>
+</pkgmetadata>
diff --git a/www-apps/vaultwarden-web/vaultwarden-web-2025.5.0.ebuild b/www-apps/vaultwarden-web/vaultwarden-web-2025.5.0.ebuild
new file mode 100644
index 000000000000..1bae53602b3a
--- /dev/null
+++ b/www-apps/vaultwarden-web/vaultwarden-web-2025.5.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Prebuilt web vault frontend for Vaultwarden"
+HOMEPAGE="https://github.com/dani-garcia/bw_web_builds"
+
+SRC_URI="https://github.com/dani-garcia/bw_web_builds/releases/download/v${PV}/bw_web_v${PV}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/web-vault"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+# this package is really useless without vaultwarden, it cannot be run
+# standalone, so pull in vaultwarden to run it
+PDEPEND="app-admin/vaultwarden[web]"
+
+src_prepare() {
+ default
+ # although following is optional in upstream's build process
+ # it reduced install dir size from 74M to 38M
+ find -name "*.map" -delete || die
+}
+
+src_install() {
+ insinto /usr/share/webapps/"${PN}"
+ doins -r *
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/vaultwarden-web/
@ 2025-07-08 6:32 Fabian Groffen
0 siblings, 0 replies; 6+ messages in thread
From: Fabian Groffen @ 2025-07-08 6:32 UTC (permalink / raw
To: gentoo-commits
commit: 680e2059cdbf92cb8e025e2fe9e0dc0f452ccfdf
Author: Rahil Bhimjiani <me <AT> rahil <DOT> rocks>
AuthorDate: Mon Jul 7 08:37:26 2025 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Tue Jul 8 06:29:56 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=680e2059
www-apps/vaultwarden-web: add 2025.6.0 pre-release without KEYWORDS
Keep source map files because
1. that's how upstream has intended
2. Storage isn't of issue these days anyway.
3. no warnings in browser's console
4. helps in debugging
Signed-off-by: Rahil Bhimjiani <me <AT> rahil.rocks>
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
www-apps/vaultwarden-web/Manifest | 1 +
.../vaultwarden-web-2025.6.0.ebuild | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/www-apps/vaultwarden-web/Manifest b/www-apps/vaultwarden-web/Manifest
index 622d2042ce42..d95b9b27d770 100644
--- a/www-apps/vaultwarden-web/Manifest
+++ b/www-apps/vaultwarden-web/Manifest
@@ -1 +1,2 @@
DIST vaultwarden-web-2025.5.0.tar.gz 17927067 BLAKE2B 7e26c8549e4b58846a59957d1f2d8e1bcb94203b601563e9f9db01f685d82f39ca6607c652c9e2fd71744a786739d250675ee7d855077224f199c6fd4103baa7 SHA512 a92d88d9f4baece4e59954c23c0f56a10374db33ad0c96f5278d79692ad36547e6e623c5d168c2d718eba18e8fc60fb188b9ed622b460b51129adafa6854e502
+DIST vaultwarden-web-2025.6.0.tar.gz 19896217 BLAKE2B 638ae1d7ca499a7b9b8662f72630d61a57d4c7467d0495da65c4ee227b19b9894da9e45b7652ee20d6611ee837821affb9f71c756e6218e48e82d3195ed5bfe2 SHA512 0d2bd62638f36cc909926a10868bacd043fa03d1cda026f81ed4b3cda6854f98da63aef6411712d4728c1937bf896b5719e207a099bf23ed8666b5fe45fbeb67
diff --git a/www-apps/vaultwarden-web/vaultwarden-web-2025.6.0.ebuild b/www-apps/vaultwarden-web/vaultwarden-web-2025.6.0.ebuild
new file mode 100644
index 000000000000..a02a937b6fab
--- /dev/null
+++ b/www-apps/vaultwarden-web/vaultwarden-web-2025.6.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Prebuilt web vault frontend for Vaultwarden"
+HOMEPAGE="https://github.com/dani-garcia/bw_web_builds"
+
+SRC_URI="https://github.com/dani-garcia/bw_web_builds/releases/download/v${PV}/bw_web_v${PV}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/web-vault"
+LICENSE="GPL-3"
+SLOT="0"
+#KEYWORDS="~amd64"
+# this package is really useless without vaultwarden, it cannot be run
+# standalone, so pull in vaultwarden to run it
+PDEPEND="app-admin/vaultwarden[web]"
+
+src_install() {
+ insinto /usr/share/webapps/"${PN}"
+ doins -r *
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/vaultwarden-web/
@ 2025-08-02 8:00 Fabian Groffen
0 siblings, 0 replies; 6+ messages in thread
From: Fabian Groffen @ 2025-08-02 8:00 UTC (permalink / raw
To: gentoo-commits
commit: 276879692935e5e8e6f3b9f9cf163b13be565f70
Author: Rahil Bhimjiani <me <AT> rahil <DOT> rocks>
AuthorDate: Mon Jul 28 10:42:54 2025 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Aug 2 07:54:57 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27687969
www-apps/vaultwarden-web: update to 2025.7.0
Signed-off-by: Rahil Bhimjiani <me <AT> rahil.rocks>
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
www-apps/vaultwarden-web/Manifest | 1 +
.../vaultwarden-web-2025.7.0.ebuild | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/www-apps/vaultwarden-web/Manifest b/www-apps/vaultwarden-web/Manifest
index d95b9b27d770..7f7bbe7c75eb 100644
--- a/www-apps/vaultwarden-web/Manifest
+++ b/www-apps/vaultwarden-web/Manifest
@@ -1,2 +1,3 @@
DIST vaultwarden-web-2025.5.0.tar.gz 17927067 BLAKE2B 7e26c8549e4b58846a59957d1f2d8e1bcb94203b601563e9f9db01f685d82f39ca6607c652c9e2fd71744a786739d250675ee7d855077224f199c6fd4103baa7 SHA512 a92d88d9f4baece4e59954c23c0f56a10374db33ad0c96f5278d79692ad36547e6e623c5d168c2d718eba18e8fc60fb188b9ed622b460b51129adafa6854e502
DIST vaultwarden-web-2025.6.0.tar.gz 19896217 BLAKE2B 638ae1d7ca499a7b9b8662f72630d61a57d4c7467d0495da65c4ee227b19b9894da9e45b7652ee20d6611ee837821affb9f71c756e6218e48e82d3195ed5bfe2 SHA512 0d2bd62638f36cc909926a10868bacd043fa03d1cda026f81ed4b3cda6854f98da63aef6411712d4728c1937bf896b5719e207a099bf23ed8666b5fe45fbeb67
+DIST vaultwarden-web-2025.7.0.tar.gz 20909634 BLAKE2B 10cd4db359c8cd453c0b063f9a2ae9144dba32cff97a9cbb45a0da1b3a30d5b09a9c2ea68deb90da74d0b1e56ad1451228d70cd4ef0a8c8929d6ef543796e6b2 SHA512 4dd8ae30f06e18d2748605a685543f7d0a9af7a8c87171dab5c81a9faa2cfa207935dfbd098be2b4fde2fc4b7878c92e2efebaf4112acd61e44c04e3bc6a5cca
diff --git a/www-apps/vaultwarden-web/vaultwarden-web-2025.7.0.ebuild b/www-apps/vaultwarden-web/vaultwarden-web-2025.7.0.ebuild
new file mode 100644
index 000000000000..1d0beaaf45db
--- /dev/null
+++ b/www-apps/vaultwarden-web/vaultwarden-web-2025.7.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Prebuilt web vault frontend for Vaultwarden"
+HOMEPAGE="https://github.com/dani-garcia/bw_web_builds"
+
+SRC_URI="https://github.com/dani-garcia/bw_web_builds/releases/download/v${PV}/bw_web_v${PV}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/web-vault"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+# this package is really useless without vaultwarden, it cannot be run
+# standalone, so pull in vaultwarden to run it
+PDEPEND="app-admin/vaultwarden[web]"
+
+src_install() {
+ insinto /usr/share/webapps/"${PN}"
+ doins -r *
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/vaultwarden-web/
@ 2025-08-02 8:00 Fabian Groffen
0 siblings, 0 replies; 6+ messages in thread
From: Fabian Groffen @ 2025-08-02 8:00 UTC (permalink / raw
To: gentoo-commits
commit: 19f6cc2804f1e9e65f887d011e6a3a67caa234aa
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 2 07:58:04 2025 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Aug 2 07:59:09 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19f6cc28
www-apps/vaultwarden-web-2025.6.0: drop pre-release
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
www-apps/vaultwarden-web/Manifest | 1 -
.../vaultwarden-web-2025.6.0.ebuild | 22 ----------------------
2 files changed, 23 deletions(-)
diff --git a/www-apps/vaultwarden-web/Manifest b/www-apps/vaultwarden-web/Manifest
index 7f7bbe7c75eb..3ac170ef4662 100644
--- a/www-apps/vaultwarden-web/Manifest
+++ b/www-apps/vaultwarden-web/Manifest
@@ -1,3 +1,2 @@
DIST vaultwarden-web-2025.5.0.tar.gz 17927067 BLAKE2B 7e26c8549e4b58846a59957d1f2d8e1bcb94203b601563e9f9db01f685d82f39ca6607c652c9e2fd71744a786739d250675ee7d855077224f199c6fd4103baa7 SHA512 a92d88d9f4baece4e59954c23c0f56a10374db33ad0c96f5278d79692ad36547e6e623c5d168c2d718eba18e8fc60fb188b9ed622b460b51129adafa6854e502
-DIST vaultwarden-web-2025.6.0.tar.gz 19896217 BLAKE2B 638ae1d7ca499a7b9b8662f72630d61a57d4c7467d0495da65c4ee227b19b9894da9e45b7652ee20d6611ee837821affb9f71c756e6218e48e82d3195ed5bfe2 SHA512 0d2bd62638f36cc909926a10868bacd043fa03d1cda026f81ed4b3cda6854f98da63aef6411712d4728c1937bf896b5719e207a099bf23ed8666b5fe45fbeb67
DIST vaultwarden-web-2025.7.0.tar.gz 20909634 BLAKE2B 10cd4db359c8cd453c0b063f9a2ae9144dba32cff97a9cbb45a0da1b3a30d5b09a9c2ea68deb90da74d0b1e56ad1451228d70cd4ef0a8c8929d6ef543796e6b2 SHA512 4dd8ae30f06e18d2748605a685543f7d0a9af7a8c87171dab5c81a9faa2cfa207935dfbd098be2b4fde2fc4b7878c92e2efebaf4112acd61e44c04e3bc6a5cca
diff --git a/www-apps/vaultwarden-web/vaultwarden-web-2025.6.0.ebuild b/www-apps/vaultwarden-web/vaultwarden-web-2025.6.0.ebuild
deleted file mode 100644
index a02a937b6fab..000000000000
--- a/www-apps/vaultwarden-web/vaultwarden-web-2025.6.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Prebuilt web vault frontend for Vaultwarden"
-HOMEPAGE="https://github.com/dani-garcia/bw_web_builds"
-
-SRC_URI="https://github.com/dani-garcia/bw_web_builds/releases/download/v${PV}/bw_web_v${PV}.tar.gz -> ${P}.tar.gz"
-
-S="${WORKDIR}/web-vault"
-LICENSE="GPL-3"
-SLOT="0"
-#KEYWORDS="~amd64"
-# this package is really useless without vaultwarden, it cannot be run
-# standalone, so pull in vaultwarden to run it
-PDEPEND="app-admin/vaultwarden[web]"
-
-src_install() {
- insinto /usr/share/webapps/"${PN}"
- doins -r *
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/vaultwarden-web/
@ 2025-08-09 6:39 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2025-08-09 6:39 UTC (permalink / raw
To: gentoo-commits
commit: 51b694d40ca03aab4bb6a65cbab330e79ae70bbe
Author: Rahil Bhimjiani <me <AT> rahil <DOT> rocks>
AuthorDate: Sat Aug 9 05:43:22 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 9 06:29:38 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b694d4
www-apps/vaultwarden-web: update to 2025.7.1
Signed-off-by: Rahil Bhimjiani <me <AT> rahil.rocks>
Part-of: https://github.com/gentoo/gentoo/pull/43394
Closes: https://github.com/gentoo/gentoo/pull/43394
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
www-apps/vaultwarden-web/Manifest | 1 +
.../vaultwarden-web-2025.7.1.ebuild | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/www-apps/vaultwarden-web/Manifest b/www-apps/vaultwarden-web/Manifest
index 3ac170ef4662..fbad0d5dd355 100644
--- a/www-apps/vaultwarden-web/Manifest
+++ b/www-apps/vaultwarden-web/Manifest
@@ -1,2 +1,3 @@
DIST vaultwarden-web-2025.5.0.tar.gz 17927067 BLAKE2B 7e26c8549e4b58846a59957d1f2d8e1bcb94203b601563e9f9db01f685d82f39ca6607c652c9e2fd71744a786739d250675ee7d855077224f199c6fd4103baa7 SHA512 a92d88d9f4baece4e59954c23c0f56a10374db33ad0c96f5278d79692ad36547e6e623c5d168c2d718eba18e8fc60fb188b9ed622b460b51129adafa6854e502
DIST vaultwarden-web-2025.7.0.tar.gz 20909634 BLAKE2B 10cd4db359c8cd453c0b063f9a2ae9144dba32cff97a9cbb45a0da1b3a30d5b09a9c2ea68deb90da74d0b1e56ad1451228d70cd4ef0a8c8929d6ef543796e6b2 SHA512 4dd8ae30f06e18d2748605a685543f7d0a9af7a8c87171dab5c81a9faa2cfa207935dfbd098be2b4fde2fc4b7878c92e2efebaf4112acd61e44c04e3bc6a5cca
+DIST vaultwarden-web-2025.7.1.tar.gz 21107722 BLAKE2B af5aba29093a8232fa1129e9e662016d121303b90499eb01ea3cd00e07c8609f7f4dfb3a9bdbafafad67f7c6a9ba18cf3e09dd7f1edfc1ae490c2589b51c0a59 SHA512 06a1c05cb74bdcec6df6f976d79e3ab277b3d81e33299ca6d3b7a6420f91a69ebca70437fc67ecbd1fb958fa51c261eef03c57ddc245ca6f09c014d20ab765c1
diff --git a/www-apps/vaultwarden-web/vaultwarden-web-2025.7.1.ebuild b/www-apps/vaultwarden-web/vaultwarden-web-2025.7.1.ebuild
new file mode 100644
index 000000000000..1d0beaaf45db
--- /dev/null
+++ b/www-apps/vaultwarden-web/vaultwarden-web-2025.7.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Prebuilt web vault frontend for Vaultwarden"
+HOMEPAGE="https://github.com/dani-garcia/bw_web_builds"
+
+SRC_URI="https://github.com/dani-garcia/bw_web_builds/releases/download/v${PV}/bw_web_v${PV}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/web-vault"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+# this package is really useless without vaultwarden, it cannot be run
+# standalone, so pull in vaultwarden to run it
+PDEPEND="app-admin/vaultwarden[web]"
+
+src_install() {
+ insinto /usr/share/webapps/"${PN}"
+ doins -r *
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apps/vaultwarden-web/
@ 2025-08-09 6:45 Fabian Groffen
0 siblings, 0 replies; 6+ messages in thread
From: Fabian Groffen @ 2025-08-09 6:45 UTC (permalink / raw
To: gentoo-commits
commit: 7730bd50d02e067437d6dc44ea0956b1e2865f72
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 9 06:45:19 2025 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Aug 9 06:45:19 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7730bd50
www-apps/vaultwarden-web-2025.5.0: cleanup old
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
www-apps/vaultwarden-web/Manifest | 1 -
.../vaultwarden-web-2025.5.0.ebuild | 29 ----------------------
2 files changed, 30 deletions(-)
diff --git a/www-apps/vaultwarden-web/Manifest b/www-apps/vaultwarden-web/Manifest
index fbad0d5dd355..256ebc4eb664 100644
--- a/www-apps/vaultwarden-web/Manifest
+++ b/www-apps/vaultwarden-web/Manifest
@@ -1,3 +1,2 @@
-DIST vaultwarden-web-2025.5.0.tar.gz 17927067 BLAKE2B 7e26c8549e4b58846a59957d1f2d8e1bcb94203b601563e9f9db01f685d82f39ca6607c652c9e2fd71744a786739d250675ee7d855077224f199c6fd4103baa7 SHA512 a92d88d9f4baece4e59954c23c0f56a10374db33ad0c96f5278d79692ad36547e6e623c5d168c2d718eba18e8fc60fb188b9ed622b460b51129adafa6854e502
DIST vaultwarden-web-2025.7.0.tar.gz 20909634 BLAKE2B 10cd4db359c8cd453c0b063f9a2ae9144dba32cff97a9cbb45a0da1b3a30d5b09a9c2ea68deb90da74d0b1e56ad1451228d70cd4ef0a8c8929d6ef543796e6b2 SHA512 4dd8ae30f06e18d2748605a685543f7d0a9af7a8c87171dab5c81a9faa2cfa207935dfbd098be2b4fde2fc4b7878c92e2efebaf4112acd61e44c04e3bc6a5cca
DIST vaultwarden-web-2025.7.1.tar.gz 21107722 BLAKE2B af5aba29093a8232fa1129e9e662016d121303b90499eb01ea3cd00e07c8609f7f4dfb3a9bdbafafad67f7c6a9ba18cf3e09dd7f1edfc1ae490c2589b51c0a59 SHA512 06a1c05cb74bdcec6df6f976d79e3ab277b3d81e33299ca6d3b7a6420f91a69ebca70437fc67ecbd1fb958fa51c261eef03c57ddc245ca6f09c014d20ab765c1
diff --git a/www-apps/vaultwarden-web/vaultwarden-web-2025.5.0.ebuild b/www-apps/vaultwarden-web/vaultwarden-web-2025.5.0.ebuild
deleted file mode 100644
index 1bae53602b3a..000000000000
--- a/www-apps/vaultwarden-web/vaultwarden-web-2025.5.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Prebuilt web vault frontend for Vaultwarden"
-HOMEPAGE="https://github.com/dani-garcia/bw_web_builds"
-
-SRC_URI="https://github.com/dani-garcia/bw_web_builds/releases/download/v${PV}/bw_web_v${PV}.tar.gz -> ${P}.tar.gz"
-
-S="${WORKDIR}/web-vault"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-# this package is really useless without vaultwarden, it cannot be run
-# standalone, so pull in vaultwarden to run it
-PDEPEND="app-admin/vaultwarden[web]"
-
-src_prepare() {
- default
- # although following is optional in upstream's build process
- # it reduced install dir size from 74M to 38M
- find -name "*.map" -delete || die
-}
-
-src_install() {
- insinto /usr/share/webapps/"${PN}"
- doins -r *
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-08-09 6:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-02 8:00 [gentoo-commits] repo/gentoo:master commit in: www-apps/vaultwarden-web/ Fabian Groffen
-- strict thread matches above, loose matches on Subject: below --
2025-08-09 6:45 Fabian Groffen
2025-08-09 6:39 Arthur Zamarin
2025-08-02 8:00 Fabian Groffen
2025-07-08 6:32 Fabian Groffen
2025-06-01 9:09 Fabian Groffen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox