public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-shells/squirrelsh/files/, app-shells/squirrelsh/
@ 2023-08-08  5:29 Sam James
  0 siblings, 0 replies; only message in thread
From: Sam James @ 2023-08-08  5:29 UTC (permalink / raw
  To: gentoo-commits

commit:     9fd7199162f63e68bf6a946b8b83c14090767d46
Author:     Brahmajit Das <brahmajit.xyz <AT> gmail <DOT> com>
AuthorDate: Tue Aug  8 05:25:47 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug  8 05:28:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fd71991

app-shells/squirrelsh: Fix C++17 does not allow register storage class

Closes: https://bugs.gentoo.org/894640
Signed-off-by: Brahmajit Das <brahmajit.xyz <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32217
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../files/squirrelsh-drop-register.patch           | 12 ++++++
 app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild   | 48 ++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/app-shells/squirrelsh/files/squirrelsh-drop-register.patch b/app-shells/squirrelsh/files/squirrelsh-drop-register.patch
new file mode 100644
index 000000000000..77670ffe12d2
--- /dev/null
+++ b/app-shells/squirrelsh/files/squirrelsh-drop-register.patch
@@ -0,0 +1,12 @@
+Bug: https://bugs.gentoo.org/894640
+--- a/shell/hash_md5.cpp
++++ b/shell/hash_md5.cpp
+@@ -52,7 +52,7 @@ void MD5Init (MD5Context *ctx)
+ // The core of the MD5 algorithm
+ void MD5Transform (unsigned buf[4], const unsigned in[16])
+ {
+-    register unsigned a, b, c, d;
++    unsigned a, b, c, d;
+ 
+     a = buf[0];
+     b = buf[1];

diff --git a/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild b/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild
new file mode 100644
index 000000000000..1cde35292f6d
--- /dev/null
+++ b/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Cross-platform object-oriented scripting shell using the squirrel language"
+HOMEPAGE="http://squirrelsh.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="doc"
+
+RDEPEND="dev-libs/libpcre"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-rename-LDFLAGS.patch
+	"${FILESDIR}"/${PN}-no-strip.patch
+	"${FILESDIR}"/${PN}-fix-in_LDFLAGS.patch
+	"${FILESDIR}"/${PN}-remove-forced-abi.patch
+	"${FILESDIR}"/${PN}-no-docs.patch
+	"${FILESDIR}"/${P}-gcc6.patch
+	"${FILESDIR}"/${PN}-drop-register.patch
+)
+
+src_configure() {
+	#This package uses a custom written configure script
+	./configure --prefix="${D}"/usr \
+		--with-cc="$(tc-getCC)" \
+		--with-cpp="$(tc-getCXX)" \
+		--with-linker="$(tc-getCXX)" \
+		--libdir=/usr/"$(get_libdir)" \
+		--with-pcre="system" \
+		--with-squirrel="local" \
+		--with-mime=no || die "configure failed"
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	doman doc/${PN}.1
+	dodoc HISTORY INSTALL README
+	use doc && dodoc doc/*.pdf
+}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-08-08  5:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-08  5:29 [gentoo-commits] repo/gentoo:master commit in: app-shells/squirrelsh/files/, app-shells/squirrelsh/ Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox