diff options
author | Robin Hallabro-Kokko <robin@hallabro-kokko.se> | 2020-04-15 19:23:26 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-04-17 10:35:54 +0300 |
commit | 7da570bb263b2385b9f48adf5f4e3d126047d39b (patch) | |
tree | 98128e03931a73e5d91c828ff2f8d2aa1c09a634 /x11-misc | |
parent | app-emulation/genymotion-bin: remove old (diff) | |
download | gentoo-7da570bb263b2385b9f48adf5f4e3d126047d39b.tar.gz gentoo-7da570bb263b2385b9f48adf5f4e3d126047d39b.tar.bz2 gentoo-7da570bb263b2385b9f48adf5f4e3d126047d39b.zip |
x11-misc/rofi-calc: bump to 1.6
Closes: https://bugs.gentoo.org/717562
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Robin Hallabro-Kokko <robin@hallabro-kokko.se>
Closes: https://github.com/gentoo/gentoo/pull/15362
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/rofi-calc/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/rofi-calc/rofi-calc-1.6.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/x11-misc/rofi-calc/Manifest b/x11-misc/rofi-calc/Manifest index 10d3a9cc37b2..095c85464e97 100644 --- a/x11-misc/rofi-calc/Manifest +++ b/x11-misc/rofi-calc/Manifest @@ -1 +1,2 @@ DIST rofi-calc-1.5.tar.gz 1693385 BLAKE2B 7ff21873ee298c4295f2766917318796d6327959e63d99adc86857d2e05534e77062c9546ba8c6cf645a12ae46147e4583a61fc95dbc6953ee642449ff108d40 SHA512 04213b6489cd9e3c5085a88cee07ee9413819c19d4ee08f6e2eef3ad418d21b5acaf1d4ef21f1495d81694e5706f93598c91ada65f1bcc83ce94a6cf5d50ea0c +DIST rofi-calc-1.6.tar.gz 1694150 BLAKE2B bc1f3a2589c0e704793693e0f007503d1b0eaa363f416f0d111709541f2960f0f5ab31d0eb129000e7f82af3d46ce0a52918cfbfc00d14292a839a40a0986bb0 SHA512 a87523d3d64fbd53e431dba7da674a213fcfbdcaac25906a19bc83aa3feb14da479b702b39fd58ffeb04198ea0a5d52808f7c9c36495defc99c9c83df963e0b6 diff --git a/x11-misc/rofi-calc/rofi-calc-1.6.ebuild b/x11-misc/rofi-calc/rofi-calc-1.6.ebuild new file mode 100644 index 000000000000..a267871cd50b --- /dev/null +++ b/x11-misc/rofi-calc/rofi-calc-1.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Do live calculations in rofi!" +HOMEPAGE="https://github.com/svenstaro/rofi-calc" +SRC_URI="https://github.com/svenstaro/rofi-calc/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + x11-misc/rofi + >=sci-libs/libqalculate-2.0 +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eautoreconf -i +} |