Alexander Epaneshnikov pushed to branch main at Arch Linux / Packaging /
Packages / goimapnotify
Commits:
885e4167 by Alexander Epaneshnikov at 2024-09-10T02:17:25+03:00
fix systemd unit
- - - - -
b7133b88 by Alexander Epaneshnikov at 2024-09-10T02:18:54+03:00
upgpkg: 2.3.16-2
- - - - -
3 changed files:
- .SRCINFO
- + 2.3.16-service.patch
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = goimapnotify
pkgdesc = Execute scripts on IMAP mailbox changes (new/deleted/updated
messages) using IDLE, golang version.
pkgver = 2.3.16
- pkgrel = 1
+ pkgrel = 2
url = https://gitlab.com/shackra/goimapnotify
arch = x86_64
license = GPL3
@@ -10,6 +10,8 @@ pkgbase = goimapnotify
depends = glibc
options = !lto
source =
goimapnotify-2.3.16.tar.gz::https://gitlab.com/shackra/goimapnotify/-/archive/2.3.16/goimapnotify-2.3.16.tar.gz
+ source = 2.3.16-service.patch
b2sums =
2347a7e7de150d84172249c8bb02da6b9dd27a5b7c9ddd4505993e7819c0df57d0d7ebdee2161b3c21d1ebd598a2044c9954cdc82ab271a5a87b701896f2b328
+ b2sums =
d7719beef51ad0aa4e83df709b634ee480e8afaf26da91827d2564b6d744edecb6787de561bb7fbf0db1b1f12891234227a698f2cdc35319e1620f80dbfb9236
pkgname = goimapnotify
=====================================
2.3.16-service.patch
=====================================
@@ -0,0 +1,11 @@
+--- [email protected] 2024-09-10 02:11:29.787315364 +0300
++++ [email protected] 2024-09-10 02:12:06.823131651 +0300
+@@ -3,7 +3,7 @@
+
+ [Service]
+ Type=simple
+-ExecStart=/usr/bin/goimapnotify -conf %h/.config/imapnotify/%i.conf
++ExecStart=/usr/bin/goimapnotify -conf %h/.config/imapnotify/%i.yaml
+ Restart=always
+ RestartSec=30
+
=====================================
PKGBUILD
=====================================
@@ -3,17 +3,24 @@
pkgname=goimapnotify
pkgver=2.3.16
-pkgrel=1
+pkgrel=2
pkgdesc="Execute scripts on IMAP mailbox changes (new/deleted/updated
messages) using IDLE, golang version."
url="https://gitlab.com/shackra/goimapnotify"
license=('GPL3')
arch=('x86_64')
depends=('glibc')
makedepends=('git' 'go')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-b2sums=('2347a7e7de150d84172249c8bb02da6b9dd27a5b7c9ddd4505993e7819c0df57d0d7ebdee2161b3c21d1ebd598a2044c9954cdc82ab271a5a87b701896f2b328')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+ "2.3.16-service.patch")
+b2sums=('2347a7e7de150d84172249c8bb02da6b9dd27a5b7c9ddd4505993e7819c0df57d0d7ebdee2161b3c21d1ebd598a2044c9954cdc82ab271a5a87b701896f2b328'
+
'd7719beef51ad0aa4e83df709b634ee480e8afaf26da91827d2564b6d744edecb6787de561bb7fbf0db1b1f12891234227a698f2cdc35319e1620f80dbfb9236')
options=(!lto)
+prepare() {
+ cd "${pkgname}-${pkgver}"
+ patch -i ../2.3.16-service.patch
+}
+
build() {
cd "${pkgname}-${pkgver}"
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/goimapnotify/-/compare/f8c00130c2f53edc1384e2646f5a1ec20fda8cac...b7133b88a17031fb2902dc67f00fc63b62168dad
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/goimapnotify/-/compare/f8c00130c2f53edc1384e2646f5a1ec20fda8cac...b7133b88a17031fb2902dc67f00fc63b62168dad
You're receiving this email because of your account on gitlab.archlinux.org.