* [gentoo-commits] proj/gnome:master commit in: dev-libs/gom/
@ 2018-06-04 12:20 Sobhan Mohammadpour
0 siblings, 0 replies; 3+ messages in thread
From: Sobhan Mohammadpour @ 2018-06-04 12:20 UTC (permalink / raw
To: gentoo-commits
commit: 15841e1be1d319ce4582cc85b568f8c55160a480
Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 4 12:19:17 2018 +0000
Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
CommitDate: Mon Jun 4 12:19:17 2018 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=15841e1b
dev-libs/gom: bump
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Manifest-Sign-Key: 0x7DF238CF0AA182E1
dev-libs/gom/gom-0.3.3.ebuild | 72 +++++++++++++++++++++++++++++++++++++++++++
dev-libs/gom/metadata.xml | 8 +++++
2 files changed, 80 insertions(+)
diff --git a/dev-libs/gom/gom-0.3.3.ebuild b/dev-libs/gom/gom-0.3.3.ebuild
new file mode 100644
index 00000000..0f57ce27
--- /dev/null
+++ b/dev-libs/gom/gom-0.3.3.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+GCONF_DEBUG="yes"
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit gnome-meson python-r1
+
+DESCRIPTION="GObject to SQLite object mapper library"
+HOMEPAGE="https://wiki.gnome.org/Projects/Gom"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc +introspection test"
+
+RDEPEND="
+ >=dev-db/sqlite-3.7:3
+ >=dev-libs/glib-2.36:2
+ introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
+ ${PYTHON_DEPS}
+ >=dev-python/pygobject-3.16:3[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+ doc? ( dev-util/gtk-doc )
+ >=dev-util/intltool-0.40.0
+ sys-devel/gettext
+ virtual/pkgconfig
+ test? ( x11-libs/gdk-pixbuf:2 )
+"
+# TODO: make gdk-pixbuf properly optional with USE=test
+
+pkg_setup() {
+ python_setup
+}
+
+src_prepare() {
+ gnome-meson_src_prepare
+
+ python_copy_sources
+}
+
+src_configure() {
+ gnome-meson_src_configure \
+ $(meson_use introspection enable-introspection) \
+ $(meson_use doc enable-gtk-doc)
+
+ python_foreach_impl run_in_build_dir \
+ gnome-meson_src_configure \
+ $(meson_use introspection enable-introspection) \
+ $(meson_use doc enable-gtk-doc)
+
+}
+
+src_install() {
+ gnome-meson_src_install
+
+
+ docinto examples
+ dodoc examples/*.py
+
+ python_foreach_impl run_in_build_dir \
+ meson_src_install DESTDIR="${D}" install-overridesPYTHON
+
+}
+
+src_test() {
+ # tests may take a long time
+ python_foreach_impl run_in_build_dir \
+ meson_src_test
+}
diff --git a/dev-libs/gom/metadata.xml b/dev-libs/gom/metadata.xml
new file mode 100644
index 00000000..39980802
--- /dev/null
+++ b/dev-libs/gom/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>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: dev-libs/gom/
@ 2018-11-01 21:30 Sobhan Mohammadpour
0 siblings, 0 replies; 3+ messages in thread
From: Sobhan Mohammadpour @ 2018-11-01 21:30 UTC (permalink / raw
To: gentoo-commits
commit: 10ffdf6e99f760c9f070cf839ea66f84160cf997
Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 1 21:30:18 2018 +0000
Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
CommitDate: Thu Nov 1 21:30:18 2018 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=10ffdf6e
dev-libs/gom: remove gnome-meson
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 0x7DF238CF0AA182E1
.../gom/{gom-0.3.3.ebuild => gom-0.3.3-r1.ebuild} | 24 ++++++++++------------
1 file changed, 11 insertions(+), 13 deletions(-)
diff --git a/dev-libs/gom/gom-0.3.3.ebuild b/dev-libs/gom/gom-0.3.3-r1.ebuild
similarity index 74%
rename from dev-libs/gom/gom-0.3.3.ebuild
rename to dev-libs/gom/gom-0.3.3-r1.ebuild
index 0f57ce27..394c983e 100644
--- a/dev-libs/gom/gom-0.3.3.ebuild
+++ b/dev-libs/gom/gom-0.3.3-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
GCONF_DEBUG="yes"
PYTHON_COMPAT=( python3_{4,5,6} )
-inherit gnome-meson python-r1
+inherit gnome.org gnome2-utils meson python-r1
DESCRIPTION="GObject to SQLite object mapper library"
HOMEPAGE="https://wiki.gnome.org/Projects/Gom"
@@ -36,33 +36,31 @@ pkg_setup() {
}
src_prepare() {
- gnome-meson_src_prepare
-
+ default
python_copy_sources
}
src_configure() {
- gnome-meson_src_configure \
- $(meson_use introspection enable-introspection) \
+ local emesonargs=(
+ $(meson_use introspection enable-introspection)
$(meson_use doc enable-gtk-doc)
+ )
+# FIXME: is this needed???
+ meson_src_configure
python_foreach_impl run_in_build_dir \
- gnome-meson_src_configure \
- $(meson_use introspection enable-introspection) \
- $(meson_use doc enable-gtk-doc)
-
+ meson_src_configure
}
src_install() {
- gnome-meson_src_install
+ meson_src_install
docinto examples
dodoc examples/*.py
python_foreach_impl run_in_build_dir \
- meson_src_install DESTDIR="${D}" install-overridesPYTHON
-
+ meson_src_install DESTDIR="${D}"
}
src_test() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: dev-libs/gom/
@ 2020-01-15 23:16 Rémi Cardona
0 siblings, 0 replies; 3+ messages in thread
From: Rémi Cardona @ 2020-01-15 23:16 UTC (permalink / raw
To: gentoo-commits
commit: 149f6e76b38a0d2e8bd661a4de9fb8a717e95efe
Author: Rémi Cardona <remi <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 15 10:03:59 2020 +0000
Commit: Rémi Cardona <remi <AT> gentoo <DOT> org>
CommitDate: Wed Jan 15 23:16:14 2020 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=149f6e76
dev-libs/gom: remove, available in ::gentoo
Signed-off-by: Rémi Cardona <remi <AT> gentoo.org>
dev-libs/gom/gom-0.3.3-r1.ebuild | 70 ----------------------------------------
dev-libs/gom/metadata.xml | 8 -----
2 files changed, 78 deletions(-)
diff --git a/dev-libs/gom/gom-0.3.3-r1.ebuild b/dev-libs/gom/gom-0.3.3-r1.ebuild
deleted file mode 100644
index 394c983e..00000000
--- a/dev-libs/gom/gom-0.3.3-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-GCONF_DEBUG="yes"
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit gnome.org gnome2-utils meson python-r1
-
-DESCRIPTION="GObject to SQLite object mapper library"
-HOMEPAGE="https://wiki.gnome.org/Projects/Gom"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc +introspection test"
-
-RDEPEND="
- >=dev-db/sqlite-3.7:3
- >=dev-libs/glib-2.36:2
- introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
- ${PYTHON_DEPS}
- >=dev-python/pygobject-3.16:3[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
- doc? ( dev-util/gtk-doc )
- >=dev-util/intltool-0.40.0
- sys-devel/gettext
- virtual/pkgconfig
- test? ( x11-libs/gdk-pixbuf:2 )
-"
-# TODO: make gdk-pixbuf properly optional with USE=test
-
-pkg_setup() {
- python_setup
-}
-
-src_prepare() {
- default
- python_copy_sources
-}
-
-src_configure() {
- local emesonargs=(
- $(meson_use introspection enable-introspection)
- $(meson_use doc enable-gtk-doc)
- )
-# FIXME: is this needed???
- meson_src_configure
-
- python_foreach_impl run_in_build_dir \
- meson_src_configure
-}
-
-src_install() {
- meson_src_install
-
-
- docinto examples
- dodoc examples/*.py
-
- python_foreach_impl run_in_build_dir \
- meson_src_install DESTDIR="${D}"
-}
-
-src_test() {
- # tests may take a long time
- python_foreach_impl run_in_build_dir \
- meson_src_test
-}
diff --git a/dev-libs/gom/metadata.xml b/dev-libs/gom/metadata.xml
deleted file mode 100644
index 39980802..00000000
--- a/dev-libs/gom/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?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>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-01-15 23:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-15 23:16 [gentoo-commits] proj/gnome:master commit in: dev-libs/gom/ Rémi Cardona
-- strict thread matches above, loose matches on Subject: below --
2018-11-01 21:30 Sobhan Mohammadpour
2018-06-04 12:20 Sobhan Mohammadpour
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox