From 88a41d8f0d32d3b29c0fe68f20b80af290caea84 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 19 Aug 2021 17:12:46 +0200 Subject: [PATCH] www-misc/gitea2rss: Remove package. --- profiles/package.mask | 6 +-- www-misc/gitea2rss/Manifest | 2 - www-misc/gitea2rss/gitea2rss-0.6.0.ebuild | 58 ----------------------- www-misc/gitea2rss/gitea2rss-0.7.0.ebuild | 58 ----------------------- www-misc/gitea2rss/gitea2rss-9999.ebuild | 58 ----------------------- www-misc/gitea2rss/metadata.xml | 11 ----- 6 files changed, 1 insertion(+), 192 deletions(-) delete mode 100644 www-misc/gitea2rss/Manifest delete mode 100644 www-misc/gitea2rss/gitea2rss-0.6.0.ebuild delete mode 100644 www-misc/gitea2rss/gitea2rss-0.7.0.ebuild delete mode 100644 www-misc/gitea2rss/gitea2rss-9999.ebuild delete mode 100644 www-misc/gitea2rss/metadata.xml diff --git a/profiles/package.mask b/profiles/package.mask index 5190c5181..8b1378917 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -1,5 +1 @@ -# tastytea (2021-05-21) -# The package is in the guru[1] repository now. Please use that instead. Masked -# for removal in 30 days. -# [1] -www-misc/gitea2rss + diff --git a/www-misc/gitea2rss/Manifest b/www-misc/gitea2rss/Manifest deleted file mode 100644 index 9d1b47851..000000000 --- a/www-misc/gitea2rss/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST gitea2rss-0.6.0.tar.gz 22771 BLAKE2B 5fde25f9f640599a64ae2aca9c90a8e7a83120ea792380864d43b19144160a8a739832ba254884b5bfa01c17603bedc5d9076c10293545664e6f423b44eff40b SHA512 39cbd310b1b12450b0d827a84e1fb897637518e5e14a2da0fbfe6e217cb1deb76d768345a6658ae1bf3f8ce7641d59d6df62e799d62ceb6651b3a2d859716298 -DIST gitea2rss-0.7.0.tar.gz 25135 BLAKE2B f39e59aaa1381155ba1ec9c7bf831120a3c1504458515854d66e38cdc5d76bd436aeb055c85136c7010b22a65e87482d604f3542a6cf9f00cf9b6a906afa8cfc SHA512 1041897d3e1cbe60f75330403abf27b990923f2f47ea5c9d513dcf50a4e92a457ab2989067e4d29b8bbe16b4be39fdb74e87b337f49825607831c5e4090a0a80 diff --git a/www-misc/gitea2rss/gitea2rss-0.6.0.ebuild b/www-misc/gitea2rss/gitea2rss-0.6.0.ebuild deleted file mode 100644 index 538ad53a2..000000000 --- a/www-misc/gitea2rss/gitea2rss-0.6.0.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -if [[ "${PV}" == "9999" ]]; then - inherit git-r3 -fi - -DESCRIPTION="Generates RSS feeds from Gitea releases or tags" -HOMEPAGE="https://schlomp.space/tastytea/gitea2rss" -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://schlomp.space/tastytea/gitea2rss.git" -else - SRC_URI="https://schlomp.space/tastytea/gitea2rss/archive/${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}" -fi - -LICENSE="GPL-3" -SLOT="0" -if [[ "${PV}" == "9999" ]]; then - KEYWORDS="" -else - KEYWORDS="~amd64 ~arm ~x86" -fi -IUSE="test" - -RDEPEND=" - net-misc/curl[ssl] - dev-libs/jsoncpp -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - app-text/asciidoc -" - -RESTRICT="!test? ( test )" - -DOCS=("README.adoc" "doc/nginx-example.conf") - -src_configure() { - local mycmakeargs=( - -DWITH_TESTS="$(usex test)" - ) - if use test; then - # Don't run tests that need a network connection. - mycmakeargs+=(-DEXTRA_TEST_ARGS="~[http]") - fi - - cmake_src_configure -} - -src_test() { - BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test -} diff --git a/www-misc/gitea2rss/gitea2rss-0.7.0.ebuild b/www-misc/gitea2rss/gitea2rss-0.7.0.ebuild deleted file mode 100644 index c3873deaf..000000000 --- a/www-misc/gitea2rss/gitea2rss-0.7.0.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -if [[ "${PV}" == "9999" ]]; then - inherit git-r3 -fi - -DESCRIPTION="Generates RSS feeds from Gitea releases or tags" -HOMEPAGE="https://schlomp.space/tastytea/gitea2rss" -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://schlomp.space/tastytea/gitea2rss.git" -else - SRC_URI="https://schlomp.space/tastytea/gitea2rss/archive/${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}" -fi - -LICENSE="GPL-3" -SLOT="0" -if [[ "${PV}" == "9999" ]]; then - KEYWORDS="" -else - KEYWORDS="~amd64 ~arm ~x86" -fi -IUSE="test" - -RDEPEND=" - net-misc/curl[ssl] - dev-libs/jsoncpp -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - app-text/asciidoc -" - -RESTRICT="!test? ( test )" - -DOCS=("README.adoc" "doc/nginx-example.conf") - -src_configure() { - local mycmakeargs=( - -DWITH_TESTS="$(usex test)" - ) - if use test; then - # Don't run tests that need a network connection. - mycmakeargs+=(-DEXTRA_TEST_ARGS="~[http]") - fi - - cmake_src_configure -} - -src_test() { - BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test -} diff --git a/www-misc/gitea2rss/gitea2rss-9999.ebuild b/www-misc/gitea2rss/gitea2rss-9999.ebuild deleted file mode 100644 index 538ad53a2..000000000 --- a/www-misc/gitea2rss/gitea2rss-9999.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -if [[ "${PV}" == "9999" ]]; then - inherit git-r3 -fi - -DESCRIPTION="Generates RSS feeds from Gitea releases or tags" -HOMEPAGE="https://schlomp.space/tastytea/gitea2rss" -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://schlomp.space/tastytea/gitea2rss.git" -else - SRC_URI="https://schlomp.space/tastytea/gitea2rss/archive/${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}" -fi - -LICENSE="GPL-3" -SLOT="0" -if [[ "${PV}" == "9999" ]]; then - KEYWORDS="" -else - KEYWORDS="~amd64 ~arm ~x86" -fi -IUSE="test" - -RDEPEND=" - net-misc/curl[ssl] - dev-libs/jsoncpp -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - app-text/asciidoc -" - -RESTRICT="!test? ( test )" - -DOCS=("README.adoc" "doc/nginx-example.conf") - -src_configure() { - local mycmakeargs=( - -DWITH_TESTS="$(usex test)" - ) - if use test; then - # Don't run tests that need a network connection. - mycmakeargs+=(-DEXTRA_TEST_ARGS="~[http]") - fi - - cmake_src_configure -} - -src_test() { - BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test -} diff --git a/www-misc/gitea2rss/metadata.xml b/www-misc/gitea2rss/metadata.xml deleted file mode 100644 index 88bc26073..000000000 --- a/www-misc/gitea2rss/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - gentoo@tastytea.de - tastytea - - - https://schlomp.space/tastytea/gitea2rss/issues - -