- Update to version 2+git20230406.d16f026:
* Build in place support * merge spec file into git OBS-URL: https://build.opensuse.org/package/show/Base:System/ca-certificates?expand=0&rev=103
This commit is contained in:
parent
bc9aacbb9e
commit
118a51e0d3
3
_service
3
_service
@ -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"/>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<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></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2211e1c02ed594aad85435b2f9b38a6d35ce7028f62c43aba36cf8c30080c148
|
|
||||||
size 70667
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3d7174bcd4330c5d5ff9335532d09032335f190bcffa0c94015a2f4def84490c
|
|
||||||
size 70667
|
|
3
ca-certificates-2+git20230406.d16f026.obscpio
Normal file
3
ca-certificates-2+git20230406.d16f026.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:91edf240c1294c6e42aa1e1c4fa5ce56c28fee6a3314aeebc1775dd23e622332
|
||||||
|
size 75787
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 06 07:59:14 UTC 2023 - lnussel@suse.de
|
||||||
|
|
||||||
|
- Update to version 2+git20230406.d16f026:
|
||||||
|
* Build in place support
|
||||||
|
* 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
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
name: ca-certificates
|
name: ca-certificates
|
||||||
version: 2+git20211004.3efbea9
|
version: 2+git20230406.d16f026
|
||||||
mtime: 1633335598
|
mtime: 1680767654
|
||||||
commit: 3efbea9d908d0ecf3678aeef8ade884c0c155175
|
commit: d16f02666b959e10f5bc64b6ab26b398f388ad0b
|
||||||
|
|
||||||
|
@ -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.d16f026%{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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user