Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
Permalink

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
base:master
Choose a base ref
Loading
...
head repository:clojure/clojure
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:asm-update
Choose a head ref
Loading
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3commits
  • 35files changed
  • 2contributors

Commits on Aug 20, 2024

  1. 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
    @ghadishayban@JarrodCTaylor
    ghadishayban authored andJarrodCTaylor committedAug 20, 2024
    Configuration menu
    Copy the full SHA
    33c1dd7View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Configuration menu
    Copy the full SHA
    ecf0b55View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Configuration menu
    Copy the full SHA
    1a2bdcaView commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp