Package Details: lapce-git 0.4.1.r23.g8047100-1

Git Clone URL: https://aur.archlinux.org/lapce-git.git (read-only, click to copy)
Package Base: lapce-git
Description: Lightning-fast and Powerful Code Editor (Git version)
Upstream URL: https://lapce.dev
Licenses: Apache-2.0
Conflicts: lapce
Provides: lapce
Submitter: ptr1337
Maintainer: ptr1337
Last Packager: ptr1337
Votes: 5
Popularity: 0.001752
First Submitted: 2022-05-15 15:41 (UTC)
Last Updated: 2024-08-25 18:23 (UTC)

Latest Comments

« First ‹ Previous 1 2

alerque commented on 2022-07-02 13:34 (UTC) (edited on 2022-07-02 13:36 (UTC) by alerque)

Thanks for adding the conflicts, but now you've bungled up the pkgver() function. It is turning up relative to the "nightly" tag which is worse than useless. Also the prinf is a noop and wasted code.

Here is a way to filter on the right tags, apply with git am < file.patch:

From 29b986403bc0d0ecd041a874dd41fa3c5dd88dc3 Mon Sep 17 00:00:00 2001
From: Caleb Maclennan <caleb@alerque.com>
Date: Sat, 2 Jul 2022 16:30:03 +0300
Subject: [PATCH] Fixup version

Signed-off-by: Caleb Maclennan <caleb@alerque.com>
---
 .SRCINFO |  2 +-
 PKGBUILD | 16 +++++++---------
 2 files changed, 8 insertions(+), 10 deletions(-)

diff --git a/.SRCINFO b/.SRCINFO
index fb698b0..9c8c270 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
 pkgbase = lapce-git
    pkgdesc = Lightning-fast and Powerful Code Editor (Git version)
-   pkgver = nightly.r0.gb663c5a
+   pkgver = 0.1.2.r137.g9e68a8c
    pkgrel = 1
    url = https://lapce.dev
    arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index b0afbeb..502455c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@

 pkgname=lapce-git
 _pkgbase=lapce
-pkgver=nightly.r0.gb663c5a
+pkgver=0.1.2.r137.g9e68a8c
 pkgrel=1
 pkgdesc="Lightning-fast and Powerful Code Editor (Git version)"
 arch=('x86_64')
@@ -16,20 +16,18 @@ makedepends=('rust' 'python' 'cmake')
 options=('!lto')
 source=("$_pkgbase::git+https://github.com/lapce/lapce.git")
 sha512sums=('SKIP')
-pkgver() {
-    cd "${srcdir}/${_pkgbase}"
-    printf "%s" "$(git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g')"
-}
-#pkgver() {
-#  cd "$_pkgbase"
-#  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
-#}

 prepare() {
     cd "$_pkgbase"
     cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
 }

+pkgver() {
+    cd "$_pkgbase"
+    git describe --long --tags --abbrev=7 --match 'v[0-9]*' |
+        sed -e 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
 build() {
     cd "$_pkgbase"
     cargo build --frozen --profile release-lto --all-features
-- 
2.36.1

alerque commented on 2022-07-01 22:06 (UTC)

Please add conflicts=(lapce). You have the correct provides declaration but are missing the correct conflicts declaration.

alerque commented on 2022-06-08 19:01 (UTC)

Please fix the version number to use parsed output from git-describe such that the semver number + commit count + sha is used as the version.

Also you can't have a package that conflicts with itself, and other conflicts such as lapce-bin can be resolved automaticall, this should only conflict with lapce, and it should provide=("lapce=$pkgver") (you don't need to provide yourself).