* [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/
@ 2022-06-25 3:15 Haelwenn Monnier
0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2022-06-25 3:15 UTC (permalink / raw
To: gentoo-commits
commit: df9a750148918dbce0c5fa757468fd2c5efc8257
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Jun 25 03:09:24 2022 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sat Jun 25 03:13:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=df9a7501
dev-hare/hare-ssh: New package, dependency of app-admin/himitsu-ssh
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
dev-hare/hare-ssh/hare-ssh-9999.ebuild | 20 ++++++++++++++++++++
dev-hare/hare-ssh/metadata.xml | 8 ++++++++
2 files changed, 28 insertions(+)
diff --git a/dev-hare/hare-ssh/hare-ssh-9999.ebuild b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
new file mode 100644
index 000000000..1a123cd62
--- /dev/null
+++ b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
@@ -0,0 +1,20 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit git-r3
+
+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"
+DEPEND="${DEPEND}"
+
+src_prepare() {
+ default
+ sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
+}
diff --git a/dev-hare/hare-ssh/metadata.xml b/dev-hare/hare-ssh/metadata.xml
new file mode 100644
index 000000000..c698af234
--- /dev/null
+++ b/dev-hare/hare-ssh/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>contact@hacktivis.me</email>
+ <name>Haelwenn (lanodan) Monnier</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/
@ 2023-07-26 8:13 Haelwenn Monnier
0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2023-07-26 8:13 UTC (permalink / raw
To: gentoo-commits
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() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/
@ 2023-07-26 8:15 Haelwenn Monnier
0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2023-07-26 8:15 UTC (permalink / raw
To: gentoo-commits
commit: d9806303b513db0fbf77e4d4da30ba695dade69d
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Wed Jul 26 08:15:43 2023 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Jul 26 08:15:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d9806303
dev-hare/hare-ssh: Remove bogus dev-lang/hare version requirements
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild | 2 +-
dev-hare/hare-ssh/hare-ssh-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild b/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild
index 60e214600..d8951cdb4 100644
--- a/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild
+++ b/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild
@@ -21,7 +21,7 @@ DESCRIPTION="SSH library for Hare"
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
LICENSE="MPL-2.0"
-RDEPEND="<=dev-lang/hare-0_pre20220922"
+RDEPEND="dev-lang/hare"
DEPEND="${DEPEND}"
src_prepare() {
diff --git a/dev-hare/hare-ssh/hare-ssh-9999.ebuild b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
index 60e214600..d8951cdb4 100644
--- a/dev-hare/hare-ssh/hare-ssh-9999.ebuild
+++ b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
@@ -21,7 +21,7 @@ DESCRIPTION="SSH library for Hare"
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
LICENSE="MPL-2.0"
-RDEPEND="<=dev-lang/hare-0_pre20220922"
+RDEPEND="dev-lang/hare"
DEPEND="${DEPEND}"
src_prepare() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/
@ 2024-03-22 14:31 Haelwenn Monnier
0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2024-03-22 14:31 UTC (permalink / raw
To: gentoo-commits
commit: cc66a9ac926f3703342e66acd3e1c0bedd7c8836
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Fri Mar 22 14:12:29 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Fri Mar 22 14:30:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cc66a9ac
dev-lang/hare-ssh: drop 0_pre20230623, add 0.24.0
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
dev-hare/hare-ssh/Manifest | 2 +-
.../{hare-ssh-0_pre20230623.ebuild => hare-ssh-0.24.0.ebuild} | 11 ++++-------
dev-hare/hare-ssh/hare-ssh-9999.ebuild | 11 ++++-------
3 files changed, 9 insertions(+), 15 deletions(-)
diff --git a/dev-hare/hare-ssh/Manifest b/dev-hare/hare-ssh/Manifest
index a478705022..daf3f553be 100644
--- a/dev-hare/hare-ssh/Manifest
+++ b/dev-hare/hare-ssh/Manifest
@@ -1 +1 @@
-DIST hare-ssh-9fe392eb4478dc26680c8c5c42deb87d192447db.tar.gz 32799 BLAKE2B 94bc993415f76c41d711b06f38504df012982bc13528f6a88bc4fad7c601578c8ff5abdbc86cae60ff2965c14898da5aa2b02a301af10583de9b49d8229d24fe SHA512 9f14229630330878ca7b8a9935c82fd0c6b547918d662591b0871314c7df86aee32e55fda7273bee3c6ae04d3c75acc628edd500e735272af3609b2bdabeaaec
+DIST hare-ssh-0.24.0.tar.gz 33013 BLAKE2B fc684f5f0b5c025f4e9fa10066f3d10e4a554973fa9d9d99fd3ca97a3005541690cb1eed0baf773f3a5d0e8a130cfb3bf5e837a04c4603077b22536c8cab229d SHA512 290fe762a019bf073cd18c244db022cb4423d919336b3b69fceaff1df1ebc78b616a14d3872bfaefaba540429c39d84e9255dddb94047ad0def25b22c9c9bbf6
diff --git a/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild b/dev-hare/hare-ssh/hare-ssh-0.24.0.ebuild
similarity index 59%
rename from dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild
rename to dev-hare/hare-ssh/hare-ssh-0.24.0.ebuild
index d8951cdb40..fb55c3fba1 100644
--- a/dev-hare/hare-ssh/hare-ssh-0_pre20230623.ebuild
+++ b/dev-hare/hare-ssh/hare-ssh-0.24.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -8,10 +8,7 @@ if [[ "${PV}" = 9999 ]]; then
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}"
+ SRC_URI="https://git.sr.ht/~sircmpwn/hare-ssh/archive/${PV}.tar.gz -> ${P}.tar.gz"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~arm64 ~riscv"
@@ -21,8 +18,8 @@ DESCRIPTION="SSH library for Hare"
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
LICENSE="MPL-2.0"
-RDEPEND="dev-lang/hare"
-DEPEND="${DEPEND}"
+RDEPEND=">=dev-lang/hare-0.24.0"
+DEPEND="${RDEPEND}"
src_prepare() {
default
diff --git a/dev-hare/hare-ssh/hare-ssh-9999.ebuild b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
index d8951cdb40..fb55c3fba1 100644
--- a/dev-hare/hare-ssh/hare-ssh-9999.ebuild
+++ b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -8,10 +8,7 @@ if [[ "${PV}" = 9999 ]]; then
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}"
+ SRC_URI="https://git.sr.ht/~sircmpwn/hare-ssh/archive/${PV}.tar.gz -> ${P}.tar.gz"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~arm64 ~riscv"
@@ -21,8 +18,8 @@ DESCRIPTION="SSH library for Hare"
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
LICENSE="MPL-2.0"
-RDEPEND="dev-lang/hare"
-DEPEND="${DEPEND}"
+RDEPEND=">=dev-lang/hare-0.24.0"
+DEPEND="${RDEPEND}"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/
@ 2024-07-14 16:16 Haelwenn Monnier
0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2024-07-14 16:16 UTC (permalink / raw
To: gentoo-commits
commit: e42c57afb4a8bdc581386f06c883e88e5337029a
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sun Jul 14 16:15:19 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sun Jul 14 16:16:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e42c57af
dev-hare/hare-ssh: add 0.24.2
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
dev-hare/hare-ssh/Manifest | 1 +
dev-hare/hare-ssh/{hare-ssh-9999.ebuild => hare-ssh-0.24.2.ebuild} | 2 +-
dev-hare/hare-ssh/hare-ssh-9999.ebuild | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-hare/hare-ssh/Manifest b/dev-hare/hare-ssh/Manifest
index daf3f553b..641862204 100644
--- a/dev-hare/hare-ssh/Manifest
+++ b/dev-hare/hare-ssh/Manifest
@@ -1 +1,2 @@
DIST hare-ssh-0.24.0.tar.gz 33013 BLAKE2B fc684f5f0b5c025f4e9fa10066f3d10e4a554973fa9d9d99fd3ca97a3005541690cb1eed0baf773f3a5d0e8a130cfb3bf5e837a04c4603077b22536c8cab229d SHA512 290fe762a019bf073cd18c244db022cb4423d919336b3b69fceaff1df1ebc78b616a14d3872bfaefaba540429c39d84e9255dddb94047ad0def25b22c9c9bbf6
+DIST hare-ssh-0.24.2.tar.gz 35412 BLAKE2B 936b5fb62780ce7673ce268bf24074d1206b912415a5b9f8f1b8caf33b3a7950c7dafe6d9c65811fb26319c10638197afb81037a9ad4ab2d940148d7430ef68a SHA512 cd631a025ff004bf0fe6acc3246858c655ff7875c06acd5c510aa3d5104c0604ef15d479d96040e5d49b919e71a672a61d1112d1175a3d5955b80c723ebe9fc2
diff --git a/dev-hare/hare-ssh/hare-ssh-9999.ebuild b/dev-hare/hare-ssh/hare-ssh-0.24.2.ebuild
similarity index 94%
copy from dev-hare/hare-ssh/hare-ssh-9999.ebuild
copy to dev-hare/hare-ssh/hare-ssh-0.24.2.ebuild
index fb55c3fba..c207a2c08 100644
--- a/dev-hare/hare-ssh/hare-ssh-9999.ebuild
+++ b/dev-hare/hare-ssh/hare-ssh-0.24.2.ebuild
@@ -18,7 +18,7 @@ DESCRIPTION="SSH library for Hare"
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
LICENSE="MPL-2.0"
-RDEPEND=">=dev-lang/hare-0.24.0"
+RDEPEND=">=dev-lang/hare-0.24.2"
DEPEND="${RDEPEND}"
src_prepare() {
diff --git a/dev-hare/hare-ssh/hare-ssh-9999.ebuild b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
index fb55c3fba..c207a2c08 100644
--- a/dev-hare/hare-ssh/hare-ssh-9999.ebuild
+++ b/dev-hare/hare-ssh/hare-ssh-9999.ebuild
@@ -18,7 +18,7 @@ DESCRIPTION="SSH library for Hare"
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-ssh"
LICENSE="MPL-2.0"
-RDEPEND=">=dev-lang/hare-0.24.0"
+RDEPEND=">=dev-lang/hare-0.24.2"
DEPEND="${RDEPEND}"
src_prepare() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-07-14 16:16 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-26 8:15 [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-ssh/ Haelwenn Monnier
-- strict thread matches above, loose matches on Subject: below --
2024-07-14 16:16 Haelwenn Monnier
2024-03-22 14:31 Haelwenn Monnier
2023-07-26 8:13 Haelwenn Monnier
2022-06-25 3:15 Haelwenn Monnier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox