public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-arch/stuffit/
@ 2017-12-10 16:08 Ulrich Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Müller @ 2017-12-10 16:08 UTC (permalink / raw
  To: gentoo-commits

commit:     5e9039857f163fc92838271f149d6872c438fcbc
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 10 16:07:29 2017 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 10 16:08:12 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e903985

app-arch/stuffit: Update Manifest hashes.

 app-arch/stuffit/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/stuffit/Manifest b/app-arch/stuffit/Manifest
index d8418bf5595..77f484cdf08 100644
--- a/app-arch/stuffit/Manifest
+++ b/app-arch/stuffit/Manifest
@@ -1 +1 @@
-DIST stuffit520.611linux-i386.tar.gz 1955619 SHA256 69ccd8659000f7cdeba640157ed42e360b2e448c8e8333b1db491f2c4daf7998 SHA512 a1d4631c2d238b49c710816cd5ed8a01dcf52c29b870297b8dfd76fb0cb6e725c5b0f9d4a6c155c7b6980005df52fc4597632f72e90f00bf93ad80a28972270a WHIRLPOOL 438a33133d959879d81cca96a2659b82ae07c3cd4b137904f3e02fbbedac6a183ba411ab4e864e3bfa0bee2b27531bfbbaab7928d138640069e01bbc605669cb
+DIST stuffit520.611linux-i386.tar.gz 1955619 BLAKE2B fb80abef29d266c93747b3359c62840afa15a32786a82ee01cab22cf0eddad750817c87b767632df5bb2ef681c1c9dd6dfe136dae388f8390bcab0b137a2c0bc SHA512 a1d4631c2d238b49c710816cd5ed8a01dcf52c29b870297b8dfd76fb0cb6e725c5b0f9d4a6c155c7b6980005df52fc4597632f72e90f00bf93ad80a28972270a


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

* [gentoo-commits] repo/gentoo:master commit in: app-arch/stuffit/
@ 2017-12-29 13:17 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2017-12-29 13:17 UTC (permalink / raw
  To: gentoo-commits

commit:     7577e56e13fbbc97d9e4c73db9cc83836656ea48
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 10:27:26 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 13:15:47 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7577e56e

app-arch/stuffit: Port to EAPI 6

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-arch/stuffit/stuffit-5.2.0.611.ebuild | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/app-arch/stuffit/stuffit-5.2.0.611.ebuild b/app-arch/stuffit/stuffit-5.2.0.611.ebuild
index e6853abaea7..2e6528ed212 100644
--- a/app-arch/stuffit/stuffit-5.2.0.611.ebuild
+++ b/app-arch/stuffit/stuffit-5.2.0.611.ebuild
@@ -1,10 +1,13 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 MY_P="stuffit520.611linux-i386"
+
 DESCRIPTION="Aladdin Software's StuffIt and StuffIt Expander"
 HOMEPAGE="http://www.stuffit.com/"
-SRC_URI="http://my.smithmicro.com/downloads/files/stuffit520.611linux-i386.tar.gz"
+SRC_URI="http://my.smithmicro.com/downloads/files/${MY_P}.tar.gz"
 
 LICENSE="Stuffit"
 SLOT="0"
@@ -14,7 +17,7 @@ RESTRICT="fetch strip"
 
 S="${WORKDIR}"
 
-INSTALLDIR="/opt/stuffit"
+INSTALLDIR=/opt/stuffit
 
 pkg_nofetch() {
 	einfo "Please download stuffit from"
@@ -27,7 +30,6 @@ pkg_nofetch() {
 }
 
 src_install() {
-
 	# First do the binaries
 	exeinto ${INSTALLDIR}/bin
 	doexe bin/stuff
@@ -39,20 +41,20 @@ src_install() {
 
 	# Now the documentation
 	docinto stuff
-	dodoc doc/stuff/README
-	dohtml doc/stuff/stuff.html
+	dodoc doc/stuff/{README,stuff.html}
 	docinto unstuff
-	dodoc doc/unstuff/README
-	dohtml doc/unstuff/unstuff.html
+	dodoc doc/unstuff/{README,unstuff.html}
 
 	# And now the man pages
 	doman man/man1/*
 
 	# Also add the executables to the path
 	dodir /etc/env.d
-	echo -e "PATH=${INSTALLDIR}/bin\nROOTPATH=${INSTALLDIR}/bin" > \
-		"${D}"/etc/env.d/10stuffit
-
+	cat > "${T}"/10stuffit <<- EOF || die
+		PATH="${EPREFIX}${INSTALLDIR}/bin"
+		ROOTPATH="${EPREFIX}${INSTALLDIR}/bin"
+	EOF
+	doenvd "${T}"/10stuffit
 }
 
 pkg_postinst() {


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

* [gentoo-commits] repo/gentoo:master commit in: app-arch/stuffit/
@ 2018-12-18 17:01 Ben Kohler
  0 siblings, 0 replies; 4+ messages in thread
From: Ben Kohler @ 2018-12-18 17:01 UTC (permalink / raw
  To: gentoo-commits

commit:     67d71ec9572433653d8ae0bed50b8d37ab066df4
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 18 17:00:58 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Dec 18 17:01:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67d71ec9

app-arch/stuffit: fix misuse of ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 app-arch/stuffit/stuffit-5.2.0.611.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-arch/stuffit/stuffit-5.2.0.611.ebuild b/app-arch/stuffit/stuffit-5.2.0.611.ebuild
index 2e6528ed212..f951829d1fe 100644
--- a/app-arch/stuffit/stuffit-5.2.0.611.ebuild
+++ b/app-arch/stuffit/stuffit-5.2.0.611.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://my.smithmicro.com/downloads/files/${MY_P}.tar.gz"
 
 LICENSE="Stuffit"
 SLOT="0"
-KEYWORDS="-* x86 amd64"
+KEYWORDS="-* amd64 x86"
 IUSE=""
 RESTRICT="fetch strip"
 
@@ -22,7 +22,7 @@ INSTALLDIR=/opt/stuffit
 pkg_nofetch() {
 	einfo "Please download stuffit from"
 	einfo "${SRC_URI}"
-	einfo "and put the file in ${DISTDIR}"
+	einfo "and place the file in your DISTDIR directory."
 	einfo
 	einfo "Note that StuffIt requires registration within 30 days,"
 	einfo "but StuffIt Expander is freeware."


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

* [gentoo-commits] repo/gentoo:master commit in: app-arch/stuffit/
@ 2022-07-02 20:07 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2022-07-02 20:07 UTC (permalink / raw
  To: gentoo-commits

commit:     bbe7d4700dcc4804159d614c6c7b2ce8ec3b6fef
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 20:07:00 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 20:07:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbe7d470

app-arch/stuffit: update EAPI 6 -> 8

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 ...tuffit-5.2.0.611.ebuild => stuffit-5.2.0.611-r1.ebuild} | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/app-arch/stuffit/stuffit-5.2.0.611.ebuild b/app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild
similarity index 89%
rename from app-arch/stuffit/stuffit-5.2.0.611.ebuild
rename to app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild
index f951829d1fe4..4edbd3e01728 100644
--- a/app-arch/stuffit/stuffit-5.2.0.611.ebuild
+++ b/app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild
@@ -1,23 +1,21 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 MY_P="stuffit520.611linux-i386"
 
 DESCRIPTION="Aladdin Software's StuffIt and StuffIt Expander"
 HOMEPAGE="http://www.stuffit.com/"
 SRC_URI="http://my.smithmicro.com/downloads/files/${MY_P}.tar.gz"
+S="${WORKDIR}"
 
 LICENSE="Stuffit"
 SLOT="0"
 KEYWORDS="-* amd64 x86"
-IUSE=""
 RESTRICT="fetch strip"
 
-S="${WORKDIR}"
-
-INSTALLDIR=/opt/stuffit
+INSTALLDIR="/opt/stuffit"
 
 pkg_nofetch() {
 	einfo "Please download stuffit from"
@@ -49,12 +47,10 @@ src_install() {
 	doman man/man1/*
 
 	# Also add the executables to the path
-	dodir /etc/env.d
-	cat > "${T}"/10stuffit <<- EOF || die
+	newenvd - 10stuffit <<- EOF
 		PATH="${EPREFIX}${INSTALLDIR}/bin"
 		ROOTPATH="${EPREFIX}${INSTALLDIR}/bin"
 	EOF
-	doenvd "${T}"/10stuffit
 }
 
 pkg_postinst() {


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

end of thread, other threads:[~2022-07-02 20:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-02 20:07 [gentoo-commits] repo/gentoo:master commit in: app-arch/stuffit/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2018-12-18 17:01 Ben Kohler
2017-12-29 13:17 David Seifert
2017-12-10 16:08 Ulrich Müller

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