* [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-builder/
@ 2015-05-24 16:33 Gilles Dartiguelongue
0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2015-05-24 16:33 UTC (permalink / raw
To: gentoo-commits
commit: 356c8b48bf9014bd01b16ad45adc3d94b8a4d878
Author: Lorenzo Porta <vindex17 <AT> outlook <DOT> it>
AuthorDate: Wed May 20 15:14:03 2015 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun May 24 16:24:41 2015 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=356c8b48
gnome-extra/gnome-builder: initial ebuild
.../gnome-builder/gnome-builder-3.16.3.ebuild | 37 ++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild b/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
new file mode 100644
index 0000000..6afadc2
--- /dev/null
+++ b/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+GCONF_DEBUG="no"
+
+inherit gnome2
+
+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 CC0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+introspection"
+
+RDEPEND="
+ >=dev-libs/gjs-1.42
+ >=dev-libs/glib-2.44:2
+ >=dev-libs/libgit2-glib-0.22.6
+ >=dev-libs/libxml2-2.9.0
+ dev-python/pygobject:3
+ >=dev-util/devhelp-3.16.0
+ sys-devel/clang
+ >=x11-libs/gtk+-3.16.1:3[introspection?]
+ >=x11-libs/gtksourceview-3.16.1:3.0/3[introspection?]
+"
+DEPEND="${RDEPEND}
+ >=dev-util/intltool-0.50.1
+ >=sys-devel/gettext
+ virtual/pkgconfig
+"
+src_configure() {
+ gnome2_src_configure \
+ $(use_enable introspection)
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-builder/
@ 2015-05-24 16:33 Gilles Dartiguelongue
0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2015-05-24 16:33 UTC (permalink / raw
To: gentoo-commits
commit: 1bc7785e1e832a21d742a5a62c0085f42cc04822
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun May 24 16:23:04 2015 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun May 24 16:30:54 2015 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=1bc7785e
gnome-extra/gnome-builder: QAed
* Add missing introspection dependency.
* Add missing handling of python interpreter.
* Add missing uncrustify dependency, via Fedora .spec and checked in
source code.
* Add unittest handling even though some fail for me.
* Add other missing build dependencies.
.../gnome-builder/gnome-builder-3.16.3.ebuild | 35 +++++++++++++++++-----
| 5 ++++
2 files changed, 33 insertions(+), 7 deletions(-)
diff --git a/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild b/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
index 6afadc2..3d5161d 100644
--- a/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
+++ b/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
@@ -4,34 +4,55 @@
EAPI="5"
GCONF_DEBUG="no"
+PYTHON_COMPAT=( python{3_3,3_4} )
-inherit gnome2
+inherit gnome2 python-single-r1 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 CC0"
+LICENSE="GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+introspection"
+# FIXME: some unittests seem to hang forever
RDEPEND="
+ ${PYTHON_DEPS}
>=dev-libs/gjs-1.42
>=dev-libs/glib-2.44:2
>=dev-libs/libgit2-glib-0.22.6
- >=dev-libs/libxml2-2.9.0
+ >=dev-libs/libxml2-2.9
dev-python/pygobject:3
- >=dev-util/devhelp-3.16.0
+ >=dev-util/devhelp-3.16
+ dev-util/uncrustify
sys-devel/clang
>=x11-libs/gtk+-3.16.1:3[introspection?]
- >=x11-libs/gtksourceview-3.16.1:3.0/3[introspection?]
+ >=x11-libs/gtksourceview-3.16.1:3.0[introspection?]
+ introspection? ( >=dev-libs/gobject-introspection-1.42 )
"
DEPEND="${RDEPEND}
+ dev-libs/appstream-glib
+ >=dev-util/gtk-doc-am-1.11
>=dev-util/intltool-0.50.1
- >=sys-devel/gettext
+ >=sys-devel/gettext-0.18
virtual/pkgconfig
"
+
+pkg_setup() {
+ python-single-r1_pkg_setup
+}
+
src_configure() {
gnome2_src_configure \
- $(use_enable introspection)
+ --disable-static \
+ $(use_enable introspection) \
+ PYTHON3_CONFIG=${PYTHON}-config
+}
+
+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" Xemake check
}
--git a/gnome-extra/gnome-builder/metadata.xml b/gnome-extra/gnome-builder/metadata.xml
new file mode 100644
index 0000000..6e0e2ec
--- /dev/null
+++ b/gnome-extra/gnome-builder/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>gnome</herd>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-builder/
@ 2015-05-25 20:57 Gilles Dartiguelongue
0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2015-05-25 20:57 UTC (permalink / raw
To: gentoo-commits
commit: 2904a63a1f842ae2e44c93709b6549da5749939e
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Mon May 25 20:56:27 2015 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Mon May 25 20:56:27 2015 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=2904a63a
gnome-extra/gnome-builder: add missing dependency on libgit2
Those are not specified in configure.ac but in libide.c...
| 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--git a/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild b/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
index 3d5161d..b3595b4 100644
--- a/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
+++ b/gnome-extra/gnome-builder/gnome-builder-3.16.3.ebuild
@@ -21,7 +21,8 @@ RDEPEND="
${PYTHON_DEPS}
>=dev-libs/gjs-1.42
>=dev-libs/glib-2.44:2
- >=dev-libs/libgit2-glib-0.22.6
+ dev-libs/libgit2[ssh,threads]
+ >=dev-libs/libgit2-glib-0.22.6[ssh]
>=dev-libs/libxml2-2.9
dev-python/pygobject:3
>=dev-util/devhelp-3.16
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-05-25 20:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-24 16:33 [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-builder/ Gilles Dartiguelongue
-- strict thread matches above, loose matches on Subject: below --
2015-05-25 20:57 Gilles Dartiguelongue
2015-05-24 16:33 Gilles Dartiguelongue
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox