diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-01-01 17:01:42 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-01-07 01:19:32 +0100 |
commit | 848a03ee65232ef542c0dceeed4587132449c472 (patch) | |
tree | 71151960345e1e382c57482f0afa1bfb566a261b /app-shells | |
parent | dev-util/treecc: EAPI8 bump, fix calling ar directly, bug #724244 (diff) | |
download | gentoo-848a03ee65232ef542c0dceeed4587132449c472.tar.gz gentoo-848a03ee65232ef542c0dceeed4587132449c472.tar.bz2 gentoo-848a03ee65232ef542c0dceeed4587132449c472.zip |
app-shells/squirrelsh: use https, fix LICENSE, calling ar diretly, bug #722436
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://bugs.gentoo.org/722436
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild | 7 | ||||
-rw-r--r-- | app-shells/squirrelsh/squirrelsh-1.2.7.ebuild | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild b/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild index 91c3a8e154d8..24519dc74079 100644 --- a/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild +++ b/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,10 +6,10 @@ EAPI=8 inherit edo toolchain-funcs DESCRIPTION="Cross-platform object-oriented scripting shell using the squirrel language" -HOMEPAGE="http://squirrelsh.sourceforge.net/" +HOMEPAGE="https://squirrelsh.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2" -LICENSE="GPL-3" +LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="doc" @@ -31,6 +31,7 @@ PATCHES=( src_configure() { # This package uses a custom written configure script edo ./configure --prefix="${D}"/usr \ + --with-librarian="$(tc-getAR) rc" \ --with-cc="$(tc-getCC)" \ --with-cpp="$(tc-getCXX)" \ --with-linker="$(tc-getCXX)" \ diff --git a/app-shells/squirrelsh/squirrelsh-1.2.7.ebuild b/app-shells/squirrelsh/squirrelsh-1.2.7.ebuild index 2a89668fd0ab..967f814b9f74 100644 --- a/app-shells/squirrelsh/squirrelsh-1.2.7.ebuild +++ b/app-shells/squirrelsh/squirrelsh-1.2.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -6,10 +6,10 @@ EAPI=7 inherit toolchain-funcs DESCRIPTION="Cross-platform object-oriented scripting shell using the squirrel language" -HOMEPAGE="http://squirrelsh.sourceforge.net/" +HOMEPAGE="https://squirrelsh.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2" -LICENSE="GPL-3" +LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="doc" @@ -30,6 +30,7 @@ PATCHES=( src_configure() { #This package uses a custom written configure script ./configure --prefix="${D}"/usr \ + --with-librarian="$(tc-getAR) rc" \ --with-cc="$(tc-getCC)" \ --with-cpp="$(tc-getCXX)" \ --with-linker="$(tc-getCXX)" \ |