public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-jq/emojify/
@ 2024-11-05  2:11 Wu Zhenyu
  0 siblings, 0 replies; 2+ messages in thread
From: Wu Zhenyu @ 2024-11-05  2:11 UTC (permalink / raw
  To: gentoo-commits

commit:     c4b0e2b6c0ed0950b3328541f16ad52334f0da05
Author:     Wu, Zhenyu <wuzhenyu <AT> ustc <DOT> edu>
AuthorDate: Tue Nov  5 02:09:53 2024 +0000
Commit:     Wu Zhenyu <Wuzy01 <AT> qq <DOT> com>
CommitDate: Tue Nov  5 02:11:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c4b0e2b6

dev-jq/emojify: new package, add 0.0.1

Signed-off-by: Wu, Zhenyu <wuzhenyu <AT> ustc.edu>

 dev-jq/emojify/Manifest             |  2 ++
 dev-jq/emojify/emojify-0.0.1.ebuild | 37 +++++++++++++++++++++++++++++++++++++
 dev-jq/emojify/metadata.xml         | 16 ++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/dev-jq/emojify/Manifest b/dev-jq/emojify/Manifest
new file mode 100644
index 000000000..5e380d4bf
--- /dev/null
+++ b/dev-jq/emojify/Manifest
@@ -0,0 +1,2 @@
+DIST gemoji-4.1.0.tar.gz 104847 BLAKE2B e5a59d69721891f7bab7d987dfb0fbd8fc4fd5b6d2660a7b47c1d116a5b24e4668e8fd66b4cc47ee3ba95702ab3ed9813efe6b3d7b5595f10d2086c778bee855 SHA512 13224d5bae5b736d9dd238992a1f2acd3d88adf08e765bf898944a673580bfef2448090e1dd8727875f2443c47cf53f6fa54ab156ac614c42ba61f291efc1cf5
+DIST jq-emojify-0.0.1.tar.gz 15509 BLAKE2B 9dd132090d5f2fd7de19b9aeec65a79cbd3e37209a608b1fcad9eab63da97e94277103ca20651f072eec1aaccdf3d16eb52ae91c6a997f8eed20e05d88f6579d SHA512 573d2290c8248ec1f24b31150703f8ce4928af1496fee2683c1c911f92dc119f382ddde1aed274caa008c7ae81822bf240b019024b8d0459701d3038275d89b2

diff --git a/dev-jq/emojify/emojify-0.0.1.ebuild b/dev-jq/emojify/emojify-0.0.1.ebuild
new file mode 100644
index 000000000..97ba3b1a8
--- /dev/null
+++ b/dev-jq/emojify/emojify-0.0.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A jq implementation for emojify"
+HOMEPAGE="https://github.com/Freed-Wu/jq-emojify"
+
+_VERSION=4.1.0
+SRC_URI="
+         $HOMEPAGE/archive/${PV}.tar.gz -> jq-$P.tar.gz
+         https://github.com/github/gemoji/archive/v$_VERSION.tar.gz -> gemoji-$_VERSION.tar.gz
+"
+S="${WORKDIR}/jq-${P}"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~arm64-macos ~x64-macos"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+         app-misc/jq
+"
+
+BDEPEND="
+         app-misc/jq
+"
+
+src_prepare() {
+	default
+	sed -i s=/usr=$EPREFIX/usr=g emojify scripts/generate-emoji.jq.jq
+}
+
+src_install() {
+	install -d "$ED/usr/lib/jq"
+	scripts/generate-emoji.jq.jq ../gemoji-$_VERSION/db/emoji.json > "$ED/usr/lib/jq/emoji.jq"
+	install -D emojify -t "$ED/usr/bin"
+}

diff --git a/dev-jq/emojify/metadata.xml b/dev-jq/emojify/metadata.xml
new file mode 100644
index 000000000..e18ea117d
--- /dev/null
+++ b/dev-jq/emojify/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>grozin@gentoo.org</email>
+		<name>Andrey Grozin</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="pypi">pudb</remote-id>
+		<remote-id type="github">inducer/pudb</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-jq/emojify/
@ 2024-11-05 13:45 Takuya Wakazono
  0 siblings, 0 replies; 2+ messages in thread
From: Takuya Wakazono @ 2024-11-05 13:45 UTC (permalink / raw
  To: gentoo-commits

commit:     341a71c8e042933c1e1032fc444148929ee83fbd
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Tue Nov  5 13:44:14 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Tue Nov  5 13:44:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=341a71c8

dev-jq/emojify: unkeyword for ~arm ~x86 ~arm64-macos ~x64-macos

Dropping questionable keywords.

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 dev-jq/emojify/emojify-0.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-jq/emojify/emojify-0.0.1-r1.ebuild b/dev-jq/emojify/emojify-0.0.1-r1.ebuild
index 4e8d6e262..84cd39bff 100644
--- a/dev-jq/emojify/emojify-0.0.1-r1.ebuild
+++ b/dev-jq/emojify/emojify-0.0.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
          https://github.com/github/gemoji/archive/v$_VERSION.tar.gz -> gemoji-$_VERSION.tar.gz
 "
 S="${WORKDIR}/jq-${P}"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~amd64 ~arm64"
 
 LICENSE="GPL-3"
 SLOT="0"


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

end of thread, other threads:[~2024-11-05 13:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-05  2:11 [gentoo-commits] repo/proj/guru:dev commit in: dev-jq/emojify/ Wu Zhenyu
  -- strict thread matches above, loose matches on Subject: below --
2024-11-05 13:45 Takuya Wakazono

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