* [gentoo-commits] proj/gnome:master commit in: x11-libs/tepl/
@ 2018-05-26 23:45 Gilles Dartiguelongue
0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2018-05-26 23:45 UTC (permalink / raw
To: gentoo-commits
commit: e11d3cf2f7e9f3706c7b7f8bf5f5dac295adddc8
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sat May 26 23:33:38 2018 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sat May 26 23:45:04 2018 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=e11d3cf2
x11-libs/tepl: initial ebuild needed for latexila
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Manifest-Sign-Key: 0x5A56C8CD0C13248A
x11-libs/tepl/metadata.xml | 8 +++++++
x11-libs/tepl/tepl-3.0.0.ebuild | 50 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/x11-libs/tepl/metadata.xml b/x11-libs/tepl/metadata.xml
new file mode 100644
index 00000000..996e7cac
--- /dev/null
+++ b/x11-libs/tepl/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>gnome@gentoo.org</email>
+ <name>Gentoo GNOME Desktop</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/x11-libs/tepl/tepl-3.0.0.ebuild b/x11-libs/tepl/tepl-3.0.0.ebuild
new file mode 100644
index 00000000..12a0b25f
--- /dev/null
+++ b/x11-libs/tepl/tepl-3.0.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2 virtualx
+
+DESCRIPTION="GtkSourceView-based text editors and IDE helper library"
+HOMEPAGE="https://wiki.gnome.org/Projects/Gtef"
+
+LICENSE="LGPL-2.1+"
+SLOT="3"
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection test"
+
+RDEPEND="
+ >=dev-libs/glib-2.52:2
+ >=x11-libs/gtk+-3.20
+ >=x11-libs/gtksourceview-3.22
+ >=dev-libs/libxml2-2.5
+ app-i18n/uchardet
+ introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+"
+DEPEND="${DEPEND}
+ test? ( dev-util/valgrind )
+ >=sys-devel/gettext-0.19.4
+ >=dev-util/gtk-doc-am-1.25
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ # requires running gvfs-metadata
+ sed -e 's:\(g_test_add_func.*/file/load_save_metadata_sync.*\):/*\1*/:' \
+ -e 's:\(g_test_add_func.*/file/load_save_metadata_async.*\):/*\1*/:' \
+ -e 's:\(g_test_add_func.*/file/set_without_load.*\):/*\1*/:' \
+ -i testsuite/test-file-metadata.c || die
+
+ gnome2_src_prepare
+}
+
+src_configure() {
+ gnome2_src_configure \
+ --enable-gvfs-metadata \
+ $(use_enable introspection) \
+ $(use_enable test valgrind)
+}
+
+src_test() {
+ virtx emake check
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: x11-libs/tepl/
@ 2018-12-31 20:22 Sobhan Mohammadpour
0 siblings, 0 replies; 3+ messages in thread
From: Sobhan Mohammadpour @ 2018-12-31 20:22 UTC (permalink / raw
To: gentoo-commits
commit: f192653418cafd0b7c1bbbcabf4ae1692f2250bb
Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 31 18:19:52 2018 +0000
Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
CommitDate: Mon Dec 31 18:19:52 2018 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=f1926534
x11-libs/tepl: bump to 4.2.0
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Manifest-Sign-Key: 0x7DF238CF0AA182E1
Signed-off-by: Sobhan Mohammadpour <sobhan <AT> gentoo.org>
x11-libs/tepl/tepl-4.2.0.ebuild | 51 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/x11-libs/tepl/tepl-4.2.0.ebuild b/x11-libs/tepl/tepl-4.2.0.ebuild
new file mode 100644
index 00000000..3c963606
--- /dev/null
+++ b/x11-libs/tepl/tepl-4.2.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2 virtualx
+
+DESCRIPTION="GtkSourceView-based text editors and IDE helper library"
+HOMEPAGE="https://wiki.gnome.org/Projects/Gtef"
+
+LICENSE="LGPL-2.1+"
+SLOT="3"
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection test"
+
+RDEPEND="
+ >=dev-libs/glib-2.52:2
+ >=x11-libs/gtk+-3.22
+ x11-libs/gtksourceview:4
+ >=dev-libs/libxml2-2.5
+ app-i18n/uchardet
+ introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+ x11-libs/amtk
+"
+DEPEND="${DEPEND}
+ test? ( dev-util/valgrind )
+ >=sys-devel/gettext-0.19.4
+ >=dev-util/gtk-doc-am-1.25
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ # requires running gvfs-metadata
+ sed -e 's:\(g_test_add_func.*/file/load_save_metadata_sync.*\):/*\1*/:' \
+ -e 's:\(g_test_add_func.*/file/load_save_metadata_async.*\):/*\1*/:' \
+ -e 's:\(g_test_add_func.*/file/set_without_load.*\):/*\1*/:' \
+ -i testsuite/test-file-metadata.c || die
+
+ gnome2_src_prepare
+}
+
+src_configure() {
+ gnome2_src_configure \
+ --enable-gvfs-metadata \
+ $(use_enable introspection) \
+ $(use_enable test valgrind)
+}
+
+src_test() {
+ virtx emake check
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: x11-libs/tepl/
@ 2019-01-03 15:17 Sobhan Mohammadpour
0 siblings, 0 replies; 3+ messages in thread
From: Sobhan Mohammadpour @ 2019-01-03 15:17 UTC (permalink / raw
To: gentoo-commits
commit: 9d105124acbfd421961cfd917a5f671f417e4c15
Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 3 15:16:46 2019 +0000
Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
CommitDate: Thu Jan 3 15:16:46 2019 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=9d105124
x11-libs/tepl: fix slot for 4.2
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Manifest-Sign-Key: 0x7DF238CF0AA182E1
Signed-off-by: Sobhan Mohammadpour <sobhan <AT> gentoo.org>
x11-libs/tepl/{tepl-4.2.0.ebuild => tepl-4.2.0-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-libs/tepl/tepl-4.2.0.ebuild b/x11-libs/tepl/tepl-4.2.0-r1.ebuild
similarity index 96%
rename from x11-libs/tepl/tepl-4.2.0.ebuild
rename to x11-libs/tepl/tepl-4.2.0-r1.ebuild
index 3c963606..2b08f9ad 100644
--- a/x11-libs/tepl/tepl-4.2.0.ebuild
+++ b/x11-libs/tepl/tepl-4.2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -9,7 +9,7 @@ DESCRIPTION="GtkSourceView-based text editors and IDE helper library"
HOMEPAGE="https://wiki.gnome.org/Projects/Gtef"
LICENSE="LGPL-2.1+"
-SLOT="3"
+SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="+introspection test"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-01-03 15:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-26 23:45 [gentoo-commits] proj/gnome:master commit in: x11-libs/tepl/ Gilles Dartiguelongue
-- strict thread matches above, loose matches on Subject: below --
2018-12-31 20:22 Sobhan Mohammadpour
2019-01-03 15:17 Sobhan Mohammadpour
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox