net-im/gajim-omemo: adjust to gajim >=1.1

This commit is contained in:
layman 2019-01-08 11:00:48 +01:00
parent 0227e92d83
commit 81aa0b62d4
No known key found for this signature in database
GPG key ID: 92D2BF778E1308C0
2 changed files with 32 additions and 13 deletions

View file

@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -6,7 +6,9 @@ EAPI=6
DESCRIPTION="Gajim plugin for OMEMO XMPP end-to-end encryption"
HOMEPAGE="https://dev.gajim.org/gajim/gajim-plugins/wikis/OmemoGajimPlugin"
inherit git-r3
PYTHON_COMPAT=( python3_{5,6} )
inherit git-r3 python-r1 python-utils-r1
EGIT_REPO_URI="https://dev.gajim.org/gajim/gajim-plugins.git"
@ -23,14 +25,21 @@ IUSE=""
DEPEND="dev-python/python-axolotl
dev-python/qrcode
dev-python/cryptography"
dev-python/cryptography
>=net-im/gajim-1.1"
RDEPEND="${DEPEND}"
src_install() {
local PLUGIN_DIR="/usr/share/gajim/plugins"
install_omemo() {
python_export PYTHON_SITEDIR
local GAJIM_SITEPACKAGE="$PYTHON_SITEDIR/gajim/)"
local PLUGIN_DIR="${GAJIM_SITEPACKAGE}/data/plugins"
local OMEMO_PLUGIN_DIR="${PLUGIN_DIR}/omemo"
dodir "${PLUGIN_DIR}"
dodir "${OMEMO_PLUGIN_DIR}"
cp -pPR "${S}"/omemo/* "${D}/${OMEMO_PLUGIN_DIR}" || die "Installing files failed"
}
src_install() {
python_foreach_impl install_omemo
}

View file

@ -1,18 +1,21 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
EAPI=6
DESCRIPTION="Gajim plugin for XEP proposal: OMEMO Encryption"
DESCRIPTION="Gajim plugin for OMEMO XMPP end-to-end encryption"
HOMEPAGE="https://dev.gajim.org/gajim/gajim-plugins/wikis/OmemoGajimPlugin"
inherit git-r3
PYTHON_COMPAT=( python3_{5,6} )
inherit git-r3 python-r1 python-utils-r1
EGIT_REPO_URI="https://dev.gajim.org/gajim/gajim-plugins.git"
if [[ "${PV}" = "9999" ]] ; then
KEYWORDS=""
else
EGIT_COMMIT="5a6d4d2679da188cae0323579c6ac9fa9b5a8dc9"
EGIT_COMMIT="omemo_${PV}"
KEYWORDS="~amd64"
fi
@ -22,14 +25,21 @@ IUSE=""
DEPEND="dev-python/python-axolotl
dev-python/qrcode
dev-python/cryptography"
dev-python/cryptography
>=net-im/gajim-1.1"
RDEPEND="${DEPEND}"
src_install() {
local PLUGIN_DIR="/usr/share/gajim/plugins"
install_omemo() {
python_export PYTHON_SITEDIR
local GAJIM_SITEPACKAGE="$PYTHON_SITEDIR/gajim/)"
local PLUGIN_DIR="${GAJIM_SITEPACKAGE}/data/plugins"
local OMEMO_PLUGIN_DIR="${PLUGIN_DIR}/omemo"
dodir "${PLUGIN_DIR}"
dodir "${OMEMO_PLUGIN_DIR}"
cp -pPR "${S}"/omemo/* "${D}/${OMEMO_PLUGIN_DIR}" || die "Installing files failed"
}
src_install() {
python_foreach_impl install_omemo
}