summaryrefslogtreecommitdiff
path: root/www-apps
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-09-12 03:04:40 -0500
committerroot <root@alpha.trunkmasters.com>2026-09-12 03:04:40 -0500
commit9f2ba2858a177b1c2335b5b46428ee7cec08c288 (patch)
tree5d011733f0f36bb21431d32301b97936074fdbc6 /www-apps
parentae5ea37cbb0424d6e3e6c1e1d282946e201225e6 (diff)
downloadbaldeagleos-repo-9f2ba2858a177b1c2335b5b46428ee7cec08c288.tar.gz
baldeagleos-repo-9f2ba2858a177b1c2335b5b46428ee7cec08c288.tar.xz
baldeagleos-repo-9f2ba2858a177b1c2335b5b46428ee7cec08c288.zip
Adding metadata
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/nextcloud-notify_push/Manifest4
-rw-r--r--www-apps/nextcloud-notify_push/nextcloud-notify_push-1.4.0.ebuild (renamed from www-apps/nextcloud-notify_push/nextcloud-notify_push-1.3.3.ebuild)30
2 files changed, 22 insertions, 12 deletions
diff --git a/www-apps/nextcloud-notify_push/Manifest b/www-apps/nextcloud-notify_push/Manifest
index ee28f7779964..b0d0b93d7d52 100644
--- a/www-apps/nextcloud-notify_push/Manifest
+++ b/www-apps/nextcloud-notify_push/Manifest
@@ -1,2 +1,2 @@
-DIST nextcloud-notify_push-1.3.3-crates.tar.xz 34298112 BLAKE2B f90febe34992105af61019a555f75f4645e887ac18a2217846570b64d955b66b38e19f583be5e8a6a6414ceb38e868508ac87bfa2b1212990c6de70f48046b9d SHA512 9dbb88acd192af1d92a3d47d735836f3dfd157ee754add992e026b46caf30d477dcc6987540c666d874285e4a3cc026a5bfc69bfbc2100edfa18e2833fcdfb8f
-DIST nextcloud-notify_push-1.3.3.tar.gz 142683 BLAKE2B 4ebbdf6b6df1ff2664528e12847ccffbccfbc9c37c385e1e1e6cbcc45ba3121e108197dd3fc61eb4d0959ce32ae441ba987705715b3d4d11cf172b1f470847d3 SHA512 113dbe604ae42edb32a00ff4d45213baeaedf897a310d2ffea42ad7837162c21ee98ce6da5759333863b7542510b7bc23cf72edc7db48575fcb8ec2b099b27ff
+DIST nextcloud-notify_push-1.4.0-crates.tar.xz 30946408 BLAKE2B 14954e573cfadcda53d1b2dce0825dae2479066df828f591bdddd92ce2beb7b4e25ecc4971a0730c3cec5b3d96e2554970090d2ed5330e8482a92713ec50e04e SHA512 27d202574443f7db86c7963b4174cf8822a7c672710f5919163933bb8298797e7efdc159ea5489a638ef40c3a2a28a791717fc6777f1ff2230ef1a6ff3d39799
+DIST nextcloud-notify_push-1.4.0.tar.gz 145466 BLAKE2B 834bd774752457a28d121384f55746a9c43e07d829e5550830acc3ea12fd8578d269791479acc1f39dae40e581dde763e1a47f111dcedca4e2a6204ab8487479 SHA512 8d7263a1097e29ffbc4dfcf07ab838b257105bf1b60334382e72b913c4bb014ff512ba9e8bc7e633b0ac8b8cca987e8007c7ed2f9602e63f986d549819e14e41
diff --git a/www-apps/nextcloud-notify_push/nextcloud-notify_push-1.3.3.ebuild b/www-apps/nextcloud-notify_push/nextcloud-notify_push-1.4.0.ebuild
index 562ae7b8ee17..a1fdc664a100 100644
--- a/www-apps/nextcloud-notify_push/nextcloud-notify_push-1.3.3.ebuild
+++ b/www-apps/nextcloud-notify_push/nextcloud-notify_push-1.4.0.ebuild
@@ -3,9 +3,9 @@
EAPI=8
-RUST_MIN_VER="1.88.0"
+RUST_MIN_VER="1.94.0"
CRATES=""
-inherit eapi9-ver cargo systemd
+inherit cargo systemd
DESCRIPTION="Push daemon for Nextcloud clients"
HOMEPAGE="https://github.com/nextcloud/notify_push"
@@ -41,7 +41,7 @@ src_install() {
newconfd "${FILESDIR}/${PN}-r1.confd" "${PN}"
newinitd "${FILESDIR}/${PN}-r2.init" "${PN}"
systemd_newunit "${FILESDIR}/${PN}.service-r1" "${PN}.service"
- systemd_install_serviced "${FILESDIR}/${PN}.service.conf" "${PN}"
+ #systemd_install_serviced "${FILESDIR}/${PN}.service.conf" "${PN}"
# restrict access because conf.d entry could contain
# database credentials
@@ -49,12 +49,22 @@ src_install() {
}
pkg_postinst() {
- if ver_replacing -lt "0.6.6"; then
- ewarn "You are upgrading to ${PVR}"
- ewarn "The systemd unit file for nextcloud-notify_push no longer sources ${EPREFIX}/etc/conf.d/nextcloud-notify_push ."
- ewarn "Configuration is still done via ${EPREFIX}/etc/conf.d/nextcloud-notify_push for OpenRC systems"
- ewarn "while for systemd systems, a systemd drop-in file located at"
- ewarn "${EPREFIX}/etc/systemd/system/nextcloud-notify_push.d/00gentoo.conf"
- ewarn "is used for configuration."
+ if has_version sys-apps/systemd; then
+ elog "Configure nextcloud-notify_push before you start the service:"
+ elog
+ elog "systemctl edit --drop-in=nextcloud nextcloud-notify_push.service"
+ elog
+ elog "add a section [Service], add the path to the nextcloud config file"
+ elog "as well as the user and group your webserver runs as (apache, nginx)."
+ elog
+ elog "Exapmle:"
+ elog "[Service]"
+ elog 'Environment=NOTIFY_PUSH_NEXTCLOUD_CONFIGFILE="/var/www/cloud.example.com/htdocs/config/config.php'
+ elog "User=apache"
+ elog "Group=apache"
+ elog
+ elog "If you need options for the notify_push process, you can override ExecStart. Just add (adjust to your needs):"
+ elog "ExecStart="
+ elog "ExecStart=/usr/bin/nextcloud-notify_push $NOTIFY_PUSH_NEXTCLOUD_CONFIGFILE --bind 127.0.0.1 --nextcloud-url https://cloud.example.com"
fi
}