summaryrefslogtreecommitdiff
path: root/dev-java/jacl
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-20 07:59:50 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-20 07:59:50 +0100
commit2eda3a3b8ebdb3fc8552feb6f49e466d3bc8e88c (patch)
tree69a469da2fa8c3f4920325ac5595300929f5d884 /dev-java/jacl
parent9ed0c42eb618229fa6f45e10155ee535e1f605a2 (diff)
gentoo auto-resync : 20:10:2022 - 07:59:49
Diffstat (limited to 'dev-java/jacl')
-rw-r--r--dev-java/jacl/Manifest2
-rw-r--r--dev-java/jacl/metadata.xml52
2 files changed, 27 insertions, 27 deletions
diff --git a/dev-java/jacl/Manifest b/dev-java/jacl/Manifest
index fb06f94a4dbb..b5c2d1ed9791 100644
--- a/dev-java/jacl/Manifest
+++ b/dev-java/jacl/Manifest
@@ -1,3 +1,3 @@
DIST jacl-1.4.1.tar.gz 1921630 BLAKE2B 1b5693aa79fc50b5ff7a1ef86608b640d0bf391ced72dbe5d30f30fb46b26174535aac9d0ec32e1528f16af9e54def344d2fe38602700f921d612761f706fcce SHA512 e4b906efbd3ef4ab9338e8bf2f50c3b820e25b9fbe61f194e90cc0fa128f68d64eb459f7b05171d4b86b4c9635ef483906a02952bdedcee89ccb92256b789247
EBUILD jacl-1.4.1-r2.ebuild 997 BLAKE2B 6b2f3582d787fe69fda9ae089895747db854fcc4abef997d01e1108c055f308c285a9a87cfdb7ed97a44be138ddac17e178bc1bb9e86183158568f83f92ec730 SHA512 d60647711e6a3228df4d18394fb05f15cf978243c52034b64d01e74428df9f2ab436ab8a23517615fb99b21b716198e5788d06d8e49fe08aadfb30b7943f90d4
-MISC metadata.xml 2117 BLAKE2B a5929a947338b70ae6e55e33385ec8a709d191d75d93122a56c202add8f3b9350a2f54e6c1f87ad1206235bb273c88dac1707446b2d864227b9ae6335dd03bce SHA512 8e41dac5346fafe366423a573ae61149a6f7d451219bc31ab65c1031d8f8e33318791ea08fe340fc79305f4df4fea5c26da821513912c010fca8382a74093fac
+MISC metadata.xml 2143 BLAKE2B c11fb3c8aef19cd374c70ea18d5afdc335a4e05d3a899d9676edf9384eca4fe9eb570fa3c6effb57326b447278bb94d75dea3992b83a28448d8055400e539617 SHA512 14bcbe54a5f2e13d7f39b72825ed87f7d6f40975b5772759bbf399862044e07f690d38d711a18d232657a5102d57f05ea44412e760cc2d22c69ab570e0c4a794
diff --git a/dev-java/jacl/metadata.xml b/dev-java/jacl/metadata.xml
index 2cb9f05ebf1a..c574f221537a 100644
--- a/dev-java/jacl/metadata.xml
+++ b/dev-java/jacl/metadata.xml
@@ -6,35 +6,35 @@
<name>Java</name>
</maintainer>
<longdescription>
-The Tcl/Java project's goal is to make integrating the Java platform and the
-Tcl scripting language as easy as possible. The project actually consists of
-two distinct packages, called Tcl Blend and Jacl. It is important to
-understand what each package provides and in what situations one might choose
-to use Jacl or Tcl Blend.
+ The Tcl/Java project's goal is to make integrating the Java platform and the
+ Tcl scripting language as easy as possible. The project actually consists of
+ two distinct packages, called Tcl Blend and Jacl. It is important to
+ understand what each package provides and in what situations one might choose
+ to use Jacl or Tcl Blend.
-Tcl Blend is a Tcl extension that makes use of JNI to facilitate communication
-between a Java interpreter and a Tcl interpreter. Tcl Blend is typically used
-to load a Java interpreter into an existing Tcl process, so that functionality
-implemented in Java can be accessed via Tcl. One can also load Tcl Blend and
-Tcl into a Java process, which is a great way to add scripting functionality
-to an existing Java application. Because Tcl Blend is a normal Tcl extension,
-one can use it with other popular Tcl extensions like Tk, Expect, and Itcl.
+ Tcl Blend is a Tcl extension that makes use of JNI to facilitate communication
+ between a Java interpreter and a Tcl interpreter. Tcl Blend is typically used
+ to load a Java interpreter into an existing Tcl process, so that functionality
+ implemented in Java can be accessed via Tcl. One can also load Tcl Blend and
+ Tcl into a Java process, which is a great way to add scripting functionality
+ to an existing Java application. Because Tcl Blend is a normal Tcl extension,
+ one can use it with other popular Tcl extensions like Tk, Expect, and Itcl.
-Jacl is a self-contained implementation of a Tcl interpreter, written entirely
-in Java. Jacl also includes features that facilitate communication between a
-Java interpreter and a Tcl interpreter. Jacl is typically used to incorporate
-scripting functionality into an existing Java application. For users who want
-to avoid adding any native code to their Java applications, Jacl is the ideal
-solution.
+ Jacl is a self-contained implementation of a Tcl interpreter, written entirely
+ in Java. Jacl also includes features that facilitate communication between a
+ Java interpreter and a Tcl interpreter. Jacl is typically used to incorporate
+ scripting functionality into an existing Java application. For users who want
+ to avoid adding any native code to their Java applications, Jacl is the ideal
+ solution.
-Tcl Blend and Jacl define both a Tcl API and a Java API that make it easy to
-call Java code from Tcl or call Tcl code from Java. For example, one could
-allocate a Java object in a Tcl script and interactively invoke Java methods
-on the object. It is also easy to use the supplied API to evaluate a Tcl
-procedure from a Java method or implement Tcl procudures in Java. The flexible
-API and wealth of implementation options provided by the Tcl/Java project make
-integrating Tcl and Java easy.
-</longdescription>
+ Tcl Blend and Jacl define both a Tcl API and a Java API that make it easy to
+ call Java code from Tcl or call Tcl code from Java. For example, one could
+ allocate a Java object in a Tcl script and interactively invoke Java methods
+ on the object. It is also easy to use the supplied API to evaluate a Tcl
+ procedure from a Java method or implement Tcl procudures in Java. The flexible
+ API and wealth of implementation options provided by the Tcl/Java project make
+ integrating Tcl and Java easy.
+ </longdescription>
<upstream>
<remote-id type="sourceforge">tcljava</remote-id>
</upstream>