public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sys-process/snooze/
@ 2022-05-18 15:16 Tony Olagbaiye
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Olagbaiye @ 2022-05-18 15:16 UTC (permalink / raw
  To: gentoo-commits

commit:     0e6a80483f9c8f6ab903e7f0d6b35dbbcf0ea610
Author:     Tony Olagbaiye <bqv <AT> fron <DOT> io>
AuthorDate: Wed May 18 15:16:11 2022 +0000
Commit:     Tony Olagbaiye <gentoo <AT> fron <DOT> io>
CommitDate: Wed May 18 15:16:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0e6a8048

sys-process/snooze: new package, add 0.5, 9999

Signed-off-by: Tony Olagbaiye <bqv <AT> fron.io>

 sys-process/snooze/Manifest           |  1 +
 sys-process/snooze/snooze-0.5.ebuild  |  1 +
 sys-process/snooze/snooze-9999.ebuild | 22 ++++++++++++++++++++++
 3 files changed, 24 insertions(+)

diff --git a/sys-process/snooze/Manifest b/sys-process/snooze/Manifest
new file mode 100644
index 000000000..406981ab9
--- /dev/null
+++ b/sys-process/snooze/Manifest
@@ -0,0 +1 @@
+DIST snooze-0.5.tar.gz 8008 BLAKE2B e83a14dc1effc429846d1877d15e81c9b0dab8c4583a7d0cebbd731b8565c215e5182ee0f017b5556ba6ac391063cf0f60156d4a8de1e0299d8381bd4319dc96 SHA512 889502e3bc1265fbac99e3af5f1023729b52299e358c87783c339f1cf3004e8c8ba26c7f8ff877c047d79c7c98c95e5ba1b3d5e833c8222d05a55d09804e7fb1

diff --git a/sys-process/snooze/snooze-0.5.ebuild b/sys-process/snooze/snooze-0.5.ebuild
new file mode 120000
index 000000000..fff5de8a5
--- /dev/null
+++ b/sys-process/snooze/snooze-0.5.ebuild
@@ -0,0 +1 @@
+snooze-9999.ebuild
\ No newline at end of file

diff --git a/sys-process/snooze/snooze-9999.ebuild b/sys-process/snooze/snooze-9999.ebuild
new file mode 100644
index 000000000..53b600639
--- /dev/null
+++ b/sys-process/snooze/snooze-9999.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Run a command at a particular time"
+HOMEPAGE="https://github.com/leahneukirchen/${PN}"
+if [[ "${PV}" = 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="${HOMEPAGE}.git"
+else
+	SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="amd64 x86"
+fi
+
+LICENSE="CC0-1.0"
+SLOT="0"
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX=/usr install
+	dodoc {README,NEWS}.md
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-process/snooze/
@ 2022-05-18 19:49 Tony Olagbaiye
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Olagbaiye @ 2022-05-18 19:49 UTC (permalink / raw
  To: gentoo-commits

commit:     101320a44ad90548e7678e1fe9eab562e4d34ae0
Author:     Tony Olagbaiye <bqv <AT> fron <DOT> io>
AuthorDate: Wed May 18 19:36:30 2022 +0000
Commit:     Tony Olagbaiye <gentoo <AT> fron <DOT> io>
CommitDate: Wed May 18 19:36:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=101320a4

sys-process/snooze: simplify ebuilds

Signed-off-by: Tony Olagbaiye <bqv <AT> fron.io>

 sys-process/snooze/snooze-0.5.ebuild  | 18 +++++++++++++++++-
 sys-process/snooze/snooze-9999.ebuild | 10 +++-------
 2 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/sys-process/snooze/snooze-0.5.ebuild b/sys-process/snooze/snooze-0.5.ebuild
deleted file mode 120000
index fff5de8a5..000000000
--- a/sys-process/snooze/snooze-0.5.ebuild
+++ /dev/null
@@ -1 +0,0 @@
-snooze-9999.ebuild
\ No newline at end of file

diff --git a/sys-process/snooze/snooze-0.5.ebuild b/sys-process/snooze/snooze-0.5.ebuild
new file mode 100644
index 000000000..19a93cb6c
--- /dev/null
+++ b/sys-process/snooze/snooze-0.5.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Run a command at a particular time"
+HOMEPAGE="https://github.com/leahneukirchen/${PN}"
+SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="CC0-1.0"
+SLOT="0"
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX=/usr install
+	dodoc {README,NEWS}.md
+}

diff --git a/sys-process/snooze/snooze-9999.ebuild b/sys-process/snooze/snooze-9999.ebuild
index 53b600639..204622917 100644
--- a/sys-process/snooze/snooze-9999.ebuild
+++ b/sys-process/snooze/snooze-9999.ebuild
@@ -5,13 +5,9 @@ EAPI=7
 
 DESCRIPTION="Run a command at a particular time"
 HOMEPAGE="https://github.com/leahneukirchen/${PN}"
-if [[ "${PV}" = 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="${HOMEPAGE}.git"
-else
-	SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 x86"
-fi
+
+inherit git-r3
+EGIT_REPO_URI="${HOMEPAGE}.git"
 
 LICENSE="CC0-1.0"
 SLOT="0"


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-process/snooze/
  2022-05-24 19:07 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2022-05-24 19:07 ` Andrew Ammerlaan
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2022-05-24 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     578bab56066bb129ce9c0dc5c4f07e8fe8e1312a
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue May 24 19:07:16 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue May 24 19:07:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=578bab56

sys-process/snooze: minor QA: remove PN from metadata vars

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sys-process/snooze/snooze-0.5.ebuild  | 4 ++--
 sys-process/snooze/snooze-9999.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-process/snooze/snooze-0.5.ebuild b/sys-process/snooze/snooze-0.5.ebuild
index 19a93cb6c..c6b84b601 100644
--- a/sys-process/snooze/snooze-0.5.ebuild
+++ b/sys-process/snooze/snooze-0.5.ebuild
@@ -4,8 +4,8 @@
 EAPI=7
 
 DESCRIPTION="Run a command at a particular time"
-HOMEPAGE="https://github.com/leahneukirchen/${PN}"
-SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/leahneukirchen/snooze"
+SRC_URI="https://github.com/leahneukirchen/snooze/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 KEYWORDS="~amd64 ~x86"
 
 LICENSE="CC0-1.0"

diff --git a/sys-process/snooze/snooze-9999.ebuild b/sys-process/snooze/snooze-9999.ebuild
index 204622917..e7df9d007 100644
--- a/sys-process/snooze/snooze-9999.ebuild
+++ b/sys-process/snooze/snooze-9999.ebuild
@@ -4,10 +4,10 @@
 EAPI=7
 
 DESCRIPTION="Run a command at a particular time"
-HOMEPAGE="https://github.com/leahneukirchen/${PN}"
+HOMEPAGE="https://github.com/leahneukirchen/snooze"
 
 inherit git-r3
-EGIT_REPO_URI="${HOMEPAGE}.git"
+EGIT_REPO_URI="https://github.com/leahneukirchen/snooze.git"
 
 LICENSE="CC0-1.0"
 SLOT="0"


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-process/snooze/
@ 2024-05-15  0:59 Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-05-15  0:59 UTC (permalink / raw
  To: gentoo-commits

commit:     d374aa73067476c238c5b4695a691810938ac903
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Tue May 14 23:50:49 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 00:59:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d374aa73

sys-process/snooze: fix variable order

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 sys-process/snooze/snooze-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/snooze/snooze-0.5.ebuild b/sys-process/snooze/snooze-0.5.ebuild
index c6b84b601a..a7f68d474d 100644
--- a/sys-process/snooze/snooze-0.5.ebuild
+++ b/sys-process/snooze/snooze-0.5.ebuild
@@ -6,10 +6,10 @@ EAPI=7
 DESCRIPTION="Run a command at a particular time"
 HOMEPAGE="https://github.com/leahneukirchen/snooze"
 SRC_URI="https://github.com/leahneukirchen/snooze/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
 
 LICENSE="CC0-1.0"
 SLOT="0"
+KEYWORDS="~amd64 ~x86"
 
 src_install() {
 	emake DESTDIR="${D}" PREFIX=/usr install


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

end of thread, other threads:[~2024-05-15  0:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-18 15:16 [gentoo-commits] repo/proj/guru:dev commit in: sys-process/snooze/ Tony Olagbaiye
  -- strict thread matches above, loose matches on Subject: below --
2022-05-18 19:49 Tony Olagbaiye
2022-05-24 19:07 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2022-05-24 19:07 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2024-05-15  0:59 Julien Roy

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