diff options
author | Kaibo Ma <kaiboma06@gmail.com> | 2021-02-20 15:36:14 +0000 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-02-23 10:13:43 +0100 |
commit | a5db61dfb375fc90fe5846215f86346998c85229 (patch) | |
tree | 1357dce59a209205e62ac930a7b1f176dead40b7 /dev-java/asm-util/metadata.xml | |
parent | dev-java/commons-lang: bump to 3.11 (diff) | |
download | gentoo-a5db61dfb375fc90fe5846215f86346998c85229.tar.gz gentoo-a5db61dfb375fc90fe5846215f86346998c85229.tar.bz2 gentoo-a5db61dfb375fc90fe5846215f86346998c85229.zip |
dev-java/asm{,-*}: new packages and version bumps
dev-java/asm bumped to the latest versions, because upstream doesn't
publish asm-all anymore, we should also split it into components.
The dependencies are as follows:
- asm: no dependency
- asm-tree: asm
- asm-analysis: asm, asm-tree
- asm-commons and asm-util: asm, asm-tree, asm-analysis
Testing is still restricted because it uses JUnit 5 for testing.
Signed-off-by: Kaibo Ma <kaiboma06@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19473
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/asm-util/metadata.xml')
-rw-r--r-- | dev-java/asm-util/metadata.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-java/asm-util/metadata.xml b/dev-java/asm-util/metadata.xml new file mode 100644 index 000000000000..f653390931e4 --- /dev/null +++ b/dev-java/asm-util/metadata.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>java@gentoo.org</email> + <name>Java</name> + </maintainer> + <maintainer type="person"> + <email>kaiboma06@gmail.com</email> + <name>Kaibo Ma</name> + </maintainer> + <longdescription> + ASM is a Java bytecode manipulation framework. It can be used to + dynamically generate stub classes or other proxy classes, directly in + binary form, or to dynamically modify classes at load time, i.e., just + before they are loaded into the Java Virtual Machine. + + ASM offers similar functionalities as BCEL or SERP, but is much more + smaller (25KB instead of 350KB for BCEL and 150KB for SERP) and faster + than these tools (the overhead of a load time class transformation is of + the order of 60% with ASM, 700% or more with BCEL, and 1100% or more + with SERP). Indeed ASM was designed to be used in a dynamic way* and was + therefore designed and implemented to be as small and as fast as + possible. + </longdescription> +</pkgmetadata> |