pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/rucola
Module Name: pkgsrc
Committed By: pin
Date: Thu Jun 25 12:48:15 UTC 2026
Modified Files:
pkgsrc/textproc/rucola: Makefile cargo-depends.mk distinfo
Log Message:
textproc/rucola: update to 0.10.0
Release Notes
Added a diary option by GitHub user robin-thoene
Added a configuration option to enable the daily diary.
Added a keybinding that creates a diary note and opens it in the editor or display screen.
Added a configuration option to determine the format of the title of the diary note.
Added a configuration option to set the initial content of the diary note.
Added an option to copy (i.e. duplicate) notes in the select and display screen
If a note is copied and its filename contains a valid date string (e.g. %F), it will be replaced by chrono during the copy.
Otherwise, copy_ will be prepended to the new file name.
This can be used to create templates for e.g. monthly or weekly notes and quickly copy them, in addition to the daily note system outlined above.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/rucola/Makefile \
pkgsrc/textproc/rucola/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/rucola/cargo-depends.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/rucola/Makefile
diff -u pkgsrc/textproc/rucola/Makefile:1.4 pkgsrc/textproc/rucola/Makefile:1.5
--- pkgsrc/textproc/rucola/Makefile:1.4 Thu Apr 30 11:51:35 2026
+++ pkgsrc/textproc/rucola/Makefile Thu Jun 25 12:48:15 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2026/04/30 11:51:35 pin Exp $
+# $NetBSD: Makefile,v 1.5 2026/06/25 12:48:15 pin Exp $
-DISTNAME= rucola-0.9.0
+DISTNAME= rucola-0.10.0
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GITHUB:=Linus-Mussmaecher/}
GITHUB_TAG= v${PKGVERSION_NOREV}
@@ -15,9 +15,9 @@ LICENSE= gnu-gpl-v3
.include "cargo-depends.mk"
-#RUST_REQ= 1.96.0-beta.4
+#RUST_REQ= 1.97.0-beta.4
#Upstream does not state the required MSRV.
-#This package is confirmed to build with Rust 1.96.0-beta.4 on amd64
+#This package is confirmed to build with Rust 1.97.0-beta.4 on amd64
USE_TOOLS+= pkg-config
MAKE_ENV+= OPENSSL_DIR=${BUILDLINK_PREFIX.openssl}
Index: pkgsrc/textproc/rucola/distinfo
diff -u pkgsrc/textproc/rucola/distinfo:1.4 pkgsrc/textproc/rucola/distinfo:1.5
--- pkgsrc/textproc/rucola/distinfo:1.4 Thu Apr 30 11:51:35 2026
+++ pkgsrc/textproc/rucola/distinfo Thu Jun 25 12:48:15 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.4 2026/04/30 11:51:35 pin Exp $
+$NetBSD: distinfo,v 1.5 2026/06/25 12:48:15 pin Exp $
BLAKE2s (addr2line-0.25.1.crate) = cc5c422ec48ccef5c2c46379d2f600644609490afafea5020f2020815d1146e6
SHA512 (addr2line-0.25.1.crate) = c400f3b6ccaff8a1c0d7d82c708a1784b8fd5ba64b6e420e85819d59b1cadb55fa59c852925093b921469f272d1d5140cf12f013ae75d1e1bc85021097df8fc2
@@ -699,9 +699,9 @@ Size (regex-automata-0.4.14.crate) = 618
BLAKE2s (regex-syntax-0.8.10.crate) = e2ae5809632d9dadfe451ea51eef4cc65796237eb50568db33594de2e308b06f
SHA512 (regex-syntax-0.8.10.crate) = ca9c36c963c81c2fa36e1105cdd193a9b99ee259de1765e6e8010fb4091e49ac100e2ba0cd117adb0890b32e74421581dd6397eb896772168c6eae9da0a938c3
Size (regex-syntax-0.8.10.crate) = 358781 bytes
-BLAKE2s (rucola-0.9.0.tar.gz) = 82fb73e82a2f11879db218cd8ca65ba7c93045804aad367ac40c6b40d4321a4b
-SHA512 (rucola-0.9.0.tar.gz) = 123f5c9d6588142a883e22b128c40950245d462ce4da49d1a2da3b9b6ad60533e9cded2a149fb5e6af68c7e8ce0cf4cbd5b2a887f263b80a8d1b42d0809716b9
-Size (rucola-0.9.0.tar.gz) = 244029 bytes
+BLAKE2s (rucola-0.10.0.tar.gz) = 971d119d2fdcc77bbd02b31ffed49af13dc2828b0fefe128ef8d4de474f5af52
+SHA512 (rucola-0.10.0.tar.gz) = ddfda20a124835acdde54c63c9e8658e832b85baf3d14709393a067f8653df59c10cd9d2a8b97f819c7928d932da79e8d4c952451ab65461d7efc06833c1976b
+Size (rucola-0.10.0.tar.gz) = 247381 bytes
BLAKE2s (rust-argon2-0.8.3.crate) = b6de7c7ad352ed9dc7aeec09489906d7a070d9f5e5a2e5f8276c8d23dac3df35
SHA512 (rust-argon2-0.8.3.crate) = f336dd3f90e1a49be107b641f9e9d513b6f8098dbdd1ab8aa2bd1fae329ce6840ad11a902b599922bef45d96ffb556d52b57d61218271bdccb7c85f9fe1da033
Size (rust-argon2-0.8.3.crate) = 28313 bytes
Index: pkgsrc/textproc/rucola/cargo-depends.mk
diff -u pkgsrc/textproc/rucola/cargo-depends.mk:1.3 pkgsrc/textproc/rucola/cargo-depends.mk:1.4
--- pkgsrc/textproc/rucola/cargo-depends.mk:1.3 Thu Apr 30 11:51:35 2026
+++ pkgsrc/textproc/rucola/cargo-depends.mk Thu Jun 25 12:48:15 2026
@@ -1,4 +1,4 @@
-# $NetBSD: cargo-depends.mk,v 1.3 2026/04/30 11:51:35 pin Exp $
+# $NetBSD: cargo-depends.mk,v 1.4 2026/06/25 12:48:15 pin Exp $
CARGO_CRATE_DEPENDS+= addr2line-0.25.1
CARGO_CRATE_DEPENDS+= adler2-2.0.1
Home |
Main Index |
Thread Index |
Old Index