From 7abc74d6bf4cd4d8db490af9059a83b243260538 Mon Sep 17 00:00:00 2001 From: Dustin Blackman Date: Wed, 27 Dec 2023 14:08:13 -0500 Subject: [PATCH] chore: Drop alpine linux repo for now --- .goreleaser.yml | 2 +- README.md | 9 --------- tools/apk.sh | 13 ------------- tools/release.sh | 1 - 4 files changed, 1 insertion(+), 24 deletions(-) delete mode 100755 tools/apk.sh diff --git a/.goreleaser.yml b/.goreleaser.yml index aa244de..1691711 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -195,7 +195,7 @@ nix: - default repository: owner: dustinblackman - name: nur + name: nur-packages homepage: https://github.com/dustinblackman/oatmeal description: Terminal UI to chat with large language models (LLM) using backends such as Ollama, and direct integrations with your favourite editor like Neovim! path: pkgs/oatmeal.nix diff --git a/README.md b/README.md index 4809875..d36ea70 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,6 @@ - [Fedora / CentOS](#fedora--centos) - [Nix](#nix) - [Arch Linux](#arch-linux) - - [Alpine Linux](#alpine-linux) - [Windows](#windows) - [Cargo](#cargo) - [Docker](#docker) @@ -85,14 +84,6 @@ nix-env -f '' -iA nur.repos.dustinblackman.oatmeal yay -S oatmeal-bin ``` -### Alpine Linux - -```sh -curl -s -o /etc/apk/keys/apk.dustinblackman.com.pub https://apk.dustinblackman.com/key.pub -echo "https://apk.dustinblackman.com/edge/main" | tee -a /etc/apk/repositories -apk add --no-cache oatmeal -``` - ### Windows **Chocolatey** diff --git a/tools/apk.sh b/tools/apk.sh deleted file mode 100755 index c7cf94f..0000000 --- a/tools/apk.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -set -e - -VERSION="$1" -DIST="$2" -TMPDIR="$(mktemp -d)" - -cd "$TMPDIR" -git clone --depth 1 git@github.com:dustinblackman/apk.git . -./add.sh oatmeal "$VERSION" "$DIST" -cd ~ -rm -rf "$TMPDIR" diff --git a/tools/release.sh b/tools/release.sh index d4c79dc..56537f7 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -73,7 +73,6 @@ cargo gha gh pr list -R microsoft/winget-pkgs -A dustinblackman --state open --j # Release to package managers not supported by GoReleaser. cargo publish tools/apt.sh "$OM_VERSION" "$(realpath dist)" -tools/apk.sh "$OM_VERSION" "$(realpath dist)" tools/yum.sh "$OM_VERSION" "$(realpath dist)" tools/choco.sh "$OM_VERSION" "$(realpath dist)"