Accepting request 1225895 from systemsmanagement:opentofu
OBS-URL: https://build.opensuse.org/request/show/1225895 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/opentofu?expand=0&rev=25
This commit is contained in:
commit
3fe4aa81ad
2
_service
2
_service
@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/opentofu/opentofu/</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="revision">v1.8.5</param>
|
||||
<param name="revision">v1.8.6</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/opentofu/opentofu/</param>
|
||||
<param name="changesrevision">b1062873d3ce1199c3b5b63d633e718d441bdcbb</param></service></servicedata>
|
||||
<param name="changesrevision">879fea59d9befeddf6c8b8657f27fdd4ed67787b</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2fb4e8ede0016661d2ba57082553cbeaf1c481821aad5f6e3833ca6ff4e64050
|
||||
size 19338253
|
3
opentofu-1.8.6.obscpio
Normal file
3
opentofu-1.8.6.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:566bc7f1ea126cbd9af275ea942d151dbcec55c454398b5abda368262989bf69
|
||||
size 19349005
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 22 19:26:51 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
- Update to version 1.8.6:
|
||||
* update 1.8 versions (#2211)
|
||||
* fix changelog for 1.8.6 (#2207)
|
||||
* [BACKPORT] add missing changelog entry for http backend logging
|
||||
(#2206) (#2209)
|
||||
* Bump golang version to 1.22.8 (address CVE-2024-34156) (#2050)
|
||||
(#2182)
|
||||
* [BACKPORT] fix mock type conversion in tofu test (#2144)
|
||||
(#2197)
|
||||
* [BACKPORT] fix mock provider validation (#2140) (#2196)
|
||||
* [BACKPORT] Add DEBUG-level logging to the "http" state storage
|
||||
backend (#2120) (#2192)
|
||||
* [BACKPORT] pin node version for docusaurus build (#2177)
|
||||
(#2194)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 12 06:51:32 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: opentofu
|
||||
version: 1.8.5
|
||||
mtime: 1730750469
|
||||
commit: b1062873d3ce1199c3b5b63d633e718d441bdcbb
|
||||
version: 1.8.6
|
||||
mtime: 1732283871
|
||||
commit: 879fea59d9befeddf6c8b8657f27fdd4ed67787b
|
||||
|
@ -19,7 +19,7 @@
|
||||
%define executable_name tofu
|
||||
|
||||
Name: opentofu
|
||||
Version: 1.8.5
|
||||
Version: 1.8.6
|
||||
Release: 0
|
||||
Summary: Declaratively manage your cloud infrastructure
|
||||
License: MPL-2.0
|
||||
@ -30,20 +30,34 @@ Source1: vendor.tar.gz
|
||||
Source99: opentofu-rpmlintrc
|
||||
BuildRequires: bash-completion
|
||||
BuildRequires: golang-packaging
|
||||
BuildRequires: golang(API) >= 1.21
|
||||
BuildRequires: golang(API) >= 1.22.8
|
||||
# See: https://github.com/hashicorp/opentofu/issues/22807
|
||||
ExcludeArch: %{ix86} %{arm}
|
||||
|
||||
%description
|
||||
Fork of Terraform
|
||||
|
||||
OpenTofu is an OSS tool for building, changing, and versioning infrastructure safely and efficiently. OpenTofu can manage existing and popular service providers as well as custom in-house solutions.
|
||||
OpenTofu is an OSS tool for building, changing, and versioning infrastructure
|
||||
safely and efficiently. OpenTofu can manage existing and popular service
|
||||
providers as well as custom in-house solutions.
|
||||
|
||||
The key features of OpenTofu are:
|
||||
- Infrastructure as Code: Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and treated as you would any other code. Additionally, infrastructure can be shared and re-used.
|
||||
- Execution Plans: OpenTofu has a "planning" step where it generates an execution plan. The execution plan shows what OpenTofu will do when you call apply. This lets you avoid any surprises when OpenTofu manipulates infrastructure.
|
||||
- Resource Graph: OpenTofu builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, OpenTofu builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure.
|
||||
- Change Automation: Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what OpenTofu will change and in what order, avoiding many possible human errors.
|
||||
- Infrastructure as Code: Infrastructure is described using a high-level
|
||||
configuration syntax. This allows a blueprint of your datacenter to be
|
||||
versioned and treated as you would any other code. Additionally, infrastructure
|
||||
can be shared and re-used.
|
||||
- Execution Plans: OpenTofu has a "planning" step where it generates an
|
||||
execution plan. The execution plan shows what OpenTofu will do when you call
|
||||
apply. This lets you avoid any surprises when OpenTofu manipulates
|
||||
infrastructure.
|
||||
- Resource Graph: OpenTofu builds a graph of all your resources, and
|
||||
parallelizes the creation and modification of any non-dependent resources.
|
||||
Because of this, OpenTofu builds infrastructure as efficiently as possible, and
|
||||
operators get insight into dependencies in their infrastructure.
|
||||
- Change Automation: Complex changesets can be applied to your infrastructure
|
||||
with minimal human interaction. With the previously mentioned execution plan
|
||||
and resource graph, you know exactly what OpenTofu will change and in what
|
||||
order, avoiding many possible human errors.
|
||||
|
||||
%prep
|
||||
%autosetup -p 1 -a 1
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bac509970fdeff88ce56c774d5169cc520a593ab10ec13abdc2e38c4cd162a6a
|
||||
size 15578637
|
||||
oid sha256:08afc11ba77365e49f0d853058577a9ebcdafa092988bb8adb67abfbf09ba833
|
||||
size 15553482
|
||||
|
Loading…
Reference in New Issue
Block a user