Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/coatl-dev/scoop-coatl-dev

📦 coatl.dev Scoop bucket
https://github.com/coatl-dev/scoop-coatl-dev

ignition jython scoop scoop-apps scoop-bucket windows

Last synced: 6 days ago
JSON representation

📦 coatl.dev Scoop bucket

Awesome Lists containing this project

README

        

# coatl.dev Scoop bucket

[![Tests](https://github.com/coatl-dev/scoop-coatl-dev/actions/workflows/ci.yml/badge.svg)](https://github.com/coatl-dev/scoop-coatl-dev/actions/workflows/ci.yml)

coatl-dev's bucket for [Scoop](https://scoop.sh), the Windows command-line installer.

## How do I install these manifests?

To add this bucket, run:

```powershell
scoop bucket add scoop-coatl-dev https://github.com/coatl-dev/scoop-coatl-dev
```

### `ignition`

To be able to download the `ignition` ZIP installer we must set a [referer],
so first we must edit our `scoop`'s `config.json`, which is typically found at
`%USERPROFILE%\.config\scoop\config.json`, and add or edit the `private_hosts`
section:

```json
{
"lastUpdate": "2022-09-09T15:41:41.2176701-07:00",
"SCOOP_REPO": "https://github.com/ScoopInstaller/Scoop",
"SCOOP_BRANCH": "master",
"private_hosts": [
{
"match": "https://files.inductiveautomation.com/*",
"headers": "Referer=https://inductiveautomation.com/"
}
]
}
```

Finally:

```powershell
scoop install scoop-coatl-dev/ignition
```

To uninstall:

```powershell
scoop uninstall --purge ignition
```

### `jython`

Since `jython` depends on Java, we recommend `java/zulu17-jre`, which can be installed by...

Adding the `java` bucket:

```powershell
scoop bucket add java
```

Then:

```powershell
scoop install zulu17-jre
```

And finally:

```powershell
scoop install scoop-coatl-dev/jython
```

To uninstall:

```powershell
scoop uninstall jython
```

### Python

```powershell
scoop install scoop-coatl-dev/python27
```

```powershell
scoop install scoop-coatl-dev/python312
```

```powershell
scoop install scoop-coatl-dev/python313
```

## How do I contribute new manifests?

To make a new manifest contribution, please read the [Contributing Guide].

[Contributing Guide]: https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md
[referer]: https://learn.microsoft.com/en-us/dotnet/api/system.net.httpwebrequest.referer