public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/, profiles/, dev-lang/gnu-smalltalk/files/
@ 2018-12-11 13:39 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2018-12-11 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     63ccbf790c00fe5de46d99cf0a7941d67545bae9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 11 13:37:49 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 11 13:37:49 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63ccbf79

dev-lang/gnu-smalltalk: Remove last-rited pkg

Closes: https://bugs.gentoo.org/645690
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-lang/gnu-smalltalk/Manifest                    |  1 -
 .../gnu-smalltalk/files/50gnu-smalltalk-gentoo.el  |  7 --
 .../files/gnu-smalltalk-3.2_use-result.patch       | 16 -----
 dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild  | 79 ----------------------
 dev-lang/gnu-smalltalk/metadata.xml                | 11 ---
 profiles/package.mask                              |  4 --
 6 files changed, 118 deletions(-)

diff --git a/dev-lang/gnu-smalltalk/Manifest b/dev-lang/gnu-smalltalk/Manifest
deleted file mode 100644
index 31ec35ada94..00000000000
--- a/dev-lang/gnu-smalltalk/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST smalltalk-3.2.5.tar.gz 5779293 BLAKE2B 67eb58be2d6403cbd742f3c9dddb2d8f3cf65bbcc4127785b32501ca2c4c0fef2a08cea3faa7dc991deae27f5a260e2c772fc5f628f66a2ef5aca440e42ad3ef SHA512 385e5fba2acb8870759e5178282210c09c45685d0cf776bc50f4ed10c9afacf9164547ba8099ea3ed9a92a2a253aa9c2b011a7a9f2dff47ea9cfdf3b42029ebc

diff --git a/dev-lang/gnu-smalltalk/files/50gnu-smalltalk-gentoo.el b/dev-lang/gnu-smalltalk/files/50gnu-smalltalk-gentoo.el
deleted file mode 100644
index e9e18d43bb3..00000000000
--- a/dev-lang/gnu-smalltalk/files/50gnu-smalltalk-gentoo.el
+++ /dev/null
@@ -1,7 +0,0 @@
-
-;;; gnu-smalltalk site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'smalltalk-mode "smalltalk-mode" "Autoload for smalltalk-mode" t)
-(autoload 'gst "gst-mode" "Autoload for gst" t)
-(add-to-list 'auto-mode-alist '("\\.st\\'" . smalltalk-mode))

diff --git a/dev-lang/gnu-smalltalk/files/gnu-smalltalk-3.2_use-result.patch b/dev-lang/gnu-smalltalk/files/gnu-smalltalk-3.2_use-result.patch
deleted file mode 100644
index 7f3fb907d89..00000000000
--- a/dev-lang/gnu-smalltalk/files/gnu-smalltalk-3.2_use-result.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/config.h.in
-+++ b/config.h.in
-@@ -879,6 +879,13 @@
-    #define below would cause a syntax error. */
- #undef _UINT64_T
- 
-+/* Kludgey fix for Gentoo bug #492710, caused by improper use of the Tcl API.
-+ * Upstream should be using Tcl_SetObjResult, Tcl_GetObjResult, and/or
-+ * Tcl_GetStringResult. This is the simplest way for us to fix it, and should
-+ * be removed as soon as GST uses the Tcl interface correctly.
-+ */
-+#define USE_INTERP_RESULT 1
-+
- /* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
-    <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
-    #define below would cause a syntax error. */

diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
deleted file mode 100644
index 00461089e25..00000000000
--- a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit elisp-common flag-o-matic
-
-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
-
-PATCHES=(
-	# fix misuse of the Tcl API, bug 492710
-	"${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
-}

diff --git a/dev-lang/gnu-smalltalk/metadata.xml b/dev-lang/gnu-smalltalk/metadata.xml
deleted file mode 100644
index e7804d3fbd2..00000000000
--- a/dev-lang/gnu-smalltalk/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <longdescription>
-    GNU Smalltalk is a free implementation of the Smalltalk-80
-    language which runs on most versions on Unix and, in general,
-    everywhere you can find a POSIX-compliance library. An uncommon
-    feature of it is that it is well-versed to scripting tasks and
-    headless processing.
-  </longdescription>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index ddcfad951ca..5c33ca5555d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -218,10 +218,6 @@ media-video/sswf
 # Replaced by libunibreak and no reverse deps (#640974). Removal in a month.
 dev-libs/liblinebreak
 
-# Pacho Ramos <pacho@gentoo.org> (11 Nov 2018)
-# Fails at runtime (#645690). Removal in a month.
-dev-lang/gnu-smalltalk
-
 # Pacho Ramos <pacho@gentoo.org> (11 Nov 2018)
 # Fails to build (#662000), not compatible with kernel-4, use kernel driver rtsx_pci
 # instead. Removal in a month.


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

only message in thread, other threads:[~2018-12-11 13:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-11 13:39 [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/, profiles/, dev-lang/gnu-smalltalk/files/ Michał Górny

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