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

commit:     2a67d10bdb2ac57fdf141fe7b8ec7e7f5fc1a94f
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Tue Aug  1 18:31:28 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=2a67d10b

app-office/invoice: new package, add 0.1.0

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

 app-office/invoice/Manifest             |  2 ++
 app-office/invoice/invoice-0.1.0.ebuild | 35 +++++++++++++++++++++++++++++++++
 app-office/invoice/metadata.xml         | 12 +++++++++++
 3 files changed, 49 insertions(+)

diff --git a/app-office/invoice/Manifest b/app-office/invoice/Manifest
new file mode 100644
index 0000000000..032644ab49
--- /dev/null
+++ b/app-office/invoice/Manifest
@@ -0,0 +1,2 @@
+DIST invoice-0.1.0-deps.tar.xz 21517072 BLAKE2B 8e351b4aa74994f632ae35d88eb60838a7240551e717fda5657576eba4a1cb6e139870d1830980897d14c12842f54edc49638782f149cafc4f50a8208b5a1aad SHA512 01924501b6d9009027e7ffcf0100149ddaac6dde551a65e9cf150d52c48f0e423ffe29c9d6d232086b4b8e3426580b4342177dec1e9315bf7ddbb63b32cf07c4
+DIST invoice-0.1.0.tar.gz 22300950 BLAKE2B 245d317c82306e70047545b0914e76aa7b69a2e7958387bb0bdbe76d1a77f4e9e873a8a206efec0a0996f614f647c5c918aa871efd301e5b2cfcd4b55b630998 SHA512 534350bcfae7226888295e9227582be5c1a5bb64100f9465af74a991d6406466df9305f1a2fe1f64065bb90b458afe3dc8fb925090032ba22d62c16fe4183696

diff --git a/app-office/invoice/invoice-0.1.0.ebuild b/app-office/invoice/invoice-0.1.0.ebuild
new file mode 100644
index 0000000000..f258ceb7dc
--- /dev/null
+++ b/app-office/invoice/invoice-0.1.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="Generate invoices from the command line"
+HOMEPAGE="https://github.com/maaslalani/invoice"
+SRC_URI="https://github.com/maaslalani/${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/c7abf25c03f3397186c9deff055a9e89/${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
+}

diff --git a/app-office/invoice/metadata.xml b/app-office/invoice/metadata.xml
new file mode 100644
index 0000000000..978566aa50
--- /dev/null
+++ b/app-office/invoice/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">maaslalani/invoice</remote-id>
+		<bugs-to>https://github.com/maaslalani/invoice/issues</bugs-to>
+	</upstream>
+</pkgmetadata>


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

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

commit:     7032c216933475d408c49efe540f2efc0686f04a
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Aug  2 11:03:29 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=7032c216

app-office/invoice: Modified dependency tarball URI

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

 app-office/invoice/invoice-0.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/invoice/invoice-0.1.0.ebuild b/app-office/invoice/invoice-0.1.0.ebuild
index f258ceb7dc..e352cdc0ea 100644
--- a/app-office/invoice/invoice-0.1.0.ebuild
+++ b/app-office/invoice/invoice-0.1.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/maaslalani/invoice"
 SRC_URI="https://github.com/maaslalani/${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/c7abf25c03f3397186c9deff055a9e89/${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] 2+ messages in thread

end of thread, other threads:[~2023-08-02 11:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-01 18:32 [gentoo-commits] repo/proj/guru:dev commit in: app-office/invoice/ Jonas Frei
  -- strict thread matches above, loose matches on Subject: below --
2023-08-02 11:04 Jonas Frei

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