remove pythonmagick

This commit is contained in:
Fredrik Eriksson 2022-06-18 10:42:15 +02:00
parent 1dbcc8cbac
commit 56e6f55ea6
Signed by: feffe
GPG Key ID: 97FD478B50475788
3 changed files with 0 additions and 78 deletions

View File

@ -1,3 +0,0 @@
DIST PythonMagick-0.9.19.tar.xz 272460 BLAKE2B f11eda746e397d3ccbf28fffb24ecca36dd0d7cfb5ca72327a5d3cd15adf364cb740fb09d632d07c5b9bf3ec35be7ab6b31cbfd6476058e0e34dcf7b16569ac9 SHA512 d9420c524cd59cad7f5c53064582a8a420d3d6441f13bbb6ea6abdcf6b4f1f10a5bd9ac222f5bf2c1888d630290a1177fc2261f4ad5fcc61108d1da70c9ef884
EBUILD pythonmagick-0.9.19.ebuild 1306 BLAKE2B ad0abb5fdaba6518c0e406d0b8c07dc3728660957ee5088d87bc3f56d26ae1194daaf2cc36a2e5a28ed3e98cc65b177c758fec236895e77e9405576f3b3bff52 SHA512 e6770c69337e148f9b5ead65fce12a9d39dbf7be91f29fbe0b06b2acdbfa8ac8adbb003896eb8c1ee131e5dace4fa99800731625697dab89548074cf30f88a1b
MISC metadata.xml 349 BLAKE2B 3701c88035855f490be6b943b8c778884f20f42803b4539ea8442baf90862c9bfdbc58ac99e3312d811b9defbd4264e39c4da195896d575fd5bef11da204c4ac SHA512 14d5899e6fcd0ade11aec2f92cfce123a9c1093877e340e49baddfbbde0ca2b3052dc77181e4487c19bb3e4ef7391bc0171b5e26b004517f6f26254c73393a58

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<longdescription lang="en">
An object-oriented Python interface to ImageMagick.
</longdescription>
</pkgmetadata>

View File

@ -1,64 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} )
inherit autotools python-r1
MY_PN="PythonMagick"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python bindings for ImageMagick"
HOMEPAGE="http://www.imagemagick.org/script/api.php"
SRC_URI="https://www.imagemagick.org/download/python/${MY_P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
>=dev-libs/boost-1.48[python,${PYTHON_USEDEP}]
>=media-gfx/imagemagick-6.9.1
"
DEPEND="${RDEPEND}
virtual/pkgconfig
>=sys-devel/automake-1.16.1-r2
"
S="${WORKDIR}/${MY_P}"
src_prepare() {
default
eautomake
python_copy_sources
}
src_configure() {
python_configure() {
if ! python_is_python3; then
local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
fi
econf \
--disable-static \
--with-boost-python=boost_python-${EPYTHON#python}
}
python_foreach_impl run_in_build_dir python_configure
}
src_compile() {
python_foreach_impl run_in_build_dir emake
}
src_test() {
python_foreach_impl run_in_build_dir emake check
}
src_install() {
python_foreach_impl run_in_build_dir emake DESTDIR="${D}" install
einstalldocs
find "${D}" -name '*.la' -delete || die
}