diff options
author | Marco Genasci <fedeliallalinea@gmail.com> | 2020-11-20 19:58:31 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-11-23 15:11:24 +0200 |
commit | 69a79d82241c624e210d0668c3cf97811affcb72 (patch) | |
tree | df4ec90d60393d78a224ec1eb8774806e71b2d15 /x11-misc/rofi-calc | |
parent | dev-db/sqlcl-bin: removed old (diff) | |
download | gentoo-69a79d82241c624e210d0668c3cf97811affcb72.tar.gz gentoo-69a79d82241c624e210d0668c3cf97811affcb72.tar.bz2 gentoo-69a79d82241c624e210d0668c3cf97811affcb72.zip |
x11-misc/rofi-calc: version bump to 2.0.0
Closes: https://bugs.gentoo.org/755869
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Marco Genasci <fedeliallalinea@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18340
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-misc/rofi-calc')
-rw-r--r-- | x11-misc/rofi-calc/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/rofi-calc/rofi-calc-2.0.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/x11-misc/rofi-calc/Manifest b/x11-misc/rofi-calc/Manifest index 095c85464e97..beef4cb00a5d 100644 --- a/x11-misc/rofi-calc/Manifest +++ b/x11-misc/rofi-calc/Manifest @@ -1,2 +1,3 @@ DIST rofi-calc-1.5.tar.gz 1693385 BLAKE2B 7ff21873ee298c4295f2766917318796d6327959e63d99adc86857d2e05534e77062c9546ba8c6cf645a12ae46147e4583a61fc95dbc6953ee642449ff108d40 SHA512 04213b6489cd9e3c5085a88cee07ee9413819c19d4ee08f6e2eef3ad418d21b5acaf1d4ef21f1495d81694e5706f93598c91ada65f1bcc83ce94a6cf5d50ea0c DIST rofi-calc-1.6.tar.gz 1694150 BLAKE2B bc1f3a2589c0e704793693e0f007503d1b0eaa363f416f0d111709541f2960f0f5ab31d0eb129000e7f82af3d46ce0a52918cfbfc00d14292a839a40a0986bb0 SHA512 a87523d3d64fbd53e431dba7da674a213fcfbdcaac25906a19bc83aa3feb14da479b702b39fd58ffeb04198ea0a5d52808f7c9c36495defc99c9c83df963e0b6 +DIST rofi-calc-2.0.0.tar.gz 1695125 BLAKE2B d76c304724b0f3326a8bd26ab2c7eaed5f77f3b6d07ddc97570a1fb28d56504d98ac9ab66411290cb548b760bd3231a729dfc470e748a8447e323d1b290f677c SHA512 298f9983dbd140f5aee5b3799b165500eae100f3f5744ba07914b962faf01661dee0f5f4c9c12a07a4e210b6115ac6fb377d9fa9a7e64ef5a19600e9f55cd478 diff --git a/x11-misc/rofi-calc/rofi-calc-2.0.0.ebuild b/x11-misc/rofi-calc/rofi-calc-2.0.0.ebuild new file mode 100644 index 000000000000..a267871cd50b --- /dev/null +++ b/x11-misc/rofi-calc/rofi-calc-2.0.0.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 +} |