1
0

Accepting request 1077676 from Base:System

- Update to version 2+git20230406.2dae8b7:
  * Build in place support
  * Fix up argument parsing
  * merge spec file into git

OBS-URL: https://build.opensuse.org/request/show/1077676
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ca-certificates?expand=0&rev=52
This commit is contained in:
Dominique Leuenberger 2023-04-08 15:38:24 +00:00 committed by Git OBS Bridge
commit f864c0aeac
8 changed files with 31 additions and 14 deletions

View File

@ -2,9 +2,10 @@
<service name="obs_scm" mode="manual"> <service name="obs_scm" mode="manual">
<param name="version">2</param> <param name="version">2</param>
<param name="versionformat">2+git%cd.%h</param> <param name="versionformat">2+git%cd.%h</param>
<param name="url">http://github.com/openSUSE/ca-certificates.git</param> <param name="url">https://github.com/openSUSE/ca-certificates.git</param>
<param name="scm">git</param> <param name="scm">git</param>
<param name="changesgenerate">enable</param> <param name="changesgenerate">enable</param>
<param name="extract">ca-certificates.spec</param>
</service> </service>
<service name="set_version" mode="manual"/> <service name="set_version" mode="manual"/>
<service mode="buildtime" name="tar"/> <service mode="buildtime" name="tar"/>

View File

@ -1,4 +1,6 @@
<servicedata> <servicedata>
<service name="tar_scm"> <service name="tar_scm">
<param name="url">http://github.com/openSUSE/ca-certificates.git</param> <param name="url">http://github.com/openSUSE/ca-certificates.git</param>
<param name="changesrevision">15986b230062fc4355616d0c63180811704b0933</param></service></servicedata> <param name="changesrevision">d16f02666b959e10f5bc64b6ab26b398f388ad0b</param></service><service name="tar_scm">
<param name="url">https://github.com/openSUSE/ca-certificates.git</param>
<param name="changesrevision">2dae8b77c250506dc1bf862351c3a5de89a08e90</param></service></servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2211e1c02ed594aad85435b2f9b38a6d35ce7028f62c43aba36cf8c30080c148
size 70667

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3d7174bcd4330c5d5ff9335532d09032335f190bcffa0c94015a2f4def84490c
size 70667

BIN
ca-certificates-2+git20230406.2dae8b7.obscpio (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Thu Apr 06 08:03:11 UTC 2023 - lnussel@suse.de
- Update to version 2+git20230406.2dae8b7:
* Build in place support
* Fix up argument parsing
* merge spec file into git
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 04 08:21:06 UTC 2021 - lnussel@suse.de Mon Oct 04 08:21:06 UTC 2021 - lnussel@suse.de

View File

@ -1,5 +1,4 @@
name: ca-certificates name: ca-certificates
version: 2+git20211004.3efbea9 version: 2+git20230406.2dae8b7
mtime: 1633335598 mtime: 1680768174
commit: 3efbea9d908d0ecf3678aeef8ade884c0c155175 commit: 2dae8b77c250506dc1bf862351c3a5de89a08e90

View File

@ -1,7 +1,7 @@
# #
# spec file for package ca-certificates # spec file for package ca-certificates
# #
# Copyright (c) 2021 SUSE LLC # Copyright (c) 2023 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -16,6 +16,16 @@
# #
%if 0%{?_build_in_place}
%define git_version %(git log '-n1' '--date=format:%Y%m%d' '--no-show-signature' "--pretty=format:+git%cd.%h")
BuildRequires: git-core
%else
# this is required for obs' source validator. It's
# 20-files-present-and-referenced ignores all conditionals. So the
# definition of git_version actually happens always.
%define git_version %{nil}
%endif
# the ca bundle file was meant as compat option for e.g. # the ca bundle file was meant as compat option for e.g.
# proprietary packages. It's not meant to be used at all. # proprietary packages. It's not meant to be used at all.
# unfortunately glib-networking has such a complicated abstraction # unfortunately glib-networking has such a complicated abstraction
@ -28,7 +38,7 @@ Name: ca-certificates
%define ssletcdir %{_sysconfdir}/ssl %define ssletcdir %{_sysconfdir}/ssl
%define cabundle /var/lib/ca-certificates/ca-bundle.pem %define cabundle /var/lib/ca-certificates/ca-bundle.pem
%define sslcerts %{ssletcdir}/certs %define sslcerts %{ssletcdir}/certs
Version: 2+git20211004.3efbea9 Version: 2+git20230406.2dae8b7%{git_version}
Release: 0 Release: 0
Summary: Utilities for system wide CA certificate installation Summary: Utilities for system wide CA certificate installation
License: GPL-2.0-or-later License: GPL-2.0-or-later