public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-shells/scsh/
@ 2016-12-26  0:30 Patrice Clement
  0 siblings, 0 replies; 5+ messages in thread
From: Patrice Clement @ 2016-12-26  0:30 UTC (permalink / raw
  To: gentoo-commits

commit:     e915ad00c95b078330f5d650e09ea51b6117c994
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 00:09:13 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Dec 26 00:29:33 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e915ad00

app-shells/scsh: EAPI 6 bump.

Package-Manager: portage-2.3.0

 app-shells/scsh/scsh-0.6.7-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/scsh/scsh-0.6.7-r2.ebuild b/app-shells/scsh/scsh-0.6.7-r2.ebuild
index a90d936..5761603 100644
--- a/app-shells/scsh/scsh-0.6.7-r2.ebuild
+++ b/app-shells/scsh/scsh-0.6.7-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="ftp://ftp.scsh.net/pub/scsh/${MY_PV}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
 IUSE=""
 
 DEPEND="!dev-scheme/scheme48"


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/scsh/
@ 2017-10-21 16:52 Patrice Clement
  0 siblings, 0 replies; 5+ messages in thread
From: Patrice Clement @ 2017-10-21 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     aae3e2c1bd20cc7ec874bbcceb01c928e28caa47
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 21 12:16:39 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Oct 21 16:51:42 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae3e2c1

app-shells/scsh: clean up old.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-shells/scsh/scsh-0.6.7-r1.ebuild | 43 ------------------------------------
 app-shells/scsh/scsh-0.6.7.ebuild    | 41 ----------------------------------
 2 files changed, 84 deletions(-)

diff --git a/app-shells/scsh/scsh-0.6.7-r1.ebuild b/app-shells/scsh/scsh-0.6.7-r1.ebuild
deleted file mode 100644
index eda1276277a..00000000000
--- a/app-shells/scsh/scsh-0.6.7-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils multilib
-
-MY_PV="${PV%*.*}"
-
-DESCRIPTION="Unix shell embedded in Scheme"
-HOMEPAGE="http://www.scsh.net/"
-SRC_URI="ftp://ftp.scsh.net/pub/scsh/${MY_PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND="!dev-scheme/scheme48"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	epatch "${FILESDIR}/${PV}-Makefile.in-doc-dir-gentoo.patch"
-	epatch "${FILESDIR}/${PV}-Makefile.in-LDFLAGS.patch"
-	epatch "${FILESDIR}/${PV}-Missing-includes.patch"
-}
-
-src_configure() {
-	use amd64 && multilib_toolchain_setup x86
-	SCSH_LIB_DIRS="/usr/$(get_libdir)/${PN}"
-	econf \
-		--libdir=/usr/$(get_libdir) \
-		--includedir=/usr/include \
-		--with-lib-dirs-list=${SCSH_LIB_DIRS}
-}
-
-src_install() {
-	emake -j1 DESTDIR="${D}" install || die "make install failed."
-
-	local ENVD="${T}/50scsh"
-	echo "SCSH_LIB_DIRS=\"${SCSH_LIB_DIRS}\"" > "${ENVD}"
-	doenvd "${ENVD}"
-}

diff --git a/app-shells/scsh/scsh-0.6.7.ebuild b/app-shells/scsh/scsh-0.6.7.ebuild
deleted file mode 100644
index d32f9236bbf..00000000000
--- a/app-shells/scsh/scsh-0.6.7.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils multilib
-
-MY_PV="${PV%*.*}"
-
-DESCRIPTION="Unix shell embedded in Scheme"
-HOMEPAGE="http://www.scsh.net/"
-SRC_URI="ftp://ftp.scsh.net/pub/scsh/${MY_PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ppc sparc x86"
-IUSE=""
-
-DEPEND="!dev-scheme/scheme48"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	epatch "${FILESDIR}/${PV}-Makefile.in-doc-dir-gentoo.patch"
-}
-
-src_configure() {
-	use amd64 && multilib_toolchain_setup x86
-	SCSH_LIB_DIRS="/usr/$(get_libdir)/${PN}"
-	econf \
-		--libdir=/usr/$(get_libdir) \
-		--includedir=/usr/include \
-		--with-lib-dirs-list=${SCSH_LIB_DIRS}
-}
-
-src_install() {
-	emake -j1 DESTDIR="${D}" install || die "make install failed."
-
-	local ENVD="${T}/50scsh"
-	echo "SCSH_LIB_DIRS=\"${SCSH_LIB_DIRS}\"" > "${ENVD}"
-	doenvd "${ENVD}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/scsh/
@ 2017-10-21 16:52 Patrice Clement
  0 siblings, 0 replies; 5+ messages in thread
From: Patrice Clement @ 2017-10-21 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     a9277773e060dbad90ddff48e9d75185e059bb73
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 21 12:15:17 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Oct 21 16:51:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9277773

app-shells/scsh: stable for x86. mark stable for the remaining arches via the ALLARCHES policy.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-shells/scsh/scsh-0.6.7-r2.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/app-shells/scsh/scsh-0.6.7-r2.ebuild b/app-shells/scsh/scsh-0.6.7-r2.ebuild
index b1910140c90..170f8f2f1ea 100644
--- a/app-shells/scsh/scsh-0.6.7-r2.ebuild
+++ b/app-shells/scsh/scsh-0.6.7-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,8 +13,7 @@ SRC_URI="ftp://ftp.scsh.net/pub/scsh/${MY_PV}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
-IUSE=""
+KEYWORDS="amd64 ppc sparc x86"
 
 DEPEND="!dev-scheme/scheme48"
 RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/scsh/
@ 2017-10-21 16:52 Patrice Clement
  0 siblings, 0 replies; 5+ messages in thread
From: Patrice Clement @ 2017-10-21 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     2f8fec58c4a3e0636e46fdf5915c6ed519aeb578
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 21 12:17:32 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Oct 21 16:51:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f8fec58

app-shells/scsh: fix metadata.xml file.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-shells/scsh/metadata.xml | 41 ++++++++++++++++++-----------------------
 1 file changed, 18 insertions(+), 23 deletions(-)

diff --git a/app-shells/scsh/metadata.xml b/app-shells/scsh/metadata.xml
index 317ccdbc433..0d54e8853cd 100644
--- a/app-shells/scsh/metadata.xml
+++ b/app-shells/scsh/metadata.xml
@@ -1,29 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-	<email>scheme@gentoo.org</email>
-	<name>Gentoo Scheme Project</name>
-</maintainer>
-<longdescription>
-Scsh has two main components: a process notation for running programs
-and setting up pipelines and redirections, and a complete syscall
-library for low-level access to the operating system, i.e. to POSIX,
-the least common denominator of more or less all Unices, plus widely
-supported extensions such as symbolic links and BSD sockets. 
+	<maintainer type="project">
+		<email>scheme@gentoo.org</email>
+		<name>Gentoo Scheme Project</name>
+	</maintainer>
+	<longdescription>
+		Scsh has two main components: a process notation for running programs
+		and setting up pipelines and redirections, and a complete syscall
+		library for low-level access to the operating system, i.e. to POSIX,
+		the least common denominator of more or less all Unices, plus widely
+		supported extensions such as symbolic links and BSD sockets. 
 
-Moreover, scsh provides an awk facility for pattern-directed
-computation over streams of records, a rich facility for matching
-regular-expression patterns in strings, event-based interrupt
-handling, user-level threads, a futuristic module system, and an
-interactive environment. 
+		Moreover, scsh provides an awk facility for pattern-directed
+		computation over streams of records, a rich facility for matching
+		regular-expression patterns in strings, event-based interrupt
+		handling, user-level threads, a futuristic module system, and an
+		interactive environment. 
 
-Scsh comes with extensive documentation describing these and other
-features.
-</longdescription>
-<!--
-<use>
-  <flag name='scsh'>Use a non-FHS directory layout</flag>
-</use>
--->
+		Scsh comes with extensive documentation describing these and other
+		features.
+	</longdescription>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/scsh/
@ 2022-07-26 21:36 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2022-07-26 21:36 UTC (permalink / raw
  To: gentoo-commits

commit:     41e61ffd2214f056b3c2b5fd13bdb27730c912f6
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 26 21:35:37 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Jul 26 21:35:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e61ffd

app-shells/scsh: filter LTO (type mismatch)

Closes: https://bugs.gentoo.org/854873
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-shells/scsh/scsh-0.6.7-r3.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-shells/scsh/scsh-0.6.7-r3.ebuild b/app-shells/scsh/scsh-0.6.7-r3.ebuild
index 26d0d047d90b..e42fc36bb8a3 100644
--- a/app-shells/scsh/scsh-0.6.7-r3.ebuild
+++ b/app-shells/scsh/scsh-0.6.7-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # NOTICE: SCSH 0.6.7 is 32bit only
@@ -6,7 +6,7 @@
 
 EAPI=8
 
-inherit multilib
+inherit flag-o-matic multilib
 
 MY_PV="${PV%*.*}"
 
@@ -36,6 +36,9 @@ PATCHES=(
 src_configure() {
 	use amd64 && multilib_toolchain_setup x86
 
+	# bug #854873
+	filter-lto
+
 	export SCSH_LIB_DIRS="/usr/$(get_libdir)/${PN}"
 
 	local myconf=(


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

end of thread, other threads:[~2022-07-26 21:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-26 21:36 [gentoo-commits] repo/gentoo:master commit in: app-shells/scsh/ Maciej Barć
  -- strict thread matches above, loose matches on Subject: below --
2017-10-21 16:52 Patrice Clement
2017-10-21 16:52 Patrice Clement
2017-10-21 16:52 Patrice Clement
2016-12-26  0:30 Patrice Clement

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