diff options
author | Bailey Kasin <baileykasin@gmail.com> | 2024-09-30 19:42:21 -0700 |
---|---|---|
committer | Bailey Kasin <baileykasin@gmail.com> | 2024-09-30 19:46:35 -0700 |
commit | 04bbe1405e17cd3aa739dfb9aee421c16516ae18 (patch) | |
tree | 3b3b22388d8d0dfd0151ec2c138c110711206e45 /www-apps | |
parent | www-apps/whoogle-search: add 0.9.0 (diff) | |
download | guru-04bbe1405e17cd3aa739dfb9aee421c16516ae18.tar.gz guru-04bbe1405e17cd3aa739dfb9aee421c16516ae18.tar.bz2 guru-04bbe1405e17cd3aa739dfb9aee421c16516ae18.zip |
www-apps/whoogle-search: drop 0.8.4-r3
Signed-off-by: Cat Kasin <baileykasin@gmail.com>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/whoogle-search/Manifest | 1 | ||||
-rw-r--r-- | www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest index 8da5dcb80..db1b3e4c9 100644 --- a/www-apps/whoogle-search/Manifest +++ b/www-apps/whoogle-search/Manifest @@ -1,2 +1 @@ -DIST whoogle-search-0.8.4.gh.tar.gz 616189 BLAKE2B 23c547d330b3b098eea4d63029ba109f8ecc0f4fefe031c77fcdb52d657aeb93d8d6fa3ae8f54ff9a7218c7c31aa1eccba57b333c376b92cc6a841f60cb14240 SHA512 6a9f7e7502253c2c6b72e8753595f4d57dca6fad2fceb1fece6e40203f7b85eb0ef7debda4852ed347b103ae89c1a188ccb989e56bc7c0ad81dccdda69dc2b58 DIST whoogle-search-0.9.0.gh.tar.gz 617855 BLAKE2B f4051918971609f82062bd6796aea63c491ef6bb8263a94d1b3f93096ffd2db5a64d890a1990c9bfbdc191bb739c092d15bc313ec8dc26e2ba8a660bb7995e25 SHA512 eb6edc8a25dfc374439480370ae35c87e334c845f8e1128888a5be1c9033dbc83148c732126fdb493f928a1f40a925789c91d1fca83d5ff2b51c519e6e795dc7 diff --git a/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild b/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild deleted file mode 100644 index d2825e84a..000000000 --- a/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=no -PYTHON_COMPAT=( python3_{10..12} ) -inherit distutils-r1 systemd - -DESCRIPTION="A self-hosted, ad-free, privacy-respecting metasearch engine" -HOMEPAGE="https://github.com/benbusby/whoogle-search" -SRC_URI="https://github.com/benbusby/whoogle-search/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - dev-python/cssutils[${PYTHON_USEDEP}] - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/flask[${PYTHON_USEDEP}] - dev-python/python-dotenv[${PYTHON_USEDEP}] - dev-python/defusedxml[${PYTHON_USEDEP}] - dev-python/waitress[${PYTHON_USEDEP}] - dev-python/validators[${PYTHON_USEDEP}] - app-arch/brotli[${PYTHON_USEDEP},python] - net-libs/stem - acct-user/whoogle - acct-group/whoogle -" - -src_install() { - rm -r .github docs test .dockerignore .gitignore .replit \ - docker-compose.yml Dockerfile heroku.yml MANIFEST.in README.md \ - requirements.txt - mkdir -p "${ED}/opt/whoogle-search" || die - insinto /opt/whoogle-search - doins -r ./* - fperms -R 0755 /opt/whoogle-search - fowners -R whoogle:whoogle /opt/whoogle-search - - insinto /etc/default/ - doins "${FILESDIR}/whoogle" - insinto /usr/lib/sysusers.d/ - doins "${FILESDIR}/whoogle.conf" - - newinitd "${FILESDIR}"/whoogle.initd whoogle - systemd_dounit "${FILESDIR}/whoogle.service" -} |