2024 年Clojure状态调查中分享你的想法!

欢迎!请参阅关于页面了解该工作的更多信息。

+1
ClojureCLR
编辑

更新2021/4/10 -- 1.10.0-rc2 从nuget安装并运行成功!

基本上只是标题,我能够安装和运行beta1,但rc1则在DotnetToolSettings.xml文件不正确的问题上遇到了一些问题。在我看来,这两个包中的文件看起来是一样的,所以我不确定该怎么办。输出比较这两个文件和安装命令

john@bbox ~ (git)-[master] % cat .nuget/packages/clojure.main/1.10.0-rc1/tools/net5.0/any/DotnetToolSettings.xml
<?xml version="1.0" encoding="utf-8"?>
<DotNetCliTool Version="1">
  <Commands>
    <Command Name="Clojure.Main" EntryPoint="Clojure.Main.dll" Runner="dotnet" />
  </Commands>
</DotNetCliTool>
john@bbox ~ (git)-[master] % cat .nuget/packages/clojure.main/1.10.0-beta1/tools/net5.0/any/DotnetToolSettings.xml
<?xml version="1.0" encoding="utf-8"?>
<DotNetCliTool Version="1">
  <Commands>
    <Command Name="Clojure.Main" EntryPoint="Clojure.Main.dll" Runner="dotnet" />
  </Commands>
</DotNetCliTool>
john@bbox ~ (git)-[master] % dotnet tool install --global Clojure.Main --version 1.10.0-rc1      
The settings file in the tool's NuGet package is invalid: Failed to retrieve tool configuration: Could not find a part of the path '/home/john/.dotnet/tools/.store/clojure.main/1.10.0-rc1/clojure.main/1.10.0-RC1/tools/net5.0/any/DotnetToolSettings.xml'.
Tool 'clojure.main' failed to install. Contact the tool author for assistance.
1 john@bbox ~ (git)-[master] % dotnet tool install --global Clojure.Main --version 1.10.0-beta1
Tools directory '/home/john/.dotnet/tools' is not currently on the PATH environment variable.
If you are using bash, you can add it to your profile by running the following command:

cat << \EOF >> ~/.bash_profile
# Add .NET Core SDK tools
export PATH="$PATH:/home/john/.dotnet/tools"
EOF

You can add it to the current session by running the following command:

export PATH="$PATH:/home/john/.dotnet/tools"

You can invoke the tool using the following command: Clojure.Main
Tool 'clojure.main' (version '1.10.0-beta1') was successfully installed.

版本信息

john@bbox ~ (git)-[master] % uname -a        
Linux bbox 5.10.23-0-lts #1-Alpine SMP Mon, 15 Mar 2021 06:55:22 +0000 x86_64 Linux
john@bbox ~ (git)-[master] % dotnet --version
5.0.202
john@bbox ~ (git)-[master] 

dotnet install的输出对于dotnet核心3.1也是同样的

1 个答案

+1

被选中
 
最佳答案

"它对我工作正常!":)

但我在Windows上进行了测试。

搜索时,我看到了一些提示,说大小写可能是问题。之前的版本是'beta1'。这一个的版本名是"RC1"。如果把它改为"rc1",可能会有所解决。

不确定是否有快速解决方案。
这里有一些建议:https://github.com/dotnet/sdk/issues/9731

嗨David,

结果是大小写出了问题,我尝试以`rc1`作为预发布版本来构建,这奏效了。我将我所做的工作推送到一个分支上,以保持清晰度 https://github.com/jjsullivan5196/clojure-clr/commit/2600608832eb125253fe0b41d8540f0897b8d243 感谢你的建议!

此外,我在Linux上遇到的其他一些构建问题也相对容易在Clojure.Compiler中解决。我也有一个针对这些内容的分支,认为这可能会很有用 https://github.com/jjsullivan5196/clojure-clr/tree/nix-build 我填写了贡献者协议,以提交补丁,但因为这个还没有问题,我会等待看看这是否会被欢迎 :^)
哦,太好了!你的补丁非常受欢迎。
我为你在分支中看到的两个问题创建了问题报告。

https://clojure.atlassian.net/browse/CLJCLR-110
https://clojure.atlassian.net/browse/CLJCLR-111
太好了!我刚刚为一个PR开源了,希望这能推进事情的发展!
PR已被接受。RC2即将推出。
RC2版本已发布供测试。
...