* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2017-07-09 21:41 Michał Górny
0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2017-07-09 21:41 UTC (permalink / raw
To: gentoo-commits
commit: 92073a16cab4eb4a1c5a8525e85a946bbf2474f8
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 1 07:37:10 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 9 21:41:18 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92073a16
app-office/orage: Stop hacking docdir over
app-office/orage/orage-4.12.1-r1.ebuild | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index 85e10a53d98..85276d99385 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -27,11 +27,6 @@ DEPEND="${RDEPEND}
>=sys-devel/libtool-2.2.6
virtual/pkgconfig"
-pkg_setup() {
- # PM doesn't let directory to be replaced by a symlink, see src_install()
- rm -rf "${EROOT}"/usr/share/${PN}/doc || die
-}
-
src_configure() {
local myconf=(
--libexecdir="${EPREFIX}/usr/$(get_libdir)"
@@ -46,16 +41,17 @@ src_configure() {
}
src_install() {
- emake DESTDIR="${D}" install \
- docdir="${EPREFIX}"/usr/share/doc/${PF}/html \
- imagesdir="${EPREFIX}"/usr/share/doc/${PF}/html/images
-
- # Create compability symlink for retarded path hardcoding in src/{mainbox,parameters}.c
- dosym /usr/share/doc/${PF}/html /usr/share/${PN}/doc/C
-
+ default
find "${D}" -name '*.la' -delete || die
}
+pkg_preinst() {
+ # Replacing directory by symlink is unreliable
+ if [[ -L ${EROOT}/usr/share/orage/doc/C ]]; then
+ rm -f "${EROOT}/usr/share/orage/doc/C" || die
+ fi
+}
+
pkg_postinst() {
gnome2_icon_cache_update
xdg_desktop_database_update
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2017-07-09 21:41 Michał Górny
0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2017-07-09 21:41 UTC (permalink / raw
To: gentoo-commits
commit: d5c682512ef83ed90f9c5465d2d15cd1c266db79
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 1 07:39:42 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 9 21:41:18 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5c68251
app-office/orage: Replace XFCE_PLUGINS with a local flag
app-office/orage/metadata.xml | 4 ++++
app-office/orage/orage-4.12.1-r1.ebuild | 8 ++++----
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/app-office/orage/metadata.xml b/app-office/orage/metadata.xml
index 359901b31db..71878d4da92 100644
--- a/app-office/orage/metadata.xml
+++ b/app-office/orage/metadata.xml
@@ -5,4 +5,8 @@
<email>xfce@gentoo.org</email>
<name>XFCE Team</name>
</maintainer>
+ <use>
+ <flag name='clock-panel-plugin'>Build the clock plugin for the XFCE
+ panel</flag>
+ </use>
</pkgmetadata>
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index 85276d99385..e9b09f692ec 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -12,15 +12,15 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="berkdb dbus libnotify +xfce_plugins_clock"
+IUSE="berkdb +clock-panel-plugin dbus libnotify"
RDEPEND=">=dev-libs/libical-0.48:=
dev-libs/popt:=
>=x11-libs/gtk+-2.10:2=
berkdb? ( >=sys-libs/db-4:= )
+ clock-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= )
dbus? ( >=dev-libs/dbus-glib-0.100:= )
- libnotify? ( >=x11-libs/libnotify-0.7:= )
- xfce_plugins_clock? ( >=xfce-base/xfce4-panel-4.10:= )"
+ libnotify? ( >=x11-libs/libnotify-0.7:= )"
DEPEND="${RDEPEND}
dev-util/intltool
sys-devel/gettext
@@ -31,7 +31,7 @@ src_configure() {
local myconf=(
--libexecdir="${EPREFIX}/usr/$(get_libdir)"
--docdir="${EPREFIX}"/usr/share/doc/${PF}/html
- $(use_enable xfce_plugins_clock libxfce4panel)
+ $(use_enable clock-panel-plugin libxfce4panel)
$(use_enable dbus)
$(use_enable libnotify)
$(use_with berkdb bdb4)
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2017-07-09 21:41 Michał Górny
0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2017-07-09 21:41 UTC (permalink / raw
To: gentoo-commits
commit: 2bf8c71b6b0de9617e55526a2dddd9b4ed7fb76f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 1 07:30:13 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 9 21:41:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf8c71b
app-office/orage: Bump to EAPI=6
app-office/orage/orage-4.12.1-r1.ebuild | 67 +++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
new file mode 100644
index 00000000000..85e10a53d98
--- /dev/null
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+DESCRIPTION="A time managing application (and panel plug-in) for the Xfce desktop environment"
+HOMEPAGE="https://git.xfce.org/apps/orage/"
+SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="berkdb dbus libnotify +xfce_plugins_clock"
+
+RDEPEND=">=dev-libs/libical-0.48:=
+ dev-libs/popt:=
+ >=x11-libs/gtk+-2.10:2=
+ berkdb? ( >=sys-libs/db-4:= )
+ dbus? ( >=dev-libs/dbus-glib-0.100:= )
+ libnotify? ( >=x11-libs/libnotify-0.7:= )
+ xfce_plugins_clock? ( >=xfce-base/xfce4-panel-4.10:= )"
+DEPEND="${RDEPEND}
+ dev-util/intltool
+ sys-devel/gettext
+ >=sys-devel/libtool-2.2.6
+ virtual/pkgconfig"
+
+pkg_setup() {
+ # PM doesn't let directory to be replaced by a symlink, see src_install()
+ rm -rf "${EROOT}"/usr/share/${PN}/doc || die
+}
+
+src_configure() {
+ local myconf=(
+ --libexecdir="${EPREFIX}/usr/$(get_libdir)"
+ --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
+ $(use_enable xfce_plugins_clock libxfce4panel)
+ $(use_enable dbus)
+ $(use_enable libnotify)
+ $(use_with berkdb bdb4)
+ )
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install \
+ docdir="${EPREFIX}"/usr/share/doc/${PF}/html \
+ imagesdir="${EPREFIX}"/usr/share/doc/${PF}/html/images
+
+ # Create compability symlink for retarded path hardcoding in src/{mainbox,parameters}.c
+ dosym /usr/share/doc/${PF}/html /usr/share/${PN}/doc/C
+
+ find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2018-01-05 10:27 Mikle Kolyada
0 siblings, 0 replies; 21+ messages in thread
From: Mikle Kolyada @ 2018-01-05 10:27 UTC (permalink / raw
To: gentoo-commits
commit: a9861563c4334eefda4bcecbd836c310e3eb3f62
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 5 10:23:43 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Jan 5 10:27:01 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9861563
app-office/orage: amd64 stable wrt bug #643074
Package-Manager: Portage-2.3.13, Repoman-2.3.3
app-office/orage/orage-4.12.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index e9b09f692ec..caecfde6c87 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="berkdb +clock-panel-plugin dbus libnotify"
RDEPEND=">=dev-libs/libical-0.48:=
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2018-01-06 5:05 Thomas Deutschmann
0 siblings, 0 replies; 21+ messages in thread
From: Thomas Deutschmann @ 2018-01-06 5:05 UTC (permalink / raw
To: gentoo-commits
commit: 4bcc26adb7b0e2410432df3633dfff81295f37d3
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 04:52:22 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 04:52:22 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bcc26ad
app-office/orage: x86 stable (bug #643074)
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-office/orage/orage-4.12.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index caecfde6c87..ab5482d4e4d 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="berkdb +clock-panel-plugin dbus libnotify"
RDEPEND=">=dev-libs/libical-0.48:=
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2018-01-07 13:17 Sergei Trofimovich
0 siblings, 0 replies; 21+ messages in thread
From: Sergei Trofimovich @ 2018-01-07 13:17 UTC (permalink / raw
To: gentoo-commits
commit: 0afce9a251a307d8cf05a912d25f6a684641cf8d
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 7 13:11:17 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jan 7 13:16:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0afce9a2
app-office/orage: stable 4.12.1-r1 for ppc64, bug #643074
Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"
app-office/orage/orage-4.12.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index ab5482d4e4d..f2b63c1f946 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="berkdb +clock-panel-plugin dbus libnotify"
RDEPEND=">=dev-libs/libical-0.48:=
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2018-01-07 20:32 Sergei Trofimovich
0 siblings, 0 replies; 21+ messages in thread
From: Sergei Trofimovich @ 2018-01-07 20:32 UTC (permalink / raw
To: gentoo-commits
commit: c2eb4fcb9ddb04f6d402170988829e2d3fe3bbd9
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 7 20:01:45 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jan 7 20:01:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2eb4fcb
app-office/orage: stable 4.12.1-r1 for ppc, bug #643074
Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc"
app-office/orage/orage-4.12.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index f2b63c1f946..d0928c5adc3 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="berkdb +clock-panel-plugin dbus libnotify"
RDEPEND=">=dev-libs/libical-0.48:=
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2018-01-10 21:22 Sergei Trofimovich
0 siblings, 0 replies; 21+ messages in thread
From: Sergei Trofimovich @ 2018-01-10 21:22 UTC (permalink / raw
To: gentoo-commits
commit: 86a57e2e5161d5ff8dab6d3d302864596f7cc7f5
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 10 20:05:22 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Jan 10 21:22:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a57e2e
app-office/orage: stable 4.12.1-r1 for hppa, bug #643074
Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"
app-office/orage/orage-4.12.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index d0928c5adc3..4769eb97418 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="berkdb +clock-panel-plugin dbus libnotify"
RDEPEND=">=dev-libs/libical-0.48:=
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2018-02-12 20:48 Andreas Sturmlechner
0 siblings, 0 replies; 21+ messages in thread
From: Andreas Sturmlechner @ 2018-02-12 20:48 UTC (permalink / raw
To: gentoo-commits
commit: 4c2411f7220cc26a7d2a59bf2ac7de392ca5c427
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 12 20:07:01 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 12 20:47:34 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c2411f7
app-office/orage: Drop to ~hppa
Stabilisation timeout.
Bug: https://bugs.gentoo.org/620842
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-office/orage/orage-4.12.1-r1.ebuild | 2 +-
app-office/orage/orage-4.12.1.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r1.ebuild
index 4769eb97418..d0928c5adc3 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="berkdb +clock-panel-plugin dbus libnotify"
RDEPEND=">=dev-libs/libical-0.48:=
diff --git a/app-office/orage/orage-4.12.1.ebuild b/app-office/orage/orage-4.12.1.ebuild
index 291da02e373..b8aee692970 100644
--- a/app-office/orage/orage-4.12.1.ebuild
+++ b/app-office/orage/orage-4.12.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -10,7 +10,7 @@ SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="berkdb dbus debug libnotify +xfce_plugins_clock"
RDEPEND=">=dev-libs/libical-0.48:=
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2020-07-15 14:32 Michał Górny
0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2020-07-15 14:32 UTC (permalink / raw
To: gentoo-commits
commit: 0a1351121b2df0a9947654ca4f23f99c4eb39dc3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 15 14:29:09 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jul 15 14:29:09 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a135112
app-office/orage: panel plugin requires gtk+2 panel
Reported by ulm.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-office/orage/{orage-4.12.1-r1.ebuild => orage-4.12.1-r2.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.12.1-r1.ebuild b/app-office/orage/orage-4.12.1-r2.ebuild
similarity index 96%
rename from app-office/orage/orage-4.12.1-r1.ebuild
rename to app-office/orage/orage-4.12.1-r2.ebuild
index fc906148f93..266c7de0db4 100644
--- a/app-office/orage/orage-4.12.1-r1.ebuild
+++ b/app-office/orage/orage-4.12.1-r2.ebuild
@@ -18,7 +18,7 @@ RDEPEND=">=dev-libs/libical-0.48:=
dev-libs/popt:=
>=x11-libs/gtk+-2.10:2=
berkdb? ( >=sys-libs/db-4:= )
- clock-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= )
+ clock-panel-plugin? ( <xfce-base/xfce4-panel-4.15:=[gtk2(+)] )
dbus? ( >=dev-libs/dbus-glib-0.100:= )
libnotify? ( >=x11-libs/libnotify-0.7:= )"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2023-02-09 12:53 Michał Górny
0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2023-02-09 12:53 UTC (permalink / raw
To: gentoo-commits
commit: ee915dd2ddff2d87ba9abf876c5e612e92365aba
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 9 12:51:21 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb 9 12:52:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee915dd2
app-office/orage: Reintroduce, v4.18.0
Reintroduce the Orage calendar app, as upstream has resumed activity.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-office/orage/Manifest | 1 +
app-office/orage/metadata.xml | 8 +++++
app-office/orage/orage-4.18.0.ebuild | 60 ++++++++++++++++++++++++++++++++++++
3 files changed, 69 insertions(+)
diff --git a/app-office/orage/Manifest b/app-office/orage/Manifest
new file mode 100644
index 000000000000..2b18381ef034
--- /dev/null
+++ b/app-office/orage/Manifest
@@ -0,0 +1 @@
+DIST orage-4.18.0.tar.bz2 1418645 BLAKE2B 533f55d4a6e69c0458fb01a8b3fd6a20f30b409ddd1d2eb65f00c321daa441d7e99e154ee4558160fc3e387e2ddb45a2ee0c37e6814a74f40e724fd748cd2fa5 SHA512 7760219f64ac3e2ba6d73541a626a0c9411b93268c007f2af5d8080a3a3c0b2a08e00dd96b7794b688aa83c567150c02033b9ba46bf38cd71d3d890e8d1e45ad
diff --git a/app-office/orage/metadata.xml b/app-office/orage/metadata.xml
new file mode 100644
index 000000000000..dce6704738a4
--- /dev/null
+++ b/app-office/orage/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>xfce@gentoo.org</email>
+ <name>XFCE Team</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
new file mode 100644
index 000000000000..f9d75fd99c9a
--- /dev/null
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="A calendar application for Xfce"
+HOMEPAGE="
+ https://docs.xfce.org/apps/orage/start
+ https://gitlab.xfce.org/apps/orage/
+"
+SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="libnotify"
+
+DEPEND="
+ >=dev-libs/glib-2.58.0
+ >=dev-libs/libical-3.0.16:=
+ >=x11-libs/gtk+-3.24.0:3=
+ x11-libs/libX11
+ >=xfce-base/libxfce4ui-4.16.0:=
+ >=xfce-base/libxfce4util-4.16.0:=
+ libnotify? ( >=x11-libs/libnotify-0.7.0:= )
+"
+RDEPEND="
+ ${DEPEND}
+"
+BDEPEND="
+ >=dev-util/intltool-0.35
+ sys-devel/gettext
+ >=sys-devel/libtool-2.2.6
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local myconf=(
+ $(use_enable libnotify)
+ )
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2023-10-23 1:44 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2023-10-23 1:44 UTC (permalink / raw
To: gentoo-commits
commit: 94d93889db2a063d8a6ec45c4d76fd25bcd87a1f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 23 01:43:40 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 23 01:43:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94d93889
app-office/orage: Stabilize 4.18.0 amd64, #905447
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index f9d75fd99c9a..d6a18c43ea1c 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-01-05 13:21 Jakov Smolić
0 siblings, 0 replies; 21+ messages in thread
From: Jakov Smolić @ 2024-01-05 13:21 UTC (permalink / raw
To: gentoo-commits
commit: 549f1621e4f5692d47921dd195ed4546c116a773
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 5 13:21:36 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Jan 5 13:21:36 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549f1621
app-office/orage: Keyword 4.18.0 riscv, #921390
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index d6a18c43ea1c..5d854ee323af 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~riscv"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-01-07 5:57 WANG Xuerui
0 siblings, 0 replies; 21+ messages in thread
From: WANG Xuerui @ 2024-01-07 5:57 UTC (permalink / raw
To: gentoo-commits
commit: bf42f83861b1a445af43451e0b57be2fb34bffbe
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 7 05:47:30 2024 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun Jan 7 05:54:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf42f838
app-office/orage: keyword 4.18.0 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index 5d854ee323af..e9bcf9ae9f32 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~riscv"
+KEYWORDS="amd64 ~loong ~riscv"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-01-23 5:07 Ionen Wolkens
0 siblings, 0 replies; 21+ messages in thread
From: Ionen Wolkens @ 2024-01-23 5:07 UTC (permalink / raw
To: gentoo-commits
commit: e0f162503ee0c9e27080e990cdf9b0b1d214f5a8
Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Mon Jan 22 21:06:15 2024 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Jan 23 05:04:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f16250
app-office/orage: Keyword 4.18.0 arm, #921390
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index 3f2fca34ae77..496dac9475e9 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-01-24 4:57 Ionen Wolkens
0 siblings, 0 replies; 21+ messages in thread
From: Ionen Wolkens @ 2024-01-24 4:57 UTC (permalink / raw
To: gentoo-commits
commit: 05df6a703bd1a84baab98f56be251bcd65a5c023
Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Tue Jan 23 20:40:57 2024 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Jan 24 04:56:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05df6a70
app-office/orage: Keyword 4.18.0 ia64, #921390
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index 496dac9475e9..f7a391cd78ea 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-01-25 9:21 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-01-25 9:21 UTC (permalink / raw
To: gentoo-commits
commit: d502ecb0dc3ae80a7fa9b7762721c585271d248b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 09:20:44 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 09:20:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d502ecb0
app-office/orage: Stabilize 4.18.0 arm64, #922827
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index 5938594210ff..55c3b02d8a4a 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-01-25 9:21 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-01-25 9:21 UTC (permalink / raw
To: gentoo-commits
commit: 1f14a9d8ff5c8aa5f98c71cb5fa3964120598de5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 09:20:32 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 09:20:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f14a9d8
app-office/orage: Stabilize 4.18.0 arm, #922827
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index f7a391cd78ea..5938594210ff 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-02-10 6:58 Ionen Wolkens
0 siblings, 0 replies; 21+ messages in thread
From: Ionen Wolkens @ 2024-02-10 6:58 UTC (permalink / raw
To: gentoo-commits
commit: f1147f74b3762477214bb6ade3c131259db0aa97
Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Feb 9 18:34:10 2024 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sat Feb 10 06:48:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1147f74
app-office/orage: Stabilize 4.18.0 x86, #922827
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index c27922c47c5e..0465add0ccd5 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv x86"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-02-10 6:58 Ionen Wolkens
0 siblings, 0 replies; 21+ messages in thread
From: Ionen Wolkens @ 2024-02-10 6:58 UTC (permalink / raw
To: gentoo-commits
commit: 0eabbc61084a2dcbda5ba84621aa188762295eb0
Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Feb 9 21:05:51 2024 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sat Feb 10 06:48:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eabbc61
app-office/orage: Stabilize 4.18.0 ppc64, #922827
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index 0465add0ccd5..b49a328c4b3b 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv x86"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-office/orage/
@ 2024-06-21 4:23 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-06-21 4:23 UTC (permalink / raw
To: gentoo-commits
commit: cd317c879399a3647f9357d869f042d948bf254c
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 21 04:23:41 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 21 04:23:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd317c87
app-office/orage: Stabilize 4.18.0 ppc, #934638
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-office/orage/orage-4.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-office/orage/orage-4.18.0.ebuild b/app-office/orage/orage-4.18.0.ebuild
index b49a328c4b3b..bf9357e55c88 100644
--- a/app-office/orage/orage-4.18.0.ebuild
+++ b/app-office/orage/orage-4.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv x86"
IUSE="libnotify"
DEPEND="
^ permalink raw reply related [flat|nested] 21+ messages in thread
end of thread, other threads:[~2024-06-21 4:23 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-10 6:58 [gentoo-commits] repo/gentoo:master commit in: app-office/orage/ Ionen Wolkens
-- strict thread matches above, loose matches on Subject: below --
2024-06-21 4:23 Arthur Zamarin
2024-02-10 6:58 Ionen Wolkens
2024-01-25 9:21 Sam James
2024-01-25 9:21 Sam James
2024-01-24 4:57 Ionen Wolkens
2024-01-23 5:07 Ionen Wolkens
2024-01-07 5:57 WANG Xuerui
2024-01-05 13:21 Jakov Smolić
2023-10-23 1:44 Sam James
2023-02-09 12:53 Michał Górny
2020-07-15 14:32 Michał Górny
2018-02-12 20:48 Andreas Sturmlechner
2018-01-10 21:22 Sergei Trofimovich
2018-01-07 20:32 Sergei Trofimovich
2018-01-07 13:17 Sergei Trofimovich
2018-01-06 5:05 Thomas Deutschmann
2018-01-05 10:27 Mikle Kolyada
2017-07-09 21:41 Michał Górny
2017-07-09 21:41 Michał Górny
2017-07-09 21:41 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox