Install this version:
emerge -a =sys-auth/howdy-models-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-auth/howdy-models-9999
Or alternatively:
emerge --autounmask-write -a =sys-auth/howdy-models-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 2024-25 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Trained model files for Howdy."
HOMEPAGE="https://github.com/davisking/dlib-models"
SRC_URI="
https://github.com/davisking/dlib-models/raw/master/dlib_face_recognition_resnet_model_v1.dat.bz2
https://github.com/davisking/dlib-models/raw/master/mmod_human_face_detector.dat.bz2
https://github.com/davisking/dlib-models/raw/master/shape_predictor_5_face_landmarks.dat.bz2
"
S="${WORKDIR}"
LICENSE="CC0-1.0"
SLOT="0"
INSTALL_PATH=/usr/share/dlib-data/
src_install() {
insinto "${INSTALL_PATH}"
doins "${WORKDIR}/dlib_face_recognition_resnet_model_v1.dat"
doins "${WORKDIR}/mmod_human_face_detector.dat"
doins "${WORKDIR}/shape_predictor_5_face_landmarks.dat"
}