From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libappindicator/
Date: Wed, 26 May 2021 12:24:01 +0000 (UTC) [thread overview]
Message-ID: <1622031835.a392bc84fc0e36bd78218c3a1c691dd9c856aacc.pacho@gentoo> (raw)
commit: a392bc84fc0e36bd78218c3a1c691dd9c856aacc
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed May 26 12:23:43 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed May 26 12:23:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a392bc84
dev-libs/libappindicator: Bump to latest snapshot used in Ubuntu
Bug: https://bugs.gentoo.org/569702
Closes: https://bugs.gentoo.org/621452
Closes: https://bugs.gentoo.org/706084
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
dev-libs/libappindicator/Manifest | 1 +
.../libappindicator-12.10.1_p20200706.ebuild | 71 ++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/dev-libs/libappindicator/Manifest b/dev-libs/libappindicator/Manifest
index 883177ca882..dd1b5ead3d1 100644
--- a/dev-libs/libappindicator/Manifest
+++ b/dev-libs/libappindicator/Manifest
@@ -1 +1,2 @@
DIST libappindicator-12.10.0.tar.gz 535562 BLAKE2B a05dc839aaea9fb3fda118d16aac0eb5c35e6c5095a83eb5e8a2af4902bc1da14960fbd57d3cda5d4d5d874023549ce83657a515aa9ee16a54cadfa81062d993 SHA512 317a22a23c8ed84e74207b64b2e9683992d1fb7208176637a051dfe925974f966d1cfa31e650b45eaf839ab61641dee8fbebc8a07882a09b0dd766d88b8d5b9a
+DIST libappindicator_12.10.1+20.10.20200706.1.orig.tar.gz 75204 BLAKE2B ccc7909f25946413cf39275d8565afca253b3a2676272e4d3833f030a114e7be695fe958d2d99868a20d03a2b9c4a1fcd7fdfba07325b7a9f7f39879851e0366 SHA512 cc60875b1c4ab06348eece442a59a4057d7e13f25605435902242558e8dd5e66aeeee6725b9bd2662ef89052d3614dc4577ed8c233e9b84236a75e771aa67352
diff --git a/dev-libs/libappindicator/libappindicator-12.10.1_p20200706.ebuild b/dev-libs/libappindicator/libappindicator-12.10.1_p20200706.ebuild
new file mode 100644
index 00000000000..d9f65441712
--- /dev/null
+++ b/dev-libs/libappindicator/libappindicator-12.10.1_p20200706.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_USE_DEPEND="vapigen"
+
+inherit autotools multilib-minimal vala
+
+DESCRIPTION="A library to allow applications to export a menu into the Unity Menu bar"
+HOMEPAGE="https://launchpad.net/libappindicator"
+
+MY_PV="${PV%_p*}"
+PATCH_VERSION="${PV#*_p}"
+SRC_URI="mirror://ubuntu/pool/main/liba/${PN}/${PN}_${MY_PV}+20.10.${PATCH_VERSION}.1.orig.tar.gz"
+
+LICENSE="LGPL-2.1 LGPL-3"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
+IUSE="+introspection test"
+
+RDEPEND="
+ >=dev-libs/dbus-glib-0.98[${MULTILIB_USEDEP}]
+ >=dev-libs/glib-2.35.4:2[${MULTILIB_USEDEP}]
+ >=dev-libs/libdbusmenu-0.6.2[gtk3,${MULTILIB_USEDEP}]
+ >=x11-libs/gtk+-3.2:3[${MULTILIB_USEDEP},introspection?]
+ introspection? ( >=dev-libs/gobject-introspection-1:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ introspection? ( $(vala_depend) )
+ >=dev-util/gtk-doc-am-1.14
+ virtual/pkgconfig
+ test? ( dev-util/dbus-test-runner )
+"
+
+S="${WORKDIR}"
+
+# FIXME: tests keep trying to access dirs they don't have access, feel free
+# to report a bug about how to avoid that
+RESTRICT="test"
+
+src_prepare() {
+ default
+ eautoreconf
+
+ # Disable MONO for now because of https://bugs.gentoo.org/382491
+ sed -i -e '/^MONO_REQUIRED_VERSION/s:=.*:=9999:' configure || die
+}
+
+multilib_src_configure() {
+ if multilib_is_native_abi; then
+ local -x VALAC VALA_API_GEN VAPIGEN_VAPIDIR PKG_CONFIG_PATH
+ use introspection && vala_src_prepare && export VALA_API_GEN="${VAPIGEN}"
+ fi
+
+ ECONF_SOURCE="${S}" \
+ econf \
+ --disable-static \
+ --with-gtk=3 \
+ $(multilib_native_use_enable introspection)
+}
+
+multilib_src_test() {
+ # Prevent tests from trying to write on /dev/fuse
+ GVFS_DISABLE_FUSE=1 dbus-run-session emake check
+}
+
+multilib_src_install_all() {
+ einstalldocs
+ find "${ED}" -name '*.la' -delete || die
+}
next reply other threads:[~2021-05-26 12:24 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-26 12:24 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-11-19 4:50 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libappindicator/ WANG Xuerui
2022-07-18 21:58 Sam James
2022-07-06 17:57 Mike Gilbert
2022-06-20 17:46 Arthur Zamarin
2022-06-07 7:05 Sam James
2022-06-01 6:44 Sam James
2022-06-01 5:25 Sam James
2021-09-10 8:13 Vadim Misbakh-Soloviov
2021-07-11 20:51 Sam James
2021-07-09 6:26 Agostino Sarubbo
2021-06-12 6:48 Pacho Ramos
2021-05-26 13:43 Pacho Ramos
2020-02-09 16:18 Michał Górny
2020-01-23 9:59 Georgy Yakovlev
2018-10-31 8:39 Sergei Trofimovich
2018-10-20 11:39 Pacho Ramos
2018-10-17 8:51 Tobias Klausmann
2017-12-21 21:16 Patrice Clement
2016-07-21 10:36 Michael Palimaka
2016-06-02 14:47 Michael Palimaka
2016-06-02 14:47 Michael Palimaka
2016-04-07 13:27 Mikle Kolyada
2016-04-07 13:02 Michael Palimaka
2016-04-07 12:45 Michael Palimaka
2016-01-08 15:43 Alexey Shvetsov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1622031835.a392bc84fc0e36bd78218c3a1c691dd9c856aacc.pacho@gentoo \
--to=pacho@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox