Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libnotify/
Date: Sat, 17 Nov 2018 18:12:38
Message-Id: 1542478324.1ece9c57de3be7d5a9daa28153e5df7760d4fb70.eva@gentoo
1 commit: 1ece9c57de3be7d5a9daa28153e5df7760d4fb70
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 17 17:42:08 2018 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 17 18:12:04 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ece9c57
7
8 x11-libs/libnotify: cleanup old revision
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Signed-off-by: Gilles Dartiguelongue <eva <AT> gentoo.org>
12
13 x11-libs/libnotify/Manifest | 1 -
14 x11-libs/libnotify/libnotify-0.7.6-r3.ebuild | 65 ----------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/x11-libs/libnotify/Manifest b/x11-libs/libnotify/Manifest
18 index c089edd1336..4e7791ed538 100644
19 --- a/x11-libs/libnotify/Manifest
20 +++ b/x11-libs/libnotify/Manifest
21 @@ -1,2 +1 @@
22 -DIST libnotify-0.7.6.tar.xz 280388 BLAKE2B 89b5853f940be94884f6e50b1114bbc3428a5ee1645fc0b72cbfd2ca0f0bb574353ca0b379f0ded077022a478713419654598fdc603652f00c2d772a58666a40 SHA512 5d656ee7ee5caeb95aec4adb973795dc72fc620cd36b9fe3d4f910951945bd5df70ee1c422cd6aca9c38a9ba2760562e479fc8fb9269449924a5b24d762d03df
23 DIST libnotify-0.7.7.tar.xz 285356 BLAKE2B ace0eedb1beecfbb89726960e441821d64f5ac456dfc6294b051479078726aed6fbacbd1e8cb17578933adbc4c94711b0d69a292778ba4bce096552a5197722b SHA512 133874114407bf12267ef609f5941657181760bc7cf115c5973b1810cb72bf55072b621c143e32be1e7e8b49f244851925d14bc3f9f26457747b8a8695ee9954
24
25 diff --git a/x11-libs/libnotify/libnotify-0.7.6-r3.ebuild b/x11-libs/libnotify/libnotify-0.7.6-r3.ebuild
26 deleted file mode 100644
27 index 765e171e939..00000000000
28 --- a/x11-libs/libnotify/libnotify-0.7.6-r3.ebuild
29 +++ /dev/null
30 @@ -1,65 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -inherit autotools eutils gnome.org multilib-minimal xdg-utils
36 -
37 -DESCRIPTION="A library for sending desktop notifications"
38 -HOMEPAGE="https://gitlab.gnome.org/GNOME/libnotify"
39 -
40 -LICENSE="LGPL-2.1+"
41 -SLOT="0"
42 -KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
43 -IUSE="+introspection test"
44 -
45 -RDEPEND="
46 - app-eselect/eselect-notify-send
47 - >=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}]
48 - x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
49 - introspection? ( >=dev-libs/gobject-introspection-1.32:= )
50 -"
51 -DEPEND="${RDEPEND}
52 - >=dev-libs/gobject-introspection-common-1.32
53 - dev-util/glib-utils
54 - >=dev-util/gtk-doc-am-1.14
55 - virtual/pkgconfig
56 - test? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
57 -"
58 -PDEPEND="virtual/notification-daemon"
59 -
60 -src_prepare() {
61 - xdg_environment_reset
62 - sed -i -e 's:noinst_PROG:check_PROG:' tests/Makefile.am || die
63 -
64 - if ! use test; then
65 - sed -i -e '/PKG_CHECK_MODULES(TESTS/d' configure.ac || die
66 - fi
67 -
68 - eautoreconf
69 -}
70 -
71 -multilib_src_configure() {
72 - ECONF_SOURCE=${S} econf \
73 - --disable-static \
74 - $(multilib_native_use_enable introspection)
75 -
76 - # work-around gtk-doc out-of-source brokedness
77 - if multilib_is_native_abi; then
78 - ln -s "${S}"/docs/reference/html docs/reference/html || die
79 - fi
80 -}
81 -
82 -multilib_src_install() {
83 - default
84 - prune_libtool_files
85 -
86 - mv "${ED}"/usr/bin/{,libnotify-}notify-send #379941
87 -}
88 -
89 -pkg_postinst() {
90 - eselect notify-send update ifunset
91 -}
92 -
93 -pkg_postrm() {
94 - eselect notify-send update ifunset
95 -}