Skip to content

Commit faa5b16

Browse files
committed
[email protected]: Add arm64 support
0 parents  commit faa5b16

File tree

1,488 files changed

+47583
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,488 files changed

+47583
-0
lines changed

.coderabbit.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
2+
language: "en"
3+
reviews:
4+
profile: chill
5+
auto_review:
6+
enabled: false
7+
review_status: false
8+
poem: false
9+
chat:
10+
auto_reply: false

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig (is awesome): http://EditorConfig.org
2+
3+
# * top-most EditorConfig file
4+
root = true
5+
6+
# default style settings
7+
[*]
8+
charset = utf-8
9+
end_of_line = crlf
10+
indent_size = 4
11+
indent_style = space
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
15+
[[Mm]akefile{,.*}]
16+
# TAB-style indentation
17+
indent_style = tab

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Since Scoop is a Windows-only tool, we can safely use CRLF line endings for all text files.
2+
# If Git decides that the content is text, its line endings will be normalized to CRLF in the working tree on checkout.
3+
# In the Git index/repository the files will always be stored with LF line endings. This is fine.
4+
* text=auto eol=crlf

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.github/workflows/ @ScoopInstaller/maintainers
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
name: 🐛 Bug Report
2+
description: Open an issue about a bug that needs fixing.
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Prerequisites
9+
options:
10+
- label: I have written a descriptive issue title.
11+
required: true
12+
- label: I have searched all issues/PRs to ensure it has not already been reported or fixed.
13+
required: true
14+
- label: I have verified that I am using the latest version of Scoop and corresponding bucket.
15+
required: true
16+
- type: input
17+
attributes:
18+
label: Package Name
19+
description: Name of package (install name) which has bug(s)
20+
placeholder: e.g. 7zip (not '7-Zip')
21+
validations:
22+
required: true
23+
- type: textarea
24+
attributes:
25+
label: Expected/Current Behaviour
26+
description: A clear and concise description of what you expected to happen and what actually happen.
27+
placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
28+
validations:
29+
required: true
30+
- type: textarea
31+
attributes:
32+
label: Steps to Reproduce
33+
description: List of steps, sample code or failing test that reproduces the behavior.
34+
render: console
35+
placeholder: |
36+
PS> scoop install tests/meson
37+
Installing 'meson' (0.61.1) [64bit]
38+
Loading meson-0.61.1-64.msi from cache.
39+
Checking hash of meson-0.61.1-64.msi ... ok.
40+
Extracting meson-0.61.1-64.msi ... done.
41+
Running installer script...
42+
Linking D:\Scoop\apps\meson\current => D:\Scoop\apps\meson\0.61.1
43+
Creating shim for 'meson'.
44+
Can't shim 'meson.exe': File doesn't exist.
45+
validations:
46+
required: true
47+
- type: textarea
48+
attributes:
49+
label: Possible Solution
50+
description: Do you have some suggestions on a fix for the bug?
51+
placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
52+
validations:
53+
required: true
54+
- type: textarea
55+
attributes:
56+
label: Scoop and Buckets Version
57+
description: Paste verbatim output from `scoop --version` below.
58+
render: console
59+
placeholder: |
60+
PS> scoop --version
61+
Current Scoop version:
62+
8aee6f99 (HEAD -> master, tag: v0.3.0, origin/master) chore(release): Bump to version 0.3.0
63+
64+
'extras' bucket:
65+
ea314b213 (HEAD -> master, origin/master, origin/HEAD) lazygit: Update to version 0.36.0
66+
67+
'main' bucket:
68+
c6e688d4d (HEAD -> master, origin/master, origin/HEAD) x265: Update to version 3.5+68-40e37bc
69+
validations:
70+
required: true
71+
- type: textarea
72+
attributes:
73+
label: Scoop Config
74+
description: Paste verbatim output from `scoop config` below.
75+
render: console
76+
placeholder: |
77+
PS> scoop config
78+
79+
last_update : 2022/11/14 22:05:50
80+
scoop_repo : https://github.com/ScoopInstaller/Scoop
81+
scoop_branch : master
82+
use_lessmsi : True
83+
aria2-enabled : True
84+
aria2-warning-enabled : False
85+
validations:
86+
required: true
87+
- type: textarea
88+
attributes:
89+
label: PowerShell Version
90+
description: Paste verbatim output from `$PSVersionTable` below.
91+
render: console
92+
placeholder: |
93+
PS> $PSVersionTable
94+
95+
Name Value
96+
---- -----
97+
PSVersion 7.3.0
98+
PSEdition Core
99+
GitCommitId 7.3.0
100+
OS Microsoft Windows 10.0.25236
101+
Platform Win32NT
102+
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
103+
PSRemotingProtocolVersion 2.3
104+
SerializationVersion 1.1.0.1
105+
WSManStackVersion 3.0
106+
validations:
107+
required: true
108+
- type: textarea
109+
attributes:
110+
label: Additional Softwares
111+
description: List any additional software that you are using and may be related to this bug.
112+
validations:
113+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Scoop Community Support
4+
url: https://github.com/ScoopInstaller/Scoop/discussions
5+
about: Please ask Scoop related questions here.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 🔢 Hash Error
2+
description: Open an issue about a package's hash is incorrect.
3+
labels: ["bug"]
4+
body:
5+
- type: checkboxes
6+
attributes:
7+
label: Prerequisites
8+
options:
9+
- label: I have used the predefined issue title. (e.g. "xxx@xxx: hash check failed")
10+
required: true
11+
- label: I have verified that I am using the latest version of Scoop and corresponding bucket.
12+
required: true
13+
- type: input
14+
attributes:
15+
label: Package Name and Version
16+
description: Name and version of package (install name) which has incorrect hash.
17+
placeholder: e.g. [email protected] (not '7-Zip')
18+
validations:
19+
required: true
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: 📦 Package Request
2+
description: Open an issue about a missing package.
3+
title: "[Request]: "
4+
labels: ["package-request"]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Prerequisites
9+
options:
10+
- label: I have searched all issues/PRs to ensure it has not already been reported or fixed.
11+
required: true
12+
- type: checkboxes
13+
attributes:
14+
label: Criteria
15+
description: For a package to be acceptable in this bucket, it should be
16+
options:
17+
- label: Non-GUI tool
18+
required: true
19+
- label: Reasonably well-known and widely used (e.g. if it's a GitHub project, it should have at least 500 stars and/or 150 forks)
20+
required: true
21+
- label: English interface (or at least English documentation)
22+
required: true
23+
- label: Latest stable version
24+
required: true
25+
- label: Full version (i.e. not a trial version)
26+
required: true
27+
- label: Fairly standard install (e.g. uses a version-specific download URL, no elaborate pre/post install scripts)
28+
required: true
29+
- type: input
30+
attributes:
31+
label: Name
32+
description: Name of the package
33+
validations:
34+
required: true
35+
- type: input
36+
attributes:
37+
label: Description
38+
description: Clear and concise details of what it is
39+
validations:
40+
required: true
41+
- type: input
42+
attributes:
43+
label: Homepage
44+
description: URI of the package's homepage
45+
validations:
46+
required: true
47+
- type: input
48+
attributes:
49+
label: Download Link(s)
50+
description: URI(s) of the package's download(s)
51+
validations:
52+
required: true
53+
- type: textarea
54+
attributes:
55+
label: Some Indication of Popularity/Repute
56+
description: GitHub stars/software reviews etc.
57+
validations:
58+
required: true

.github/pull_request_template.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!-- Provide a general summary of your changes in the title above -->
2+
3+
<!--
4+
By opening this PR you confirm that you have searched for similar issues/PRs here already.
5+
Failing to do so will most likely result in closing of this PR without any explanation.
6+
It is also mandatory to open a relevant issue (either Package Request or Bug Report) for
7+
discussion with the maintainers, before creating any new PR.
8+
Read the contributing guide first to save both your and our time.
9+
10+
Automatic code review is supported but disabled by default in this repository.
11+
You may trigger AI code review by requesting `Copilot` from the Reviewers menu,
12+
or by commenting `@coderabbitai review`.
13+
-->
14+
15+
<!--
16+
Closes #XXXX
17+
or
18+
Relates to #XXXX
19+
-->
20+
21+
- [ ] Use conventional PR title: `<manifest-name[@version]|chore>: <general summary of the pull request>`
22+
- [ ] I have read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md) <!-- where the first check box is documented, in case you don't read. -->

.github/stale.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Use ScoopInstaller/.github/.github/stale.yml
2+
_extends: .github

0 commit comments

Comments
 (0)