diff options
author | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
commit | 398a42634f34afa1979d88ae1d8b38194e911c2d (patch) | |
tree | d6a45bdf7b35b71c192602a46e8d98d12a88cb02 /dev-ada | |
parent | dev-ros/geometric_shapes: Remove old (diff) | |
download | gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.gz gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.bz2 gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.zip |
*/*: [QA] Remove redundant `|| die` guards
* Since all ebuilds in the tree are EAPI>=4,
`|| die` on builtin commands is redundant
and dead code.
Closes: https://github.com/gentoo/gentoo/pull/13940
Reviewed-by: Ulrich Müller <ulm@gentoo.org>
Reviewed-by: Michał Górny <mgorny@gentoo.org>
Reviewed-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-ada')
-rw-r--r-- | dev-ada/gnat-suite-bin/gnat-suite-bin-2014.ebuild | 18 | ||||
-rw-r--r-- | dev-ada/gnat-suite-bin/gnat-suite-bin-2016.ebuild | 18 | ||||
-rw-r--r-- | dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild | 18 | ||||
-rw-r--r-- | dev-ada/gnat-suite-bin/gnat-suite-bin-2018.ebuild | 18 |
4 files changed, 36 insertions, 36 deletions
diff --git a/dev-ada/gnat-suite-bin/gnat-suite-bin-2014.ebuild b/dev-ada/gnat-suite-bin/gnat-suite-bin-2014.ebuild index 9dcff4585b0a..84e63a9aef84 100644 --- a/dev-ada/gnat-suite-bin/gnat-suite-bin-2014.ebuild +++ b/dev-ada/gnat-suite-bin/gnat-suite-bin-2014.ebuild @@ -89,15 +89,15 @@ src_install() { doins -r etc include lib* share insinto ${PREFIX}/share/gps/plug-ins doins share/examples/gnat/gnat-examples.xml - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprbind || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprlib || die + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper + fperms 755 ${PREFIX}/libexec/gprbuild/gprbind + fperms 755 ${PREFIX}/libexec/gprbuild/gprlib } pkg_postinst () { diff --git a/dev-ada/gnat-suite-bin/gnat-suite-bin-2016.ebuild b/dev-ada/gnat-suite-bin/gnat-suite-bin-2016.ebuild index 03db6ca157d7..fe753f78bac8 100644 --- a/dev-ada/gnat-suite-bin/gnat-suite-bin-2016.ebuild +++ b/dev-ada/gnat-suite-bin/gnat-suite-bin-2016.ebuild @@ -84,15 +84,15 @@ src_install() { doins -r etc include lib* share insinto ${PREFIX}/share/gps/plug-ins doins share/examples/gnat/gnat-examples.xml - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprbind || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprlib || die + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper + fperms 755 ${PREFIX}/libexec/gprbuild/gprbind + fperms 755 ${PREFIX}/libexec/gprbuild/gprlib } pkg_postinst () { diff --git a/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild b/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild index 32edf6f51a1c..538f8b0544bb 100644 --- a/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild +++ b/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild @@ -84,15 +84,15 @@ src_install() { doins -r etc include lib* share insinto ${PREFIX}/share/gps/plug-ins doins share/examples/gnat/gnat-examples.xml - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprbind || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprlib || die + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper + fperms 755 ${PREFIX}/libexec/gprbuild/gprbind + fperms 755 ${PREFIX}/libexec/gprbuild/gprlib } pkg_postinst () { diff --git a/dev-ada/gnat-suite-bin/gnat-suite-bin-2018.ebuild b/dev-ada/gnat-suite-bin/gnat-suite-bin-2018.ebuild index 2edb4e58a554..a6d08d2be740 100644 --- a/dev-ada/gnat-suite-bin/gnat-suite-bin-2018.ebuild +++ b/dev-ada/gnat-suite-bin/gnat-suite-bin-2018.ebuild @@ -64,15 +64,15 @@ src_install() { doins share/examples/gnat/gnat-examples.xml basever=7.3.1 machine=x86_64-pc-linux-gnu - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprbind || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprlib || die + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper + fperms 755 ${PREFIX}/libexec/gprbuild/gprbind + fperms 755 ${PREFIX}/libexec/gprbuild/gprlib } pkg_postinst () { |