public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/files/, dev-lang/gnu-smalltalk/
@ 2017-01-22 14:14 Manuel Rüger
  0 siblings, 0 replies; 2+ messages in thread
From: Manuel Rüger @ 2017-01-22 14:14 UTC (permalink / raw
  To: gentoo-commits

commit:     5732b3b23369ed142f83c22e32960473f467b285
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 22 14:13:03 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 14:13:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5732b3b2

dev-lang/gnu-smalltalk: Remove old

Package-Manager: portage-2.3.3

 dev-lang/gnu-smalltalk/Manifest                    |  1 -
 .../files/SequenceableCollection-size-3.2.4.patch  | 23 -------
 .../gnu-smalltalk/gnu-smalltalk-3.2.4-r1.ebuild    | 75 ----------------------
 dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild  | 73 ---------------------
 4 files changed, 172 deletions(-)

diff --git a/dev-lang/gnu-smalltalk/Manifest b/dev-lang/gnu-smalltalk/Manifest
index 7c80855..7b13eb1 100644
--- a/dev-lang/gnu-smalltalk/Manifest
+++ b/dev-lang/gnu-smalltalk/Manifest
@@ -1,2 +1 @@
-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/files/SequenceableCollection-size-3.2.4.patch b/dev-lang/gnu-smalltalk/files/SequenceableCollection-size-3.2.4.patch
deleted file mode 100644
index 1842e46..00000000
--- a/dev-lang/gnu-smalltalk/files/SequenceableCollection-size-3.2.4.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/kernel/SeqCollect.st
-+++ b/kernel/SeqCollect.st
-@@ -1104,9 +1104,16 @@ some access and manipulation methods.'>
- 	^count
-     ]
- 
-+    size [
-+	"Answer a dummy size of 0, so that SequenceableCollection>>#do: works."
-+
-+	<category: 'testing collections'>
-+	^0
-+    ]
-+
-     growSize [
- 	<category: 'private methods'>
--	^self size
-+	^(self size max: 8)
-     ]
- 
-     swap: anIndex with: anotherIndex [
--- 
-1.7.2.5
-

diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4-r1.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4-r1.ebuild
deleted file mode 100644
index 4f6e1c6..00000000
--- a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# 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() {
-	epatch "${FILESDIR}"/SequenceableCollection-size-3.2.4.patch
-	# fix misuse of the Tcl API, bug 492710
-	epatch "${FILESDIR}"/gnu-smalltalk-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
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild
deleted file mode 100644
index 6fbbd56..00000000
--- a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-
-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() {
-	epatch "${FILESDIR}"/SequenceableCollection-size-3.2.4.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
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/files/, dev-lang/gnu-smalltalk/
@ 2018-04-20 20:01 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2018-04-20 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     900b28acd605cd3ed50fcae9697725ee6eef6ccc
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Apr 20 08:13:13 2018 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Apr 20 20:00:48 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=900b28ac

dev-lang/gnu-smalltalk: epatch->PATCHES=()

Also drop unneeded eclasses.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../gnu-smalltalk/files/gnu-smalltalk-3.2_use-result.patch  |  4 ++--
 dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild           | 13 ++++++-------
 2 files changed, 8 insertions(+), 9 deletions(-)

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
index b9f9eb67c75..7f3fb907d89 100644
--- 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
@@ -1,5 +1,5 @@
---- config.h.in	2013-04-07 22:52:21.000000000 -0700
-+++ config.h.in	2016-06-20 16:46:46.560891256 -0700
+--- a/config.h.in
++++ b/config.h.in
 @@ -879,6 +879,13 @@
     #define below would cause a syntax error. */
  #undef _UINT64_T

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 6fe33283768..00461089e25 100644
--- a/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
+++ b/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=6
 
-inherit elisp-common flag-o-matic eutils multilib
+inherit elisp-common flag-o-matic
 
 DESCRIPTION="GNU Smalltalk"
 HOMEPAGE="http://smalltalk.gnu.org"
@@ -29,11 +29,10 @@ S="${WORKDIR}/smalltalk-${PV}"
 
 SITEFILE=50gnu-smalltalk-gentoo.el
 
-src_prepare() {
+PATCHES=(
 	# fix misuse of the Tcl API, bug 492710
-	epatch "${FILESDIR}"/${PN}-3.2_use-result.patch
-	default
-}
+	"${FILESDIR}"/${PN}-3.2_use-result.patch
+)
 
 src_configure() {
 	replace-flags '-O3' '-O2'


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

end of thread, other threads:[~2018-04-20 20:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-20 20:01 [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnu-smalltalk/files/, dev-lang/gnu-smalltalk/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2017-01-22 14:14 Manuel Rüger

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