Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 459590 Details for
Bug 587894
gnome-extra/gnome-builder-3.20.4 fails to build due to sandbox dying
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
3.22.4 ebuild
gnome-builder-3.22.4.ebuild (text/plain), 4.78 KB, created by
Mart Raudsepp
on 2017-01-11 11:15:48 UTC
(
hide
)
Description:
3.22.4 ebuild
Filename:
MIME Type:
Creator:
Mart Raudsepp
Created:
2017-01-11 11:15:48 UTC
Size:
4.78 KB
patch
obsolete
># Copyright 1999-2015 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Id$ > >EAPI=6 >PYTHON_COMPAT=( python{3_3,3_4,3_5} ) >VALA_MIN_API_VERSION="0.30" >VALA_USE_DEPEND="vapigen" > >inherit gnome2 python-single-r1 vala virtualx > >DESCRIPTION="Builder attempts to be an IDE for writing software for GNOME" >HOMEPAGE="https://wiki.gnome.org/Apps/Builder" > >LICENSE="GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0" >SLOT="0" >KEYWORDS="~amd64 ~x86" >IUSE="clang +git sysprof vala webkit" >REQUIRED_USE="${PYTHON_REQUIRED_USE}" > ># FIXME: tests fail if all plugins aren't enabled (webkit, clang, perhaps more) ># When bumping, pay attention to all the included plugins/*/configure.ac files and the requirements within. ># Most have no extra requirements and default to enabled; we need to handle the ones with extra requirements, which tend to default to auto(magic). ># Look at the last (fourth) argument given to AC_ARG_ENABLE to decide. We don't support any disabling of those that are default-enabled and have no extra deps beyond C/python/introspection. ># FIXME: >=dev-util/devhelp-3.20.0 dependency is automagic for devhelp integration plugin ># FIXME: vte could be optional via $(use_enable vte terminal-plugin) - but most/all people want this and have vte? ># FIXME: flatpak-plugin needs flatpak.pc >=0.6.9, libgit2[threads] >=libgit2-glib-0.24.0[ssh] libsoup-2.4.pc ># FIXME: --with-sanitizer configure option ># Editorconfig needs pcre.h, with vte migrating away, might want it optional? ># Python is always enabled - the core python plugin support checks are automagic and not worth crippling it by not supporting python plugins ># Relatedly introspection is always required to not have broken python using plugins or have to enable/disable them based on it. This is a full IDE, not a place to be really minimal. ># An introspection USE flag of a dep is required if any introspection based language plugin wants to use it. Last full check at 3.22.4 >RDEPEND=" > >=x11-libs/gtk+-3.22.1:3[introspection] > >=dev-libs/glib-2.50.0:2[dbus] > >=x11-libs/gtksourceview-3.22.0:3.0[introspection] > >=dev-libs/gobject-introspection-1.48.0:= > >=dev-python/pygobject-3.22.0:3 > >=dev-libs/libxml2-2.9 > >=x11-libs/pango-1.38.0 > >=dev-libs/libpeas-1.18.0 > >=dev-libs/json-glib-1.2.0 > webkit? ( >=net-libs/webkit-gtk-2.12.0:4=[introspection] ) > clang? ( sys-devel/clang ) > git? ( > dev-libs/libgit2[ssh,threads] > >=dev-libs/libgit2-glib-0.24.0[ssh] ) > >=x11-libs/vte-0.46:2.91 > sysprof? ( >=dev-util/sysprof-3.22.2[gtk] ) > dev-libs/libpcre:3 > ${PYTHON_DEPS} > vala? ( $(vala_depend) ) >" ># desktop-file-utils for desktop-file-validate check in configure for 3.22.4 ># mm-common due to not fully clean --disable-idemm behaviour, recheck on bump >DEPEND="${RDEPEND} > dev-cpp/mm-common > dev-libs/appstream-glib > dev-util/desktop-file-utils > >=dev-util/gtk-doc-am-1.11 > >=sys-devel/gettext-0.19.8 > virtual/pkgconfig > !<sys-apps/sandbox-2.10-r3 >" > >pkg_setup() { > python-single-r1_pkg_setup >} > >src_prepare() { > use vala && vala_src_prepare > gnome2_src_prepare >} > >src_configure() { > export PYTHON3_CONFIG="$(python_get_PYTHON_CONFIG)" > # idemm is C++ wrapper for libide. Once that's needed by something, we might want to > # consider a split package instead of USE flag. Deps are in libidemm/configure.ac > gnome2_src_configure \ > --disable-idemm \ > --enable-editorconfig \ > --enable-introspection \ > $(use_enable vala vala-pack-plugin) \ > $(use_enable webkit) \ > $(use_enable webkit html-preview-plugin) \ > $(use_enable clang clang-plugin) \ > $(use_enable git git-plugin) \ > $(use_enable git contributing-plugin) \ > $(use_enable sysprof sysprof-plugin) \ > --disable-flatpak-plugin \ > --enable-terminal-plugin \ > --disable-static >} > >pkg_postinst() { > gnome2_pkg_postinst > > elog "${PN} can use various other dependencies on runtime to provide" > elog "extra capabilities beyond these expressed via USE flags. Some" > elog "of these that are currently available with packages include:" > elog > elog "* app-eselect/eselect-ctags with a selected provider for C, C++, Python, JavaScript, CSS," > elog " HTML and Ruby autocompletion, semantic highlighting and symbol resolving support." > elog "* dev-python/jedi and dev-python/lxml for Python autocompletion support." # FIXME: express relation to ctags providing the same? > elog "* dev-util/meson for integration with the Meson build system." > elog "* dev-util/cargo for integration with the Rust languages Cargo build system." > # FIXME: Package gnome-code-assistance and mention here, or maybe USE flag and default enable because it's rather important > # jhbuild > # rust language server via rls > # autotools stuff for autotools plugin >} > >src_test() { > # FIXME: this should be handled at eclass level > "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data/gsettings" || die > > GSETTINGS_SCHEMA_DIR="${S}/data/gsettings" virtx emake check >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 587894
:
439554
|
439556
|
447320
| 459590