From 802fc9fdf95fa897a665a954bf462a6e06ba8dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Mon, 29 Apr 2019 17:15:22 +0300 Subject: [PATCH] sys-apps/calculate-utils: bump version --- eclass/calculate-utils-r5.eclass | 310 ++++++++++++++++++ .../calculate-utils-3.6.4.3.ebuild | 29 ++ 2 files changed, 339 insertions(+) create mode 100644 eclass/calculate-utils-r5.eclass create mode 100644 sys-apps/calculate-utils/calculate-utils-3.6.4.3.ebuild diff --git a/eclass/calculate-utils-r5.eclass b/eclass/calculate-utils-r5.eclass new file mode 100644 index 000000000..e6c43ee7a --- /dev/null +++ b/eclass/calculate-utils-r5.eclass @@ -0,0 +1,310 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +# @ECLASS: calculate-utils-r5.eclass +# @MAINTAINER: +# support@calculate.ru +# @AUTHOR: +# Author: Mir Calculate +# @BLURB: Functions for calculate-utils +# @DESCRIPTION: +# This eclass use for calculate-utils ebuild + +PYTHON_COMPAT=(python2_7) + +inherit distutils-r1 eutils versionator + +EXPORTED_FUNCTIONS="src_compile src_install pkg_preinst" + +CALCULATE_URI="ftp://ftp.calculate-linux.org/calculate/source/calculate3" +MIRROR_URI="http://mirror.yandex.ru/calculate/source/calculate3" + +# @ECLASS-VARIABLE: CALCULATE_MODULES +# @DESCRIPTION: +# Associative array module names and versions +# Example: +# declare -A CALCULATE_MODULES=( +# ["console-gui"]="3.2.3.4" +# ) + +# @ECLASS-VARIABLE: CALCULATE_MODULES_USE +# @DESCRIPTION: +# Associative array module names and use for IUSE +# Example: +# declare -A CALCULATE_MODULES_USE=( +# ["console-gui"]="" +# ) + +# @ECLASS-VARIABLE: CALCULATE_TARBALL +# @DESCRIPTION: +# Associative array module names and tarball archive name +# Example: +# declare -A CALCULATE_TARBALL=( ["lib"]="calculate-lib-3.2.3-r1.tar.bz2" ) + +# @ECLASS-VARIABLE: UTILS_PV +# @DESCRIPTION: +# Default version of all components +# Example: +: ${UTILS_PV:=$(get_version_component_range 1-3 ${PV})} + +declare -g -A CALCULATE_TARBALL_=() + +declare -g -A CALCULATE_MODULES_=( + ["lib"]="$UTILS_PV" + ["builder"]="$UTILS_PV" + ["install"]="$UTILS_PV" + ["core"]="$UTILS_PV" + ["i18n"]="$UTILS_PV" + ["update"]="$UTILS_PV" + ["desktop"]="$UTILS_PV" + ["client"]="$UTILS_PV" + ["console-gui"]="$UTILS_PV" + ["console"]="$UTILS_PV" + ["server"]="$UTILS_PV" + ["ldap"]="$UTILS_PV" + ["unix"]="$UTILS_PV") + +declare -g -A CALCULATE_MODULES_USE_=( + ["desktop"]="desktop" + ["client"]="client" + ["console-gui"]="qt5" + ["console"]="console" + ["server"]="server" + ["ldap"]="server" + ["unix"]="server" +) + +EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} + +# @FUNCTION: prepare_variables +# @DESCRIPTION: +# Prepare variables for ebuild +prepare_variables() { + for module in ${!CALCULATE_MODULES[@]} + do + CALCULATE_MODULES_[$module]=${CALCULATE_MODULES[$module]} + done + + for module in ${!CALCULATE_MODULES_USE[@]} + do + CALCULATE_MODULES_USE_[$module]=${CALCULATE_MODULES_USE[$module]} + done + + for module in ${!CALCULATE_MODULES_[@]} + do + MODULE_PN=calculate-${module} + MODULE_PV=${CALCULATE_MODULES_[$module]} + if [[ -n ${CALCULATE_TARBALL[$module]} ]] + then + CALCULATE_TARBALL_[$module]="${MODULE_PN}/${CALCULATE_TARBALL[$module]}" + else + CALCULATE_TARBALL_[$module]="${MODULE_PN}/${MODULE_PN}-${MODULE_PV}.tar.bz2" + fi + done + + for module in ${!CALCULATE_MODULES_[@]} + do + MODULE_USE=${CALCULATE_MODULES_USE_[$module]} + MODULE_URI="" + for URI in $CALCULATE_URI $MIRROR_URI + do + MODULE_URI="${MODULE_URI} ${URI}/${CALCULATE_TARBALL_[$module]}" + done + if [[ -n $MODULE_USE ]] + then + MODULE_URI="${MODULE_USE}? ( $MODULE_URI )" + fi + SRC_URI="$SRC_URI $MODULE_URI" + done + + IUSE="+install dbus minimal pxe backup ${CALCULATE_MODULES_USE_[@]}" + S="${WORKDIR}" +} + +# @FUNCTION: prepare_module_info +# @DESCRIPTION: +# Prepare module info for compile and install +prepare_module_info() { + MODULE_INFO=() + for module in ${!CALCULATE_MODULES_[@]} + do + MODULE_USE=${CALCULATE_MODULES_USE_[$module]} + if [[ -z $MODULE_USE ]] || use $MODULE_USE + then + MODULE_INFO+=("calculate-$module ${CALCULATE_MODULES_[$module]}") + fi + done +} + +prepare_variables + +RDEPEND=" + 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? ( + dev-python/passlib[python_targets_python2_7] + >=sys-apps/util-linux-2.19.1 + net-misc/rsync + dev-python/sudsds[python_targets_python2_7] + net-libs/dslib[python_targets_python2_7] + >=dev-python/pyopenssl-0.14[python_targets_python2_7] + dev-libs/openssl + dev-python/cherrypy[python_targets_python2_7] + dev-python/pytz[python_targets_python2_7] + ) + >=dev-python/pyxml-0.8[python_targets_python2_7] + sys-apps/iproute2[-minimal] + sys-apps/pciutils + dev-python/progressbar[python_targets_python2_7] + app-arch/xz-utils + dev-python/pyinotify[python_targets_python2_7] + sys-apps/file[python,python_targets_python2_7] + + app-portage/layman[python_targets_python2_7] + sys-apps/portage[python_targets_python2_7] + dev-python/pyxattr[python_targets_python2_7] + >=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 + ) + + >=dev-python/soaplib-1.0 + !=dev-python/python-ldap-2.0[ssl,python_targets_python2_7] + sys-auth/pam_client + >=sys-auth/pam_ldap-180[ssl] + >=sys-auth/nss_ldap-239 + ) + + qt5? ( + dev-python/dbus-python[python_targets_python2_7] + || ( + dev-python/pillow[python_targets_python2_7] + dev-python/imaging[python_targets_python2_7] + ) + dev-python/PyQt5[python_targets_python2_7] + ) + + dbus? ( + dev-python/dbus-python + ) + + dev-python/pexpect[python_targets_python2_7] + + !