Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/office-runner/
Date: Sun, 20 Jun 2021 19:21:25
Message-Id: 1624216857.446069ba57c3128b130947a83ce0dd1889d819c3.mattst88@gentoo
1 commit: 446069ba57c3128b130947a83ce0dd1889d819c3
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 20 19:08:51 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 20 19:20:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=446069ba
7
8 gnome-extra/office-runner: Version bump to 1.0.3
9
10 Closes: https://bugs.gentoo.org/778698
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 gnome-extra/office-runner/Manifest | 1 +
14 .../office-runner/office-runner-1.0.3.ebuild | 43 ++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/gnome-extra/office-runner/Manifest b/gnome-extra/office-runner/Manifest
18 index 5c76ba80c96..e7a7468d567 100644
19 --- a/gnome-extra/office-runner/Manifest
20 +++ b/gnome-extra/office-runner/Manifest
21 @@ -1 +1,2 @@
22 DIST office-runner-1.0.2.tar.xz 562660 BLAKE2B ad69a4340025b58d45f954524c9807831c98a4d81901276bfa3e8f76adb3a5bd1fcf0b50908e00c19888d82b6c48602228a42b84b008f2b7b95210868c8a90ed SHA512 a840af75f014147d30e950a4bc8628c97a79c8161eab3d0f658f5e4f5200df5baaa761d4ea27dc1bc70c6a467fc2536ac0aa473c338ffcbfc48689ba1ec13177
23 +DIST office-runner-1.0.3.tar.bz2 957912 BLAKE2B 064dac6f511d9c1019a2da073276509d6ccf9bce19ae1778335f5dde3fe1f236a76430dd3fb989f06e64d0214b5125769b0a3531cba44460ae15b0ad8b87f07d SHA512 475aac701cd4faec378e4f7673658489e9d4cebea499b24fb2baa6cc981ed1dab435769ce75ed82ffa9d28bf29e96d2911820a29abaa5aafed7d38af80636584
24
25 diff --git a/gnome-extra/office-runner/office-runner-1.0.3.ebuild b/gnome-extra/office-runner/office-runner-1.0.3.ebuild
26 new file mode 100644
27 index 00000000000..62c820e0058
28 --- /dev/null
29 +++ b/gnome-extra/office-runner/office-runner-1.0.3.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +GNOME2_EAUTORECONF="yes"
37 +inherit gnome2 readme.gentoo-r1
38 +
39 +DESCRIPTION="Lighthearted tool to temporarily inhibit GNOME's suspend on lid close behavior"
40 +HOMEPAGE="https://www.hadess.net/search/label/office-runner"
41 +SRC_URI="https://gitlab.gnome.org/GNOME/office-runner/-/archive/${PV}/${P}.tar.bz2"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +DEPEND="
48 + dev-libs/glib:2
49 + >=gnome-base/gnome-settings-daemon-3.0
50 + >=x11-libs/gtk+-3.8:3
51 +"
52 +# requires systemd's org.freedesktop.login1 dbus service
53 +RDEPEND="${DEPEND}
54 + >=sys-apps/systemd-190
55 +"
56 +BDEPEND="
57 + >=dev-util/intltool-0.40.0
58 + virtual/pkgconfig
59 + sys-devel/gettext
60 +"
61 +
62 +DOC_CONTENTS="${PN} inhibits suspend on lid close only for 10 minutes"
63 +
64 +src_install() {
65 + gnome2_src_install
66 + mv "${ED}"/usr/share/{appdata,metainfo}/ || die
67 + readme.gentoo_create_doc
68 +}
69 +
70 +pkg_postinst() {
71 + gnome2_pkg_postinst
72 + readme.gentoo_print_elog
73 +}