diff options
author | Francesco Turco <fturco@fastmail.fm> | 2018-08-26 20:08:31 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-09-11 10:03:56 +0200 |
commit | fe6520c33d86aa869cf6e42b769370d8218ff741 (patch) | |
tree | 82d1f4b4e02874962c4b204941880d10ecd467fd /x11-wm/i3 | |
parent | dev-python/llvmlite: Use parallel make for shared library (diff) | |
download | gentoo-fe6520c33d86aa869cf6e42b769370d8218ff741.tar.gz gentoo-fe6520c33d86aa869cf6e42b769370d8218ff741.tar.bz2 gentoo-fe6520c33d86aa869cf6e42b769370d8218ff741.zip |
x11-wm/i3: show elog message only on first installation
Closes: https://github.com/gentoo/gentoo/pull/9703
Diffstat (limited to 'x11-wm/i3')
-rw-r--r-- | x11-wm/i3/i3-4.13-r1.ebuild | 17 | ||||
-rw-r--r-- | x11-wm/i3/i3-4.14.1.ebuild | 15 | ||||
-rw-r--r-- | x11-wm/i3/i3-4.14.ebuild | 17 | ||||
-rw-r--r-- | x11-wm/i3/i3-4.15.ebuild | 15 | ||||
-rw-r--r-- | x11-wm/i3/i3-9999.ebuild | 18 |
5 files changed, 49 insertions, 33 deletions
diff --git a/x11-wm/i3/i3-4.13-r1.ebuild b/x11-wm/i3/i3-4.13-r1.ebuild index acfef3313c8a..2b809ac551d6 100644 --- a/x11-wm/i3/i3-4.13-r1.ebuild +++ b/x11-wm/i3/i3-4.13-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 @@ -76,10 +76,13 @@ src_install() { } pkg_postinst() { - einfo "There are several packages that you may find useful with ${PN} and" - einfo "their usage is suggested by the upstream maintainers, namely:" - einfo " x11-misc/dmenu" - einfo " x11-misc/i3status" - einfo " x11-misc/i3lock" - einfo "Please refer to their description for additional info." + # Only show the elog information on a new install + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "There are several packages that you may find useful with ${PN} and" + elog "their usage is suggested by the upstream maintainers, namely:" + elog " x11-misc/dmenu" + elog " x11-misc/i3status" + elog " x11-misc/i3lock" + elog "Please refer to their description for additional info." + fi } diff --git a/x11-wm/i3/i3-4.14.1.ebuild b/x11-wm/i3/i3-4.14.1.ebuild index 3c204ad407fc..a10e0a5f9e40 100644 --- a/x11-wm/i3/i3-4.14.1.ebuild +++ b/x11-wm/i3/i3-4.14.1.ebuild @@ -102,10 +102,13 @@ my_src_install_all() { } pkg_postinst() { - einfo "There are several packages that you may find useful with ${PN} and" - einfo "their usage is suggested by the upstream maintainers, namely:" - einfo " x11-misc/dmenu" - einfo " x11-misc/i3status" - einfo " x11-misc/i3lock" - einfo "Please refer to their description for additional info." + # Only show the elog information on a new install + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "There are several packages that you may find useful with ${PN} and" + elog "their usage is suggested by the upstream maintainers, namely:" + elog " x11-misc/dmenu" + elog " x11-misc/i3status" + elog " x11-misc/i3lock" + elog "Please refer to their description for additional info." + fi } diff --git a/x11-wm/i3/i3-4.14.ebuild b/x11-wm/i3/i3-4.14.ebuild index b98df36f9270..26d946ec6f08 100644 --- a/x11-wm/i3/i3-4.14.ebuild +++ b/x11-wm/i3/i3-4.14.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 @@ -90,10 +90,13 @@ src_install() { } pkg_postinst() { - einfo "There are several packages that you may find useful with ${PN} and" - einfo "their usage is suggested by the upstream maintainers, namely:" - einfo " x11-misc/dmenu" - einfo " x11-misc/i3status" - einfo " x11-misc/i3lock" - einfo "Please refer to their description for additional info." + # Only show the elog information on a new install + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "There are several packages that you may find useful with ${PN} and" + elog "their usage is suggested by the upstream maintainers, namely:" + elog " x11-misc/dmenu" + elog " x11-misc/i3status" + elog " x11-misc/i3lock" + elog "Please refer to their description for additional info." + fi } diff --git a/x11-wm/i3/i3-4.15.ebuild b/x11-wm/i3/i3-4.15.ebuild index df485534f2f4..90f223b0d2c3 100644 --- a/x11-wm/i3/i3-4.15.ebuild +++ b/x11-wm/i3/i3-4.15.ebuild @@ -102,10 +102,13 @@ my_src_install_all() { } pkg_postinst() { - einfo "There are several packages that you may find useful with ${PN} and" - einfo "their usage is suggested by the upstream maintainers, namely:" - einfo " x11-misc/dmenu" - einfo " x11-misc/i3status" - einfo " x11-misc/i3lock" - einfo "Please refer to their description for additional info." + # Only show the elog information on a new install + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "There are several packages that you may find useful with ${PN} and" + elog "their usage is suggested by the upstream maintainers, namely:" + elog " x11-misc/dmenu" + elog " x11-misc/i3status" + elog " x11-misc/i3lock" + elog "Please refer to their description for additional info." + fi } diff --git a/x11-wm/i3/i3-9999.ebuild b/x11-wm/i3/i3-9999.ebuild index cd758177621b..44462428862e 100644 --- a/x11-wm/i3/i3-9999.ebuild +++ b/x11-wm/i3/i3-9999.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 @@ -74,10 +74,14 @@ src_install() { } pkg_postinst() { - einfo "There are several packages that you may find useful with ${PN} and" - einfo "their usage is suggested by the upstream maintainers, namely:" - einfo " x11-misc/dmenu" - einfo " x11-misc/i3status" - einfo " x11-misc/i3lock" - einfo "Please refer to their description for additional info." + + # Only show the elog information on a new install + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "There are several packages that you may find useful with ${PN} and" + elog "their usage is suggested by the upstream maintainers, namely:" + elog " x11-misc/dmenu" + elog " x11-misc/i3status" + elog " x11-misc/i3lock" + elog "Please refer to their description for additional info." + fi } |