Levente Polyak pushed to branch main at Arch Linux / Packaging / Packages / 
libedit


Commits:
c537fd37 by Levente Polyak at 2024-05-24T23:44:13+02:00
nvchecker: add configuration

- - - - -
330f96c2 by Levente Polyak at 2024-05-24T23:55:05+02:00
upgpkg: 20240517_3.1-1

- - - - -


3 changed files:

- + .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=====================================
.SRCINFO
=====================================
@@ -0,0 +1,16 @@
+pkgbase = libedit
+       pkgdesc = Command line editor library providing generic line editing, 
history, and tokenization functions
+       pkgver = 20240517_3.1
+       pkgrel = 1
+       url = https://thrysoee.dk/editline/
+       arch = x86_64
+       license = BSD-3-Clause
+       depends = glibc
+       depends = ncurses
+       depends = libncursesw.so
+       source = https://thrysoee.dk/editline//libedit-20240517-3.1.tar.gz
+       sha256sums = 
3a489097bb4115495f3bd85ae782852b7097c556d9500088d74b6fa38dbd12ff
+       b2sums = 
6326a428204c020864b47db938973a13afb3580f9bb4e7b4d3cb861743c75e1cee99b569cb2baad3e1c7d6dc6986af5282492b5dd9f421a8243bf1d583a87e15
+
+pkgname = libedit
+       provides = libedit.so


=====================================
.nvchecker.toml
=====================================
@@ -0,0 +1,6 @@
+[libedit]
+source = "regex"
+url = "https://thrysoee.dk/editline/";
+regex = "libedit-([0-9\\.\\-]+).tar.gz"
+from_pattern = "\\-"
+to_pattern = "_"


=====================================
PKGBUILD
=====================================
@@ -4,26 +4,32 @@
 # Contributor: Roman Cheplyaka <r...@ro-che.info>
 
 pkgname=libedit
-_pkgver=20230828-3.1
-pkgver=${_pkgver/-/_}
+pkgver=20240517_3.1
+_pkgver=${pkgver/_/-}
 pkgrel=1
 pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
 url='https://thrysoee.dk/editline/'
-arch=('x86_64')
-license=('BSD')
-depends=('glibc' 'ncurses' 'libncursesw.so')
-provides=('libedit.so')
+arch=(x86_64)
+license=(BSD-3-Clause)
+depends=(
+  glibc
+  ncurses
+  libncursesw.so
+)
 source=(${url}/${pkgname}-${_pkgver}.tar.gz)
-sha256sums=('4ee8182b6e569290e7d1f44f0f78dac8716b35f656b76528f699c69c98814dad')
-b2sums=('bb54593e0d9b92c09027edf3f2ca25631d8684ad9dd6359744ad3b1121b16e2e9bc4e4dbf1d02524ed0605ccaab2564c115adb6da338984e831433a9af4c7cb9')
+sha256sums=('3a489097bb4115495f3bd85ae782852b7097c556d9500088d74b6fa38dbd12ff')
+b2sums=('6326a428204c020864b47db938973a13afb3580f9bb4e7b4d3cb861743c75e1cee99b569cb2baad3e1c7d6dc6986af5282492b5dd9f421a8243bf1d583a87e15')
 
 build() {
   cd ${pkgname}-${_pkgver}
-  ./configure --prefix=/usr
+  ./configure \
+    --prefix=/usr
   make V=1
 }
 
 package() {
+  provides=(libedit.so)
+
   cd ${pkgname}-${_pkgver}
   make DESTDIR="${pkgdir}" install
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libedit/-/compare/8d6ed1127d67bf34763415a7017ea9bb4bce4d8a...330f96c265d4af95b5087c93ff5f70bdc7ef9f41

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libedit/-/compare/8d6ed1127d67bf34763415a7017ea9bb4bce4d8a...330f96c265d4af95b5087c93ff5f70bdc7ef9f41
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to