commit osslsigncode for openSUSE:Factory

2018-12-04 Thread root
Hello community,

here is the log from the commit of package osslsigncode for openSUSE:Factory 
checked in at 2018-12-04 20:55:51

Comparing /work/SRC/openSUSE:Factory/osslsigncode (Old)
 and  /work/SRC/openSUSE:Factory/.osslsigncode.new.19453 (New)


Package is "osslsigncode"

Tue Dec  4 20:55:51 2018 rev:7 rq:653625 version:1.7.1

Changes:

--- /work/SRC/openSUSE:Factory/osslsigncode/osslsigncode.changes
2018-01-09 14:55:22.877647645 +0100
+++ /work/SRC/openSUSE:Factory/.osslsigncode.new.19453/osslsigncode.changes 
2018-12-04 20:56:16.508722902 +0100
@@ -1,0 +2,11 @@
+Mon Nov 12 09:25:56 UTC 2018 - meiss...@suse.com
+
+- license is now GPL 3.0
+
+---
+Wed Oct 24 13:33:21 UTC 2018 - Cristian Rodríguez 
+
+- 0001-Make-code-work-with-OpenSSL-1.1.patch: Build against 
+  openssl 1.1.
+ 
+---

New:

  0001-Make-code-work-with-OpenSSL-1.1.patch



Other differences:
--
++ osslsigncode.spec ++
--- /var/tmp/diff_new_pack.btAGv9/_old  2018-12-04 20:56:17.328721999 +0100
+++ /var/tmp/diff_new_pack.btAGv9/_new  2018-12-04 20:56:17.332721994 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package osslsigncode
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Summary:Platform-independent tool for Authenticode signing of EXE/CAB 
files
-License:GPL-2.0+
+License:GPL-3.0
 Group:  Productivity/Security
 Url:http://osslsigncode.sourceforge.net/
 Name:   osslsigncode
@@ -27,13 +27,10 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libgsf-devel
-%if %suse_version >= 1500
-BuildRequires:  libopenssl-1_0_0-devel
-%else
-BuildRequires:  openssl-devel
-%endif
 BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(libcrypto) >= 1.1
 BuildRequires:  pkgconfig(libcurl)
+Patch0: 0001-Make-code-work-with-OpenSSL-1.1.patch
 
 %description
 osslsigncode is a small utility for placing signatures on Microsoft cabinate
@@ -41,7 +38,7 @@
 
 %prep
 %setup -q
-
+%patch0 -p1
 %build
 %configure
 make
@@ -51,7 +48,8 @@
 
 %files
 %defattr(-, root, root)
-%doc COPYING README
+%license COPYING
+%doc README
 %{_bindir}/*
 
 %changelog

++ 0001-Make-code-work-with-OpenSSL-1.1.patch ++
>From 46f183668b765bd426996fae8b068bdea548 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= 
Date: Sun, 12 Mar 2017 23:00:12 +0100
Subject: [PATCH] Make code work with OpenSSL 1.1.

Changes in consist of:
- Use EVP_MD_CTX_new/free API instead of on-stack allocation
- Remove some M_ prefixes like for ASN1_IA5STRING_new
- Remove pagehash functionality because it is useless to me and
  fixing it would be a pain. Would require declaring a few
  ASN_SEQUENCES and use that to get the required i2d functions
  from what I could find out.
- Add dummy arguments to OBJ_create calls, since they
  now crash because NULL pointers are no longer handled
  (who changes API that way?!).
  Note that for me everything worked fine for me without these.
  so test-cases where they are needed would be very useful...
---
 osslsigncode.c | 176 ++---
 1 file changed, 48 insertions(+), 128 deletions(-)

Index: osslsigncode-1.7.1/osslsigncode.c
===
--- osslsigncode-1.7.1.orig/osslsigncode.c
+++ osslsigncode-1.7.1/osslsigncode.c
@@ -429,16 +429,16 @@ static SpcSpOpusInfo* createOpus(const c
if (desc) {
info->programName = SpcString_new();
info->programName->type = 1;
-   info->programName->value.ascii = M_ASN1_IA5STRING_new();
-   ASN1_STRING_set((ASN1_STRING *)info->programName->value.ascii,
+   info->programName->value.ascii = ASN1_IA5STRING_new();
+   ASN1_STRING_set(info->programName->value.ascii,
(const unsigned char*)desc, 
strlen(desc));
}
 
if (url) {
info->moreInfo = SpcLink_new();
info->moreInfo->type = 0;
-   info->moreInfo->value.url = M_ASN1_IA5STRING_new();
-   ASN1_STRING_set((ASN1_STRING *)info->moreInfo->value.url,
+   info->moreInfo->value.url = ASN1_IA5STRING_new();
+   ASN1_STRING_set(info->moreInfo->value.url,
(const unsigned char*)url, 
strlen(url));
 

commit osslsigncode for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package osslsigncode for openSUSE:Factory 
checked in at 2018-01-09 14:55:17

Comparing /work/SRC/openSUSE:Factory/osslsigncode (Old)
 and  /work/SRC/openSUSE:Factory/.osslsigncode.new (New)


Package is "osslsigncode"

Tue Jan  9 14:55:17 2018 rev:6 rq:562578 version:1.7.1

Changes:

--- /work/SRC/openSUSE:Factory/osslsigncode/osslsigncode.changes
2015-10-08 08:24:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.osslsigncode.new/osslsigncode.changes   
2018-01-09 14:55:22.877647645 +0100
@@ -1,0 +2,5 @@
+Wed Dec 20 14:28:54 UTC 2017 - fcro...@suse.com
+
+- Adapt BuildRequires to libopenssl-1_0_0-devel for SLE15 / TW.
+
+---



Other differences:
--
++ osslsigncode.spec ++
--- /var/tmp/diff_new_pack.XDfJUZ/_old  2018-01-09 14:55:23.537616707 +0100
+++ /var/tmp/diff_new_pack.XDfJUZ/_new  2018-01-09 14:55:23.541616520 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package osslsigncode
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,11 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libgsf-devel
+%if %suse_version >= 1500
+BuildRequires:  libopenssl-1_0_0-devel
+%else
 BuildRequires:  openssl-devel
+%endif
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libcurl)
 




commit osslsigncode for openSUSE:Factory

2015-10-08 Thread h_root
Hello community,

here is the log from the commit of package osslsigncode for openSUSE:Factory 
checked in at 2015-10-08 08:24:42

Comparing /work/SRC/openSUSE:Factory/osslsigncode (Old)
 and  /work/SRC/openSUSE:Factory/.osslsigncode.new (New)


Package is "osslsigncode"

Changes:

--- /work/SRC/openSUSE:Factory/osslsigncode/osslsigncode.changes
2015-03-11 09:57:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.osslsigncode.new/osslsigncode.changes   
2015-10-08 08:24:47.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct  5 09:57:22 UTC 2015 - idon...@suse.com
+
+- Add libgsf-devel dependency to enable MSI support. 
+
+---



Other differences:
--
++ osslsigncode.spec ++
--- /var/tmp/diff_new_pack.her5JE/_old  2015-10-08 08:24:47.0 +0200
+++ /var/tmp/diff_new_pack.her5JE/_new  2015-10-08 08:24:47.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package osslsigncode
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,9 +26,10 @@
 Source0:
http://downloads.sourceforge.net/project/osslsigncode/osslsigncode/osslsigncode-%{version}.tar.gz
 BuildRequires:  autoconf
 BuildRequires:  automake
+BuildRequires:  libgsf-devel
+BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libcurl)
-BuildRequires:  openssl-devel
 
 %description
 osslsigncode is a small utility for placing signatures on Microsoft cabinate




commit osslsigncode for openSUSE:Factory

2015-03-11 Thread h_root
Hello community,

here is the log from the commit of package osslsigncode for openSUSE:Factory 
checked in at 2015-03-11 09:57:40

Comparing /work/SRC/openSUSE:Factory/osslsigncode (Old)
 and  /work/SRC/openSUSE:Factory/.osslsigncode.new (New)


Package is osslsigncode

Changes:

--- /work/SRC/openSUSE:Factory/osslsigncode/osslsigncode.changes
2013-01-29 11:29:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.osslsigncode.new/osslsigncode.changes   
2015-03-11 09:57:42.0 +0100
@@ -1,0 +2,9 @@
+Sun Mar  8 17:33:10 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.7.1
+  * MSI: added -add-msi-dse option
+  * MSI: fix build when GSF_CAN_READ_MSI_METADATA defined
+- Add autoconf, automake and pkg-config BuildRequire; new dependencies
+- Move to pkg-config depend style
+
+---

Old:

  osslsigncode-1.4.tar.gz

New:

  osslsigncode-1.7.1.tar.gz



Other differences:
--
++ osslsigncode.spec ++
--- /var/tmp/diff_new_pack.2KjvZC/_old  2015-03-11 09:57:43.0 +0100
+++ /var/tmp/diff_new_pack.2KjvZC/_new  2015-03-11 09:57:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package osslsigncode
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,14 +21,16 @@
 Group:  Productivity/Security
 Url:http://osslsigncode.sourceforge.net/
 Name:   osslsigncode
-Version:1.4
+Version:1.7.1
 Release:0
 Source0:
http://downloads.sourceforge.net/project/osslsigncode/osslsigncode/osslsigncode-%{version}.tar.gz
-BuildRequires:  curl-devel
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(libcurl)
 BuildRequires:  openssl-devel
 
 %description
-
 osslsigncode is a small utility for placing signatures on Microsoft cabinate
 files and executables.
 
@@ -37,7 +39,6 @@
 
 %build
 %configure
-cat config.log
 make
 
 %install

++ osslsigncode-1.4.tar.gz - osslsigncode-1.7.1.tar.gz ++
 10992 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org