Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev-python/pycairo/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST pycairo-1.17.0.tar.gz 192182 SHA512 c073f04d92c9a577f7dcea8d46335751ebd896a65e682e99e4453877d8ba2cadad4437f4ceb1ce8c05eb87d5757a2bd78ac2549e63e38720f4c9276e6f70bdd5
DIST pycairo-1.28.0.tar.gz 662477 BLAKE2B 26ab0ab926bc209c33eeff2f7578d31ffce138111e923f6bc8e31a5e318f7ead9d0350ee5717e3774c65eb8ac9f3324ff0446c316469796dc866c3530ef2d0dc SHA512 d3fcb6641ad6dcf9b804dbc2a372f653619512e139fb7a196bb1219b00f60e79e5d60fbbddc2e6a0afb959f9fcb37f1f3c460ad6331274581cb241434865b5a5
37 changes: 37 additions & 0 deletions dev-python/pycairo/pycairo-1.28.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Distributed under the terms of the GNU General Public License v2
# Autogen by MARK Devkit

EAPI=7
PYTHON_COMPAT=( python3+ )
inherit distutils-r1 meson

DESCRIPTION="Python bindings for cairo"
HOMEPAGE="https://pycairo.readthedocs.io"
SRC_URI="https://github.com/pygobject/pycairo/releases/download/v1.28.0/pycairo-1.28.0.tar.gz -> pycairo-1.28.0.tar.gz"
LICENSE="| ( LGPL-2.1 MPL-1.1 )"
SLOT="0"
KEYWORDS="*"
BDEPEND="virtual/pkgconfig

"
RDEPEND="x11-libs/cairo

"
DEPEND="${RDEPEND}
x11-base/xorg-proto

"
python_compile() {
local emesonargs=(
-Dpython.bytecompile=2
-Dtests=false
)
meson_src_configure
meson_src_compile
}
python_install() {
meson_src_install
}


# vim: filetype=ebuild