pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/acme-client



Module Name:    pkgsrc
Committed By:   vins
Date:           Thu Oct 23 18:37:13 UTC 2025

Modified Files:
        pkgsrc/security/acme-client: DESCR Makefile
Added Files:
        pkgsrc/security/acme-client/files: acme-client.conf
Removed Files:
        pkgsrc/security/acme-client/patches: patch-acme-client.conf

Log Message:
security/acme-client: move conf file to files dir


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/acme-client/DESCR
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/acme-client/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/security/acme-client/files/acme-client.conf
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/security/acme-client/patches/patch-acme-client.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/acme-client/DESCR
diff -u pkgsrc/security/acme-client/DESCR:1.2 pkgsrc/security/acme-client/DESCR:1.3
--- pkgsrc/security/acme-client/DESCR:1.2       Tue Oct 21 13:54:08 2025
+++ pkgsrc/security/acme-client/DESCR   Thu Oct 23 18:37:13 2025
@@ -1,4 +1,4 @@
-Portable version of OpenBSD's acme-client(1), a secure ACME / 
+Portable version of OpenBSD's acme-client(1), a secure ACME /
 Let's Encrypt client.
 
 acme-client looks in its configuration for a domain section

Index: pkgsrc/security/acme-client/Makefile
diff -u pkgsrc/security/acme-client/Makefile:1.1 pkgsrc/security/acme-client/Makefile:1.2
--- pkgsrc/security/acme-client/Makefile:1.1    Mon Oct 20 19:09:17 2025
+++ pkgsrc/security/acme-client/Makefile        Thu Oct 23 18:37:13 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2025/10/20 19:09:17 vins Exp $
+# $NetBSD: Makefile,v 1.2 2025/10/23 18:37:13 vins Exp $
 
 DISTNAME=      acme-client-1.3.5
 CATEGORIES=    security
@@ -40,6 +40,9 @@ SUBST_SED.paths+=     -e "s:/etc/acme:${PKG_
 SUBST_SED.paths+=      -e "s:/etc/examples:${PREFIX}/${EGDIR}:g"
 SUBST_VARS.paths+=     PKG_SYSCONFDIR SSLDIR
 
+post-extract:
+       ${RUN}${CP} ${FILESDIR}/acme-client.conf ${WRKSRC}
+
 post-install:
        ${INSTALL_DATA} ${WRKSRC}/acme-client.conf \
                ${DESTDIR}${PREFIX}/${EGDIR}

Added files:

Index: pkgsrc/security/acme-client/files/acme-client.conf
diff -u /dev/null pkgsrc/security/acme-client/files/acme-client.conf:1.1
--- /dev/null   Thu Oct 23 18:37:13 2025
+++ pkgsrc/security/acme-client/files/acme-client.conf  Thu Oct 23 18:37:13 2025
@@ -0,0 +1,31 @@
+#
+# $OpenBSD: acme-client.conf,v 1.4 2020/09/17 09:13:06 florian Exp $
+#
+authority letsencrypt {
+       api url "https://acme-v02.api.letsencrypt.org/directory";
+       account key "@PKG_SYSCONFDIR@/acme/letsencrypt-privkey.pem"
+}
+
+authority letsencrypt-staging {
+       api url "https://acme-staging-v02.api.letsencrypt.org/directory";
+       account key "@PKG_SYSCONFDIR@/acme/letsencrypt-staging-privkey.pem"
+}
+
+authority buypass {
+       api url "https://api.buypass.com/acme/directory";
+       account key "@PKG_SYSCONFDIR@/acme/buypass-privkey.pem"
+       contact "mailto:me%example.com@localhost";
+}
+
+authority buypass-test {
+       api url "https://api.test4.buypass.no/acme/directory";
+       account key "@PKG_SYSCONFDIR@/acme/buypass-test-privkey.pem"
+       contact "mailto:me%example.com@localhost";
+}
+
+domain example.com {
+       alternative names { secure.example.com }
+       domain key "@SSLDIR@/acme/private/example.com.key"
+       domain full chain certificate "@SSLDIR@/acme/example.com.fullchain.pem"
+       sign with letsencrypt
+}



Home | Main Index | Thread Index | Old Index