- Notifications
You must be signed in to change notification settings - Fork1.5k
PermalinkChoose a base ref {{ refName }}default Choose a head ref {{ refName }}default Checking mergeability… Don’t worry, you can still create the pull request.
Comparing changes
Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also orlearn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also.Learn more about diff comparisons here.
base repository:clojure/clojure
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
Uh oh!
There was an error while loading.Please reload this page.
base:master
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}defaultLoading
...
head repository:clojure/clojure
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
Uh oh!
There was an error while loading.Please reload this page.
compare:asm-update
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}defaultLoading
Uh oh!
There was an error while loading.Please reload this page.
- 3commits
- 35files changed
- 2contributors
Commits on Aug 20, 2024
vendor asm to sha 0e57baee3373d9ee40068ceb78dc0dbc4bf8484a
the following script vendors asm + GeneratorAdapter.java and its depsin $CLOJURE/src/main/java under the package clojure.asm#!/bin/bash# author Ghadi Shayban <gshayban@gmail.com>set -eASMURI=https://gitlab.ow2.org/asm/asm.gitif [ -z ${1+x} ]then echo error: provide an asm git sha / ref echo recent asm tags: git ls-remote --refs --tags $ASMURI \ | cut -f 3 -d / | tac | head -n 10 exit 1fiASMROOT=asmvendorCLJASM=src/jvm/clojure/asmecho shallow clonegit clone --quiet --no-checkout --depth 30 $ASMURI $ASMROOTpushd $ASMROOT > /dev/nullGITREF=$(git rev-parse $1)git checkout --quiet $GITREFpopd > /dev/nullecho removing existing clojure.asmgit rm -r --ignore-unmatch $CLJASM > /dev/nullmkdir -p $CLJASM $CLJASM/commonsecho copying vendored filescp $ASMROOT/asm/src/main/java/org/objectweb/asm/*.java $CLJASMfor cls in GeneratorAdapter Method LocalVariablesSorter TableSwitchGenerator;docp \ $ASMROOT/asm-commons/src/main/java/org/objectweb/asm/commons/${cls}.java \ $CLJASM/commonsdoneecho rewriting package namesfind $CLJASM -name '*.java' -print0 | xargs -0 sed -iBAK 's/org.objectweb.asm/clojure.asm/g'find $CLJASM -name '*BAK' -deleteecho git commitgit add $CLJASMcat - "${BASH_SOURCE[0]}" > COMMIT_MSG <<EOMvendor asm to sha $GITREFthe following script vendors asm + GeneratorAdapter.java and its depsin \$CLOJURE/src/main/java under the package clojure.asmEOMgit commit \ -F COMMIT_MSG \ --author='Ghadi Shayban <gshayban@gmail.com>' \ > /dev/null \ && rm COMMIT_MSGrm -rf $ASMROOT
Commits on Nov 13, 2024
Add InstructionAdapter asm was missed by asm update script
JarrodCTaylor committedNov 13, 2024
Commits on Nov 14, 2024
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff master...asm-update
Uh oh!
There was an error while loading.Please reload this page.