Revision: 28430
          http://sourceforge.net/p/bibdesk/svn/28430
Author:   hofman
Date:     2023-11-09 15:06:28 +0000 (Thu, 09 Nov 2023)
Log Message:
-----------
use -sha1 option rather than -dss in sign script

Modified Paths:
--------------
    trunk/bibdesk/build_release.py

Modified: trunk/bibdesk/build_release.py
===================================================================
--- trunk/bibdesk/build_release.py      2023-11-07 15:46:39 UTC (rev 28429)
+++ trunk/bibdesk/build_release.py      2023-11-09 15:06:28 UTC (rev 28430)
@@ -408,7 +408,7 @@
 
     # now run the signature for Sparkle...
     sha_task = Popen(["/usr/bin/openssl", "dgst", "-sha1", "-binary"], 
stdin=open(archive_path, "rb"), stdout=PIPE)
-    dss_task = Popen(["/usr/bin/openssl", "dgst", "-dss1", "-sign", 
keyFile.name], stdin=sha_task.stdout, stdout=PIPE)
+    dss_task = Popen(["/usr/bin/openssl", "dgst", "-sha1", "-sign", 
keyFile.name], stdin=sha_task.stdout, stdout=PIPE)
     b64_task = Popen(["/usr/bin/openssl", "enc", "-base64"], 
stdin=dss_task.stdout, stdout=PIPE)
 
     # now compute the variables we need for writing the new appcast

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to