mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 12:08:43 -04:00
i486 profile now inherits wd40. i686 profile is not actually affected, but overlay currently does not support per-profile masking, so the entire x86 keyword is dropped. Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
51 lines
1.4 KiB
Bash
51 lines
1.4 KiB
Bash
# 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"
|
|
}
|