diff options
author | Caleb Maclennan | 2024-05-31 17:25:01 +0300 |
---|---|---|
committer | Caleb Maclennan | 2024-05-31 17:25:01 +0300 |
commit | 3dae6e2c198029d3b1ef82c71c3c3f6b46080ea7 (patch) | |
tree | dcc8b46083a02813505fe8262473443f30e2397a | |
parent | cfdb452340c43ca0cb2f5d7b56636ade4dd4917b (diff) | |
download | aur-3dae6e2c198029d3b1ef82c71c3c3f6b46080ea7.tar.gz |
Rename package base to match [extra] package naming
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | .nvchecker.toml | 2 | ||||
-rw-r--r-- | PKGBUILD | 7 |
3 files changed, 13 insertions, 9 deletions
@@ -1,4 +1,4 @@ -pkgbase = zed-editor-git +pkgbase = zed-git pkgdesc = A high-performance, multiplayer code editor from the creators of Atom and Tree-sitter pkgver = 0.136.2.r48.g70888cf pkgrel = 1 @@ -30,9 +30,12 @@ pkgbase = zed-editor-git depends = wayland depends = zlib depends = libz.so - provides = zed-editor=0.136.2.r48.g70888cf - conflicts = zed-editor - source = zed-editor-git::git+https://github.com/zed-industries/zed.git + provides = zed=0.136.2.r48.g70888cf + provides = zed-editor-git + conflicts = zed + conflicts = zed-editor-git + replaces = zed-editor-git + source = zed-git::git+https://github.com/zed-industries/zed.git sha256sums = SKIP -pkgname = zed-editor-git +pkgname = zed-git diff --git a/.nvchecker.toml b/.nvchecker.toml index 7406911c81bf..5536b3b4d70e 100644 --- a/.nvchecker.toml +++ b/.nvchecker.toml @@ -1,2 +1,2 @@ -[zed-editor-git] +[zed-git] source = 'manual' @@ -6,7 +6,7 @@ # a package to test in the suite, just skip it by default. BUILDENV+=(!check) -pkgname=zed-editor-git +pkgname=zed-git pkgver=0.136.2.r48.g70888cf pkgrel=1 pkgdesc='A high-performance, multiplayer code editor from the creators of Atom and Tree-sitter' @@ -36,8 +36,9 @@ makedepends=(cargo git vulkan-headers vulkan-validation-layers) -provides=("${pkgname%-git}=$pkgver") -conflicts=("${pkgname%-git}") +replaces=(zed-editor-git) +provides=("${pkgname%-git}=$pkgver" zed-editor-git) +conflicts=("${pkgname%-git}" zed-editor-git) source=("$pkgname::git+$_url.git") sha256sums=('SKIP') |