Search Criteria
Package Details: less-git 691.r11.g7f99df7-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/less-git.git (read-only, click to copy) |
|---|---|
| Package Base: | less-git |
| Description: | A free, open-source file pager |
| Upstream URL: | https://greenwoodsoftware.com/less/ |
| Licenses: | GPL-3.0-or-later, LicenseRef-less |
| Conflicts: | less |
| Provides: | less |
| Submitter: | Chocobo1 |
| Maintainer: | Chocobo1 |
| Last Packager: | Chocobo1 |
| Votes: | 0 |
| Popularity: | 0.000000 |
| First Submitted: | 2022-09-04 15:41 (UTC) |
| Last Updated: | 2026-01-25 15:44 (UTC) |
Dependencies (5)
Required by (58)
- am (requires less)
- arttime-git (requires less) (optional)
- aurc (requires less)
- aureus (requires less)
- aurto (requires less)
- aws-cli-bin (requires less)
- bashstyle-git (requires less)
- biblija (requires less) (optional)
- biosyntax-less-git (requires less)
- blazefetch-git (requires less)
- bok (requires less)
- catless-git (requires less)
- continuous-testing (requires less)
- decman (requires less)
- eepm (requires less)
- env-modules (requires less) (make)
- fzffm (requires less) (optional)
- gengraph (requires less) (optional)
- git-wd40 (requires less) (optional)
- gnome-shell-extension-forge (requires less) (make)
- Show 38 more...
Latest Comments
Chocobo1 commented on 2026-01-25 15:46 (UTC)
Fixed.
gesh commented on 2026-01-25 15:14 (UTC) (edited on 2026-01-25 15:19 (UTC) by gesh)
Two remarks re
pkgver()-- first, you could avoid theprintfby just usinggit describe-- you could justgit describe --long --exclude 'rc[0-9]*'to do what you're doing, with a bit of sed massaging to insert therprefix to the commit count.Second, upstream uses
-reltags every so often (16/691 releases by my count), which you're not accounting for. pkgvers may not contain dashes. One solution is just banning that family of tags (by my checks, these always point to the same commit as the non-reltags). Another is to pass the pkgver through ased s/-/./gto make sure no illegal characters slip through.i.e. one solution is
and the other is
or instead of enumerating badness, use
--match 'v*[0-9]'to be explicit about what we want.