public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2023-01-18 20:50 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2023-01-18 20:50 UTC (permalink / raw
  To: gentoo-commits

commit:     5c0ec70e210381cdc447bef4343b9555102ca7d1
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 18 20:43:43 2023 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Wed Jan 18 20:45:21 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0ec70e

app-office/planner: add 0.14.91

Closes: https://bugs.gentoo.org/873853
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 app-office/planner/Manifest                        |  2 +-
 app-office/planner/metadata.xml                    |  2 +-
 .../planner/planner-0.14.6_p20130520-r3.ebuild     | 66 ----------------------
 ...{planner-9999.ebuild => planner-0.14.91.ebuild} | 19 ++-----
 app-office/planner/planner-9999.ebuild             | 19 ++-----
 5 files changed, 12 insertions(+), 96 deletions(-)

diff --git a/app-office/planner/Manifest b/app-office/planner/Manifest
index 60df289726b9..86d2cf5d35c4 100644
--- a/app-office/planner/Manifest
+++ b/app-office/planner/Manifest
@@ -1 +1 @@
-DIST planner-0.14.6_p20130520.tar.xz 4200624 BLAKE2B 4dd3965a3091fe69d9ac125745f7d3ac54cbe1d81f794c0dded02c0983867d2469848af7f74f1eb745a2e2c42c79be7955d6790f0b263faa5ee821bc28c6a339 SHA512 d658b68c96742340a06a9e96d7910f70fb296cb7a19cc335afdcbec01b36326b1574522155cf19fec012363e1e4d4120c35e1319c699613833be2eb0fa999024
+DIST planner-0.14.91.tar.xz 3887084 BLAKE2B 7719ead3f9794aa29ec67f8bfd9e3d7b7541d79542befe767c2f41381a9c62493790df314e940731cf5deefb6ac4dcece67623fc5ae8d8b792b0c95793682b39 SHA512 579ad60d3282124f9cf954163c27feaa1d505ce3135b3d668e1fe0ca036d7e7290bbd3a6d9c30f32a77594c5d60988feee670266c34c0a8b9240510609ab46e2

diff --git a/app-office/planner/metadata.xml b/app-office/planner/metadata.xml
index 2f8642fe363a..b22cc2c2f2e8 100644
--- a/app-office/planner/metadata.xml
+++ b/app-office/planner/metadata.xml
@@ -6,7 +6,7 @@
     <name>Gentoo GNOME Desktop</name>
   </maintainer>
   <use>
-    <flag name="libgda">Database/GDA support</flag>
+    <flag name="libgda">PostgreSQL support via <pkg>gnome-extra/libgda</pkg></flag>
   </use>
   <upstream>
     <remote-id type="gnome-gitlab">World/planner</remote-id>

diff --git a/app-office/planner/planner-0.14.6_p20130520-r3.ebuild b/app-office/planner/planner-0.14.6_p20130520-r3.ebuild
deleted file mode 100644
index 2604b71025a6..000000000000
--- a/app-office/planner/planner-0.14.6_p20130520-r3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnome2
-
-DESCRIPTION="Project manager for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
-if [[ "${PV}" == "9999" ]] ; then
-	EGIT_REPO_URI="https://gitlab.gnome.org/World/planner.git"
-	inherit git-r3
-	SRC_URI=""
-else
-	SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-fi
-
-SLOT="0"
-LICENSE="GPL-2"
-
-IUSE="examples"
-
-RDEPEND="
-	>=dev-libs/glib-2.6:2
-	>=x11-libs/gtk+-2.24:2
-	>=gnome-base/gconf-2.10:2
-	>=gnome-base/libgnomecanvas-2.10
-	>=gnome-base/libglade-2.4:2.0
-	>=dev-libs/libxml2-2.6.27:2
-	>=dev-libs/libxslt-1.1.23
-"
-DEPEND="${RDEPEND}"
-
-BDEPEND="
-	dev-util/gtk-doc-am
-	app-text/docbook-xml-dtd:4.1.2
-	>=dev-util/intltool-0.35.5
-	gnome-base/gnome-common
-	virtual/pkgconfig
-	app-text/rarian
-"
-
-S="${WORKDIR}/${PN}-0.14.6"
-src_configure() {
-	# FIXME: disable eds backend for now, it fails, upstream bug #654005
-	# FIXME: disable eds for now, bug #784086
-	# We need to set compile-warnings to a different value as it doesn't use
-	# standard macro: https://bugzilla.gnome.org/703067
-	gnome2_src_configure \
-		--disable-python \
-		--disable-python-plugin \
-		--disable-eds \
-		--disable-eds-backend \
-		--with-database=no \
-		--disable-update-mimedb \
-		--enable-compile-warnings=yes
-}
-
-src_install() {
-	MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install
-	mv "${ED}"/usr/share/doc/planner "${ED}"/usr/share/doc/${PF} || die
-	if ! use examples; then
-		rm -rf "${D}/usr/share/doc/${PF}/examples"
-	fi
-}

diff --git a/app-office/planner/planner-9999.ebuild b/app-office/planner/planner-0.14.91.ebuild
similarity index 70%
copy from app-office/planner/planner-9999.ebuild
copy to app-office/planner/planner-0.14.91.ebuild
index 6643bdc69e13..291f2d01973f 100644
--- a/app-office/planner/planner-9999.ebuild
+++ b/app-office/planner/planner-0.14.91.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -17,7 +17,7 @@ fi
 
 SLOT="0"
 LICENSE="GPL-2+"
-IUSE="examples gtk-doc libgda" # eds
+IUSE="examples libgda"
 
 RDEPEND="
 	>=dev-libs/glib-2.56:2
@@ -26,17 +26,9 @@ RDEPEND="
 	>=dev-libs/libxslt-1.1.23
 	libgda? ( >=gnome-extra/libgda-1.0:5 )
 "
-	# eds support is broken for now
-	# eds? (
-	# 	>=gnome-extra/evolution-data-server-3.6:=
-	# )
 DEPEND="${RDEPEND}"
 
 BDEPEND="
-	gtk-doc? (
-		dev-util/gtk-doc
-		app-text/docbook-xml-dtd:4.1.2
-	)
 	virtual/pkgconfig
 	sys-devel/gettext
 "
@@ -44,11 +36,10 @@ BDEPEND="
 src_configure() {
 	local emesonargs=(
 		$(meson_feature libgda database-gda)
-		# $(meson_feature eds)
-		-Deds=disabled # upstream says it's broken
+		-Deds=disabled # Doesn't provide much value, not very tested
 		$(meson_use examples)
-		$(meson_use gtk-doc gtk_doc)
-		-Dsimple-priority-scheduling=false # upstream says it's experimental
+		-Dgtk_doc=false # Only for a private library
+		-Dsimple-priority-scheduling=false # experimental
 	)
 	meson_src_configure
 }

diff --git a/app-office/planner/planner-9999.ebuild b/app-office/planner/planner-9999.ebuild
index 6643bdc69e13..291f2d01973f 100644
--- a/app-office/planner/planner-9999.ebuild
+++ b/app-office/planner/planner-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -17,7 +17,7 @@ fi
 
 SLOT="0"
 LICENSE="GPL-2+"
-IUSE="examples gtk-doc libgda" # eds
+IUSE="examples libgda"
 
 RDEPEND="
 	>=dev-libs/glib-2.56:2
@@ -26,17 +26,9 @@ RDEPEND="
 	>=dev-libs/libxslt-1.1.23
 	libgda? ( >=gnome-extra/libgda-1.0:5 )
 "
-	# eds support is broken for now
-	# eds? (
-	# 	>=gnome-extra/evolution-data-server-3.6:=
-	# )
 DEPEND="${RDEPEND}"
 
 BDEPEND="
-	gtk-doc? (
-		dev-util/gtk-doc
-		app-text/docbook-xml-dtd:4.1.2
-	)
 	virtual/pkgconfig
 	sys-devel/gettext
 "
@@ -44,11 +36,10 @@ BDEPEND="
 src_configure() {
 	local emesonargs=(
 		$(meson_feature libgda database-gda)
-		# $(meson_feature eds)
-		-Deds=disabled # upstream says it's broken
+		-Deds=disabled # Doesn't provide much value, not very tested
 		$(meson_use examples)
-		$(meson_use gtk-doc gtk_doc)
-		-Dsimple-priority-scheduling=false # upstream says it's experimental
+		-Dgtk_doc=false # Only for a private library
+		-Dsimple-priority-scheduling=false # experimental
 	)
 	meson_src_configure
 }


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2023-12-20 10:23 Pacho Ramos
  0 siblings, 0 replies; 17+ messages in thread
From: Pacho Ramos @ 2023-12-20 10:23 UTC (permalink / raw
  To: gentoo-commits

commit:     3952d8aa8b6d91b1a246524028c2367dba35d6d4
Author:     Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Mon Dec 18 23:50:14 2023 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 10:23:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3952d8aa

app-office/planner: Version bump to 0.14.92

Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34357
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 app-office/planner/Manifest               |  1 +
 app-office/planner/planner-0.14.92.ebuild | 62 +++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/app-office/planner/Manifest b/app-office/planner/Manifest
index 86d2cf5d35c4..6fff097406ad 100644
--- a/app-office/planner/Manifest
+++ b/app-office/planner/Manifest
@@ -1 +1,2 @@
 DIST planner-0.14.91.tar.xz 3887084 BLAKE2B 7719ead3f9794aa29ec67f8bfd9e3d7b7541d79542befe767c2f41381a9c62493790df314e940731cf5deefb6ac4dcece67623fc5ae8d8b792b0c95793682b39 SHA512 579ad60d3282124f9cf954163c27feaa1d505ce3135b3d668e1fe0ca036d7e7290bbd3a6d9c30f32a77594c5d60988feee670266c34c0a8b9240510609ab46e2
+DIST planner-0.14.92.tar.xz 3888436 BLAKE2B 5fde169da3787bdebbd0d49448b602a904a3cb6b1fed3047ef76162b070d2ab1f0793da591936ac8f10c8951cba86185d2b3ac580aeeb2a61595ab6b1814e560 SHA512 35f0ea6bb04937c164c42082db717962eba6e0353a4750d3213cb7a0e93b8649c99c52060c95c4c6037b6c7019f90161b3c531d5e75eabe453d0fad50c887f27

diff --git a/app-office/planner/planner-0.14.92.ebuild b/app-office/planner/planner-0.14.92.ebuild
new file mode 100644
index 000000000000..cc69f0dfc406
--- /dev/null
+++ b/app-office/planner/planner-0.14.92.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org gnome2-utils meson xdg
+
+DESCRIPTION="Project manager for Gnome"
+HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
+if [[ "${PV}" == "9999" ]] ; then
+	EGIT_REPO_URI="https://gitlab.gnome.org/World/planner.git"
+	inherit git-r3
+	SRC_URI=""
+else
+	KEYWORDS="~amd64 ~arm64"
+fi
+
+SLOT="0"
+LICENSE="GPL-2+"
+IUSE="examples libgda"
+
+RDEPEND="
+	>=dev-libs/glib-2.56:2
+	>=x11-libs/gtk+-3.22:3
+	>=dev-libs/libxml2-2.6.27:2
+	>=dev-libs/libxslt-1.1.23
+	libgda? ( >=gnome-extra/libgda-1.0:5 )
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+	virtual/pkgconfig
+	sys-devel/gettext
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature libgda database-gda)
+		-Deds=disabled # Doesn't provide much value, not very tested
+		$(meson_use examples)
+		-Dgtk_doc=false # Only for a private library
+		-Dsimple-priority-scheduling=false # experimental
+	)
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+	if use examples; then
+		mv "${ED}"/usr/share/doc/planner "${ED}"/usr/share/doc/${PF} || die
+	fi
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+	gnome2_schemas_update
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+	gnome2_schemas_update
+}


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2023-12-20 10:23 Pacho Ramos
  0 siblings, 0 replies; 17+ messages in thread
From: Pacho Ramos @ 2023-12-20 10:23 UTC (permalink / raw
  To: gentoo-commits

commit:     cc0ee855e0b708405d01ead23e8450b54b1f3300
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 20 10:22:07 2023 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 10:23:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc0ee855

app-office/planner: update HOMEPAGE

Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 app-office/planner/planner-0.14.92.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/planner/planner-0.14.92.ebuild b/app-office/planner/planner-0.14.92.ebuild
index cc69f0dfc406..08f9a0a382f2 100644
--- a/app-office/planner/planner-0.14.92.ebuild
+++ b/app-office/planner/planner-0.14.92.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit gnome.org gnome2-utils meson xdg
 
 DESCRIPTION="Project manager for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
+HOMEPAGE="https://wiki.gnome.org/Apps/Planner https://gitlab.gnome.org/World/planner"
 if [[ "${PV}" == "9999" ]] ; then
 	EGIT_REPO_URI="https://gitlab.gnome.org/World/planner.git"
 	inherit git-r3


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2023-11-04 10:43 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2023-11-04 10:43 UTC (permalink / raw
  To: gentoo-commits

commit:     e161f30b146bbff2ee19b150f3ddb945ba0eead9
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  3 08:38:13 2023 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Nov  4 10:42:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e161f30b

app-office/planner: keyword 0.14.91 for ~arm64

Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 app-office/planner/planner-0.14.91.ebuild | 2 +-
 app-office/planner/planner-9999.ebuild    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-office/planner/planner-0.14.91.ebuild b/app-office/planner/planner-0.14.91.ebuild
index 291f2d01973f..cc69f0dfc406 100644
--- a/app-office/planner/planner-0.14.91.ebuild
+++ b/app-office/planner/planner-0.14.91.ebuild
@@ -12,7 +12,7 @@ if [[ "${PV}" == "9999" ]] ; then
 	inherit git-r3
 	SRC_URI=""
 else
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm64"
 fi
 
 SLOT="0"

diff --git a/app-office/planner/planner-9999.ebuild b/app-office/planner/planner-9999.ebuild
index 291f2d01973f..cc69f0dfc406 100644
--- a/app-office/planner/planner-9999.ebuild
+++ b/app-office/planner/planner-9999.ebuild
@@ -12,7 +12,7 @@ if [[ "${PV}" == "9999" ]] ; then
 	inherit git-r3
 	SRC_URI=""
 else
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm64"
 fi
 
 SLOT="0"


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2022-12-21 12:42 Andreas Sturmlechner
  0 siblings, 0 replies; 17+ messages in thread
From: Andreas Sturmlechner @ 2022-12-21 12:42 UTC (permalink / raw
  To: gentoo-commits

commit:     fe4c12a8556b779e559e5a4fd352f62b0bf6805c
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 21 10:20:46 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 12:41:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe4c12a8

app-office/planner: drop 0.14.6_p20130520-r2

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 .../planner/planner-0.14.6_p20130520-r2.ebuild     | 66 ----------------------
 1 file changed, 66 deletions(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r2.ebuild b/app-office/planner/planner-0.14.6_p20130520-r2.ebuild
deleted file mode 100644
index b0fe576b0d14..000000000000
--- a/app-office/planner/planner-0.14.6_p20130520-r2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="Project manager for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
-SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-
-IUSE="eds examples"
-
-RDEPEND="
-	>=dev-libs/glib-2.6:2
-	>=x11-libs/gtk+-2.24:2
-	>=gnome-base/libgnomecanvas-2.10
-	>=gnome-base/libglade-2.4:2.0
-	>=gnome-base/gconf-2.10:2
-	>=dev-libs/libxml2-2.6.27:2
-	>=dev-libs/libxslt-1.1.23
-	eds? (
-		>=gnome-extra/evolution-data-server-3.6:=
-		>=mail-client/evolution-3.6 )
-"
-DEPEND="${RDEPEND}
-	app-text/rarian
-	dev-util/gtk-doc-am
-	>=dev-util/intltool-0.35.5
-	gnome-base/gnome-common
-	virtual/pkgconfig
-"
-
-S="${WORKDIR}/${PN}-0.14.6"
-
-src_configure() {
-	# FIXME: disable eds backend for now, it fails, upstream bug #654005
-	# We need to set compile-warnings to a different value as it doesn't use
-	# standard macro: https://bugzilla.gnome.org/703067
-	gnome2_src_configure \
-		--disable-python \
-		--disable-python-plugin \
-		$(use_enable eds) \
-		--disable-eds-backend \
-		--with-database=no \
-		--disable-update-mimedb \
-		--enable-compile-warnings=yes
-		#$(use_enable eds eds-backend)
-}
-
-src_install() {
-	# error: relink `libstorage-mrproject-1.la' with the above command before installing it
-	# Try to drop workaround on next snapshot or bump
-	MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install \
-		sqldocdir="\$(datadir)/doc/${PF}" \
-		sampledir="\$(datadir)/doc/${PF}/examples"
-
-	if ! use examples; then
-		rm -rf "${D}/usr/share/doc/${PF}/examples"
-	fi
-}


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2022-12-12 18:03 Matt Turner
  0 siblings, 0 replies; 17+ messages in thread
From: Matt Turner @ 2022-12-12 18:03 UTC (permalink / raw
  To: gentoo-commits

commit:     43fd50377832d95bfea80c8b1c378b05a29cde35
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 12 17:57:02 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Dec 12 18:03:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43fd5037

app-office/planner: Drop stable keywords

This has been unmaintained for a long time and is a snapshot.

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

 app-office/planner/planner-0.14.6_p20130520-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r2.ebuild b/app-office/planner/planner-0.14.6_p20130520-r2.ebuild
index 9c54ca1dcccc..b0fe576b0d14 100644
--- a/app-office/planner/planner-0.14.6_p20130520-r2.ebuild
+++ b/app-office/planner/planner-0.14.6_p20130520-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
 
 IUSE="eds examples"
 


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2022-11-15 16:13 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2022-11-15 16:13 UTC (permalink / raw
  To: gentoo-commits

commit:     4655f037c895ee27ad10e43ab9746b5d02f7cda6
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 15 16:12:47 2022 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Tue Nov 15 16:12:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4655f037

app-office/planner-9999: Update deps

Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 app-office/planner/planner-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/planner/planner-9999.ebuild b/app-office/planner/planner-9999.ebuild
index b3239ac6b40b..6643bdc69e13 100644
--- a/app-office/planner/planner-9999.ebuild
+++ b/app-office/planner/planner-9999.ebuild
@@ -20,7 +20,7 @@ LICENSE="GPL-2+"
 IUSE="examples gtk-doc libgda" # eds
 
 RDEPEND="
-	>=dev-libs/glib-2.50:2
+	>=dev-libs/glib-2.56:2
 	>=x11-libs/gtk+-3.22:3
 	>=dev-libs/libxml2-2.6.27:2
 	>=dev-libs/libxslt-1.1.23


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2022-10-30 15:24 Matt Turner
  0 siblings, 0 replies; 17+ messages in thread
From: Matt Turner @ 2022-10-30 15:24 UTC (permalink / raw
  To: gentoo-commits

commit:     3df31c5c7cfb096ad3051f182550e4885d1f701a
Author:     Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Sun Oct 30 13:04:02 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 15:24:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df31c5c

app-office/planner: put -j1 back in front of gnome2_src_install

Closes: https://bugs.gentoo.org/878815
Closes: https://github.com/gentoo/gentoo/pull/28042
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-office/planner/planner-0.14.6_p20130520-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r3.ebuild b/app-office/planner/planner-0.14.6_p20130520-r3.ebuild
index a7e96491e139..2604b71025a6 100644
--- a/app-office/planner/planner-0.14.6_p20130520-r3.ebuild
+++ b/app-office/planner/planner-0.14.6_p20130520-r3.ebuild
@@ -58,7 +58,7 @@ src_configure() {
 }
 
 src_install() {
-	gnome2_src_install
+	MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install
 	mv "${ED}"/usr/share/doc/planner "${ED}"/usr/share/doc/${PF} || die
 	if ! use examples; then
 		rm -rf "${D}/usr/share/doc/${PF}/examples"


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2022-10-29 18:34 Matt Turner
  0 siblings, 0 replies; 17+ messages in thread
From: Matt Turner @ 2022-10-29 18:34 UTC (permalink / raw
  To: gentoo-commits

commit:     c5531bd06b0408bac631274ae20ce9b320a50226
Author:     Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Sat Oct 15 17:13:36 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 18:33:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5531bd0

app-office/planner: disable eds, fix QA

Closes: https://bugs.gentoo.org/814152
Closes: https://bugs.gentoo.org/784086
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 .../planner/planner-0.14.6_p20130520-r3.ebuild     | 66 ++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r3.ebuild b/app-office/planner/planner-0.14.6_p20130520-r3.ebuild
new file mode 100644
index 000000000000..a7e96491e139
--- /dev/null
+++ b/app-office/planner/planner-0.14.6_p20130520-r3.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome2
+
+DESCRIPTION="Project manager for Gnome"
+HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
+if [[ "${PV}" == "9999" ]] ; then
+	EGIT_REPO_URI="https://gitlab.gnome.org/World/planner.git"
+	inherit git-r3
+	SRC_URI=""
+else
+	SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
+	KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+fi
+
+SLOT="0"
+LICENSE="GPL-2"
+
+IUSE="examples"
+
+RDEPEND="
+	>=dev-libs/glib-2.6:2
+	>=x11-libs/gtk+-2.24:2
+	>=gnome-base/gconf-2.10:2
+	>=gnome-base/libgnomecanvas-2.10
+	>=gnome-base/libglade-2.4:2.0
+	>=dev-libs/libxml2-2.6.27:2
+	>=dev-libs/libxslt-1.1.23
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+	dev-util/gtk-doc-am
+	app-text/docbook-xml-dtd:4.1.2
+	>=dev-util/intltool-0.35.5
+	gnome-base/gnome-common
+	virtual/pkgconfig
+	app-text/rarian
+"
+
+S="${WORKDIR}/${PN}-0.14.6"
+src_configure() {
+	# FIXME: disable eds backend for now, it fails, upstream bug #654005
+	# FIXME: disable eds for now, bug #784086
+	# We need to set compile-warnings to a different value as it doesn't use
+	# standard macro: https://bugzilla.gnome.org/703067
+	gnome2_src_configure \
+		--disable-python \
+		--disable-python-plugin \
+		--disable-eds \
+		--disable-eds-backend \
+		--with-database=no \
+		--disable-update-mimedb \
+		--enable-compile-warnings=yes
+}
+
+src_install() {
+	gnome2_src_install
+	mv "${ED}"/usr/share/doc/planner "${ED}"/usr/share/doc/${PF} || die
+	if ! use examples; then
+		rm -rf "${D}/usr/share/doc/${PF}/examples"
+	fi
+}


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2022-10-29 18:34 Matt Turner
  0 siblings, 0 replies; 17+ messages in thread
From: Matt Turner @ 2022-10-29 18:34 UTC (permalink / raw
  To: gentoo-commits

commit:     59559fd230babde48e08401fe12b601604b42937
Author:     Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Sun Oct 16 18:09:36 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 18:33:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59559fd2

app-office/planner: add live ebuild, use meson

This ebuild already drops the gnome-base/gconf dep,
once there is a new release from upstream, remove the old ebuild and close
Bug: https://bugs.gentoo.org/873853

Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
Closes: https://github.com/gentoo/gentoo/pull/27800
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-office/planner/metadata.xml        |  3 ++
 app-office/planner/planner-9999.ebuild | 71 ++++++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/app-office/planner/metadata.xml b/app-office/planner/metadata.xml
index c6e394b17a27..3a8e42950cb7 100644
--- a/app-office/planner/metadata.xml
+++ b/app-office/planner/metadata.xml
@@ -5,4 +5,7 @@
     <email>gnome@gentoo.org</email>
     <name>Gentoo GNOME Desktop</name>
   </maintainer>
+  <use>
+    <flag name="libgda">Database/GDA support</flag>
+  </use>
 </pkgmetadata>

diff --git a/app-office/planner/planner-9999.ebuild b/app-office/planner/planner-9999.ebuild
new file mode 100644
index 000000000000..b3239ac6b40b
--- /dev/null
+++ b/app-office/planner/planner-9999.ebuild
@@ -0,0 +1,71 @@
+# 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="Project manager for Gnome"
+HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
+if [[ "${PV}" == "9999" ]] ; then
+	EGIT_REPO_URI="https://gitlab.gnome.org/World/planner.git"
+	inherit git-r3
+	SRC_URI=""
+else
+	KEYWORDS="~amd64"
+fi
+
+SLOT="0"
+LICENSE="GPL-2+"
+IUSE="examples gtk-doc libgda" # eds
+
+RDEPEND="
+	>=dev-libs/glib-2.50:2
+	>=x11-libs/gtk+-3.22:3
+	>=dev-libs/libxml2-2.6.27:2
+	>=dev-libs/libxslt-1.1.23
+	libgda? ( >=gnome-extra/libgda-1.0:5 )
+"
+	# eds support is broken for now
+	# eds? (
+	# 	>=gnome-extra/evolution-data-server-3.6:=
+	# )
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+	gtk-doc? (
+		dev-util/gtk-doc
+		app-text/docbook-xml-dtd:4.1.2
+	)
+	virtual/pkgconfig
+	sys-devel/gettext
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature libgda database-gda)
+		# $(meson_feature eds)
+		-Deds=disabled # upstream says it's broken
+		$(meson_use examples)
+		$(meson_use gtk-doc gtk_doc)
+		-Dsimple-priority-scheduling=false # upstream says it's experimental
+	)
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+	if use examples; then
+		mv "${ED}"/usr/share/doc/planner "${ED}"/usr/share/doc/${PF} || die
+	fi
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+	gnome2_schemas_update
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+	gnome2_schemas_update
+}


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2020-04-20 20:30 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2020-04-20 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     cfad2d850e809f4fe83380af9814ba6b8b726190
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 20 20:22:30 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Mon Apr 20 20:22:30 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfad2d85

app-office/planner: remove old

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 .../planner/planner-0.14.6_p20130520-r1.ebuild     | 77 ----------------------
 1 file changed, 77 deletions(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r1.ebuild b/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
deleted file mode 100644
index e85a7b08867..00000000000
--- a/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2 python-single-r1
-
-DESCRIPTION="Project manager for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
-SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
-
-IUSE="eds examples python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-	>=dev-libs/glib-2.6:2
-	>=x11-libs/gtk+-2.24:2
-	>=gnome-base/libgnomecanvas-2.10
-	>=gnome-base/libglade-2.4:2.0
-	>=gnome-base/gconf-2.10:2
-	>=dev-libs/libxml2-2.6.27:2
-	>=dev-libs/libxslt-1.1.23
-	python? (
-		${PYTHON_DEPS}
-		$(python_gen_cond_dep '
-			>=dev-python/pygtk-2.6:2[${PYTHON_MULTI_USEDEP}] )
-		')
-	eds? (
-		>=gnome-extra/evolution-data-server-3.6:=
-		>=mail-client/evolution-3.6 )
-"
-DEPEND="${RDEPEND}
-	app-text/rarian
-	dev-util/gtk-doc-am
-	>=dev-util/intltool-0.35.5
-	gnome-base/gnome-common
-	virtual/pkgconfig
-"
-
-S="${WORKDIR}/${PN}-0.14.6"
-
-pkg_setup() {
-	use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
-	# FIXME: disable eds backend for now, it fails, upstream bug #654005
-	# We need to set compile-warnings to a different value as it doesn't use
-	# standard macro: https://bugzilla.gnome.org/703067
-	gnome2_src_configure \
-		$(use_enable python) \
-		$(use_enable python python-plugin) \
-		$(use_enable eds) \
-		--disable-eds-backend \
-		--with-database=no \
-		--disable-update-mimedb \
-		--enable-compile-warnings=yes
-		#$(use_enable eds eds-backend)
-}
-
-src_install() {
-	# error: relink `libstorage-mrproject-1.la' with the above command before installing it
-	# Try to drop workaround on next snapshot or bump
-	MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install \
-		sqldocdir="\$(datadir)/doc/${PF}" \
-		sampledir="\$(datadir)/doc/${PF}/examples"
-
-	if ! use examples; then
-		rm -rf "${D}/usr/share/doc/${PF}/examples"
-	fi
-}


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2020-03-15 17:38 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2020-03-15 17:38 UTC (permalink / raw
  To: gentoo-commits

commit:     4d4acaf3d8cb6e61e0765dab4601f5d6d5ba29a0
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 15 17:01:14 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sun Mar 15 17:37:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d4acaf3

app-office/planner: drop python2 support

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 .../planner/planner-0.14.6_p20130520-r2.ebuild     | 66 ++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r2.ebuild b/app-office/planner/planner-0.14.6_p20130520-r2.ebuild
new file mode 100644
index 00000000000..b0fe576b0d1
--- /dev/null
+++ b/app-office/planner/planner-0.14.6_p20130520-r2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2
+
+DESCRIPTION="Project manager for Gnome"
+HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
+SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+
+IUSE="eds examples"
+
+RDEPEND="
+	>=dev-libs/glib-2.6:2
+	>=x11-libs/gtk+-2.24:2
+	>=gnome-base/libgnomecanvas-2.10
+	>=gnome-base/libglade-2.4:2.0
+	>=gnome-base/gconf-2.10:2
+	>=dev-libs/libxml2-2.6.27:2
+	>=dev-libs/libxslt-1.1.23
+	eds? (
+		>=gnome-extra/evolution-data-server-3.6:=
+		>=mail-client/evolution-3.6 )
+"
+DEPEND="${RDEPEND}
+	app-text/rarian
+	dev-util/gtk-doc-am
+	>=dev-util/intltool-0.35.5
+	gnome-base/gnome-common
+	virtual/pkgconfig
+"
+
+S="${WORKDIR}/${PN}-0.14.6"
+
+src_configure() {
+	# FIXME: disable eds backend for now, it fails, upstream bug #654005
+	# We need to set compile-warnings to a different value as it doesn't use
+	# standard macro: https://bugzilla.gnome.org/703067
+	gnome2_src_configure \
+		--disable-python \
+		--disable-python-plugin \
+		$(use_enable eds) \
+		--disable-eds-backend \
+		--with-database=no \
+		--disable-update-mimedb \
+		--enable-compile-warnings=yes
+		#$(use_enable eds eds-backend)
+}
+
+src_install() {
+	# error: relink `libstorage-mrproject-1.la' with the above command before installing it
+	# Try to drop workaround on next snapshot or bump
+	MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install \
+		sqldocdir="\$(datadir)/doc/${PF}" \
+		sampledir="\$(datadir)/doc/${PF}/examples"
+
+	if ! use examples; then
+		rm -rf "${D}/usr/share/doc/${PF}/examples"
+	fi
+}


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2020-03-07 20:18 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2020-03-07 20:18 UTC (permalink / raw
  To: gentoo-commits

commit:     0fbfc3fc67e248e0c8b9a122d24770843a1005c5
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  6 11:17:18 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Mar  7 20:16:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fbfc3fc

app-office/planner: fix deps

libgnomeui isn't needed by this snapshot; some other min dep tweaks

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 app-office/planner/planner-0.14.6_p20130520-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r1.ebuild b/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
index e9b4ff1e4fb..6d5c4afce4f 100644
--- a/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
+++ b/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
@@ -20,11 +20,10 @@ REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND="
 	>=dev-libs/glib-2.6:2
-	>=x11-libs/gtk+-2.14:2
+	>=x11-libs/gtk+-2.24:2
 	>=gnome-base/libgnomecanvas-2.10
-	>=gnome-base/libgnomeui-2.10
 	>=gnome-base/libglade-2.4:2.0
-	>=gnome-base/gconf-2.6:2
+	>=gnome-base/gconf-2.10:2
 	>=dev-libs/libxml2-2.6.27:2
 	>=dev-libs/libxslt-1.1.23
 	python? (


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2020-03-07 20:18 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2020-03-07 20:18 UTC (permalink / raw
  To: gentoo-commits

commit:     a144796fc4aff93a573de959b2a40470741d1fdf
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  6 11:20:54 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Mar  7 20:16:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a144796f

app-office/planner: fix conditional python setup

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 app-office/planner/planner-0.14.6_p20130520-r1.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/app-office/planner/planner-0.14.6_p20130520-r1.ebuild b/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
index 6d5c4afce4f..e85a7b08867 100644
--- a/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
+++ b/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
@@ -45,6 +45,10 @@ DEPEND="${RDEPEND}
 
 S="${WORKDIR}/${PN}-0.14.6"
 
+pkg_setup() {
+	use python && python-single-r1_pkg_setup
+}
+
 src_configure() {
 	# FIXME: disable eds backend for now, it fails, upstream bug #654005
 	# We need to set compile-warnings to a different value as it doesn't use


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2020-02-09 16:11 Michał Górny
  0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2020-02-09 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     3cb487c027f9d32b6979124ad9bd981e6f013447
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  7 11:29:18 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 16:10:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cb487c0

app-office/planner: Switch to PYTHON_MULTI_USEDEP API

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 ...r-0.14.6_p20130520.ebuild => planner-0.14.6_p20130520-r1.ebuild} | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520.ebuild b/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
similarity index 93%
rename from app-office/planner/planner-0.14.6_p20130520.ebuild
rename to app-office/planner/planner-0.14.6_p20130520-r1.ebuild
index e2a022f1b4f..e9b4ff1e4fb 100644
--- a/app-office/planner/planner-0.14.6_p20130520.ebuild
+++ b/app-office/planner/planner-0.14.6_p20130520-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -29,7 +29,9 @@ RDEPEND="
 	>=dev-libs/libxslt-1.1.23
 	python? (
 		${PYTHON_DEPS}
-		>=dev-python/pygtk-2.6:2[${PYTHON_USEDEP}] )
+		$(python_gen_cond_dep '
+			>=dev-python/pygtk-2.6:2[${PYTHON_MULTI_USEDEP}] )
+		')
 	eds? (
 		>=gnome-extra/evolution-data-server-3.6:=
 		>=mail-client/evolution-3.6 )


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2019-02-22 19:13 Mart Raudsepp
  0 siblings, 0 replies; 17+ messages in thread
From: Mart Raudsepp @ 2019-02-22 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     22b525823b269aaf00051967933fda587ae152ab
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 19:07:10 2019 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 19:12:11 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22b52582

app-office/planner: fix HOMEPAGE

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 app-office/planner/planner-0.14.6_p20130520.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520.ebuild b/app-office/planner/planner-0.14.6_p20130520.ebuild
index df665c4c9d4..e2a022f1b4f 100644
--- a/app-office/planner/planner-0.14.6_p20130520.ebuild
+++ b/app-office/planner/planner-0.14.6_p20130520.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit gnome2 python-single-r1
 
 DESCRIPTION="Project manager for Gnome"
-HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Planner"
+HOMEPAGE="https://wiki.gnome.org/Apps/Planner"
 SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
 
 SLOT="0"


^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/planner/
@ 2016-11-03 14:46 Pacho Ramos
  0 siblings, 0 replies; 17+ messages in thread
From: Pacho Ramos @ 2016-11-03 14:46 UTC (permalink / raw
  To: gentoo-commits

commit:     0731b12e4bec650cf93f97e430106fe2bea9813a
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  3 14:46:27 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Nov  3 14:46:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0731b12e

app-office/planner: Bump eapi, update homepage, also rarian dep

Package-Manager: portage-2.3.2

 app-office/planner/planner-0.14.6_p20130520.ebuild | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-office/planner/planner-0.14.6_p20130520.ebuild b/app-office/planner/planner-0.14.6_p20130520.ebuild
index 279f9f0..9a7eabf 100644
--- a/app-office/planner/planner-0.14.6_p20130520.ebuild
+++ b/app-office/planner/planner-0.14.6_p20130520.ebuild
@@ -1,21 +1,21 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
-GCONF_DEBUG="no"
+EAPI=6
 GNOME2_LA_PUNT="yes"
 PYTHON_COMPAT=( python2_7 )
 
 inherit gnome2 python-single-r1
 
 DESCRIPTION="Project manager for Gnome"
-HOMEPAGE="https://live.gnome.org/Planner/"
+HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Planner"
 SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P}.tar.xz"
 
 SLOT="0"
 LICENSE="GPL-2"
 KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
+
 IUSE="eds examples python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
@@ -33,10 +33,10 @@ RDEPEND="
 		>=dev-python/pygtk-2.6:2[${PYTHON_USEDEP}] )
 	eds? (
 		>=gnome-extra/evolution-data-server-3.6:=
-		>=mail-client/evolution-3.6 )"
-
+		>=mail-client/evolution-3.6 )
+"
 DEPEND="${RDEPEND}
-	app-text/scrollkeeper
+	app-text/rarian
 	dev-util/gtk-doc-am
 	>=dev-util/intltool-0.35.5
 	gnome-base/gnome-common


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

end of thread, other threads:[~2023-12-20 10:23 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-18 20:50 [gentoo-commits] repo/gentoo:master commit in: app-office/planner/ Mart Raudsepp
  -- strict thread matches above, loose matches on Subject: below --
2023-12-20 10:23 Pacho Ramos
2023-12-20 10:23 Pacho Ramos
2023-11-04 10:43 Mart Raudsepp
2022-12-21 12:42 Andreas Sturmlechner
2022-12-12 18:03 Matt Turner
2022-11-15 16:13 Mart Raudsepp
2022-10-30 15:24 Matt Turner
2022-10-29 18:34 Matt Turner
2022-10-29 18:34 Matt Turner
2020-04-20 20:30 Mart Raudsepp
2020-03-15 17:38 Mart Raudsepp
2020-03-07 20:18 Mart Raudsepp
2020-03-07 20:18 Mart Raudsepp
2020-02-09 16:11 Michał Górny
2019-02-22 19:13 Mart Raudsepp
2016-11-03 14:46 Pacho Ramos

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