public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-mail/pop/
@ 2023-08-01 18:32 Jonas Frei
  0 siblings, 0 replies; 5+ messages in thread
From: Jonas Frei @ 2023-08-01 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     8e223fab305f03c56fe1517229cc4041a287ddbe
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Tue Aug  1 18:31:06 2023 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Tue Aug  1 18:32:21 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8e223fab

net-mail/pop: new package, add 0.2.0

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 net-mail/pop/Manifest         |  2 ++
 net-mail/pop/metadata.xml     | 12 ++++++++++++
 net-mail/pop/pop-0.2.0.ebuild | 35 +++++++++++++++++++++++++++++++++++
 3 files changed, 49 insertions(+)

diff --git a/net-mail/pop/Manifest b/net-mail/pop/Manifest
new file mode 100644
index 0000000000..a56727d673
--- /dev/null
+++ b/net-mail/pop/Manifest
@@ -0,0 +1,2 @@
+DIST pop-0.2.0-deps.tar.xz 30638132 BLAKE2B b672b33c7e20a74f62eb8f0f67b51ea6a2f9c817fb512808638288c162090d27651c6c463ce8605cb80bb1c71e4822aa7b194cc2d2928fc9f1ef7f3b636b5564 SHA512 78b6446897aa8e02e045b921ca5abdcbcc74af980105fc1711cc46ee16cb6880f4488a78140f172039a67b4de421c842c5813041164314b535076c575b294d00
+DIST pop-0.2.0.tar.gz 18853 BLAKE2B 7d59db09b5593de39f61fec4a8c0d433ed0e65993fa0b6ca25e79b7dc2fbee210a852f742ed3ce967e89d1d2c85546366128a73d2102b92795180f3ab84e6e8a SHA512 396c69ca1e5cec2456cdc420594ef9143c27d12567afbae1beb22acc063bfcc1e4ccac3aa80233c2f057916771de1ccae557b5909c77c4de39df90852e7faa81

diff --git a/net-mail/pop/metadata.xml b/net-mail/pop/metadata.xml
new file mode 100644
index 0000000000..d75171cf9b
--- /dev/null
+++ b/net-mail/pop/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>freijon@pm.me</email>
+		<name>Jonas Frei</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">charmbracelet/pop</remote-id>
+		<bugs-to>https://github.com/charmbracelet/pop/issues</bugs-to>
+	</upstream>
+</pkgmetadata>

diff --git a/net-mail/pop/pop-0.2.0.ebuild b/net-mail/pop/pop-0.2.0.ebuild
new file mode 100644
index 0000000000..568ac0098b
--- /dev/null
+++ b/net-mail/pop/pop-0.2.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Send emails from your terminal"
+HOMEPAGE="https://github.com/charmbracelet/pop"
+SRC_URI="https://github.com/charmbracelet/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+# Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html
+DEPS_URI="https://gitlab.com/freijon_gentoo/${CATEGORY}/${PN}/uploads/7f29f486dd58e399fd05ca93587660c5/${P}-deps.tar.xz"
+SRC_URI+=" ${DEPS_URI}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-lang/go
+"
+
+src_compile() {
+	ego build .
+}
+
+src_install() {
+	dobin ${PN}
+	dodoc "README.md"
+	default
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-mail/pop/
@ 2023-08-01 18:36 Jonas Frei
  0 siblings, 0 replies; 5+ messages in thread
From: Jonas Frei @ 2023-08-01 18:36 UTC (permalink / raw
  To: gentoo-commits

commit:     df67fc2629e3aeec884651b24c87823390daad1c
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Tue Aug  1 18:35:28 2023 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Tue Aug  1 18:35:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=df67fc26

net-mail/pop: update HOMEPAGE

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 net-mail/pop/pop-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/pop/pop-0.2.0.ebuild b/net-mail/pop/pop-0.2.0.ebuild
index 568ac0098b..cf85154128 100644
--- a/net-mail/pop/pop-0.2.0.ebuild
+++ b/net-mail/pop/pop-0.2.0.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit go-module
 
 DESCRIPTION="Send emails from your terminal"
-HOMEPAGE="https://github.com/charmbracelet/pop"
+HOMEPAGE="https://charm.sh"
 SRC_URI="https://github.com/charmbracelet/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
 
 # Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-mail/pop/
@ 2023-08-02 11:04 Jonas Frei
  0 siblings, 0 replies; 5+ messages in thread
From: Jonas Frei @ 2023-08-02 11:04 UTC (permalink / raw
  To: gentoo-commits

commit:     1d729ea97c3c6f12b51aa0a7f6f57fc8178c1be1
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Aug  2 11:01:17 2023 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Aug  2 11:03:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d729ea9

net-mail/pop: Modified dependency tarball URI

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 net-mail/pop/pop-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/pop/pop-0.2.0.ebuild b/net-mail/pop/pop-0.2.0.ebuild
index cf85154128..92d554f16c 100644
--- a/net-mail/pop/pop-0.2.0.ebuild
+++ b/net-mail/pop/pop-0.2.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://charm.sh"
 SRC_URI="https://github.com/charmbracelet/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
 
 # Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html
-DEPS_URI="https://gitlab.com/freijon_gentoo/${CATEGORY}/${PN}/uploads/7f29f486dd58e399fd05ca93587660c5/${P}-deps.tar.xz"
+DEPS_URI="https://gitlab.com/freijon_gentoo/${CATEGORY}/${PN}/-/raw/main/${P}-deps.tar.xz"
 SRC_URI+=" ${DEPS_URI}"
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-mail/pop/
@ 2025-02-11 13:30 Skyler Mäntysaari
  0 siblings, 0 replies; 5+ messages in thread
From: Skyler Mäntysaari @ 2025-02-11 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     e3e28d50ce244014bd88e7da720dbfa13b42c732
Author:     Skyler Mäntysaari <sm+gentoo <AT> skym <DOT> fi>
AuthorDate: Tue Feb 11 13:30:28 2025 +0000
Commit:     Skyler Mäntysaari <gentoo <AT> samip <DOT> fi>
CommitDate: Tue Feb 11 13:30:40 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e3e28d50

net-mail/pop: add gitlab upstream metadata

Signed-off-by: Skyler Mäntysaari <sm+gentoo <AT> skym.fi>

 net-mail/pop/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-mail/pop/metadata.xml b/net-mail/pop/metadata.xml
index d75171cf9..467d420a4 100644
--- a/net-mail/pop/metadata.xml
+++ b/net-mail/pop/metadata.xml
@@ -7,6 +7,7 @@
 	</maintainer>
 	<upstream>
 		<remote-id type="github">charmbracelet/pop</remote-id>
+                <remote-id type="gitlab">freijon_gentoo/net-mail/pop</remote-id>
 		<bugs-to>https://github.com/charmbracelet/pop/issues</bugs-to>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-mail/pop/
@ 2025-02-11 14:24 Skyler Mäntysaari
  0 siblings, 0 replies; 5+ messages in thread
From: Skyler Mäntysaari @ 2025-02-11 14:24 UTC (permalink / raw
  To: gentoo-commits

commit:     d4ff097d8d08226091d7352230f91750f1df0605
Author:     Skyler Mäntysaari <sm+gentoo <AT> skym <DOT> fi>
AuthorDate: Tue Feb 11 14:24:34 2025 +0000
Commit:     Skyler Mäntysaari <gentoo <AT> samip <DOT> fi>
CommitDate: Tue Feb 11 14:24:34 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d4ff097d

net-mail/pop: Fix the identation on metadata

Signed-off-by: Skyler Mäntysaari <sm+gentoo <AT> skym.fi>

 net-mail/pop/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/pop/metadata.xml b/net-mail/pop/metadata.xml
index 467d420a4..d2712e00c 100644
--- a/net-mail/pop/metadata.xml
+++ b/net-mail/pop/metadata.xml
@@ -7,7 +7,7 @@
 	</maintainer>
 	<upstream>
 		<remote-id type="github">charmbracelet/pop</remote-id>
-                <remote-id type="gitlab">freijon_gentoo/net-mail/pop</remote-id>
+		<remote-id type="gitlab">freijon_gentoo/net-mail/pop</remote-id>
 		<bugs-to>https://github.com/charmbracelet/pop/issues</bugs-to>
 	</upstream>
 </pkgmetadata>


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

end of thread, other threads:[~2025-02-11 14:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-02 11:04 [gentoo-commits] repo/proj/guru:dev commit in: net-mail/pop/ Jonas Frei
  -- strict thread matches above, loose matches on Subject: below --
2025-02-11 14:24 Skyler Mäntysaari
2025-02-11 13:30 Skyler Mäntysaari
2023-08-01 18:36 Jonas Frei
2023-08-01 18:32 Jonas Frei

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