public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-office/gnome-todo/
@ 2022-04-29  1:31 Matt Turner
  0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner @ 2022-04-29  1:31 UTC (permalink / raw
  To: gentoo-commits

commit:     158f92bd2ea5ef8d3c3e37eec8d00123dfb15c35
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 28 22:52:59 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 01:30:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=158f92bd

app-office/gnome-todo: Add live ebuild

v41.0 doesn't work at all for me, but I did the work to package it, so I
might as well use it somehow.

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-office/gnome-todo/gnome-todo-9999.ebuild | 67 ++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)

diff --git a/app-office/gnome-todo/gnome-todo-9999.ebuild b/app-office/gnome-todo/gnome-todo-9999.ebuild
new file mode 100644
index 000000000000..0ef934158147
--- /dev/null
+++ b/app-office/gnome-todo/gnome-todo-9999.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org gnome2-utils meson xdg
+
+DESCRIPTION="Personal task manager"
+HOMEPAGE="https://wiki.gnome.org/Apps/Todo https://gitlab.gnome.org/GNOME/gnome-todo"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/gnome-todo.git"
+	SRC_URI=""
+else
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="+introspection"
+
+RDEPEND="
+	>=dev-libs/glib-2.58.0:2
+	>=gui-libs/gtk-3.92.0:4[introspection?]
+	gui-libs/libadwaita:1
+	>=net-libs/gnome-online-accounts-3.25.3
+	>=dev-libs/libpeas-1.17
+	dev-libs/libportal:0=[gtk]
+	>=gnome-extra/evolution-data-server-3.33.2:=[gtk]
+	net-libs/rest:0.7
+	dev-libs/json-glib
+	introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-libs/libxml2:2
+	dev-util/glib-utils
+	>=sys-devel/gettext-0.19.8
+	virtual/pkgconfig
+"
+
+src_configure() {
+	# TODO: There aren't any consumers of the introspection outside gnome-todo's own plugins, so maybe we
+	# TODO: should just always build introspection support as an application that needs it for full functionality?
+	# Todoist plugin requires 3.25.3 GOA for being able to add a Todoist account
+	local emesonargs=(
+		$(meson_use introspection)
+		-Dtracing=false
+		-Dprofile=default
+
+		-Dtodo_txt_plugin=true
+		-Dtodoist_plugin=true
+		-Dunscheduled_panel_plugin=true
+	)
+	meson_src_configure
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+	gnome2_schemas_update
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+	gnome2_schemas_update
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/gnome-todo/
@ 2022-06-28 10:19 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2022-06-28 10:19 UTC (permalink / raw
  To: gentoo-commits

commit:     343408d1d8e5725f54b5ec6bc8617299e3b4ccaf
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 28 10:18:38 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 10:18:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=343408d1

app-office/gnome-todo: update EAPI 6 -> 8

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 ...nome-todo-3.28.1-r1.ebuild => gnome-todo-3.28.1-r2.ebuild} | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-office/gnome-todo/gnome-todo-3.28.1-r1.ebuild b/app-office/gnome-todo/gnome-todo-3.28.1-r2.ebuild
similarity index 93%
rename from app-office/gnome-todo/gnome-todo-3.28.1-r1.ebuild
rename to app-office/gnome-todo/gnome-todo-3.28.1-r2.ebuild
index 038776ea1954..9a33b3fd557f 100644
--- a/app-office/gnome-todo/gnome-todo-3.28.1-r1.ebuild
+++ b/app-office/gnome-todo/gnome-todo-3.28.1-r2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 inherit gnome.org gnome2-utils meson xdg
 
@@ -23,11 +23,14 @@ RDEPEND="
 	dev-libs/json-glib
 	introspection? ( >=dev-libs/gobject-introspection-1.42:= )
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
 	dev-libs/libxml2:2
 	dev-util/glib-utils
-	gtk-doc? ( dev-util/gtk-doc
-		app-text/docbook-xml-dtd:4.3 )
+	gtk-doc? (
+		dev-util/gtk-doc
+		app-text/docbook-xml-dtd:4.3
+	)
 	>=sys-devel/gettext-0.19.8
 	virtual/pkgconfig
 "


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-28 10:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-28 10:19 [gentoo-commits] repo/gentoo:master commit in: app-office/gnome-todo/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2022-04-29  1:31 Matt Turner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox