Files
gentoo/dev-java/asm-tree/metadata.xml
Michał Górny 05f3b5ac7f */*: Add proxied="yes" for non-@gentoo.org people
Done via:

  find -name metadata.xml -exec xml ed -P -L \
    -a '/pkgmetadata/maintainer[substring(email,
      string-length(email) - string-length("@gentoo.org") + 1)
      != "@gentoo.org"]' \
    -t attr -n proxied -v yes {} +

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2021-03-16 17:42:19 +01:00

27 lines
1.1 KiB
XML

<?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" proxied="yes">
<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>