summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Peukert2023-12-10 11:34:26 +0100
committerDaniel Peukert2023-12-10 11:34:26 +0100
commit1d0d7239cc3986c1f2350b32ef13dcc7bc2a4966 (patch)
tree39119ce98aa817bb067759ea10c12cfcc8c064ee
parenta5623c3b6b66dd2499bdc1049f9f3470edaeb89f (diff)
downloadaur-1d0d7239cc3986c1f2350b32ef13dcc7bc2a4966.tar.gz
Add ocaml-logs_lwt
-rw-r--r--.SRCINFO3
-rw-r--r--.gitignore28
-rw-r--r--PKGBUILD5
3 files changed, 18 insertions, 18 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2445ee769fd7..4f993a5bf8b8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ocaml-lambda-term
pkgdesc = Terminal manipulation library for OCaml
pkgver = 3.3.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ocaml-community/lambda-term
install = ocaml-lambda-term.install
arch = x86_64
@@ -10,6 +10,7 @@ pkgbase = ocaml-lambda-term
makedepends = dune>=3.0.0
depends = ocaml>=4.08.0
depends = ocaml-logs
+ depends = ocaml-logs-lwt
depends = ocaml-lwt>=4.2.0
depends = ocaml-mew_vi>=0.5.0
depends = ocaml-react
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
diff --git a/PKGBUILD b/PKGBUILD
index 5d0b272bc8b9..558ef86d1590 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,13 +5,12 @@
_projectname='lambda-term'
pkgname="ocaml-$_projectname"
pkgver='3.3.2'
-pkgrel='1'
+pkgrel='2'
pkgdesc='Terminal manipulation library for OCaml'
-# If you're running on aarch64, you have to add it to the arch array of the cppo, ocaml-biniou, ocaml-cmdliner, ocaml-easy-format and ocaml-yojson AUR dependencies
arch=('x86_64' 'aarch64')
url="https://github.com/ocaml-community/$_projectname"
license=('BSD')
-depends=('ocaml>=4.08.0' 'ocaml-logs' 'ocaml-lwt>=4.2.0' 'ocaml-mew_vi>=0.5.0' 'ocaml-react' 'ocaml-zed>=3.2.0')
+depends=('ocaml>=4.08.0' 'ocaml-logs' 'ocaml-logs-lwt' 'ocaml-lwt>=4.2.0' 'ocaml-mew_vi>=0.5.0' 'ocaml-react' 'ocaml-zed>=3.2.0')
makedepends=('dune>=3.0.0')
options=('!strip')
install="$pkgname.install"