diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2023-09-19 08:25:17 +0200 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2023-09-19 08:25:50 +0200 |
commit | 39df372732bdd4421a6bbf0f11e785dd98483b42 (patch) | |
tree | deb60f75127501f63df89acc141b473a0d05b527 /www-apps | |
parent | www-client/badwolf: add 1.3.0 (diff) | |
download | guru-39df372732bdd4421a6bbf0f11e785dd98483b42.tar.gz guru-39df372732bdd4421a6bbf0f11e785dd98483b42.tar.bz2 guru-39df372732bdd4421a6bbf0f11e785dd98483b42.zip |
Revert "www-apps/pleroma-fe: new package, add 2.5.0, 9999"
Sorry, wasn't supposed to be pushed yet…
This reverts commit ad49e6cb1d03d8ef902b119d7aad9bfb33ba23aa.
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/pleroma-fe/Manifest | 1 | ||||
-rw-r--r-- | www-apps/pleroma-fe/metadata.xml | 8 | ||||
-rw-r--r-- | www-apps/pleroma-fe/pleroma-fe-2.5.0.ebuild | 55 | ||||
-rw-r--r-- | www-apps/pleroma-fe/pleroma-fe-9999.ebuild | 55 |
4 files changed, 0 insertions, 119 deletions
diff --git a/www-apps/pleroma-fe/Manifest b/www-apps/pleroma-fe/Manifest deleted file mode 100644 index ea80b74b5..000000000 --- a/www-apps/pleroma-fe/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pleroma-fe-2.5.0.tar.gz 4676267 BLAKE2B 8ffd3cd219a5f232d977dfb2bbac5b0d3f7d8ba2a850cbb09ea3e240c7337d0d97ddd4a039eae16786e5fa8da47f795daa0275c391a31136bb5f86a1e1502326 SHA512 0adca3c547de1b520269974d228ea7de6a16fa1ea8798e87d121d4ea86325bae21ea889b887e4fc21de0d7d4cbcabe82f2ff8948b80249d1345c4cf3a0e81cb2 diff --git a/www-apps/pleroma-fe/metadata.xml b/www-apps/pleroma-fe/metadata.xml deleted file mode 100644 index 2092bcc33..000000000 --- a/www-apps/pleroma-fe/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>contact@hacktivis.me</email> - <name>Haelwenn (lanodan) Monnier</name> - </maintainer> -</pkgmetadata> diff --git a/www-apps/pleroma-fe/pleroma-fe-2.5.0.ebuild b/www-apps/pleroma-fe/pleroma-fe-2.5.0.ebuild deleted file mode 100644 index 3ef730422..000000000 --- a/www-apps/pleroma-fe/pleroma-fe-2.5.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me> -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Main frontend for www-apps/pleroma, inspired by qvitter" -HOMEPAGE="https://pleroma.social/ https://git.pleroma.social/pleroma/pleroma-fe" -if [[ "${PV}" == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.pleroma.social/pleroma/pleroma-fe" -else - SRC_URI="https://git.pleroma.social/pleroma/pleroma-fe/-/archive/${PV}/${P}.tar.gz" - KEYWORDS="~amd64" -fi -LICENSE="AGPL-3 MIT ISC Apache-2.0" -SLOT="0" -IUSE="" - -# Requires network access (https) as long as NPM dependencies aren't packaged -# said dependencies have their checksum verified via `yarn.lock` -RESTRICT="network-sandbox" - -BDEPEND=" - net-libs/nodejs - sys-apps/yarn -" - -src_unpack() { - default - - [[ "${PV}" == *9999 ]] && git-r3_src_unpack - - cd "${S}" || die - yarn install --no-bin-links --frozen-lockfile --non-interactive || die -} - -# FIXME src_prepare: Point to the correct source repo, needed for AGPL compliance -src_prepare() { - default - - # https://git.pleroma.social/pleroma/pleroma-fe/-/merge_requests/1854 - sed -i \ - -e '/git rev-parse/,/^$/d' \ - -e 's|let commitHash = .*|let commitHash = "'${PV}'";\n|' \ - build/webpack.prod.conf.js || die -} - -src_compile() { - yarn run build || die -} - -src_install() { - insinto "/opt/pleroma-fe" - doins -r dist -} diff --git a/www-apps/pleroma-fe/pleroma-fe-9999.ebuild b/www-apps/pleroma-fe/pleroma-fe-9999.ebuild deleted file mode 100644 index 3ef730422..000000000 --- a/www-apps/pleroma-fe/pleroma-fe-9999.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me> -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Main frontend for www-apps/pleroma, inspired by qvitter" -HOMEPAGE="https://pleroma.social/ https://git.pleroma.social/pleroma/pleroma-fe" -if [[ "${PV}" == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.pleroma.social/pleroma/pleroma-fe" -else - SRC_URI="https://git.pleroma.social/pleroma/pleroma-fe/-/archive/${PV}/${P}.tar.gz" - KEYWORDS="~amd64" -fi -LICENSE="AGPL-3 MIT ISC Apache-2.0" -SLOT="0" -IUSE="" - -# Requires network access (https) as long as NPM dependencies aren't packaged -# said dependencies have their checksum verified via `yarn.lock` -RESTRICT="network-sandbox" - -BDEPEND=" - net-libs/nodejs - sys-apps/yarn -" - -src_unpack() { - default - - [[ "${PV}" == *9999 ]] && git-r3_src_unpack - - cd "${S}" || die - yarn install --no-bin-links --frozen-lockfile --non-interactive || die -} - -# FIXME src_prepare: Point to the correct source repo, needed for AGPL compliance -src_prepare() { - default - - # https://git.pleroma.social/pleroma/pleroma-fe/-/merge_requests/1854 - sed -i \ - -e '/git rev-parse/,/^$/d' \ - -e 's|let commitHash = .*|let commitHash = "'${PV}'";\n|' \ - build/webpack.prod.conf.js || die -} - -src_compile() { - yarn run build || die -} - -src_install() { - insinto "/opt/pleroma-fe" - doins -r dist -} |