diff options
author | Mart Raudsepp <leio@gentoo.org> | 2020-02-12 17:46:42 +0200 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2020-02-12 17:48:15 +0200 |
commit | 5d069f01bfec239c94b46844563d550e3b77e134 (patch) | |
tree | 580760c25924d14484f1581b98ceaa0af9ed7647 /dev-lang | |
parent | dev-libs/vala-common: bump p.masked to 0.47.4 (diff) | |
download | gentoo-5d069f01bfec239c94b46844563d550e3b77e134.tar.gz gentoo-5d069f01bfec239c94b46844563d550e3b77e134.tar.bz2 gentoo-5d069f01bfec239c94b46844563d550e3b77e134.zip |
dev-lang/vala: bump p.masked to 0.47.4
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/vala/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/vala/vala-0.47.4.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest index 7887fee21313..d410f23aef45 100644 --- a/dev-lang/vala/Manifest +++ b/dev-lang/vala/Manifest @@ -6,3 +6,4 @@ DIST vala-0.44.11.tar.xz 3370248 BLAKE2B c111b6175e6339148e30bedc77f62a9ef3ec912 DIST vala-0.44.9.tar.xz 3363004 BLAKE2B b87f8f7d9cda5a77486720b8c542c42ed448cfbb6a1bae899591a799dcf25882a0539c3acef282d0ba42a7ea78d68e7a5d99aa4daa306a70afe6938732d03c25 SHA512 9af559a6cb1680013886a4d425e619503d60394f2c7b1ab897cc7830ee566f8122dcd4380b78b551fbf556cead623c245adc1f7f3357b8315be8c120412a3e9f DIST vala-0.46.5.tar.xz 3375148 BLAKE2B 22bf169159d4f4e23398789e46c39d98a7727cd02e6539104963d34bfe569bad25338b3455ffd32413a36f5cd6061a29bdbbdb275f225f1408d6b34967b64a6c SHA512 eb1763d9c4bfe74441640f7228d44ff7cfd9a379b24b8aa906bc59be4514b319598ffee616d3de1db101134bb163715f33dd1d7a0a10ec03246c7ccf62a4778b DIST vala-0.46.6.tar.xz 3383032 BLAKE2B c7f38cf617f3a0d5a5915ebedd320ef6a5c3714e21618e95756529e1fb09abc12417f31aeefc0111e828da5c2dabd6195b07bb1cc69c6e74f73d72fe7403637a SHA512 ab24c3ad37af62e38289fd085a33f72e178e0b58c1f24c27c58c1010270a4b0e5cb4cc510b6147c51e5796a7ae63aed3a4ac219b24ff985f2546e25c9ad48992 +DIST vala-0.47.4.tar.xz 3408516 BLAKE2B a531bc4698aa40ef413bc0a139225130f8d82bfa2b890ed33e1993203c9c48c345e10dc15bf8b86a0542814a8a41cad330ce15322e68936b6e6b8c31a3516824 SHA512 96d2453ababcb64db7db754a33e0f2e9d60f831a52c39bd086191659efa5941989bdc35b677b992524860f129d28fbbe8e3071e893991b8c8c21d6948d32377f diff --git a/dev-lang/vala/vala-0.47.4.ebuild b/dev-lang/vala/vala-0.47.4.ebuild new file mode 100644 index 000000000000..e7477d18c547 --- /dev/null +++ b/dev-lang/vala/vala-0.47.4.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2 + +DESCRIPTION="Compiler for the GObject type system" +HOMEPAGE="https://wiki.gnome.org/Projects/Vala" + +LICENSE="LGPL-2.1+" +SLOT="0.48" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-linux" +IUSE="test valadoc" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.48.0:2 + >=dev-libs/vala-common-${PV} + valadoc? ( >=media-gfx/graphviz-2.16 ) + !<net-libs/libsoup-2.66.2[vala] +" # Older libsoup generates a libsoup-2.4.vapi that isn't fine for vala:0.46 anymore +# We block here, so libsoup[vala] consumers wouldn't have to >= it, which would be bad +# as the newer is not required with older vala when those are picked instead of 0.46. +# vala-0.45.91 ships a broken libsoup-2.4.vapi copy too, but that'll be fixed by 0.45.92 +DEPEND="${RDEPEND} + dev-libs/libxslt + sys-devel/flex + virtual/pkgconfig + virtual/yacc + test? ( + dev-libs/dbus-glib + >=dev-libs/glib-2.26:2 + dev-libs/gobject-introspection ) +" + +src_configure() { + # weasyprint enables generation of PDF from HTML + gnome2_src_configure \ + --disable-unversioned \ + $(use_enable valadoc) \ + VALAC=: \ + WEASYPRINT=: +} + +src_install() { + default + find "${D}" -name "*.la" -delete || die +} |