Date: Tuesday, February 21, 2023 @ 23:44:47
Author: heftig
Revision: 469420
archrelease: copy trunk to extra-x86_64
Added:
gjs/repos/extra-x86_64/PKGBUILD
(from rev 469419, gjs/trunk/PKGBUILD)
Deleted:
gjs/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 122 ++++++++++++++++++++++++++++++++++---------------------------
1 file changed, 68 insertions(+), 54 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-02-21 23:44:09 UTC (rev 469419)
+++ PKGBUILD 2023-02-21 23:44:47 UTC (rev 469420)
@@ -1,54 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
-# Contributor: Ionut Biru <[email protected]>
-
-pkgname=gjs
-pkgver=1.74.1
-pkgrel=1
-epoch=2
-pkgdesc="Javascript Bindings for GNOME"
-url="https://wiki.gnome.org/Projects/Gjs"
-arch=(x86_64)
-license=(GPL)
-depends=(cairo gobject-introspection-runtime js102 dconf readline
- libsysprof-capture)
-makedepends=(gobject-introspection git meson dbus)
-checkdepends=(xorg-server-xvfb gtk3 gtk4)
-provides=(libgjs.so)
-options=(debug)
-_commit=d11a2a8bb4c1a47cf0104fc198e0126aa35b06f8 # tags/1.74.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
- cd gjs
- git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
- cd gjs
-}
-
-build() {
- local meson_options=(
- -D installed_tests=false
- )
-
- CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
- CXXFLAGS="${CXXFLAGS/-O2/-O3} -fno-semantic-interposition"
- LDFLAGS+=" -Wl,-Bsymbolic-functions"
-
- arch-meson gjs build "${meson_options[@]}"
- meson compile -C build
-}
-
-check() {
- xvfb-run -s '-nolisten local' \
- meson test -C build --print-errorlogs
-}
-
-package() {
- depends+=(libreadline.so)
- meson install -C build --destdir "$pkgdir"
-}
-
-# vim:set sw=2 sts=-1 et:
Copied: gjs/repos/extra-x86_64/PKGBUILD (from rev 469419, gjs/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-02-21 23:44:47 UTC (rev 469420)
@@ -0,0 +1,68 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+
+pkgname=gjs
+pkgver=1.74.2
+pkgrel=1
+epoch=2
+pkgdesc="Javascript Bindings for GNOME"
+url="https://wiki.gnome.org/Projects/Gjs"
+arch=(x86_64)
+license=(GPL)
+depends=(
+ cairo
+ dconf
+ gobject-introspection-runtime
+ js102
+ libsysprof-capture
+ readline
+)
+makedepends=(
+ dbus
+ git
+ gobject-introspection
+ meson
+)
+checkdepends=(
+ gtk3
+ gtk4
+ xorg-server-xvfb
+)
+provides=(libgjs.so)
+_commit=b89a510c55224d042d9e4121d2b27177425fa08a # tags/1.74.2^0
+source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd gjs
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd gjs
+}
+
+build() {
+ local meson_options=(
+ -D installed_tests=false
+ )
+
+ CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+ CXXFLAGS="${CXXFLAGS/-O2/-O3} -fno-semantic-interposition"
+ LDFLAGS+=" -Wl,-Bsymbolic-functions"
+
+ arch-meson gjs build "${meson_options[@]}"
+ meson compile -C build
+}
+
+check() {
+ dbus-run-session xvfb-run -s '-nolisten local' \
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ depends+=(libreadline.so)
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: