Package Details: kicad-git 8.99.0.r1825.gb38357a5ea-1

Git Clone URL: https://aur.archlinux.org/kicad-git.git (read-only, click to copy)
Package Base: kicad-git
Description: Electronic schematic and printed circuit board (PCB) design tools
Upstream URL: https://kicad.org/
Licenses: GPL
Conflicts: kicad, kicad-bzr
Provides: kicad
Submitter: Chocobo
Maintainer: nickoe
Last Packager: nickoe
Votes: 67
Popularity: 0.000006
First Submitted: 2015-10-08 16:39 (UTC)
Last Updated: 2024-07-16 22:49 (UTC)

Required by (21)

Sources (1)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 29 Next › Last »

TheGondolindrim commented on 2021-01-19 22:03 (UTC)

Having issues here building, specifically at the libevel/grammar.lemon which fails at the lemon parsing. Anyone with this issue?

nickoe commented on 2021-01-11 06:42 (UTC)

Yes, this pa pagage has always been tracking master. That is common for pavkages in AUR with tje dash git suffix.

DCengineer commented on 2021-01-11 06:05 (UTC)

Was this supposed to be updated to v5.99 (nightly)? Seems like kicad-git should be the same version that is available in community/kicad.

t_thomas commented on 2020-12-19 15:51 (UTC)

@nickoe - Oh sorry my fault, I just were comparing this PKGBUILD with my own homebrew one (but way more simplistic) in which I had gathered all cmake options, but you're right after re-reading the article they are indeed already set to default:ON -- Thanks :D

the article I'm referring to https://gitlab.com/kicad/code/kicad/-/blob/master/Documentation/development/compiling.md#scripting_opt

nickoe commented on 2020-12-19 15:17 (UTC)

@t_thomas, I am not sure what exact commit you are reffering to, but they are on by default on master.

t_thomas commented on 2020-12-19 15:10 (UTC)

Hi, was there a reason the drop the following 3 build instructions from the PKGBUILD file (compared to the git suggestion on how2to install)

DKICAD_SPICE=ON DKICAD_INSTALL_DEMOS=ON DKICAD_SCRIPTING_MODULES=ON

btw. thanks a lot for again maintaining the new nightly KiCad packages

nickoe commented on 2020-11-09 19:29 (UTC)

@StefanH https://aur.archlinux.org/cgit/aur.git/commit/?h=kicad-git&id=e7e7fb586afe444028ea6cdf25ace82ecdb74c2b

StefanH commented on 2020-10-23 07:04 (UTC) (edited on 2020-10-23 07:09 (UTC) by StefanH)

Sorry for the confusion. The git describe output matches the version presented inside KiCAD and according to the source provided is how the internal version is set.

The sed expression is simply to replace the two '-' characters by something allowed in Arch versions. Most popular seems to be to do a tr '-' '.', but not all packages follow this (inkscape-git for example). I suppose my preference for a tilde to separate the build number from the semver is a bit of a Debian-ism. It's just a suggestion, no more.

nickoe commented on 2020-10-22 18:36 (UTC)

@StefanH What offical way?

Why do you want a tilde and dot?

StefanH commented on 2020-10-22 17:27 (UTC)

Hi Nick! Could you update the pkgver function to:

git describe | sed -r 's/([^-]+)-([^-]+)-([^-]+)/\1~\2.\3/'

as per the official way to get the latest version? The sed command I added to translate the dashes to something fitting the Arch version string format. Source: https://gitlab.com/kicad/code/kicad/-/issues/6114#note_434166499