sys-apps/calculate-utils: fix deps
This commit is contained in:
parent
31cf790d62
commit
377e7a1f20
1 changed files with 327 additions and 0 deletions
327
sys-apps/calculate-utils/calculate-utils-3.7.7.10-r1.ebuild
Normal file
327
sys-apps/calculate-utils/calculate-utils-3.7.7.10-r1.ebuild
Normal file
|
@ -0,0 +1,327 @@
|
|||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11,12} )
|
||||
DISTUTILS_EXT=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
DESCRIPTION="A set of Calculate utilities for system installation, build and upgrade"
|
||||
HOMEPAGE="https://www.calculate-linux.org/main/en/calculate_utilities"
|
||||
|
||||
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_BRANCH="master"
|
||||
EGIT_REPO_URI="https://git.calculate-linux.org/calculate/calculate-utils.git"
|
||||
else
|
||||
SRC_URI="https://git.calculate-linux.org/calculate/calculate-utils/archive/${PV}.tar.gz -> calculate-utils-${PV}.tar.gz"
|
||||
KEYWORDS="amd64"
|
||||
S="${WORKDIR}/${PN}"
|
||||
fi
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE="backup client console dbus desktop +gpg +install minimal pxe qt6"
|
||||
REQUIRED_USE="client? ( desktop )"
|
||||
|
||||
distutils_enable_tests unittest
|
||||
|
||||
CALCULATE_MODULES_=(
|
||||
"core"
|
||||
"builder"
|
||||
"update"
|
||||
"i18n"
|
||||
"lib"
|
||||
"install"
|
||||
)
|
||||
declare -g -A CALCULATE_MODULES_USE_=(
|
||||
["console-gui"]="qt6"
|
||||
["desktop"]="desktop"
|
||||
["client"]="client"
|
||||
["console"]="console"
|
||||
)
|
||||
|
||||
python_prepare_all() {
|
||||
distutils-r1_python_prepare_all
|
||||
|
||||
local core_file_path="src/calculate/core/wsdl_core.py"
|
||||
if ! use backup; then
|
||||
sed -ir "s/'cl-backup'/None/" "${core_file_path}"
|
||||
sed -ir "s/'cl-backup-restore'/None/" "${core_file_path}"
|
||||
sed -ir "s/__('Backup')/None/g" "${core_file_path}"
|
||||
|
||||
einfo "Disable backups in core module"
|
||||
fi
|
||||
|
||||
local lib_file_path="src/calculate/lib/variables/__init__.py"
|
||||
sed -ri "/class VariableClVer/{N;N;N;N;s/value = \".*?\"/value = \"${PV}\"/;}" \
|
||||
"${lib_file_path}" || die
|
||||
einfo "Change version in \"${lib_file_path}\" => \"${PV}\""
|
||||
|
||||
use_flags=()
|
||||
for exc_module in ${!CALCULATE_MODULES_USE_[@]}; do
|
||||
use_flag=${CALCULATE_MODULES_USE_[${exc_module}]}
|
||||
if ! use $use_flag; then
|
||||
[[ ${exc_module} == "console-gui" ]] && exc_module="consolegui"
|
||||
remove_path="src/calculate/${exc_module}"
|
||||
rm -rf "${remove_path}" || die "Can't remove module from path: \"${remove_path}\""
|
||||
elog "Module calculate.${exc_module} removed."
|
||||
else
|
||||
[[ $exc_module == "console-gui" ]] && use_flag="console-gui"
|
||||
use_flags+=(${use_flag})
|
||||
fi
|
||||
done
|
||||
use_flags=${use_flags[@]}
|
||||
|
||||
cat >> setup.cfg <<-EOF
|
||||
|
||||
[use_flags]
|
||||
flags = ${use_flags// /,}
|
||||
EOF
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
esetup.py build_mo
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
|
||||
install_openrc_daemons() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
doinitd $(find resources/scripts/openrc_daemon -maxdepth 1 -type f)
|
||||
use client && doinitd resources/scripts/openrc_daemon/client/*
|
||||
}
|
||||
|
||||
install_xdm() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
local xdm_pth="/usr/share/calculate/xdm"
|
||||
exeinto "${xdm_pth}"
|
||||
insinto "${xdm_pth}"
|
||||
if use desktop; then
|
||||
doexe $(find "resources/scripts/xdm_files/desktop" -executable -type f)
|
||||
doins $(find "resources/scripts/xdm_files/desktop" ! -executable -type f)
|
||||
fi
|
||||
|
||||
use client && doexe resources/scripts/xdm_files/client/wait_domain
|
||||
|
||||
insinto /usr/share/calculate/xdm/login.d
|
||||
if use desktop; then
|
||||
doins resources/scripts/xdm_files/login.d/desktop/*
|
||||
fi
|
||||
|
||||
use client && doins resources/scripts/xdm_files/login.d/client/*
|
||||
|
||||
insinto /usr/share/calculate/xdm/logout.d
|
||||
use desktop && doins resources/scripts/xdm_files/logout.d/desktop/*
|
||||
use client && doins resources/scripts/xdm_files/logout.d/client/*
|
||||
}
|
||||
|
||||
install_sbin() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
dosbin $(find resources/scripts/sbin -maxdepth 1 -type f)
|
||||
use client && dosbin resources/scripts/sbin/client/*
|
||||
}
|
||||
|
||||
install_man() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
doman -i18n=ru resources/man/ru/*.1
|
||||
doman resources/man/*.1
|
||||
}
|
||||
|
||||
install_libexec() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
exeinto /usr/libexec/calculate
|
||||
|
||||
use dbus && doexe resources/scripts/libexec/dbus/*
|
||||
doexe $(find resources/scripts/libexec -maxdepth 1 -type f)
|
||||
}
|
||||
|
||||
install_doc() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
dodoc -r resources/*.html
|
||||
}
|
||||
|
||||
install_bin() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
exeinto /bin
|
||||
doexe resources/scripts/bin/*
|
||||
exeinto /usr/bin
|
||||
doexe resources/scripts/usr/bin/*
|
||||
}
|
||||
|
||||
install_data_images() {
|
||||
debug-print-function ${FUNCNAME} "${@}"
|
||||
|
||||
local themes=("gnome" "hicolor")
|
||||
|
||||
insinto /usr/share/icons/Calculate/16x16/client-gui
|
||||
doins -r resources/data/images/*
|
||||
|
||||
insinto /usr/share/
|
||||
doins -r resources/data/pixmaps
|
||||
doins -r resources/data/applications
|
||||
|
||||
insinto /usr/share/calculate/themes/
|
||||
doins -r resources/data/install
|
||||
|
||||
for theme in ${themes[@]}; do
|
||||
insinto /usr/share/icons/${theme}
|
||||
doins -r resources/data/non_scalable/*
|
||||
|
||||
insinto /usr/share/icons/${theme}/scalable/apps
|
||||
doins -r resources/data/scalable/*
|
||||
done
|
||||
}
|
||||
|
||||
python_install() {
|
||||
if use qt6; then
|
||||
local scriptdir="${EPREFIX}"/usr/bin
|
||||
local root="${BUILD_DIR}"/install
|
||||
local reg_scriptdir="${root}/${scriptdir}"
|
||||
|
||||
python_newscript "${reg_scriptdir}"/cl-console-gui cl-console-gui-install
|
||||
python_newscript "${reg_scriptdir}"/cl-console-gui cl-console-gui-update
|
||||
|
||||
install_data_images
|
||||
|
||||
insinto /etc/xdg/autostart
|
||||
doins resources/data/cl-update-checker.desktop
|
||||
fi
|
||||
|
||||
distutils-r1_python_install
|
||||
|
||||
install_openrc_daemons
|
||||
install_libexec
|
||||
install_xdm
|
||||
install_sbin
|
||||
install_man
|
||||
install_doc
|
||||
install_bin
|
||||
|
||||
if use dbus; then
|
||||
insinto /usr/share/dbus-1/system.d
|
||||
doins resources/configs/conf/*
|
||||
|
||||
insinto /usr/share/dbus-1/system-services
|
||||
doins resources/configs/service/*
|
||||
fi
|
||||
|
||||
# domo "${S}"/src/calculate/locale/**/LC_MESSAGES/*.mo
|
||||
|
||||
keepdir /etc/calculate
|
||||
keepdir /var/log/calculate
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
dosym -r /usr/libexec/calculate/cl-core-wrapper /usr/bin/cl-core-setup
|
||||
dosym -r /usr/libexec/calculate/cl-core-wrapper /usr/bin/cl-core-patch
|
||||
dosym -r /usr/libexec/calculate/cl-core-wrapper /usr/bin/cl-update
|
||||
dosym -r /usr/libexec/calculate/cl-core-wrapper /usr/bin/cl-update-profile
|
||||
}
|
||||
|
||||
DEPEND="
|
||||
sys-devel/gettext
|
||||
"
|
||||
BDEPEND="
|
||||
dev-python/setuptools-scm[${PYTHON_USEDEP}]
|
||||
"
|
||||
RDEPEND="
|
||||
dev-libs/libbsd
|
||||
install? ( >=app-cdr/cdrtools-3.01_alpha13
|
||||
>=sys-boot/grub-2.00-r3
|
||||
>=sys-boot/syslinux-5
|
||||
sys-fs/squashfs-tools
|
||||
sys-fs/dosfstools
|
||||
sys-block/parted
|
||||
sys-apps/gptfdisk
|
||||
sys-fs/lvm2
|
||||
sys-fs/mdadm
|
||||
)
|
||||
!minimal? (
|
||||
>=sys-apps/util-linux-2.19.1
|
||||
net-misc/rsync
|
||||
dev-python/pyopenssl[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
dev-python/cffi[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
dev-libs/openssl
|
||||
dev-python/m2crypto[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${PYTHON_USEDEP}]
|
||||
)
|
||||
gpg? (
|
||||
app-crypt/gnupg
|
||||
app-crypt/openpgp-keys-calculate-release
|
||||
)
|
||||
dev-python/jaraco-functools[${PYTHON_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
sys-apps/iproute2[-minimal]
|
||||
sys-apps/pciutils
|
||||
app-arch/xz-utils
|
||||
app-portage/eix
|
||||
app-portage/portage-utils
|
||||
|
||||
sys-apps/debianutils
|
||||
sys-kernel/installkernel
|
||||
|
||||
app-eselect/eselect-repository
|
||||
>=virtual/udev-197
|
||||
!app-misc/livecd-tools
|
||||
sys-apps/coreutils[xattr]
|
||||
|
||||
pxe? ( sys-apps/calculate-server
|
||||
net-ftp/tftp-hpa
|
||||
net-misc/dhcp
|
||||
net-fs/nfs-utils
|
||||
)
|
||||
|
||||
qt6? (
|
||||
dev-python/dbus-python[${PYTHON_USEDEP}]
|
||||
media-gfx/imagemagick[jpeg]
|
||||
dev-python/pyqt6[${PYTHON_USEDEP}]
|
||||
dev-python/pyinotify[${PYTHON_USEDEP}]
|
||||
)
|
||||
|
||||
dbus? (
|
||||
dev-python/dbus-python[${PYTHON_USEDEP}]
|
||||
)
|
||||
|
||||
dev-python/pexpect[${PYTHON_USEDEP}]
|
||||
|
||||
desktop? (
|
||||
media-gfx/feh
|
||||
x11-apps/xmessage
|
||||
sys-apps/keyutils
|
||||
sys-auth/pam_keystore
|
||||
dev-lang/swig
|
||||
dev-qt/qttools[qdbus]
|
||||
sys-apps/edid-decode
|
||||
dev-python/pygobject[${PYTHON_USEDEP}]
|
||||
dev-python/dbus-python[${PYTHON_USEDEP}]
|
||||
)
|
||||
|
||||
client? (
|
||||
dev-python/python-ldap[ssl,${PYTHON_USEDEP}]
|
||||
sys-auth/pam_client
|
||||
>=sys-auth/pam_ldap-180[ssl]
|
||||
>=sys-auth/nss_ldap-239
|
||||
)
|
||||
backup? ( !sys-apps/calculate-server )
|
||||
"
|
||||
# server? (
|
||||
# sys-auth/pam_ldap
|
||||
# sys-auth/nss_ldap
|
||||
# dev-python/python-ldap[${PYTHON_USEDEP}]
|
||||
# )
|
||||
#
|
||||
# server? ( !sys-apps/calculate-server )
|
Loading…
Add table
Reference in a new issue