From ec3c98f5c11f26f9a5d6ea184d31df5d3e9a4cef Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 28 Sep 2025 13:40:01 +0300 Subject: [PATCH] Update package version to 0.205.6 --- pkg.info | 30 ++++++++++++++++++++++++++---- source.sh | 8 +------- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/pkg.info b/pkg.info index 6f9d0af..a91390f 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,32 @@ name: zed description: A high-performance, multiplayer code editor from the creators of Atom and Tree-sitter -version: 0.204.4 +version: 0.205.6 +revision: 1 url: https://zed.dev/ license: AGPL3-or-later,GPL3-or-later,Apache-2.0 architecture: any -depends: ["alsa-lib", "fontconfig", "gcc-libs", "glibc", "libxcb", "libxkbcommon", "openssl", "mesa", "vulkan-loader", "wayland", "zstd"] -optional_depends: ["clang"] -make_depends: ["cargo-about", "clang", "cmake", "vulkan-headers"] type: source +depends: + - alsa-lib + - fontconfig + - gcc-libs + - glibc + - libxcb + - libxkbcommon + - openssl + - mesa + - vulkan-loader + - wayland + - zstd +optional_depends: + - clang +make_depends: + - cargo-about + - clang + - cmake + - vulkan-headers +downloads: + - url: https://github.com/zed-industries/zed/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz + extract_to_bpm_source: true + extract_strip_components: 1 + checksum: 0d2941537dc25a750dcbf05e8d62606b68592a46fb473cdb3501cb7196d12a55 diff --git a/source.sh b/source.sh index f372583..47ac33f 100644 --- a/source.sh +++ b/source.sh @@ -2,15 +2,9 @@ # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT -DOWNLOAD="https://github.com/zed-industries/zed/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz" -FILENAME="${DOWNLOAD##*/}" - # The prepare function is executed in the root of the temp directory -# This function is used for downloading files and putting them into the correct location +# This function is used for putting downloaded files to the correct location or applying patches prepare() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" - cd "$BPM_SOURCE" # Fetch dependencies