diff options
author | Daniel Peukert | 2023-11-23 09:54:15 +0100 |
---|---|---|
committer | Daniel Peukert | 2023-11-23 09:54:15 +0100 |
commit | c67d9c1862cf58f5b70e0c4b3fa2ca2b79bac319 (patch) | |
tree | 243a278c1a8d244ad0ce81df3a31f6de3b9b6bdb | |
parent | 149e72739e79402fff5a9212a749c757cd9fac1d (diff) | |
download | aur-c67d9c1862cf58f5b70e0c4b3fa2ca2b79bac319.tar.gz |
Update ocaml-inotify to 2.5
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | .gitignore | 28 | ||||
-rw-r--r-- | PKGBUILD | 7 |
3 files changed, 20 insertions, 21 deletions
@@ -1,7 +1,7 @@ pkgbase = ocaml-inotify pkgdesc = OCaml bindings for inotify - pkgver = 2.4.1 - pkgrel = 3 + pkgver = 2.5 + pkgrel = 1 url = https://github.com/whitequark/ocaml-inotify arch = x86_64 arch = aarch64 @@ -12,7 +12,7 @@ pkgbase = ocaml-inotify depends = ocaml>=4.03.0 depends = ocaml-lwt options = !strip - source = ocaml-inotify-2.4.1::git+https://github.com/whitequark/ocaml-inotify#commit=2ff22475bbb6e88273768ac21964fb603746631b?signed + source = ocaml-inotify-2.5::git+https://github.com/whitequark/ocaml-inotify#commit=5e5853680c2b2e41091c1ed030eef9ab008203bb?signed validpgpkeys = 1370978BC81E9735DFE727E1EBFFF6F283F3A2B4 sha512sums = SKIP diff --git a/.gitignore b/.gitignore index 82b3c183d5d4..004b0a3a8706 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,14 @@ -# from https://github.com/github/gitignore/blob/master/ArchLinuxPackages.gitignore -*.tar -*.tar.* -*.rpm -*.jar -*.exe -*.msi -*.zip -*.tgz -*.log -*.log.* -*.sig - -*/ +# Only exclude files from the root of the package repo, as some AUR helpers download sources into the directory of the repo, +# which causes the gitignore file to apply to them too, which breaks some builds +# Based on https://github.com/github/gitignore/blob/master/ArchLinuxPackages.gitignore +/*.tar +/*.tar.* +/*.rpm +/*.jar +/*.exe +/*.msi +/*.zip +/*.tgz +/*.log +/*.log.* +/*.sig @@ -2,11 +2,10 @@ # Contributor: Jakob Gahde <j5lx@fmail.co.uk> # Contributor: Gregory BELLIER <gregory.bellier -- gmail -- com> pkgname='ocaml-inotify' -pkgver='2.4.1' -_commit='2ff22475bbb6e88273768ac21964fb603746631b' -pkgrel='3' +pkgver='2.5' +_commit='5e5853680c2b2e41091c1ed030eef9ab008203bb' +pkgrel='1' pkgdesc='OCaml bindings for inotify' -# If you're running on aarch64, you have to add it to the arch array of the cppo, ocaml-biniou, ocaml-easy-format and ocaml-yojson AUR dependencies arch=('x86_64' 'aarch64') url="https://github.com/whitequark/$pkgname" license=('custom:LGPL2.1 with linking exception') |