public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/
@ 2016-09-12  8:17 Daniel Campbell
  0 siblings, 0 replies; 3+ messages in thread
From: Daniel Campbell @ 2016-09-12  8:17 UTC (permalink / raw
  To: gentoo-commits

commit:     5564fdddd2866333589db0216a1787d2a7301267
Author:     Daniel Campbell <zlg <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 12 08:16:44 2016 +0000
Commit:     Daniel Campbell <zlg <AT> gentoo <DOT> org>
CommitDate: Mon Sep 12 08:16:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5564fddd

dev-lang/gnu-smalltalk: version bump

Package-Manager: portage-2.3.0

 dev-lang/gnu-smalltalk/Manifest                   |  1 +
 dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild | 80 +++++++++++++++++++++++
 2 files changed, 81 insertions(+)

diff --git a/dev-lang/gnu-smalltalk/Manifest b/dev-lang/gnu-smalltalk/Manifest
index 8f45cf0..7c80855 100644
--- a/dev-lang/gnu-smalltalk/Manifest
+++ b/dev-lang/gnu-smalltalk/Manifest
@@ -1 +1,2 @@
 DIST smalltalk-3.2.4.tar.gz 5877496 SHA256 901cc7090a1fa44bc60900a970d207de4aa3bdfdce72bea55114e243bc1eb1b3 SHA512 0854e95fb29c79a9844304651e9b2e3997ced88d7f1a704345f72aedfbae1562df0a2a2cc92ed7909e0ce22e275bb37d1592fe16079e3895cd8b79f3212cea3e WHIRLPOOL 461f07278737fbb0e5f08d18ef4f5c3678a19aef61c895e7ede7c1f74720e99bc44d347730e68a94827abfaf24c69317e2acc67ccc4bdc8cdb05ec164d5894cb
+DIST smalltalk-3.2.5.tar.gz 5779293 SHA256 06e574e818ec49f0555d948ae53b1453d8c1df59ef597dad911a4fd1ffba1cce SHA512 385e5fba2acb8870759e5178282210c09c45685d0cf776bc50f4ed10c9afacf9164547ba8099ea3ed9a92a2a253aa9c2b011a7a9f2dff47ea9cfdf3b42029ebc WHIRLPOOL 3c7f1bd451eae1372d06196e1dc8408a83d8a717e67f09be4b6172d0243bca71a11d298ac9e5946a2599c6322b2ef7c204fd54d41c818151661c04af4aa89f08

diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
new file mode 100644
index 00000000..bd46fcd
--- /dev/null
+++ b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit elisp-common flag-o-matic eutils multilib
+
+DESCRIPTION="GNU Smalltalk"
+HOMEPAGE="http://smalltalk.gnu.org"
+SRC_URI="mirror://gnu/smalltalk/smalltalk-${PV}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="tk readline emacs gtk gmp"
+
+DEPEND="app-arch/zip
+	sys-libs/gdbm
+	sys-apps/debianutils
+	dev-libs/libsigsegv
+	virtual/libffi
+	emacs? ( virtual/emacs )
+	readline? ( sys-libs/readline )
+	tk? ( dev-lang/tk )
+	gtk? ( =x11-libs/gtk+-2* )
+	gmp? ( dev-libs/gmp )"
+RDEPEND=""
+
+S="${WORKDIR}/smalltalk-${PV}"
+
+SITEFILE=50gnu-smalltalk-gentoo.el
+
+src_prepare() {
+	# fix misuse of the Tcl API, bug 492710
+	epatch "${FILESDIR}"/${PN}-3.2_use-result.patch
+}
+
+src_configure() {
+	replace-flags '-O3' '-O2'
+	econf \
+		--libdir=/usr/$(get_libdir) \
+		--with-system-libsigsegv \
+		--with-system-libffi \
+		--with-system-libltdl \
+		$(use_with emacs emacs) \
+		$(use_with readline readline) \
+		$(use_with gmp gmp) \
+		$(use_with tk tcl /usr/$(get_libdir)) \
+		$(use_with tk tk /usr/$(get_libdir)) \
+		$(use_enable gtk gtk)
+}
+
+src_compile() {
+	emake || die "emake failed"
+	use emacs && elisp-compile *.el
+}
+
+src_install() {
+	emake DESTDIR="${D}" install || die
+	dodoc AUTHORS COPYING* ChangeLog NEWS README THANKS TODO
+	if use emacs; then
+		elisp-install "${PN}" *.el *.elc
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+	fperms 0444 /usr/share/smalltalk/packages.xml
+	# Fix QA notice complaining about dangling symlink.
+	# There's probably a better way to do this but I couldn't find it.
+	pushd "${D}"/usr/share/man/man1
+	rm gst-reload.1
+	ln -s $(find . -name "gst-load*") gst-reload.1
+	popd
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/
@ 2016-09-12 12:37 Daniel Campbell
  0 siblings, 0 replies; 3+ messages in thread
From: Daniel Campbell @ 2016-09-12 12:37 UTC (permalink / raw
  To: gentoo-commits

commit:     6ca40c221ea37bcd626a75ea93be8d9143afb5a9
Author:     Daniel Campbell <zlg <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 12 12:35:29 2016 +0000
Commit:     Daniel Campbell <zlg <AT> gentoo <DOT> org>
CommitDate: Mon Sep 12 12:37:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca40c22

dev-lang/gnu-smalltalk: Fix src_prepare per 593580

Gentoo-Bug: #593580
Gentoo-Bug-URL: https://bugs.gentoo.org/593580

Package-Manager: portage-2.3.0

 dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
index bd46fcd..6540cb9 100644
--- a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
+++ b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
@@ -33,6 +33,7 @@ SITEFILE=50gnu-smalltalk-gentoo.el
 src_prepare() {
 	# fix misuse of the Tcl API, bug 492710
 	epatch "${FILESDIR}"/${PN}-3.2_use-result.patch
+	default
 }
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/
@ 2018-03-10 12:23 Pacho Ramos
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2018-03-10 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     443ff62b221b0a82ddf7d3afe1d24b9aadd850f0
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 10 12:14:53 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Mar 10 12:21:29 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=443ff62b

dev-lang/gnu-smalltalk: Update maintainer due to bug #220130

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-lang/gnu-smalltalk/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dev-lang/gnu-smalltalk/metadata.xml b/dev-lang/gnu-smalltalk/metadata.xml
index c2284a39df7..e7804d3fbd2 100644
--- a/dev-lang/gnu-smalltalk/metadata.xml
+++ b/dev-lang/gnu-smalltalk/metadata.xml
@@ -1,9 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>pchrist@gentoo.org</email>
-  </maintainer>
   <longdescription>
     GNU Smalltalk is a free implementation of the Smalltalk-80
     language which runs on most versions on Unix and, in general,


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-03-10 12:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-12 12:37 [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/ Daniel Campbell
  -- strict thread matches above, loose matches on Subject: below --
2018-03-10 12:23 Pacho Ramos
2016-09-12  8:17 Daniel Campbell

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