* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2022-08-17 14:08 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2022-08-17 14:08 UTC (permalink / raw
To: gentoo-commits
commit: a9379f55a9afcd3570a7cf51f8c9eb2abbc0c35c
Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Wed Aug 17 14:08:41 2022 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Wed Aug 17 14:08:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a9379f55
www-apps/mycorrhiza: new package, add 1.11.0, 9999
Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
www-apps/mycorrhiza/Manifest | 2 ++
www-apps/mycorrhiza/metadata.xml | 13 +++++++++
www-apps/mycorrhiza/mycorrhiza-1.11.0.ebuild | 41 +++++++++++++++++++++++++++
www-apps/mycorrhiza/mycorrhiza-9999.ebuild | 42 ++++++++++++++++++++++++++++
4 files changed, 98 insertions(+)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
new file mode 100644
index 000000000..1bc7380f1
--- /dev/null
+++ b/www-apps/mycorrhiza/Manifest
@@ -0,0 +1,2 @@
+DIST mycorrhiza-1.11.0-deps.tar.bz2 21778870 BLAKE2B 33f7d048280b36fa67d41ecc5b78ddf21442af07f83e6751b556832a859cc21ab4613aa5d02df7d4a8a7c73795f8f546b692ca59fbe2fee38492532b7660c60a SHA512 99d4657506fe74d8736242ac36e1986783fe4d01dfdb61cabe55646f9b566fe72daeba2efc0dedbce21ab99b33553a8e449030959b4f11f475672f58ae9777c5
+DIST mycorrhiza-1.11.0.tar.gz 135211 BLAKE2B 58d59c8ac8e56a84711736c5c98e2524840fc54184bd3f250d883aa407066ffa4b5162d754c1162b5e53e1248ea634831e15be33db6adff268c93d7d478d48fe SHA512 be1a403b73d31462b41dcd3c3eb781312170ee9ac7bef7db4e01041197f2097f258f97fe3210e0e17079f5d579b8b8384e081659f9b77011804246336187a9d0
diff --git a/www-apps/mycorrhiza/metadata.xml b/www-apps/mycorrhiza/metadata.xml
new file mode 100644
index 000000000..225a4d289
--- /dev/null
+++ b/www-apps/mycorrhiza/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>bratishkaerik@getgoogleoff.me</email>
+ <name>Eric Joldasov</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">bouncepaw/mycorrhiza</remote-id>
+ <bugs-to>https://github.com/bouncepaw/mycorrhiza/issues</bugs-to>
+ <doc lang="en">https://mycorrhiza.wiki</doc>
+ </upstream>
+</pkgmetadata>
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.11.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.11.0.ebuild
new file mode 100644
index 000000000..b3734d7dd
--- /dev/null
+++ b/www-apps/mycorrhiza/mycorrhiza-1.11.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
+HOMEPAGE="https://mycorrhiza.wiki"
+
+SRC_URI="
+ https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://codeberg.org/BratishkaErik/distfiles/media/branch/master/${P}-deps.tar.bz2
+"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2"
+SLOT="0"
+
+BDEPEND=">=dev-lang/go-1.18.0"
+RDEPEND="dev-vcs/git"
+
+src_compile() {
+ ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
+}
+
+src_install() {
+ dobin mycorrhiza
+ doman help/mycorrhiza.1
+ dodoc README.md
+}
+
+pkg_postinst() {
+ elog "Quick start: /usr/bin/mycorrhiza /your/wiki/directory"
+ elog
+ elog "It will initialize a Git repository, set useful default settings"
+ elog "And run a server on http://localhost:1737"
+ elog "More information here: https://mycorrhiza.wiki/"
+ elog "Also your wiki has built-in documentation :)"
+ elog "You can view this documentation at http://localhost:1737/help"
+}
diff --git a/www-apps/mycorrhiza/mycorrhiza-9999.ebuild b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
new file mode 100644
index 000000000..c55fba6a4
--- /dev/null
+++ b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module git-r3
+
+DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
+HOMEPAGE="https://mycorrhiza.wiki"
+
+EGIT_REPO_URI="https://github.com/bouncepaw/mycorrhiza"
+
+LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2"
+SLOT="0"
+
+BDEPEND=">=dev-lang/go-1.18.0"
+RDEPEND="dev-vcs/git"
+
+src_unpack() {
+ git-r3_src_unpack
+ go-module_live_vendor
+}
+
+src_compile() {
+ ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
+}
+
+src_install() {
+ dobin mycorrhiza
+ doman help/mycorrhiza.1
+ dodoc README.md
+}
+
+pkg_postinst() {
+ elog "Quick start: /usr/bin/mycorrhiza /your/wiki/directory"
+ elog
+ elog "It will initialize a Git repository, set useful default settings"
+ elog "And run a server on http://localhost:1737"
+ elog "More information here: https://mycorrhiza.wiki/"
+ elog "Also your wiki has built-in documentation :)"
+ elog "You can view this documentation at http://localhost:1737/help"
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2022-09-11 4:29 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2022-09-11 4:29 UTC (permalink / raw
To: gentoo-commits
commit: 8b936d72fa7e1dd93d0cc588293d38880b38ef2a
Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Sun Sep 11 04:29:11 2022 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Sun Sep 11 04:29:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8b936d72
www-apps/mycorrhiza: bump to 1.12.1
Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
www-apps/mycorrhiza/Manifest | 4 ++--
.../mycorrhiza/{mycorrhiza-1.11.0.ebuild => mycorrhiza-1.12.1.ebuild} | 4 ++--
www-apps/mycorrhiza/mycorrhiza-9999.ebuild | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index 1bc7380f1..5e7e68a00 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,2 +1,2 @@
-DIST mycorrhiza-1.11.0-deps.tar.bz2 21778870 BLAKE2B 33f7d048280b36fa67d41ecc5b78ddf21442af07f83e6751b556832a859cc21ab4613aa5d02df7d4a8a7c73795f8f546b692ca59fbe2fee38492532b7660c60a SHA512 99d4657506fe74d8736242ac36e1986783fe4d01dfdb61cabe55646f9b566fe72daeba2efc0dedbce21ab99b33553a8e449030959b4f11f475672f58ae9777c5
-DIST mycorrhiza-1.11.0.tar.gz 135211 BLAKE2B 58d59c8ac8e56a84711736c5c98e2524840fc54184bd3f250d883aa407066ffa4b5162d754c1162b5e53e1248ea634831e15be33db6adff268c93d7d478d48fe SHA512 be1a403b73d31462b41dcd3c3eb781312170ee9ac7bef7db4e01041197f2097f258f97fe3210e0e17079f5d579b8b8384e081659f9b77011804246336187a9d0
+DIST mycorrhiza-1.12.1-deps.tar.bz2 21760292 BLAKE2B 42f64ea142ac37d13265656a3efdab2f4be02db4d60cda2b2e4776bfa0905ce9280d08e8f6f8042ba69692ffb41f34ce3df0de8ceab69365feef08648d6f6f02 SHA512 db38fcc2efddd37f50ff9da56bf9f4ae68e9f91ae1bfdbab77135724fd90a30443765f411deecb374744583a5c7b03b136982a3a1d585e676a7a42e9e01298f4
+DIST mycorrhiza-1.12.1.tar.gz 136377 BLAKE2B bd1112143262d7db6aa5f2dbe3a0abe96c56c6fbfa897110579799264943abdbaf976cc5603620eb0e8d541e8ba731bde5e1aacb9fd2c9ac02e1e73cfd19ed04 SHA512 2eee4ce46ad6cd05a1afa3aa4b1ee8b1f769c52eb4ddb9cacbf77e65704121cff5f2f8aded634d87cf3330182351be52739ea04a51730678bdd9c4b04fd8d376
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.11.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.12.1.ebuild
similarity index 90%
rename from www-apps/mycorrhiza/mycorrhiza-1.11.0.ebuild
rename to www-apps/mycorrhiza/mycorrhiza-1.12.1.ebuild
index b3734d7dd..8295bd38f 100644
--- a/www-apps/mycorrhiza/mycorrhiza-1.11.0.ebuild
+++ b/www-apps/mycorrhiza/mycorrhiza-1.12.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
"
KEYWORDS="~amd64 ~x86"
-LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2"
+LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
SLOT="0"
BDEPEND=">=dev-lang/go-1.18.0"
@@ -31,7 +31,7 @@ src_install() {
}
pkg_postinst() {
- elog "Quick start: /usr/bin/mycorrhiza /your/wiki/directory"
+ elog "Quick start: mycorrhiza /your/wiki/directory"
elog
elog "It will initialize a Git repository, set useful default settings"
elog "And run a server on http://localhost:1737"
diff --git a/www-apps/mycorrhiza/mycorrhiza-9999.ebuild b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
index c55fba6a4..fa001ef26 100644
--- a/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
+++ b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://mycorrhiza.wiki"
EGIT_REPO_URI="https://github.com/bouncepaw/mycorrhiza"
-LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2"
+LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
SLOT="0"
BDEPEND=">=dev-lang/go-1.18.0"
@@ -32,7 +32,7 @@ src_install() {
}
pkg_postinst() {
- elog "Quick start: /usr/bin/mycorrhiza /your/wiki/directory"
+ elog "Quick start: mycorrhiza /your/wiki/directory"
elog
elog "It will initialize a Git repository, set useful default settings"
elog "And run a server on http://localhost:1737"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2022-11-04 17:03 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2022-11-04 17:03 UTC (permalink / raw
To: gentoo-commits
commit: f7fc003eb3c1c9df48330590b86a0853069b777a
Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Fri Nov 4 17:03:08 2022 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Fri Nov 4 17:03:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7fc003e
www-apps/mycorrhiza: add 1.13.0, drop 1.12.1
Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
www-apps/mycorrhiza/Manifest | 4 ++--
.../mycorrhiza/{mycorrhiza-1.12.1.ebuild => mycorrhiza-1.13.0.ebuild} | 4 +++-
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index 5e7e68a00..7385cb05a 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,2 +1,2 @@
-DIST mycorrhiza-1.12.1-deps.tar.bz2 21760292 BLAKE2B 42f64ea142ac37d13265656a3efdab2f4be02db4d60cda2b2e4776bfa0905ce9280d08e8f6f8042ba69692ffb41f34ce3df0de8ceab69365feef08648d6f6f02 SHA512 db38fcc2efddd37f50ff9da56bf9f4ae68e9f91ae1bfdbab77135724fd90a30443765f411deecb374744583a5c7b03b136982a3a1d585e676a7a42e9e01298f4
-DIST mycorrhiza-1.12.1.tar.gz 136377 BLAKE2B bd1112143262d7db6aa5f2dbe3a0abe96c56c6fbfa897110579799264943abdbaf976cc5603620eb0e8d541e8ba731bde5e1aacb9fd2c9ac02e1e73cfd19ed04 SHA512 2eee4ce46ad6cd05a1afa3aa4b1ee8b1f769c52eb4ddb9cacbf77e65704121cff5f2f8aded634d87cf3330182351be52739ea04a51730678bdd9c4b04fd8d376
+DIST mycorrhiza-1.13.0-deps.tar.bz2 21771127 BLAKE2B 17c4162087979c6cb79426797f4967e256b72cf3e01f571bad9551197ce9f98585dc869c5f9b81080d96683d5ba5fd0a881cd3c46d7ffe577cb03271bc7017c3 SHA512 332a3489941a21247044da77adb98a7129f5ebb762fe8b78d8b7032c8847b783a05e08d77e3a573d112d4d715f2147e0b0db629d708ec03e849f4038d54e51f9
+DIST mycorrhiza-1.13.0.tar.gz 137249 BLAKE2B 140f161dda53e03d24f552e35afc1e489f337ef9703e1269c3a5ffac52a7f7deff97c90d4604ed0328c79cd15ece6e87240333d93d843d48844ef2af815ef0fc SHA512 ec1eda4764594af3ac36fcbb852e29e17881f656dc6e8cc6467d9a5f6c3604c24f29e3a9d882d15da1e55392f4a57fbdb27e033b7c0d273106356559617bfca4
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.12.1.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
similarity index 93%
rename from www-apps/mycorrhiza/mycorrhiza-1.12.1.ebuild
rename to www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
index 8295bd38f..8b260a02e 100644
--- a/www-apps/mycorrhiza/mycorrhiza-1.12.1.ebuild
+++ b/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
@@ -16,8 +16,9 @@ KEYWORDS="~amd64 ~x86"
LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
SLOT="0"
+RESTRICT="mirror"
-BDEPEND=">=dev-lang/go-1.18.0"
+BDEPEND=">=dev-lang/go-1.19.0"
RDEPEND="dev-vcs/git"
src_compile() {
@@ -27,6 +28,7 @@ src_compile() {
src_install() {
dobin mycorrhiza
doman help/mycorrhiza.1
+ dodoc Boilerplate.md
dodoc README.md
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2022-11-04 17:05 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2022-11-04 17:05 UTC (permalink / raw
To: gentoo-commits
commit: c1a37ae1d3e8ce5a79d9478c7e13660c5b333e2b
Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Fri Nov 4 17:04:32 2022 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Fri Nov 4 17:04:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c1a37ae1
www-apps/mycorrhiza: bump Go dependency to 1.19 for live ebuild
Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
www-apps/mycorrhiza/mycorrhiza-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/www-apps/mycorrhiza/mycorrhiza-9999.ebuild b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
index fa001ef26..a25c3ce31 100644
--- a/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
+++ b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
@@ -13,7 +13,7 @@ EGIT_REPO_URI="https://github.com/bouncepaw/mycorrhiza"
LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
SLOT="0"
-BDEPEND=">=dev-lang/go-1.18.0"
+BDEPEND=">=dev-lang/go-1.19.0"
RDEPEND="dev-vcs/git"
src_unpack() {
@@ -28,6 +28,7 @@ src_compile() {
src_install() {
dobin mycorrhiza
doman help/mycorrhiza.1
+ dodoc Boilerplate.md
dodoc README.md
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2022-11-05 8:28 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2022-11-05 8:28 UTC (permalink / raw
To: gentoo-commits
commit: 743e791bcc439f2ba787af575aadc535acbf3f02
Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Sat Nov 5 08:28:22 2022 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Sat Nov 5 08:28:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=743e791b
www-apps/mycorrhiza: change dependency tarball to vendor tarball
Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
www-apps/mycorrhiza/Manifest | 2 +-
www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index 7385cb05a..588c78179 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,2 +1,2 @@
-DIST mycorrhiza-1.13.0-deps.tar.bz2 21771127 BLAKE2B 17c4162087979c6cb79426797f4967e256b72cf3e01f571bad9551197ce9f98585dc869c5f9b81080d96683d5ba5fd0a881cd3c46d7ffe577cb03271bc7017c3 SHA512 332a3489941a21247044da77adb98a7129f5ebb762fe8b78d8b7032c8847b783a05e08d77e3a573d112d4d715f2147e0b0db629d708ec03e849f4038d54e51f9
+DIST mycorrhiza-1.13.0-vendor.tar.xz 619980 BLAKE2B 4a96132acd1e97105265dad263094a4be97a7ba30edf98e969a28363db2b4a11fd47f107eda7914decaa98b096e84cecbb96031ee10a1fc98b2239d9850325a9 SHA512 a8d2aaf15a9845830cac49a31c17a78b6beda2b39fcbc953111bb904bd3eee96d67411dcb5b97ff6b80005ebdb65066aa1816c8fc7d75a7525942f78a4d72e93
DIST mycorrhiza-1.13.0.tar.gz 137249 BLAKE2B 140f161dda53e03d24f552e35afc1e489f337ef9703e1269c3a5ffac52a7f7deff97c90d4604ed0328c79cd15ece6e87240333d93d843d48844ef2af815ef0fc SHA512 ec1eda4764594af3ac36fcbb852e29e17881f656dc6e8cc6467d9a5f6c3604c24f29e3a9d882d15da1e55392f4a57fbdb27e033b7c0d273106356559617bfca4
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
index 8b260a02e..f4f2c4af0 100644
--- a/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
+++ b/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://mycorrhiza.wiki"
SRC_URI="
https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
- https://codeberg.org/BratishkaErik/distfiles/media/branch/master/${P}-deps.tar.bz2
+ https://codeberg.org/BratishkaErik/distfiles/media/branch/master/${P}-vendor.tar.xz
"
KEYWORDS="~amd64 ~x86"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2023-04-07 13:57 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2023-04-07 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 54902cfbd135315e860842c43e8f3636ca6c11bc
Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Fri Apr 7 13:57:28 2023 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Fri Apr 7 13:57:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=54902cfb
www-apps/mycorrhiza: add 1.14.0
Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
www-apps/mycorrhiza/Manifest | 2 ++
www-apps/mycorrhiza/metadata.xml | 2 ++
www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild | 44 ++++++++++++++++++++++++++++
3 files changed, 48 insertions(+)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index 588c78179..c989bdc89 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,2 +1,4 @@
DIST mycorrhiza-1.13.0-vendor.tar.xz 619980 BLAKE2B 4a96132acd1e97105265dad263094a4be97a7ba30edf98e969a28363db2b4a11fd47f107eda7914decaa98b096e84cecbb96031ee10a1fc98b2239d9850325a9 SHA512 a8d2aaf15a9845830cac49a31c17a78b6beda2b39fcbc953111bb904bd3eee96d67411dcb5b97ff6b80005ebdb65066aa1816c8fc7d75a7525942f78a4d72e93
DIST mycorrhiza-1.13.0.tar.gz 137249 BLAKE2B 140f161dda53e03d24f552e35afc1e489f337ef9703e1269c3a5ffac52a7f7deff97c90d4604ed0328c79cd15ece6e87240333d93d843d48844ef2af815ef0fc SHA512 ec1eda4764594af3ac36fcbb852e29e17881f656dc6e8cc6467d9a5f6c3604c24f29e3a9d882d15da1e55392f4a57fbdb27e033b7c0d273106356559617bfca4
+DIST mycorrhiza-1.14.0-vendor.tar.xz 655368 BLAKE2B 86060d537b37f37d4aa5695d74664090d517fb59e33c089fffa7103a1c79d1cb8ce42aceff198f448e223ade032d37cf836c4035456e47ed5762a26658888014 SHA512 97819fe2fa23783fec8f8249fdcd2eea25d3dafa6bbe81ecffe481a48086a591507dd341ee08a484281f8b6c6bc9a5ef31d75ad7781b3f2e4221496d44af6eaf
+DIST mycorrhiza-1.14.0.tar.gz 137956 BLAKE2B 202c0e8591b480a13e24133a7d5f76a71669b69ea70bfb86981721269ce808e07a3c0177dca19f33dadbd4ccaef25fac28134b8f44a0bc6c2b7c7e2cbee22c39 SHA512 fe40f5d382255e5439ace7218c28c1df62e368325835e48d563a52c3432e1f0a967924e4cd569d860f3094f942b94d4a6807d8fbf76db6c6b758a8c74a92b77c
diff --git a/www-apps/mycorrhiza/metadata.xml b/www-apps/mycorrhiza/metadata.xml
index 225a4d289..269942abf 100644
--- a/www-apps/mycorrhiza/metadata.xml
+++ b/www-apps/mycorrhiza/metadata.xml
@@ -7,6 +7,8 @@
</maintainer>
<upstream>
<remote-id type="github">bouncepaw/mycorrhiza</remote-id>
+ <remote-id type="sourcehut">~bouncepaw/mycorrhiza</remote-id>
+ <changelog>https://mycorrhiza.wiki/hypha/release</changelog>
<bugs-to>https://github.com/bouncepaw/mycorrhiza/issues</bugs-to>
<doc lang="en">https://mycorrhiza.wiki</doc>
</upstream>
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild
new file mode 100644
index 000000000..17387f97a
--- /dev/null
+++ b/www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
+HOMEPAGE="https://mycorrhiza.wiki"
+
+SRC_URI="
+ https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://codeberg.org/BratishkaErik/distfiles/media/branch/master/${P}-vendor.tar.xz
+"
+
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
+SLOT="0"
+RESTRICT="mirror"
+
+BDEPEND=">=dev-lang/go-1.19.0"
+RDEPEND="dev-vcs/git"
+
+src_compile() {
+ ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
+}
+
+src_install() {
+ dobin mycorrhiza
+ doman help/mycorrhiza.1
+ dodoc Boilerplate.md
+ dodoc README.md
+}
+
+pkg_postinst() {
+ elog "Quick start: mycorrhiza /your/wiki/directory"
+ elog
+ elog "It will initialize a Git repository, set useful default settings"
+ elog "And run a server on http://localhost:1737"
+ elog "More information here: https://mycorrhiza.wiki/"
+ elog "Also your wiki has built-in documentation :)"
+ elog "You can view this documentation at http://localhost:1737/help"
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2023-04-16 6:14 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2023-04-16 6:14 UTC (permalink / raw
To: gentoo-commits
commit: ec6bcc231a49c0f48e93c779c5476942a25a73d1
Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Sun Apr 16 06:14:16 2023 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Sun Apr 16 06:14:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ec6bcc23
www-apps/mycorrhiza: drop 1.13.0
Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
www-apps/mycorrhiza/Manifest | 2 --
www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild | 43 ----------------------------
2 files changed, 45 deletions(-)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index c989bdc89..7661b0a72 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,4 +1,2 @@
-DIST mycorrhiza-1.13.0-vendor.tar.xz 619980 BLAKE2B 4a96132acd1e97105265dad263094a4be97a7ba30edf98e969a28363db2b4a11fd47f107eda7914decaa98b096e84cecbb96031ee10a1fc98b2239d9850325a9 SHA512 a8d2aaf15a9845830cac49a31c17a78b6beda2b39fcbc953111bb904bd3eee96d67411dcb5b97ff6b80005ebdb65066aa1816c8fc7d75a7525942f78a4d72e93
-DIST mycorrhiza-1.13.0.tar.gz 137249 BLAKE2B 140f161dda53e03d24f552e35afc1e489f337ef9703e1269c3a5ffac52a7f7deff97c90d4604ed0328c79cd15ece6e87240333d93d843d48844ef2af815ef0fc SHA512 ec1eda4764594af3ac36fcbb852e29e17881f656dc6e8cc6467d9a5f6c3604c24f29e3a9d882d15da1e55392f4a57fbdb27e033b7c0d273106356559617bfca4
DIST mycorrhiza-1.14.0-vendor.tar.xz 655368 BLAKE2B 86060d537b37f37d4aa5695d74664090d517fb59e33c089fffa7103a1c79d1cb8ce42aceff198f448e223ade032d37cf836c4035456e47ed5762a26658888014 SHA512 97819fe2fa23783fec8f8249fdcd2eea25d3dafa6bbe81ecffe481a48086a591507dd341ee08a484281f8b6c6bc9a5ef31d75ad7781b3f2e4221496d44af6eaf
DIST mycorrhiza-1.14.0.tar.gz 137956 BLAKE2B 202c0e8591b480a13e24133a7d5f76a71669b69ea70bfb86981721269ce808e07a3c0177dca19f33dadbd4ccaef25fac28134b8f44a0bc6c2b7c7e2cbee22c39 SHA512 fe40f5d382255e5439ace7218c28c1df62e368325835e48d563a52c3432e1f0a967924e4cd569d860f3094f942b94d4a6807d8fbf76db6c6b758a8c74a92b77c
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
deleted file mode 100644
index f4f2c4af0..000000000
--- a/www-apps/mycorrhiza/mycorrhiza-1.13.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module
-
-DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
-HOMEPAGE="https://mycorrhiza.wiki"
-
-SRC_URI="
- https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
- https://codeberg.org/BratishkaErik/distfiles/media/branch/master/${P}-vendor.tar.xz
-"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
-SLOT="0"
-RESTRICT="mirror"
-
-BDEPEND=">=dev-lang/go-1.19.0"
-RDEPEND="dev-vcs/git"
-
-src_compile() {
- ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
-}
-
-src_install() {
- dobin mycorrhiza
- doman help/mycorrhiza.1
- dodoc Boilerplate.md
- dodoc README.md
-}
-
-pkg_postinst() {
- elog "Quick start: mycorrhiza /your/wiki/directory"
- elog
- elog "It will initialize a Git repository, set useful default settings"
- elog "And run a server on http://localhost:1737"
- elog "More information here: https://mycorrhiza.wiki/"
- elog "Also your wiki has built-in documentation :)"
- elog "You can view this documentation at http://localhost:1737/help"
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2024-07-31 19:51 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2024-07-31 19:51 UTC (permalink / raw
To: gentoo-commits
commit: 9eca745ac1fed61e1f57eb97f967a8ddb9b50fdb
Author: Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Wed Jul 31 19:50:54 2024 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Wed Jul 31 19:50:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9eca745a
www-apps/mycorrhiza: add 1.15.0
Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
www-apps/mycorrhiza/Manifest | 2 ++
www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild | 45 ++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index 7661b0a72..0c0f1b646 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,2 +1,4 @@
DIST mycorrhiza-1.14.0-vendor.tar.xz 655368 BLAKE2B 86060d537b37f37d4aa5695d74664090d517fb59e33c089fffa7103a1c79d1cb8ce42aceff198f448e223ade032d37cf836c4035456e47ed5762a26658888014 SHA512 97819fe2fa23783fec8f8249fdcd2eea25d3dafa6bbe81ecffe481a48086a591507dd341ee08a484281f8b6c6bc9a5ef31d75ad7781b3f2e4221496d44af6eaf
DIST mycorrhiza-1.14.0.tar.gz 137956 BLAKE2B 202c0e8591b480a13e24133a7d5f76a71669b69ea70bfb86981721269ce808e07a3c0177dca19f33dadbd4ccaef25fac28134b8f44a0bc6c2b7c7e2cbee22c39 SHA512 fe40f5d382255e5439ace7218c28c1df62e368325835e48d563a52c3432e1f0a967924e4cd569d860f3094f942b94d4a6807d8fbf76db6c6b758a8c74a92b77c
+DIST mycorrhiza-1.15.0-vendor.tar.xz 670776 BLAKE2B d43effa83bbff937419d4c9aeacb6c0107141653e26e78b98e27c975db47f170bdaf40f49a9f3d24a382a897963480f1500549ec3b16af3703b0702016a89a7a SHA512 5145107c91e8c58a71b7778731c6a40d4df791ada86a850c52c7358000fc398788510334b93d0e28e1053d1ed7013e80aaf0d500bc87c906e33822990467d7ca
+DIST mycorrhiza-1.15.0.tar.gz 141894 BLAKE2B ebb47ac42d0a1c2779e531473cb18c91c4e926a0f8d3c492b5aa8221d0e44f6ac79d9e7ba8e586375ec962e4fc0eb0c5a2c579bf28ca6c492e63cf106e9164ec SHA512 6ff0aada001d0b6be31aa1d8418e42b4db7166f0a97a5a5d627e7bfed64d9fe84bdc5fe30640249955fb406d6a725e4bd26fbf9931602b5a5ab9655d9da8432b
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild
new file mode 100644
index 000000000..78b08f61f
--- /dev/null
+++ b/www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
+HOMEPAGE="https://mycorrhiza.wiki"
+SRC_URI="
+ https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://codeberg.org/BratishkaErik/distfiles/releases/download/mycorrhiza-${PV}/mycorrhiza-${PV}-vendor.tar.xz
+"
+
+LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RESTRICT="mirror"
+
+BDEPEND=">=dev-lang/go-1.22"
+RDEPEND="dev-vcs/git"
+
+DOCS=( Boilerplate.md README.md )
+
+src_compile() {
+ ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
+}
+
+src_install() {
+ dobin mycorrhiza
+
+ einstalldocs
+ doman help/mycorrhiza.1
+}
+
+pkg_postinst() {
+ elog "Quick start: mycorrhiza /your/wiki/directory"
+ elog
+ elog "It will initialize a Git repository, set useful default settings"
+ elog "And run a server on http://localhost:1737"
+ elog "More information here: https://mycorrhiza.wiki/"
+ elog "Also your wiki has built-in documentation :)"
+ elog "You can view this documentation at http://localhost:1737/help"
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2024-08-01 19:19 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2024-08-01 19:19 UTC (permalink / raw
To: gentoo-commits
commit: b64fe3436e97f93882a8585063ade4a41d39f0e8
Author: Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Thu Aug 1 19:04:48 2024 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Thu Aug 1 19:04:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b64fe343
www-apps/mycorrhiza: drop 1.14.0
Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
www-apps/mycorrhiza/Manifest | 2 --
www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild | 43 ----------------------------
2 files changed, 45 deletions(-)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index 0c0f1b646..cdb127e91 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,4 +1,2 @@
-DIST mycorrhiza-1.14.0-vendor.tar.xz 655368 BLAKE2B 86060d537b37f37d4aa5695d74664090d517fb59e33c089fffa7103a1c79d1cb8ce42aceff198f448e223ade032d37cf836c4035456e47ed5762a26658888014 SHA512 97819fe2fa23783fec8f8249fdcd2eea25d3dafa6bbe81ecffe481a48086a591507dd341ee08a484281f8b6c6bc9a5ef31d75ad7781b3f2e4221496d44af6eaf
-DIST mycorrhiza-1.14.0.tar.gz 137956 BLAKE2B 202c0e8591b480a13e24133a7d5f76a71669b69ea70bfb86981721269ce808e07a3c0177dca19f33dadbd4ccaef25fac28134b8f44a0bc6c2b7c7e2cbee22c39 SHA512 fe40f5d382255e5439ace7218c28c1df62e368325835e48d563a52c3432e1f0a967924e4cd569d860f3094f942b94d4a6807d8fbf76db6c6b758a8c74a92b77c
DIST mycorrhiza-1.15.0-vendor.tar.xz 670776 BLAKE2B d43effa83bbff937419d4c9aeacb6c0107141653e26e78b98e27c975db47f170bdaf40f49a9f3d24a382a897963480f1500549ec3b16af3703b0702016a89a7a SHA512 5145107c91e8c58a71b7778731c6a40d4df791ada86a850c52c7358000fc398788510334b93d0e28e1053d1ed7013e80aaf0d500bc87c906e33822990467d7ca
DIST mycorrhiza-1.15.0.tar.gz 141894 BLAKE2B ebb47ac42d0a1c2779e531473cb18c91c4e926a0f8d3c492b5aa8221d0e44f6ac79d9e7ba8e586375ec962e4fc0eb0c5a2c579bf28ca6c492e63cf106e9164ec SHA512 6ff0aada001d0b6be31aa1d8418e42b4db7166f0a97a5a5d627e7bfed64d9fe84bdc5fe30640249955fb406d6a725e4bd26fbf9931602b5a5ab9655d9da8432b
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild
deleted file mode 100644
index 3e58b5dc3..000000000
--- a/www-apps/mycorrhiza/mycorrhiza-1.14.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module
-
-DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
-HOMEPAGE="https://mycorrhiza.wiki"
-SRC_URI="
- https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
- https://codeberg.org/BratishkaErik/distfiles/media/branch/master/${P}-vendor.tar.xz
-"
-
-LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RESTRICT="mirror"
-
-BDEPEND=">=dev-lang/go-1.19.0"
-RDEPEND="dev-vcs/git"
-
-src_compile() {
- ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
-}
-
-src_install() {
- dobin mycorrhiza
- doman help/mycorrhiza.1
- dodoc Boilerplate.md
- dodoc README.md
-}
-
-pkg_postinst() {
- elog "Quick start: mycorrhiza /your/wiki/directory"
- elog
- elog "It will initialize a Git repository, set useful default settings"
- elog "And run a server on http://localhost:1737"
- elog "More information here: https://mycorrhiza.wiki/"
- elog "Also your wiki has built-in documentation :)"
- elog "You can view this documentation at http://localhost:1737/help"
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2024-10-28 22:10 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2024-10-28 22:10 UTC (permalink / raw
To: gentoo-commits
commit: 792ca5ff15b5ef5b16a07c63acccc63270812d25
Author: Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Mon Oct 28 22:08:10 2024 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Mon Oct 28 22:08:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=792ca5ff
www-apps/mycorrhiza: add 1.15.1
Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
www-apps/mycorrhiza/Manifest | 2 +
www-apps/mycorrhiza/mycorrhiza-1.15.1.ebuild | 61 ++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index cdb127e91..b1e63ccbc 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,2 +1,4 @@
DIST mycorrhiza-1.15.0-vendor.tar.xz 670776 BLAKE2B d43effa83bbff937419d4c9aeacb6c0107141653e26e78b98e27c975db47f170bdaf40f49a9f3d24a382a897963480f1500549ec3b16af3703b0702016a89a7a SHA512 5145107c91e8c58a71b7778731c6a40d4df791ada86a850c52c7358000fc398788510334b93d0e28e1053d1ed7013e80aaf0d500bc87c906e33822990467d7ca
DIST mycorrhiza-1.15.0.tar.gz 141894 BLAKE2B ebb47ac42d0a1c2779e531473cb18c91c4e926a0f8d3c492b5aa8221d0e44f6ac79d9e7ba8e586375ec962e4fc0eb0c5a2c579bf28ca6c492e63cf106e9164ec SHA512 6ff0aada001d0b6be31aa1d8418e42b4db7166f0a97a5a5d627e7bfed64d9fe84bdc5fe30640249955fb406d6a725e4bd26fbf9931602b5a5ab9655d9da8432b
+DIST mycorrhiza-1.15.1-vendor.tar.xz 684328 BLAKE2B dd6dff33d1169a830863ec52c861ac8580340da737036c8058b78965678a8b513e19bbd59c7fa9336ac49c51be292074c29639a45c6db1b327f8b6796bbf6d86 SHA512 f08c047d42e2b8b8dc7be188648405a365a01390f95d5f72d31526dbdf727f63a9fb9c50438d28326ff878fdcaac2023f0b5bdc2a38a1562c93272e7a26305f4
+DIST mycorrhiza-1.15.1.tar.gz 135532 BLAKE2B e7895f32b942a02ae9b732f1ef5bbe4691d6fa60ecf47561d9579ab535504d7c05327da1036ff78cb493502e8799710f728a7d0fda7b39e20767f26d281e3d6a SHA512 54f6b18b7dc9bdcbbe6461f0f39be0cafe49c2f6d2bfb43831bc899dd1cdeffd3e8a7a52c6e9fac685619048867888945bcc9e4f2999a0915b3a6ec04ea4cee6
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.15.1.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.15.1.ebuild
new file mode 100644
index 000000000..aaa026ade
--- /dev/null
+++ b/www-apps/mycorrhiza/mycorrhiza-1.15.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
+HOMEPAGE="https://mycorrhiza.wiki"
+
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/bouncepaw/mycorrhiza"
+ inherit git-r3
+else
+ SRC_URI="
+ https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://codeberg.org/BratishkaErik/distfiles/releases/download/mycorrhiza-${PV}/mycorrhiza-${PV}-vendor.tar.xz
+ "
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
+SLOT="0"
+
+RESTRICT="mirror"
+
+BDEPEND=">=dev-lang/go-1.22"
+RDEPEND="dev-vcs/git"
+
+DOCS=( "README.md" )
+
+src_unpack() {
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ go-module_live_vendor
+ fi
+ go-module_src_unpack
+}
+
+src_compile() {
+ GOFLAGS+=" -mod=vendor -trimpath"
+ local go_ldflags="-s -linkmode external -extldflags \"${LDFLAGS}\""
+ ego build ${GOFLAGS} -ldflags="${go_ldflags}" .
+}
+
+src_install() {
+ dobin mycorrhiza
+
+ einstalldocs
+ doman help/mycorrhiza.1
+}
+
+pkg_postinst() {
+ elog "Quick start: mycorrhiza /your/wiki/directory"
+ elog
+ elog "It will initialize a Git repository, set useful default settings"
+ elog "And run a server on http://localhost:1737"
+ elog "More information here: https://mycorrhiza.wiki/"
+ elog "Also your wiki has built-in documentation :)"
+ elog "You can view this documentation at http://localhost:1737/help"
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2024-10-28 22:10 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2024-10-28 22:10 UTC (permalink / raw
To: gentoo-commits
commit: 1d7914418b697ed09d4b1e4774c2dd02267e9064
Author: Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Mon Oct 28 22:08:24 2024 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Mon Oct 28 22:08:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d791441
www-apps/mycorrhiza: sync 9999 with 1.15.1
Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
www-apps/mycorrhiza/mycorrhiza-9999.ebuild | 36 ++++++++++++++++++++++--------
1 file changed, 27 insertions(+), 9 deletions(-)
diff --git a/www-apps/mycorrhiza/mycorrhiza-9999.ebuild b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
index a25c3ce31..aaa026ade 100644
--- a/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
+++ b/www-apps/mycorrhiza/mycorrhiza-9999.ebuild
@@ -1,35 +1,53 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-inherit go-module git-r3
+inherit go-module
DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
HOMEPAGE="https://mycorrhiza.wiki"
-EGIT_REPO_URI="https://github.com/bouncepaw/mycorrhiza"
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/bouncepaw/mycorrhiza"
+ inherit git-r3
+else
+ SRC_URI="
+ https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://codeberg.org/BratishkaErik/distfiles/releases/download/mycorrhiza-${PV}/mycorrhiza-${PV}-vendor.tar.xz
+ "
+ KEYWORDS="~amd64 ~x86"
+fi
LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
SLOT="0"
-BDEPEND=">=dev-lang/go-1.19.0"
+RESTRICT="mirror"
+
+BDEPEND=">=dev-lang/go-1.22"
RDEPEND="dev-vcs/git"
+DOCS=( "README.md" )
+
src_unpack() {
- git-r3_src_unpack
- go-module_live_vendor
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ go-module_live_vendor
+ fi
+ go-module_src_unpack
}
src_compile() {
- ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
+ GOFLAGS+=" -mod=vendor -trimpath"
+ local go_ldflags="-s -linkmode external -extldflags \"${LDFLAGS}\""
+ ego build ${GOFLAGS} -ldflags="${go_ldflags}" .
}
src_install() {
dobin mycorrhiza
+
+ einstalldocs
doman help/mycorrhiza.1
- dodoc Boilerplate.md
- dodoc README.md
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2024-10-28 22:10 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2024-10-28 22:10 UTC (permalink / raw
To: gentoo-commits
commit: 9ab728108612d42fba6410e254d6c1a31279e345
Author: Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Mon Oct 28 22:10:09 2024 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Mon Oct 28 22:10:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9ab72810
www-apps/mycorrhiza: add codeberg upstream metadata
Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
www-apps/mycorrhiza/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/www-apps/mycorrhiza/metadata.xml b/www-apps/mycorrhiza/metadata.xml
index b48652583..72f1a72d1 100644
--- a/www-apps/mycorrhiza/metadata.xml
+++ b/www-apps/mycorrhiza/metadata.xml
@@ -6,6 +6,7 @@
<name>Eric Joldasov</name>
</maintainer>
<upstream>
+ <remote-id type="codeberg">bouncepaw/mycorrhiza</remote-id>
<remote-id type="github">bouncepaw/mycorrhiza</remote-id>
<remote-id type="sourcehut">~bouncepaw/mycorrhiza</remote-id>
<changelog>https://mycorrhiza.wiki/hypha/release</changelog>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/
@ 2024-10-28 22:13 Eric Joldasov
0 siblings, 0 replies; 13+ messages in thread
From: Eric Joldasov @ 2024-10-28 22:13 UTC (permalink / raw
To: gentoo-commits
commit: cd2f12d4dd38901586b2940a5d93f497bc70670d
Author: Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Mon Oct 28 22:12:41 2024 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Mon Oct 28 22:12:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cd2f12d4
www-apps/mycorrhiza: drop 1.15.0
Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
www-apps/mycorrhiza/Manifest | 2 --
www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild | 45 ----------------------------
2 files changed, 47 deletions(-)
diff --git a/www-apps/mycorrhiza/Manifest b/www-apps/mycorrhiza/Manifest
index b1e63ccbc..9c316b38f 100644
--- a/www-apps/mycorrhiza/Manifest
+++ b/www-apps/mycorrhiza/Manifest
@@ -1,4 +1,2 @@
-DIST mycorrhiza-1.15.0-vendor.tar.xz 670776 BLAKE2B d43effa83bbff937419d4c9aeacb6c0107141653e26e78b98e27c975db47f170bdaf40f49a9f3d24a382a897963480f1500549ec3b16af3703b0702016a89a7a SHA512 5145107c91e8c58a71b7778731c6a40d4df791ada86a850c52c7358000fc398788510334b93d0e28e1053d1ed7013e80aaf0d500bc87c906e33822990467d7ca
-DIST mycorrhiza-1.15.0.tar.gz 141894 BLAKE2B ebb47ac42d0a1c2779e531473cb18c91c4e926a0f8d3c492b5aa8221d0e44f6ac79d9e7ba8e586375ec962e4fc0eb0c5a2c579bf28ca6c492e63cf106e9164ec SHA512 6ff0aada001d0b6be31aa1d8418e42b4db7166f0a97a5a5d627e7bfed64d9fe84bdc5fe30640249955fb406d6a725e4bd26fbf9931602b5a5ab9655d9da8432b
DIST mycorrhiza-1.15.1-vendor.tar.xz 684328 BLAKE2B dd6dff33d1169a830863ec52c861ac8580340da737036c8058b78965678a8b513e19bbd59c7fa9336ac49c51be292074c29639a45c6db1b327f8b6796bbf6d86 SHA512 f08c047d42e2b8b8dc7be188648405a365a01390f95d5f72d31526dbdf727f63a9fb9c50438d28326ff878fdcaac2023f0b5bdc2a38a1562c93272e7a26305f4
DIST mycorrhiza-1.15.1.tar.gz 135532 BLAKE2B e7895f32b942a02ae9b732f1ef5bbe4691d6fa60ecf47561d9579ab535504d7c05327da1036ff78cb493502e8799710f728a7d0fda7b39e20767f26d281e3d6a SHA512 54f6b18b7dc9bdcbbe6461f0f39be0cafe49c2f6d2bfb43831bc899dd1cdeffd3e8a7a52c6e9fac685619048867888945bcc9e4f2999a0915b3a6ec04ea4cee6
diff --git a/www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild b/www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild
deleted file mode 100644
index 78b08f61f..000000000
--- a/www-apps/mycorrhiza/mycorrhiza-1.15.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module
-
-DESCRIPTION="Git-based wiki engine written in Go using mycomarkup"
-HOMEPAGE="https://mycorrhiza.wiki"
-SRC_URI="
- https://github.com/bouncepaw/mycorrhiza/archive/v${PV}.tar.gz -> ${P}.tar.gz
- https://codeberg.org/BratishkaErik/distfiles/releases/download/mycorrhiza-${PV}/mycorrhiza-${PV}-vendor.tar.xz
-"
-
-LICENSE="AGPL-3 MIT Apache-2.0 BSD BSD-2 CC-BY-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RESTRICT="mirror"
-
-BDEPEND=">=dev-lang/go-1.22"
-RDEPEND="dev-vcs/git"
-
-DOCS=( Boilerplate.md README.md )
-
-src_compile() {
- ego build -buildmode=pie -ldflags "-s -linkmode external -extldflags '${LDFLAGS}'" -trimpath .
-}
-
-src_install() {
- dobin mycorrhiza
-
- einstalldocs
- doman help/mycorrhiza.1
-}
-
-pkg_postinst() {
- elog "Quick start: mycorrhiza /your/wiki/directory"
- elog
- elog "It will initialize a Git repository, set useful default settings"
- elog "And run a server on http://localhost:1737"
- elog "More information here: https://mycorrhiza.wiki/"
- elog "Also your wiki has built-in documentation :)"
- elog "You can view this documentation at http://localhost:1737/help"
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-10-28 22:13 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-31 19:51 [gentoo-commits] repo/proj/guru:dev commit in: www-apps/mycorrhiza/ Eric Joldasov
-- strict thread matches above, loose matches on Subject: below --
2024-10-28 22:13 Eric Joldasov
2024-10-28 22:10 Eric Joldasov
2024-10-28 22:10 Eric Joldasov
2024-10-28 22:10 Eric Joldasov
2024-08-01 19:19 Eric Joldasov
2023-04-16 6:14 Eric Joldasov
2023-04-07 13:57 Eric Joldasov
2022-11-05 8:28 Eric Joldasov
2022-11-04 17:05 Eric Joldasov
2022-11-04 17:03 Eric Joldasov
2022-09-11 4:29 Eric Joldasov
2022-08-17 14:08 Eric Joldasov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox