Date: Wednesday, November 16, 2022 @ 17:40:17
Author: heftig
Revision: 1349225
archrelease: copy trunk to community-x86_64
Added:
gedit-plugins/repos/community-x86_64/PKGBUILD
(from rev 1349224, gedit-plugins/trunk/PKGBUILD)
Deleted:
gedit-plugins/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 115 ++++++++++++++++++++++++++++++++++---------------------------
1 file changed, 65 insertions(+), 50 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-16 17:40:02 UTC (rev 1349224)
+++ PKGBUILD 2022-11-16 17:40:17 UTC (rev 1349225)
@@ -1,50 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
-# Contributor: Ionut Biru <[email protected]>
-# Contributor: Alexander Rødseth <[email protected]>
-# Contributor: Hugo Doria <[email protected]>
-# Contributor: Sergej Chodarev <[email protected]>
-# Contributor: zhuqin <[email protected]>
-
-pkgname=gedit-plugins
-pkgver=42.1
-pkgrel=1
-pkgdesc="Collection of plugins for the gedit Text Editor"
-url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins"
-arch=(x86_64)
-license=(GPL)
-depends=(gedit python-dbus python-cairo)
-makedepends=(vte3 libgit2-glib gucharmap gobject-introspection vala yelp-tools
- appstream-glib git meson)
-optdepends=('gucharmap: for charmap plugin'
- 'vte3: for embedded terminal'
- 'libgit2-glib: for git plugin')
-options=(debug)
-_commit=2afe0869918ee6a61a82969cd67d5c51acc15a6c # tags/42.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gedit-plugins.git#commit=$_commit")
-sha512sums=('SKIP')
-
-pkgver() {
- cd $pkgname
- git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
- cd $pkgname
-}
-
-build() {
- arch-meson $pkgname build
- meson compile -C build
-}
-
-check() {
- meson test -C build --print-errorlogs
-}
-
-package() {
- meson install -C build --destdir "$pkgdir"
- python -m compileall -d /usr "$pkgdir/usr"
- python -O -m compileall -d /usr "$pkgdir/usr"
-}
-
-# vim:set sw=2 et:
Copied: gedit-plugins/repos/community-x86_64/PKGBUILD (from rev 1349224,
gedit-plugins/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-11-16 17:40:17 UTC (rev 1349225)
@@ -0,0 +1,65 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+# Contributor: Alexander Rødseth <[email protected]>
+# Contributor: Hugo Doria <[email protected]>
+# Contributor: Sergej Chodarev <[email protected]>
+# Contributor: zhuqin <[email protected]>
+
+pkgname=gedit-plugins
+pkgver=43.1
+pkgrel=1
+pkgdesc="Collection of plugins for the gedit Text Editor"
+url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins"
+arch=(x86_64)
+license=(GPL)
+depends=(
+ gedit
+ python-cairo
+ python-dbus
+)
+makedepends=(
+ appstream-glib
+ git
+ gobject-introspection
+ gucharmap
+ libgit2-glib
+ meson
+ vte3
+ yelp-tools
+)
+optdepends=(
+ 'gucharmap: for charmap plugin'
+ 'libgit2-glib: for git plugin'
+ 'vte3: for embedded terminal'
+)
+options=(debug)
+_commit=a6bf921fecaa52241e6e5dd20bc49bc9e8ee8c2a # tags/43.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gedit-plugins.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+}
+
+build() {
+ arch-meson $pkgname build
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+
+ python -m compileall -d /usr "$pkgdir/usr"
+ python -O -m compileall -d /usr "$pkgdir/usr"
+}
+
+# vim:set sw=2 sts=-1 et: