Search Criteria
Package Details: diun 4.28.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/diun.git (read-only, click to copy) |
---|---|
Package Base: | diun |
Description: | Receive notifications when an image is updated on a Docker registry. |
Upstream URL: | https://github.com/crazy-max/diun |
Keywords: | diun docker helper |
Licenses: | MIT |
Conflicts: | diun-bin |
Provides: | diun |
Submitter: | enmanuelmoreira |
Maintainer: | enmanuelmoreira |
Last Packager: | enmanuelmoreira |
Votes: | 1 |
Popularity: | 0.000019 |
First Submitted: | 2022-05-01 20:44 (UTC) |
Last Updated: | 2024-11-12 16:07 (UTC) |
Dependencies (5)
- gcc (gcc-gitAUR, gccrs-gitAUR, gcc11AUR, gcc-snapshotAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- go (go-gitAUR, gcc-go-gitAUR, go-sylixosAUR, gcc-go-snapshotAUR, gcc-go) (make)
- gzip (dxcompress-gitAUR, dxcompressAUR, gzip-gitAUR, busybox-coreutilsAUR) (make)
- tar (tar-gitAUR, busybox-coreutilsAUR) (make)
Latest Comments
txtsd commented on 2024-11-24 13:17 (UTC)
Can I please get co-maintainer on this?
Static_Rocket commented on 2024-06-23 22:07 (UTC)
Ah, ix.io is dead now. Posting a new version of that patch here:
http://0x0.st/XAtH.diff
Static_Rocket commented on 2023-10-10 03:25 (UTC) (edited on 2023-10-10 04:08 (UTC) by Static_Rocket)
@enmanuelmoreira feel free to take the following. It fixes all of the issues I outlined in my previous response.
Pastebin patch file because this is a larger than reasonable for a single comment: http://ix.io/4IDO
neoninteger commented on 2023-09-30 01:18 (UTC)
I don't know how much of a problem this really is, but thought I should point out section 2 of the Arch package guidelines, most notably:
What I think Static_Rocket meant was that, rather than moving the binary from
/usr/bin
to/usr/local/bin
, the service unit should be patched to launch/usr/bin/diun
instead of/usr/local/bin/diun
.I was going to say that, if you didn't want to set up patching infrastructure within your package, you could just commit the unit file to the AUR repository alongside the
PKGBUILD
. But it seems that the GitLab repository you're pulling the unit file from is controlled by you, so that might not be something you need to worry about. Its unconventional to pull small auxiliary files like this from external sources, but as best I can tell, you're not violating any rules or guidelines by doing so.One more thing I noticed is that the package doesn't come with a template or default
diun.yml
. Given the nature of Diun and the fact that there isn't really a one-size-fits-all default configuration, this is probably fine. But it might be a good idea to signal to users of this package that a configuration file needs to be written. How you do this is up to you, you could output a message to the terminal on installation of the package, include aREADME
file in the AUR repository, or leave a pinned comment here on the AUR page.An example
diun.install
file has been provided for convenience, which can be specified in theinstall
field of yourPKGBUILD
to output a message upon package installation. Its up to you whether or not you want to use it verbatim, roll your own or do something else entirely.Aside from these concerns, I think you've packaged Diun well and appreciate you being such an active member of the AUR.
Static_Rocket commented on 2023-09-29 04:39 (UTC) (edited on 2023-09-29 04:50 (UTC) by Static_Rocket)
@enmanuelmoreira , thanks, but there's a bit of an issue.
Service points to /usr/local/bin/diun but binary is installed to /usr/bin/diun
Also system service scripts belong in /usr/lib/systemd/system/ not /etc/systemd/system/
The executable bit should not be set on systemd service files
Sysusers and tempfiles can be used to setup the environment for that service to work correctly out of the box:
https://www.freedesktop.org/software/systemd/man/systemd-sysusers.html
https://www.freedesktop.org/software/systemd/man/tmpfiles.d.html
enmanuelmoreira commented on 2023-09-29 03:57 (UTC)
Added release 4.26.0 including diun systemd service
KarmaTag commented on 2023-09-28 12:49 (UTC)
Any chance of getting a systemd unit added to the PKGBUILD?
https://crazymax.dev/diun/install/linux-service/