public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Haelwenn Monnier" <contact@hacktivis.me>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/
Date: Wed, 26 Jul 2023 08:13:24 +0000 (UTC)	[thread overview]
Message-ID: <1690359145.e45697264ed7c726178a5e7935e613584ace9b5a.lanodan@gentoo> (raw)

commit:     e45697264ed7c726178a5e7935e613584ace9b5a
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Wed Jul 26 08:09:51 2023 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Jul 26 08:12:25 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4569726

dev-hare/hare-ssh: add 0_pre20230623

Fixes missing keyworded lib for 49064acd96abee4dfb1738cf983def64041bf2b9

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 dev-hare/hare-ssh/Manifest                      |  1 +
 dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild | 30 +++++++++++++++++++++++++
 dev-hare/hare-ssh/hare-ssh-9999.ebuild          | 20 ++++++++++++-----
 3 files changed, 46 insertions(+), 5 deletions(-)

diff --git a/dev-hare/hare-ssh/Manifest b/dev-hare/hare-ssh/Manifest
new file mode 100644
index 000000000..a47870502
--- /dev/null
+++ b/dev-hare/hare-ssh/Manifest
@@ -0,0 +1 @@
+DIST hare-ssh-9fe392eb4478dc26680c8c5c42deb87d192447db.tar.gz 32799 BLAKE2B 94bc993415f76c41d711b06f38504df012982bc13528f6a88bc4fad7c601578c8ff5abdbc86cae60ff2965c14898da5aa2b02a301af10583de9b49d8229d24fe SHA512 9f14229630330878ca7b8a9935c82fd0c6b547918d662591b0871314c7df86aee32e55fda7273bee3c6ae04d3c75acc628edd500e735272af3609b2bdabeaaec

diff --git a/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild b/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild
new file mode 100644
index 000000000..60e214600
--- /dev/null
+++ b/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ "${PV}" = 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare-ssh"
+	SLOT="0"
+else
+	EGIT_COMMIT="9fe392eb4478dc26680c8c5c42deb87d192447db"
+	MY_P="${PN}-${EGIT_COMMIT}"
+	SRC_URI="https://git.sr.ht/~sircmpwn/hare-ssh/archive/${EGIT_COMMIT}.tar.gz -> ${MY_P}.tar.gz"
+	S="${WORKDIR}/${MY_P}"
+	SLOT="0/${PV}"
+
+	KEYWORDS="~amd64 ~arm64 ~riscv"
+fi
+
+DESCRIPTION="SSH library for Hare"
+HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
+LICENSE="MPL-2.0"
+
+RDEPEND="<=dev-lang/hare-0_pre20220922"
+DEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+	sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
+}

diff --git a/dev-hare/hare-ssh/hare-ssh-9999.ebuild b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
index 1a123cd62..60e214600 100644
--- a/dev-hare/hare-ssh/hare-ssh-9999.ebuild
+++ b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
@@ -1,17 +1,27 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit git-r3
+if [[ "${PV}" = 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare-ssh"
+	SLOT="0"
+else
+	EGIT_COMMIT="9fe392eb4478dc26680c8c5c42deb87d192447db"
+	MY_P="${PN}-${EGIT_COMMIT}"
+	SRC_URI="https://git.sr.ht/~sircmpwn/hare-ssh/archive/${EGIT_COMMIT}.tar.gz -> ${MY_P}.tar.gz"
+	S="${WORKDIR}/${MY_P}"
+	SLOT="0/${PV}"
+
+	KEYWORDS="~amd64 ~arm64 ~riscv"
+fi
 
 DESCRIPTION="SSH library for Hare"
 HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
-EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare-ssh"
 LICENSE="MPL-2.0"
-SLOT="0"
 
-RDEPEND="dev-lang/hare"
+RDEPEND="<=dev-lang/hare-0_pre20220922"
 DEPEND="${DEPEND}"
 
 src_prepare() {


             reply	other threads:[~2023-07-26  8:13 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-26  8:13 Haelwenn Monnier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-14 16:16 [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/ Haelwenn Monnier
2024-03-22 14:31 Haelwenn Monnier
2023-07-26  8:15 Haelwenn Monnier
2022-06-25  3:15 Haelwenn Monnier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1690359145.e45697264ed7c726178a5e7935e613584ace9b5a.lanodan@gentoo \
    --to=contact@hacktivis.me \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox