* [gentoo-commits] repo/gentoo:master commit in: dev-go/protobuf-go/
@ 2023-05-31 22:43 William Hubbs
0 siblings, 0 replies; 2+ messages in thread
From: William Hubbs @ 2023-05-31 22:43 UTC (permalink / raw
To: gentoo-commits
commit: 5874f0036b4c530a67c52fea1bd0fd1e280d897f
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 22:41:48 2023 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed May 31 22:43:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5874f003
dev-go/protobuf-go: new package, add 1.30.0
This is the go support for Google's protocol buffers.
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/protobuf-go/Manifest | 2 ++
dev-go/protobuf-go/metadata.xml | 8 ++++++++
dev-go/protobuf-go/protobuf-go-1.30.0.ebuild | 24 ++++++++++++++++++++++++
3 files changed, 34 insertions(+)
diff --git a/dev-go/protobuf-go/Manifest b/dev-go/protobuf-go/Manifest
new file mode 100644
index 000000000000..3d11e2f353a7
--- /dev/null
+++ b/dev-go/protobuf-go/Manifest
@@ -0,0 +1,2 @@
+DIST protobuf-go-1.30.0-deps.tar.xz 565680 BLAKE2B 711bdcd31c7986dd63a47db946d84081087c9a815b41c7239e8da312ca20faa7fbb8e4b03c59819c7403ff99e2eb691c436a3c03c7065c5ff99f513c90fc5d34 SHA512 73fffe68233c25b19edd0f22c0b1fb3e769a72a74ce00dcf5c1614ae2ec1f450e41283709791bbf0b31d08c462dc51ac08c07fece957aaec7850de66833c3648
+DIST protobuf-go-1.30.0.tar.gz 1298988 BLAKE2B 8ab6a105e691eacc60b6dc8ab872298469fcd38aad2fe7f5373761b2fa8e6208499db1b7eaccc40e5159dfcc2d1e4c9b5b5cbd81cb85787f88bcf93f355aa263 SHA512 379860dda3ccff3d6687520d92320a7543562cea104634a17abe5733c2d028116d2740434b33e39e7b263b9468806da7fe15af40c8e23c490c67fd9f9db8b770
diff --git a/dev-go/protobuf-go/metadata.xml b/dev-go/protobuf-go/metadata.xml
new file mode 100644
index 000000000000..3b2a9c591010
--- /dev/null
+++ b/dev-go/protobuf-go/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+<email>williamh@gentoo.org</email>
+<name>William Hubbs</name>
+</maintainer>
+</pkgmetadata>
diff --git a/dev-go/protobuf-go/protobuf-go-1.30.0.ebuild b/dev-go/protobuf-go/protobuf-go-1.30.0.ebuild
new file mode 100644
index 000000000000..614b5698d2ee
--- /dev/null
+++ b/dev-go/protobuf-go/protobuf-go-1.30.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit go-module
+
+DESCRIPTION="Go support for Google's protocol buffers"
+HOMEPAGE="http://protobuf.dev"
+SRC_URI="https://github.com/protocolbuffers/protobuf-go/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-libs/protobuf"
+
+src_compile() {
+ ego build ./cmd/protoc-gen-go
+}
+
+src_install() {
+dobin protoc-gen-go
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/protobuf-go/
@ 2023-05-31 22:51 William Hubbs
0 siblings, 0 replies; 2+ messages in thread
From: William Hubbs @ 2023-05-31 22:51 UTC (permalink / raw
To: gentoo-commits
commit: 302fb79c1492a2de12704d1f29f4284fcaec097a
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 22:50:43 2023 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed May 31 22:50:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=302fb79c
dev-go/protobuf-go: add github upstream metadata
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/protobuf-go/metadata.xml | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/dev-go/protobuf-go/metadata.xml b/dev-go/protobuf-go/metadata.xml
index 3b2a9c591010..7da7f208bd96 100644
--- a/dev-go/protobuf-go/metadata.xml
+++ b/dev-go/protobuf-go/metadata.xml
@@ -1,8 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person">
-<email>williamh@gentoo.org</email>
-<name>William Hubbs</name>
-</maintainer>
+ <maintainer type="person">
+ <email>williamh@gentoo.org</email>
+ <name>William Hubbs</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">protocolbuffers/protobuf-go</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-05-31 22:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-31 22:51 [gentoo-commits] repo/gentoo:master commit in: dev-go/protobuf-go/ William Hubbs
-- strict thread matches above, loose matches on Subject: below --
2023-05-31 22:43 William Hubbs
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox