* [gentoo-commits] repo/gentoo:master commit in: net-mail/randomsig/
@ 2017-11-27 11:24 David Seifert
0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2017-11-27 11:24 UTC (permalink / raw
To: gentoo-commits
commit: 1814c095b85f98711b7299e4d0303a9df661dd6a
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 27 11:11:50 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Nov 27 11:21:04 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1814c095
net-mail/randomsig: Port to EAPI 6
Package-Manager: Portage-2.3.16, Repoman-2.3.6
net-mail/randomsig/Manifest | 2 +-
net-mail/randomsig/randomsig-1.10.0.ebuild | 38 ++++++++++++++++--------------
2 files changed, 21 insertions(+), 19 deletions(-)
diff --git a/net-mail/randomsig/Manifest b/net-mail/randomsig/Manifest
index 0cc9f9ad79c..859bf25456c 100644
--- a/net-mail/randomsig/Manifest
+++ b/net-mail/randomsig/Manifest
@@ -1 +1 @@
-DIST randomsig-v1.10.0.tar.gz 24910 SHA256 2e01bfbbc7f5dfe4e1f773fbfa2209b1e7f4074997be42204abbc6bf045ef9c6 SHA512 eb47bd017dee819e7b7151a47f5aca03e688e3aa9a4b9bf4882a4df51c6fcc1880e382b02d68d0c1d3a773b1179d5abb0782ec4d6a7649be226151e9e2579408 WHIRLPOOL ddae4cf9101cfd0406945191c0565c5315775f8691b36007a5b6175ad1977ed1ee9755a326839965a72102e944f8a58050ea6fc6e6b63274415c20a6896ef167
+DIST randomsig-v1.10.0.tar.gz 24910 BLAKE2B 13bfbf39cea7c7d348f5a91dd5700a2e91a93e574e6f1c12afd86d72c7868fd1a89123f52c897d9fff0b765e968980bee69927435a1b24f7f15e81b5f6a025ab SHA512 eb47bd017dee819e7b7151a47f5aca03e688e3aa9a4b9bf4882a4df51c6fcc1880e382b02d68d0c1d3a773b1179d5abb0782ec4d6a7649be226151e9e2579408
diff --git a/net-mail/randomsig/randomsig-1.10.0.ebuild b/net-mail/randomsig/randomsig-1.10.0.ebuild
index f3b6f0000e8..7ef507fc5e1 100644
--- a/net-mail/randomsig/randomsig-1.10.0.ebuild
+++ b/net-mail/randomsig/randomsig-1.10.0.ebuild
@@ -1,34 +1,36 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
+EAPI=6
+
MY_P=${PN}-v${PV}
-S=${WORKDIR}/${MY_P}
+
DESCRIPTION="randomsig - perl script for generating random .signature files"
HOMEPAGE="http://suso.suso.org/programs/randomsig/"
-DEPEND="dev-lang/perl"
SRC_URI="http://suso.suso.org/programs/randomsig/downloads/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 s390 sparc x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- cp Makefile Makefile.orig
- cp randomsig randomsig.orig
- sed -e "s:/usr/local/bin:/usr/bin:" \
- -e "s:/usr/local/etc:/etc:" \
- Makefile.orig > Makefile
-
- sed -e "s:/usr/local/etc:/etc:" \
- randomsig.orig > randomsig
+
+RDEPEND="dev-lang/perl"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+ default
+
+ sed -e "s:/usr/local/bin:${EPREFIX}/usr/bin:" \
+ -e "s:/usr/local/etc:${EPREFIX}/etc:" \
+ -i Makefile || die
+ sed -e "s:/usr/local/etc:${EPREFIX}/etc:" \
+ -i randomsig || die
}
-src_install () {
+src_install() {
dobin randomsig
- dodoc README BUGS LICENSE MANIFEST COPYING TODO
+ einstalldocs
insinto /etc/randomsig
doins .randomsigrc .sigquotes .sigcancel .sigread
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/randomsig/
@ 2024-03-16 12:13 Conrad Kostecki
0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2024-03-16 12:13 UTC (permalink / raw
To: gentoo-commits
commit: a25387739f03c8fba1caf9a91cc220c35793b989
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Tue Feb 6 18:31:45 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 12:13:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2538773
net-mail/randomsig: EAPI8 bump, use HTTPS, fix LICENSE
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/35203
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-mail/randomsig/randomsig-1.10.0-r1.ebuild | 36 +++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/net-mail/randomsig/randomsig-1.10.0-r1.ebuild b/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
new file mode 100644
index 000000000000..433e05933e0f
--- /dev/null
+++ b/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${PN}-v${PV}"
+
+DESCRIPTION="Perl script for generating random .signature files"
+HOMEPAGE="https://suso.suso.org/xulu/Randomsig"
+SRC_URI="https://suso.suso.org/programs/randomsig/downloads/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~s390 ~sparc ~x86"
+
+RDEPEND="dev-lang/perl"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ default
+
+ sed -e "s:/usr/local/bin:${EPREFIX}/usr/bin:" \
+ -e "s:/usr/local/etc:${EPREFIX}/etc:" \
+ -i Makefile || die
+ sed -e "s:/usr/local/etc:${EPREFIX}/etc:" \
+ -i randomsig || die
+}
+
+src_install() {
+ dobin randomsig
+ einstalldocs
+
+ insinto /etc/randomsig
+ doins .randomsigrc .sigquotes .sigcancel .sigread
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/randomsig/
@ 2024-04-19 9:38 Arthur Zamarin
0 siblings, 0 replies; 5+ messages in thread
From: Arthur Zamarin @ 2024-04-19 9:38 UTC (permalink / raw
To: gentoo-commits
commit: f9c2b1df1cec39b0271670d41f6f87b5ba931f3f
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 09:38:06 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 09:38:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9c2b1df
net-mail/randomsig: Stabilize 1.10.0-r1 sparc, #930224
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-mail/randomsig/randomsig-1.10.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-mail/randomsig/randomsig-1.10.0-r1.ebuild b/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
index 433e05933e0f..62630254be83 100644
--- a/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
+++ b/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~s390 sparc ~x86"
RDEPEND="dev-lang/perl"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/randomsig/
@ 2024-04-19 10:46 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2024-04-19 10:46 UTC (permalink / raw
To: gentoo-commits
commit: 24edab6d973cca67a6d00cad130a2ce809fc85f9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 10:45:40 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 10:45:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24edab6d
net-mail/randomsig: Stabilize 1.10.0-r1 x86, #930224
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-mail/randomsig/randomsig-1.10.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-mail/randomsig/randomsig-1.10.0-r1.ebuild b/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
index 62630254be83..40298dfff0d9 100644
--- a/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
+++ b/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~s390 sparc ~x86"
+KEYWORDS="~amd64 ~s390 sparc x86"
RDEPEND="dev-lang/perl"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/randomsig/
@ 2024-04-19 11:19 Arthur Zamarin
0 siblings, 0 replies; 5+ messages in thread
From: Arthur Zamarin @ 2024-04-19 11:19 UTC (permalink / raw
To: gentoo-commits
commit: eed9888ecf0e44297255b487b7b6bff80833b043
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 11:16:52 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 11:16:52 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eed9888e
net-mail/randomsig: drop 1.10.0, EAPI6--
Closes: https://bugs.gentoo.org/930224
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-mail/randomsig/randomsig-1.10.0.ebuild | 37 ------------------------------
1 file changed, 37 deletions(-)
diff --git a/net-mail/randomsig/randomsig-1.10.0.ebuild b/net-mail/randomsig/randomsig-1.10.0.ebuild
deleted file mode 100644
index f850d7cfcf8f..000000000000
--- a/net-mail/randomsig/randomsig-1.10.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P=${PN}-v${PV}
-
-DESCRIPTION="randomsig - perl script for generating random .signature files"
-HOMEPAGE="http://suso.suso.org/programs/randomsig/"
-SRC_URI="http://suso.suso.org/programs/randomsig/downloads/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~s390 sparc x86"
-
-RDEPEND="dev-lang/perl"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- default
-
- sed -e "s:/usr/local/bin:${EPREFIX}/usr/bin:" \
- -e "s:/usr/local/etc:${EPREFIX}/etc:" \
- -i Makefile || die
- sed -e "s:/usr/local/etc:${EPREFIX}/etc:" \
- -i randomsig || die
-}
-
-src_install() {
- dobin randomsig
- einstalldocs
-
- insinto /etc/randomsig
- doins .randomsigrc .sigquotes .sigcancel .sigread
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-04-19 11:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-19 10:46 [gentoo-commits] repo/gentoo:master commit in: net-mail/randomsig/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-04-19 11:19 Arthur Zamarin
2024-04-19 9:38 Arthur Zamarin
2024-03-16 12:13 Conrad Kostecki
2017-11-27 11:24 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox