commit secvarctl for openSUSE:Factory

2024-02-14 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package secvarctl for openSUSE:Factory 
checked in at 2024-02-14 23:19:27

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


Package is "secvarctl"

Wed Feb 14 23:19:27 2024 rev:8 rq:1146544 version:1.0.0+git0.73d91fa

Changes:

--- /work/SRC/openSUSE:Factory/secvarctl/secvarctl.changes  2023-12-17 
21:34:34.890503988 +0100
+++ /work/SRC/openSUSE:Factory/.secvarctl.new.1815/secvarctl.changes
2024-02-14 23:19:33.674032038 +0100
@@ -1,0 +2,8 @@
+Wed Feb 14 09:46:08 UTC 2024 - msucha...@suse.com
+
+- Update to version v1.0.0 (jsc#PED-5449):
+  * guest/generate: fix multiple input/output format specifier argument parsing
+  * guest/read: fix segfault in read -c caused by empty variable name
+  * guest/verify: only print default PK in get_current_esl_data if verbose is 
set
+
+---
@@ -4 +12 @@
-- Update to version 1.0.0~rc3 (jsc#PED-5449):
+- Update to version 1.0.0~rc3:

Old:

  secvarctl-1.0.0~rc3+git0.6f4d730.tar.gz

New:

  secvarctl-1.0.0+git0.73d91fa.tar.gz



Other differences:
--
++ secvarctl.spec ++
--- /var/tmp/diff_new_pack.OHPYcz/_old  2024-02-14 23:19:34.182050353 +0100
+++ /var/tmp/diff_new_pack.OHPYcz/_new  2024-02-14 23:19:34.186050497 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package secvarctl
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %global make_parms OPENSSL=1 DEBUG=1
 Name:   secvarctl
-Version:1.0.0~rc3+git0.6f4d730
+Version:1.0.0+git0.73d91fa
 Release:0
 Summary:Suite of tools to manipulate and generate Secure Boot 
variables on POWER
 License:Apache-2.0

++ _service ++
--- /var/tmp/diff_new_pack.OHPYcz/_old  2024-02-14 23:19:34.210051362 +0100
+++ /var/tmp/diff_new_pack.OHPYcz/_new  2024-02-14 23:19:34.214051506 +0100
@@ -2,9 +2,9 @@
   
 git
 https://github.com/open-power/secvarctl.git
-guest-devel
-v(.*)-(rc.*)
-\1~\2
+main
+v(.*)
+\1
 @PARENT_TAG@+git@TAG_OFFSET@.%h
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.OHPYcz/_old  2024-02-14 23:19:34.230052083 +0100
+++ /var/tmp/diff_new_pack.OHPYcz/_new  2024-02-14 23:19:34.234052227 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/open-power/secvarctl.git
-  6f4d730e0d797d9add247bf5285ba51458fbda89
+  73d91faeca1677218d034b117fb6bd3603319fb8
 (No newline at EOF)
 

++ secvarctl-1.0.0~rc3+git0.6f4d730.tar.gz -> 
secvarctl-1.0.0+git0.73d91fa.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/secvarctl-1.0.0~rc3+git0.6f4d730/backends/guest/guest_svc_generate.c 
new/secvarctl-1.0.0+git0.73d91fa/backends/guest/guest_svc_generate.c
--- old/secvarctl-1.0.0~rc3+git0.6f4d730/backends/guest/guest_svc_generate.c
2023-12-08 21:04:16.0 +0100
+++ new/secvarctl-1.0.0+git0.73d91fa/backends/guest/guest_svc_generate.c
2024-02-06 18:13:02.0 +0100
@@ -483,6 +483,19 @@
args->append_flag = 1;
break;
case ARGP_KEY_ARG:
+   /* there should only be one format specifier, error if another 
is supplied */
+   if (args->input_form && args->output_form) {
+   prlog(PR_ERR, "ERROR: unknown additional positional 
argument %s\n", arg);
+   rc = ARG_PARSE_FAIL;
+   break;
+   }
+   /* both forms should be either set or NULL, this should never 
be reached. */
+   if (!args->input_form ^ !args->output_form) {
+   prlog(PR_ERR,
+ "ERROR: only one of input_form/output_form is 
set, this should not happen\n");
+   rc = ARG_PARSE_FAIL;
+   break;
+   }
/* check if reset key is desired */
if (!strcmp(arg, "reset")) {
args->input_form = "reset";
@@ -493,14 +506,22 @@
/* else set input and output formats */
args->input_form = strtok(arg, ":");
args->output_form = strtok(NULL, ":");
+
+   /* verify both input and output forms are parsed correctly, 
error otherwise */
+   if (!args->input_form || !args->output_form) {
+   prlog(PR_ERR,
+ "ERROR: 

commit secvarctl for openSUSE:Factory

2023-12-17 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package secvarctl for openSUSE:Factory 
checked in at 2023-12-17 21:32:02

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


Package is "secvarctl"

Sun Dec 17 21:32:02 2023 rev:7 rq:1133590 version:1.0.0~rc3+git0.6f4d730

Changes:

--- /work/SRC/openSUSE:Factory/secvarctl/secvarctl.changes  2023-10-13 
23:16:43.331489011 +0200
+++ /work/SRC/openSUSE:Factory/.secvarctl.new.25432/secvarctl.changes   
2023-12-17 21:34:34.890503988 +0100
@@ -1,0 +2,9 @@
+Thu Dec 14 16:03:34 UTC 2023 - msucha...@suse.com
+
+- Update to version 1.0.0~rc3 (jsc#PED-5449):
+  * Guest/verify: fix misbehaviour of verify and write with -p
+  * Guest/generate: trustedcadb variable allow only CA certificates
+  * Guest/Verify: -w option allowed when use -u with -p
+  * guest/generate: fix potential null reference in pk/append special case
+
+---

Old:

  secvarctl-1.0.0~rc2+git1.1f96bad.tar.gz

New:

  secvarctl-1.0.0~rc3+git0.6f4d730.tar.gz



Other differences:
--
++ secvarctl.spec ++
--- /var/tmp/diff_new_pack.pWTVcr/_old  2023-12-17 21:34:35.350520702 +0100
+++ /var/tmp/diff_new_pack.pWTVcr/_new  2023-12-17 21:34:35.350520702 +0100
@@ -18,7 +18,7 @@
 
 %global make_parms OPENSSL=1 DEBUG=1
 Name:   secvarctl
-Version:1.0.0~rc2+git1.1f96bad
+Version:1.0.0~rc3+git0.6f4d730
 Release:0
 Summary:Suite of tools to manipulate and generate Secure Boot 
variables on POWER
 License:Apache-2.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.pWTVcr/_old  2023-12-17 21:34:35.390522155 +0100
+++ /var/tmp/diff_new_pack.pWTVcr/_new  2023-12-17 21:34:35.394522301 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/open-power/secvarctl.git
-  1f96bada397352ffb4640c1d1f165eaea63621d0
+  6f4d730e0d797d9add247bf5285ba51458fbda89
 (No newline at EOF)
 

++ secvarctl-1.0.0~rc2+git1.1f96bad.tar.gz -> 
secvarctl-1.0.0~rc3+git0.6f4d730.tar.gz ++
 1698 lines of diff (skipped)


commit secvarctl for openSUSE:Factory

2023-10-13 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package secvarctl for openSUSE:Factory 
checked in at 2023-10-13 23:15:47

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


Package is "secvarctl"

Fri Oct 13 23:15:47 2023 rev:6 rq:1117679 version:1.0.0~rc2+git1.1f96bad

Changes:

--- /work/SRC/openSUSE:Factory/secvarctl/secvarctl.changes  2023-10-04 
22:31:31.639805696 +0200
+++ /work/SRC/openSUSE:Factory/.secvarctl.new.20540/secvarctl.changes   
2023-10-13 23:16:43.331489011 +0200
@@ -1,0 +2,11 @@
+Fri Oct 13 14:04:07 UTC 2023 - msucha...@suse.com
+
+- Update to version 1.0.0~rc2+git1.1f96bad:
+  * guest/read: return early if next esd cannot be parsed
+  * guest: Remove x509 SHA GUID functions and macros
+  * guest/generate: change --append option to be a boolean based on presence
+  * guest/read: allow paths with or without a trailing slash
+  * Makefile: Fix installation after source reorganization
+- Remove upstreamed secvarctl-install.patch
+
+---

Old:

  secvarctl-1.0.0~rc1+git0.a180a56.tar.gz
  secvarctl-install.patch

New:

  secvarctl-1.0.0~rc2+git1.1f96bad.tar.gz



Other differences:
--
++ secvarctl.spec ++
--- /var/tmp/diff_new_pack.vPLiLO/_old  2023-10-13 23:16:43.775505747 +0200
+++ /var/tmp/diff_new_pack.vPLiLO/_new  2023-10-13 23:16:43.779505897 +0200
@@ -18,13 +18,12 @@
 
 %global make_parms OPENSSL=1 DEBUG=1
 Name:   secvarctl
-Version:1.0.0~rc1+git0.a180a56
+Version:1.0.0~rc2+git1.1f96bad
 Release:0
 Summary:Suite of tools to manipulate and generate Secure Boot 
variables on POWER
 License:Apache-2.0
 URL:https://github.com/open-power/secvarctl
 Source: %{name}-%{version}.tar.gz
-Patch0: secvarctl-install.patch
 BuildRequires:  openssl-devel
 ExclusiveArch:  ppc64 ppc64le
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.vPLiLO/_old  2023-10-13 23:16:43.823507556 +0200
+++ /var/tmp/diff_new_pack.vPLiLO/_new  2023-10-13 23:16:43.823507556 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/open-power/secvarctl.git
-  a180a56b5c3330b1f5130633e7e7fb889e7eb74b
+  1f96bada397352ffb4640c1d1f165eaea63621d0
 (No newline at EOF)
 

++ secvarctl-1.0.0~rc1+git0.a180a56.tar.gz -> 
secvarctl-1.0.0~rc2+git1.1f96bad.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/secvarctl-1.0.0~rc1+git0.a180a56/Makefile 
new/secvarctl-1.0.0~rc2+git1.1f96bad/Makefile
--- old/secvarctl-1.0.0~rc1+git0.a180a56/Makefile   2023-09-27 
19:58:24.0 +0200
+++ new/secvarctl-1.0.0~rc2+git1.1f96bad/Makefile   2023-10-12 
17:51:48.0 +0200
@@ -167,11 +167,9 @@
 
 install: all
@mkdir -p $(DESTDIR)/usr/bin
-   @install -m 0755 secvarctl $(DESTDIR)/usr/bin/secvarctl
+   @install -m 0755 bin/secvarctl $(DESTDIR)/usr/bin/secvarctl
@mkdir -p $(DESTDIR)/$(MANDIR)/man1
@install -m 0644 secvarctl.1 $(DESTDIR)/$(MANDIR)/man1
-   @mkdir -p $(DESTDIR)/usr/lib/secvarctl
-   @install -m 0755 ./lib/* $(DESTDIR)/usr/lib/secvarctl
@echo "secvarctl installed successfully!"
 
 uninstall:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/secvarctl-1.0.0~rc1+git0.a180a56/backends/guest/common/generate.c 
new/secvarctl-1.0.0~rc2+git1.1f96bad/backends/guest/common/generate.c
--- old/secvarctl-1.0.0~rc1+git0.a180a56/backends/guest/common/generate.c   
2023-09-27 19:58:24.0 +0200
+++ new/secvarctl-1.0.0~rc2+git1.1f96bad/backends/guest/common/generate.c   
2023-10-12 17:51:48.0 +0200
@@ -436,6 +436,11 @@
 
rc = validate_cert(cert, cert_size);
 
+   if (rc) {
+   free(cert);
+   return rc;
+   }
+
*cert_data = cert;
*cert_data_size = cert_size;
 
@@ -449,7 +454,7 @@
  * @param buffer_size , length of buffer
  * @param hash_funct, index of hash function information to use for ESL GUID,
  *   also helps in prevalation, if inform is '[c]ert' then 
this doesn't matter
- * @param hash_data, the generated hash data
+ * @param hash_data, the generated hash data, buffer should be allocated 
before calling
  * @param hash_data_size, the length of hash data
  * @param esl_guid, signature type of ESL
  * @return SUCCESS or err number
@@ -458,27 +463,23 @@
  uint8_t *hash_data, size_t *hash_data_size)
 {
int rc = SUCCESS;
-   size_t data_size = 0;
-   uint8_t *data = NULL;
-   enum signature_type x509_hash_func;
+   

commit secvarctl for openSUSE:Factory

2023-10-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package secvarctl for openSUSE:Factory 
checked in at 2023-10-04 22:30:52

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


Package is "secvarctl"

Wed Oct  4 22:30:52 2023 rev:5 rq:1114835 version:1.0.0~rc1+git0.a180a56

Changes:

--- /work/SRC/openSUSE:Factory/secvarctl/secvarctl.changes  2022-11-23 
09:48:36.799200142 +0100
+++ /work/SRC/openSUSE:Factory/.secvarctl.new.28202/secvarctl.changes   
2023-10-04 22:31:31.639805696 +0200
@@ -1,0 +2,9 @@
+Mon Oct 02 13:56:10 UTC 2023 - msucha...@suse.com
+
+- Update to version 1.0.0~rc1+git0.a180a56:
+  * guest/util: Add crypto id to signature list
+  * secvarctl: guest secure boot variable backend
+  * secvarctl: reorganised host secure boot variable backend
+- Fix installation: secvarctl-install.patch
+
+---

Old:

  secvarctl-0.3+git13.76db7a7.tar.gz

New:

  secvarctl-1.0.0~rc1+git0.a180a56.tar.gz
  secvarctl-install.patch



Other differences:
--
++ secvarctl.spec ++
--- /var/tmp/diff_new_pack.QliC6m/_old  2023-10-04 22:31:32.859849792 +0200
+++ /var/tmp/diff_new_pack.QliC6m/_new  2023-10-04 22:31:32.859849792 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package secvarctl
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,13 +16,15 @@
 #
 
 
+%global make_parms OPENSSL=1 DEBUG=1
 Name:   secvarctl
-Version:0.3+git13.76db7a7
+Version:1.0.0~rc1+git0.a180a56
 Release:0
 Summary:Suite of tools to manipulate and generate Secure Boot 
variables on POWER
 License:Apache-2.0
 URL:https://github.com/open-power/secvarctl
 Source: %{name}-%{version}.tar.gz
+Patch0: secvarctl-install.patch
 BuildRequires:  openssl-devel
 ExclusiveArch:  ppc64 ppc64le
 
@@ -30,18 +32,14 @@
 The purpose of this tool is to simplify and automate the process of reading 
and writing secure boot keys.
 secvarctl allows the user to communicate, via terminal commands, with the keys 
efficiently.
 
-Secure Variables are responsible for loading the target OS/hypervisor during 
Secure Boot. There are currently four secure variables in the Secure Boot 
process: The Platform Key (PK), Key Exchange Key (KEK), Database Key (db) and 
Blocklist Key (dbx).The PK serves as the root key, usually supplied by platform 
owner, if there is no PK then Secure Boot is not enabled. The PK has authority 
over all other keys. The KEK is usually provided by the OS vendor and has 
authority over the db and dbx. The db has authority over the kernels and other 
user specific firmware. The dbx has authority over kernels and specific 
firmware that are not to be loaded.
-
-Updating of these secure variables requires a specific format for success. If 
updating the PK, KEK or db, an x509 public key must be contained in an EFI 
Signature List (ESL). If updating the dbx, the binary that is to be banned must 
be hashed and placed in an ESL. Then, a PKCS7 structure must be generated by 
signing the new ESL with the private key of a secure variable that has 
authority over the variable being updated (Example: if updating the db, the new 
ESL must be signed by either the KEK or PK). Finally, the new ESL must be 
appended to the generated PKCS7 and the whole structure is then placed into 
what is called an Auth file (this adds extra header information, timestamp and 
content size). When the Auth file is generated, the resulting file is ready to 
be submited. Once submitted, the update is only applied when the POWER machine 
is rebooted.
-
 %prep
-%setup -q
+%autosetup
 
 %build
-%make_build OPENSSL=1 DEBUG=1
+%make_build %{make_parms}
 
 %install
-%make_install OPENSSL=1 DEBUG=1
+%make_install %{make_parms}
 
 %files
 %license LICENSE

++ _service ++
--- /var/tmp/diff_new_pack.QliC6m/_old  2023-10-04 22:31:32.887850804 +0200
+++ /var/tmp/diff_new_pack.QliC6m/_new  2023-10-04 22:31:32.887850804 +0200
@@ -2,8 +2,9 @@
   
 git
 https://github.com/open-power/secvarctl.git
-main
-v(.*)
+guest-devel
+v(.*)-(rc.*)
+\1~\2
 @PARENT_TAG@+git@TAG_OFFSET@.%h
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.QliC6m/_old  2023-10-04 22:31:32.907851527 +0200
+++ /var/tmp/diff_new_pack.QliC6m/_new  2023-10-04 22:31:32.911851671 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/open-power/secvarctl.git
-  76db7a76a4557824763d1f2314d0cdcd0782b655

commit secvarctl for openSUSE:Factory

2022-11-23 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package secvarctl for openSUSE:Factory 
checked in at 2022-11-23 09:48:16

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


Package is "secvarctl"

Wed Nov 23 09:48:16 2022 rev:4 rq:1037406 version:0.3+git13.76db7a7

Changes:

--- /work/SRC/openSUSE:Factory/secvarctl/secvarctl.changes  2021-09-23 
23:04:12.240329750 +0200
+++ /work/SRC/openSUSE:Factory/.secvarctl.new.1597/secvarctl.changes
2022-11-23 09:48:36.799200142 +0100
@@ -1,0 +2,13 @@
+Tue Nov 22 20:10:25 UTC 2022 - msucha...@suse.com
+
+- Update to version 0.3+git13.76db7a7:
+  * Update crypto calling functions to expect success return codes
+  * crypto-gnutls.c: Unify return codes
+  * crypto-mbedtls.c: Unify error codes
+  * crypto-openssl.c: Unify return codes
+  * crypto: Add support for GnuTLS
+  * crypto: Fix openssl implementation of crypto_x509_is_RSA
+  * crypto: Enable compatability with OpenSSL V3
+  * crypto: Catch possible uninitialized return code
+
+---

Old:

  secvarctl-0.3.tar.gz

New:

  secvarctl-0.3+git13.76db7a7.tar.gz



Other differences:
--
++ secvarctl.spec ++
--- /var/tmp/diff_new_pack.fpV6KT/_old  2022-11-23 09:48:37.247202479 +0100
+++ /var/tmp/diff_new_pack.fpV6KT/_new  2022-11-23 09:48:37.251202500 +0100
@@ -17,12 +17,12 @@
 
 
 Name:   secvarctl
-Version:0.3
+Version:0.3+git13.76db7a7
 Release:0
 Summary:Suite of tools to manipulate and generate Secure Boot 
variables on POWER
 License:Apache-2.0
 URL:https://github.com/open-power/secvarctl
-Source: 
https://github.com/open-power/secvarctl/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Source: %{name}-%{version}.tar.gz
 BuildRequires:  openssl-devel
 ExclusiveArch:  ppc64 ppc64le
 

++ _service ++
--- /var/tmp/diff_new_pack.fpV6KT/_old  2022-11-23 09:48:37.291202709 +0100
+++ /var/tmp/diff_new_pack.fpV6KT/_new  2022-11-23 09:48:37.295202730 +0100
@@ -1,19 +1,16 @@
-
-
-
 
-
-git
-https://github.com/open-power/secvarctl.git
-main
-@PARENT_TAG@+git@TAG_OFFSET@~%h
-enable
-v(.*)
-
-
-*.tar
-xz
-
-
+  
+git
+https://github.com/open-power/secvarctl.git
+main
+v(.*)
+@PARENT_TAG@+git@TAG_OFFSET@.%h
+enable
+  
+  
+*.tar
+gz
+  
+  
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.fpV6KT/_old  2022-11-23 09:48:37.319202855 +0100
+++ /var/tmp/diff_new_pack.fpV6KT/_new  2022-11-23 09:48:37.323202876 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/open-power/secvarctl.git
-  26ea75189b051bf0d435655fe45fbca0d7342199
+  76db7a76a4557824763d1f2314d0cdcd0782b655
 (No newline at EOF)
 


commit secvarctl for openSUSE:Factory

2021-09-23 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package secvarctl for openSUSE:Factory 
checked in at 2021-09-23 23:04:02

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


Package is "secvarctl"

Thu Sep 23 23:04:02 2021 rev:3 rq:921109 version:0.3

Changes:

--- /work/SRC/openSUSE:Factory/secvarctl/secvarctl.changes  2021-09-20 
23:36:33.151425551 +0200
+++ /work/SRC/openSUSE:Factory/.secvarctl.new.1899/secvarctl.changes
2021-09-23 23:04:12.240329750 +0200
@@ -1,0 +2,5 @@
+Thu Sep 23 08:22:33 UTC 2021 - Michal Suchanek 
+
+- Version 0.2+git31 released as 0.3 (jsc#SLE-18126).
+
+---

Old:

  secvarctl-0.2+git31~26ea751.tar.xz

New:

  secvarctl-0.3.tar.gz



Other differences:
--
++ secvarctl.spec ++
--- /var/tmp/diff_new_pack.jgqPBT/_old  2021-09-23 23:04:12.720330107 +0200
+++ /var/tmp/diff_new_pack.jgqPBT/_new  2021-09-23 23:04:12.720330107 +0200
@@ -17,12 +17,12 @@
 
 
 Name:   secvarctl
-Version:0.2+git31~26ea751
+Version:0.3
 Release:0
 Summary:Suite of tools to manipulate and generate Secure Boot 
variables on POWER
 License:Apache-2.0
 URL:https://github.com/open-power/secvarctl
-Source: %{name}-%{version}.tar.xz
+Source: 
https://github.com/open-power/secvarctl/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  openssl-devel
 ExclusiveArch:  ppc64 ppc64le
 


commit secvarctl for openSUSE:Factory

2021-09-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package secvarctl for openSUSE:Factory 
checked in at 2021-09-20 23:33:44

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


Package is "secvarctl"

Mon Sep 20 23:33:44 2021 rev:2 rq:920364 version:0.2+git31~26ea751

Changes:

--- /work/SRC/openSUSE:Factory/secvarctl/secvarctl.changes  2021-06-16 
20:37:08.907356445 +0200
+++ /work/SRC/openSUSE:Factory/.secvarctl.new.1899/secvarctl.changes
2021-09-20 23:36:33.151425551 +0200
@@ -1,0 +2,6 @@
+Mon Sep 20 17:26:18 UTC 2021 - msucha...@suse.com
+
+- Update to version 0.2+git31~26ea751:
+- Remove workaround for wrong man page location - fixed upstream.
+
+---

Old:

  secvarctl-0.2+git20~652c950.tar.xz

New:

  secvarctl-0.2+git31~26ea751.tar.xz



Other differences:
--
++ secvarctl.spec ++
--- /var/tmp/diff_new_pack.70Hjw1/_old  2021-09-20 23:36:33.519426006 +0200
+++ /var/tmp/diff_new_pack.70Hjw1/_new  2021-09-20 23:36:33.523426011 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   secvarctl
-Version:0.2+git20~652c950
+Version:0.2+git31~26ea751
 Release:0
 Summary:Suite of tools to manipulate and generate Secure Boot 
variables on POWER
 License:Apache-2.0
@@ -42,9 +42,6 @@
 
 %install
 %make_install OPENSSL=1 DEBUG=1
-mkdir -p %{buildroot}%{_mandir}/man1
-mv -v %{buildroot}%{_prefix}/local/share/man/man1/secvarctl.1 
%{buildroot}%{_mandir}/man1/secvarctl.1 ||:
-rmdir -p %{buildroot}%{_prefix}/local/share/man/man1 ||:
 
 %files
 %license LICENSE

++ _servicedata ++
--- /var/tmp/diff_new_pack.70Hjw1/_old  2021-09-20 23:36:33.563426060 +0200
+++ /var/tmp/diff_new_pack.70Hjw1/_new  2021-09-20 23:36:33.563426060 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/open-power/secvarctl.git
-  652c950e030a0053735929c7ce6ee898d0979ea7
\ No newline at end of file
+  26ea75189b051bf0d435655fe45fbca0d7342199
\ No newline at end of file

++ secvarctl-0.2+git20~652c950.tar.xz -> secvarctl-0.2+git31~26ea751.tar.xz 
++
 3072 lines of diff (skipped)