diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-12-11 14:37:49 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-12-11 14:37:49 +0100 |
commit | 63ccbf790c00fe5de46d99cf0a7941d67545bae9 (patch) | |
tree | a0cbc8b12e5ff68f891ba20adbca44ba2b93a30c /dev-lang | |
parent | dev-db/maatkit: Remove last-rited pkg (diff) | |
download | gentoo-63ccbf790c00fe5de46d99cf0a7941d67545bae9.tar.gz gentoo-63ccbf790c00fe5de46d99cf0a7941d67545bae9.tar.bz2 gentoo-63ccbf790c00fe5de46d99cf0a7941d67545bae9.zip |
dev-lang/gnu-smalltalk: Remove last-rited pkg
Closes: https://bugs.gentoo.org/645690
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/gnu-smalltalk/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/gnu-smalltalk/files/50gnu-smalltalk-gentoo.el | 7 | ||||
-rw-r--r-- | dev-lang/gnu-smalltalk/files/gnu-smalltalk-3.2_use-result.patch | 16 | ||||
-rw-r--r-- | dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild | 79 | ||||
-rw-r--r-- | dev-lang/gnu-smalltalk/metadata.xml | 11 |
5 files changed, 0 insertions, 114 deletions
diff --git a/dev-lang/gnu-smalltalk/Manifest b/dev-lang/gnu-smalltalk/Manifest deleted file mode 100644 index 31ec35ada94f..000000000000 --- 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 e9e18d43bb3c..000000000000 --- 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 7f3fb907d895..000000000000 --- 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 00461089e252..000000000000 --- 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 e7804d3fbd23..000000000000 --- 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> |