* [gentoo-commits] repo/gentoo:master commit in: dev-lang/jerryscript/
@ 2021-05-23 10:41 Zac Medico
0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2021-05-23 10:41 UTC (permalink / raw
To: gentoo-commits
commit: 75e53ff3f27c3346277c2fec0879f33eb22970ab
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun May 23 09:07:07 2021 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun May 23 10:41:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75e53ff3
dev-lang/jerryscript: Initial import
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-lang/jerryscript/Manifest | 1 +
dev-lang/jerryscript/jerryscript-2.4.0.ebuild | 44 +++++++++++++++++++++++++++
dev-lang/jerryscript/metadata.xml | 12 ++++++++
3 files changed, 57 insertions(+)
diff --git a/dev-lang/jerryscript/Manifest b/dev-lang/jerryscript/Manifest
new file mode 100644
index 00000000000..7531fb469ee
--- /dev/null
+++ b/dev-lang/jerryscript/Manifest
@@ -0,0 +1 @@
+DIST jerryscript-2.4.0.tar.gz 2802799 BLAKE2B 18a3f71e7d3e2fc43772cb94aa3b0d4d28d72c6cd174eb0195f09283c5da5140ef85e86c6ed7a82e672724563549294c26d870b55c8bd9d0a92251b1002c612a SHA512 e96e6c6a2207ff869474801a1f8bbd3ce453d4076e558736ebf6962ccab08540f57cf932ec43bcd40429e21f1c6453d77874dd0a467d91a15d8357257533c1ea
diff --git a/dev-lang/jerryscript/jerryscript-2.4.0.ebuild b/dev-lang/jerryscript/jerryscript-2.4.0.ebuild
new file mode 100644
index 00000000000..d3949f02d59
--- /dev/null
+++ b/dev-lang/jerryscript/jerryscript-2.4.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Ultra-lightweight JavaScript engine for the Internet of Things"
+HOMEPAGE="https://github.com/jerryscript-project/jerryscript"
+SRC_URI="https://github.com/jerryscript-project/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+src_prepare() {
+ find . -name CMakeLists.txt -print0 | xargs -0 sed -i \
+ -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:" \
+ -e "s:DESTINATION lib):DESTINATION $(get_libdir)):" \
+ || die
+ cmake_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_STRIP=OFF
+ -DJERRY_DEBUGGER=ON
+ -DJERRY_ERROR_MESSAGES=ON
+ -DJERRY_EXTERNAL_CONTEXT=ON
+ -DJERRY_LINE_INFO=ON
+ -DJERRY_LOGGING=ON
+ -DJERRY_PARSER_DUMP_BYTE_CODE=ON
+ -DJERRY_PARSER=ON
+ -DJERRY_REGEXP_DUMP_BYTE_CODE=ON
+ -DJERRY_SNAPSHOT_EXEC=ON
+ -DJERRY_SNAPSHOT_SAVE=ON
+ )
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+}
diff --git a/dev-lang/jerryscript/metadata.xml b/dev-lang/jerryscript/metadata.xml
new file mode 100644
index 00000000000..0c73846f82d
--- /dev/null
+++ b/dev-lang/jerryscript/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>zmedico@gentoo.org</email>
+ <name>Zac Medico</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/jerryscript-project/jerryscript/issues</bugs-to>
+ <remote-id type="github">jerryscript-project/jerryscript</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/jerryscript/
@ 2021-06-14 7:13 Zac Medico
0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2021-06-14 7:13 UTC (permalink / raw
To: gentoo-commits
commit: fd68871a6c49ad0f9b9e79a2822636cba51579c7
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 14 07:12:14 2021 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 07:13:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd68871a
dev-lang/jerryscript: RESTRICT+= test
Disable tests which were not expected to run.
Closes: https://bugs.gentoo.org/795918
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild b/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild
index 369fd92e37c..f7f6592c87b 100644
--- a/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild
+++ b/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild
@@ -16,6 +16,7 @@ KEYWORDS="~amd64"
IUSE="debugger"
RDEPEND="debugger? ( ${PYTHON_DEPS} )"
BDEPEND="${RDEPEND}"
+RESTRICT+=" test"
PATCHES=(
"${FILESDIR}/jerryscript-2.4.0-python3.patch"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/jerryscript/
@ 2022-01-01 20:35 Zac Medico
0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2022-01-01 20:35 UTC (permalink / raw
To: gentoo-commits
commit: da86570a762bbe7b2ea1f79743c851f382a19342
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 1 20:35:16 2022 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Jan 1 20:35:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da86570a
dev-lang/jerryscript: PYTHON_COMPAT+=(python3_10)
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild b/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild
index f7f6592c87ba..618eb5259a29 100644
--- a/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild
+++ b/dev-lang/jerryscript/jerryscript-2.4.0-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=(python3_{7,8,9})
+PYTHON_COMPAT=(python3_{7,8,9,10})
inherit cmake python-any-r1
DESCRIPTION="Ultra-lightweight JavaScript engine for the Internet of Things"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/jerryscript/
@ 2023-05-04 5:42 Zac Medico
0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2023-05-04 5:42 UTC (permalink / raw
To: gentoo-commits
commit: 0b77fb787232cba5c137ef301def8d65f4a54c36
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 05:37:54 2023 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu May 4 05:40:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b77fb78
dev-lang/jerryscript: enable py3.11
Closes: https://bugs.gentoo.org/896696
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild b/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild
index 0664595d496f..60be1af801e9 100644
--- a/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild
+++ b/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
inherit cmake python-single-r1
DESCRIPTION="Ultra-lightweight JavaScript engine for the Internet of Things"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/jerryscript/
@ 2024-05-12 19:29 Zac Medico
0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2024-05-12 19:29 UTC (permalink / raw
To: gentoo-commits
commit: 09af1b7b4285a3083f4221bda80c92dc0838315d
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun May 12 19:21:37 2024 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun May 12 19:27:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09af1b7b
dev-lang/jerryscript: enable py3.12
Closes: https://bugs.gentoo.org/929400
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild b/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild
index 60be1af801e9..c87480e20a8c 100644
--- a/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild
+++ b/dev-lang/jerryscript/jerryscript-2.4.0-r4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021-2023 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit cmake python-single-r1
DESCRIPTION="Ultra-lightweight JavaScript engine for the Internet of Things"
@@ -17,7 +17,7 @@ IUSE="debugger"
RDEPEND="debugger? ( ${PYTHON_DEPS} )"
BDEPEND="${RDEPEND}"
REQUIRED_USE="debugger? ( ${PYTHON_REQUIRED_USE} )"
-RESTRICT+=" test"
+RESTRICT="test"
PATCHES=(
"${FILESDIR}/jerryscript-2.4.0-python3-r4.patch"
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-05-12 19:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-01 20:35 [gentoo-commits] repo/gentoo:master commit in: dev-lang/jerryscript/ Zac Medico
-- strict thread matches above, loose matches on Subject: below --
2024-05-12 19:29 Zac Medico
2023-05-04 5:42 Zac Medico
2021-06-14 7:13 Zac Medico
2021-05-23 10:41 Zac Medico
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox