dev-python/mpxj - 16.2.0 (guru)

Search

Install

Install this version:

emerge -a =dev-python/mpxj-16.2.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-python/mpxj-16.2.0

Or alternatively:

emerge --autounmask-write -a =dev-python/mpxj-16.2.0

Package Information

Description:
Read/Write project management files (MPP, MSPDI, MPX, PMXML, XER, etc)
Homepage:
https://pypi.org/project/mpxj/ https://github.com/joniles/mpxj/
License:
LGPL-2.1

Ebuild Details

Version EAPI Keywords Slot
16.2.0 8 ~amd64 0
View Raw Ebuild
# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=standalone
PYTHON_COMPAT=( python3_{12..14} )

inherit distutils-r1 pypi

DESCRIPTION="Read/Write project management files (MPP, MSPDI, MPX, PMXML, XER, etc)"
HOMEPAGE="
	https://pypi.org/project/mpxj/
	https://github.com/joniles/mpxj/
"
SRC_URI="$(pypi_wheel_url)"
S="${WORKDIR}"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"

RDEPEND="
	dev-python/gpep517
	>=dev-python/jpype-1.5.0
"

src_unpack() {
	if [[ ${PKGBUMPING} == ${PVR} ]]; then
		unzip "${DISTDIR}/${A}" || die
	fi
}

python_compile() {
	distutils_wheel_install "${BUILD_DIR}/install" \
		"${DISTDIR}/${P}-py3-none-any.whl"

	# Clean up spurious folder
	rm -fr "${BUILD_DIR}/install"/usr/lib/python*/site-packages/legal || die
}

Inherited Eclasses

Dependencies

RDEPEND

	dev-python/gpep517
	>=dev-python/jpype-1.5.0