forked from pool/terragrunt
update to 0.62.2
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:terraform/terragrunt?expand=0&rev=296
This commit is contained in:
commit
c534454a68
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
36
Makefile
Normal file
36
Makefile
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
NAME = terragrunt
|
||||||
|
|
||||||
|
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
|
||||||
|
mkfile_dir := $(dir $(mkfile_path))
|
||||||
|
export GOPATH := $(mkfile_dir)/tmpdir/
|
||||||
|
|
||||||
|
# make sure ./ is in the path,
|
||||||
|
# otherwise mockery is not found...
|
||||||
|
export PATH := :$(mkfile_dir)/tmpdir/bin:$(PATH)
|
||||||
|
|
||||||
|
default: clean tar
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(NAME) $(NAME)-*.obscpio vendor.tar.gz ./tmpdir
|
||||||
|
|
||||||
|
tar:
|
||||||
|
osc service manualrun
|
||||||
|
mkdir -p ./tmpdir/src/ && \
|
||||||
|
rm -rf ./tmpdir/src/ && \
|
||||||
|
echo "Copy files to ./tmpdir/src/" && \
|
||||||
|
cp -r ./terragrunt/ ./tmpdir/src && \
|
||||||
|
cd ./tmpdir/src/ && \
|
||||||
|
echo "Installing mockery" && \
|
||||||
|
go install github.com/vektra/mockery/v2@v2.43.0 && \
|
||||||
|
echo "Starting go generate" && \
|
||||||
|
go generate ./... && \
|
||||||
|
go mod download && \
|
||||||
|
go mod vendor && \
|
||||||
|
echo "Creating tarball vendor.tar.gz" && \
|
||||||
|
tar czf ../../vendor.tar.gz ./vendor && \
|
||||||
|
ls -lh ../../vendor.tar.gz && \
|
||||||
|
echo "Cleaning up" && \
|
||||||
|
go clean -modcache && \
|
||||||
|
cd ../../ && \
|
||||||
|
rm -rf ./tmpdir && \
|
||||||
|
echo "Finished"
|
14
PACKAGING_README.md
Normal file
14
PACKAGING_README.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Packaging terragrunt
|
||||||
|
|
||||||
|
terragrunt 0.58.4 changed the Makefile. Since then, the `mocks` need to be
|
||||||
|
prepared during build.
|
||||||
|
This also means, that vendoring fails without first creating the mocks...
|
||||||
|
|
||||||
|
1. Change the version in the `_service` file
|
||||||
|
3. Run `make`
|
||||||
|
4. Check the autogenerated changelog entry
|
||||||
|
5. Commit the changes as usual
|
||||||
|
|
||||||
|
For the OBS workflow you need `obs-service-tar_scm`.
|
||||||
|
|
||||||
|
For the `make` part you need `make` and a recent go installation.
|
19
_service
Normal file
19
_service
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<services>
|
||||||
|
<service name="obs_scm" mode="manual">
|
||||||
|
<param name="url">https://github.com/gruntwork-io/terragrunt</param>
|
||||||
|
<param name="scm">git</param>
|
||||||
|
<param name="exclude">.git</param>
|
||||||
|
<param name="revision">v0.62.2</param>
|
||||||
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
|
<param name="changesgenerate">enable</param>
|
||||||
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
|
</service>
|
||||||
|
<service name="set_version" mode="manual">
|
||||||
|
<param name="basename">terragrunt</param>
|
||||||
|
</service>
|
||||||
|
<service name="tar" mode="buildtime"/>
|
||||||
|
<service name="recompress" mode="buildtime">
|
||||||
|
<param name="file">*.tar</param>
|
||||||
|
<param name="compression">gz</param>
|
||||||
|
</service>
|
||||||
|
</services>
|
4
_servicedata
Normal file
4
_servicedata
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<servicedata>
|
||||||
|
<service name="tar_scm">
|
||||||
|
<param name="url">https://github.com/gruntwork-io/terragrunt</param>
|
||||||
|
<param name="changesrevision">a2f630ecd443db27f31a10ff4bac02a8a1de4083</param></service></servicedata>
|
3
terragrunt-0.62.1.obscpio
Normal file
3
terragrunt-0.62.1.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0f318e6e4a67422e821a008da8792363c0e6a552ad2f8df1d4a14ac70946ec78
|
||||||
|
size 7724557
|
3
terragrunt-0.62.2.obscpio
Normal file
3
terragrunt-0.62.2.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:86945b7a908428b21deed162c08ff5331e807854990b371cfde92a74d3b80528
|
||||||
|
size 7724557
|
1595
terragrunt.changes
Normal file
1595
terragrunt.changes
Normal file
File diff suppressed because it is too large
Load Diff
4
terragrunt.obsinfo
Normal file
4
terragrunt.obsinfo
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
name: terragrunt
|
||||||
|
version: 0.62.2
|
||||||
|
mtime: 1721151875
|
||||||
|
commit: a2f630ecd443db27f31a10ff4bac02a8a1de4083
|
54
terragrunt.spec
Normal file
54
terragrunt.spec
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
#
|
||||||
|
# spec file for package terragrunt
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
|
||||||
|
|
||||||
|
Name: terragrunt
|
||||||
|
Version: 0.62.2
|
||||||
|
Release: 0
|
||||||
|
Summary: Thin wrapper for Terraform for working with multiple Terraform modules
|
||||||
|
License: MIT
|
||||||
|
URL: https://github.com/gruntwork-io/terragrunt
|
||||||
|
Source: terragrunt-%{version}.tar.gz
|
||||||
|
Source1: vendor.tar.gz
|
||||||
|
Source2: Makefile
|
||||||
|
Source3: PACKAGING_README.md
|
||||||
|
BuildRequires: go1.21 >= 1.21.7
|
||||||
|
|
||||||
|
%description
|
||||||
|
Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1 -a 1
|
||||||
|
|
||||||
|
%build
|
||||||
|
go build \
|
||||||
|
-mod=vendor \
|
||||||
|
-buildmode=pie \
|
||||||
|
-ldflags="-X github.com/gruntwork-io/go-commons/version.Version=v%{version}"
|
||||||
|
|
||||||
|
%install
|
||||||
|
# Install the binary.
|
||||||
|
install -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE.txt
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
|
||||||
|
%changelog
|
3
vendor.tar.gz
Normal file
3
vendor.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d7099cc535283c64fe96c98e38b589161d9228f39e443fd4a9f9b94956103191
|
||||||
|
size 16168493
|
Loading…
Reference in New Issue
Block a user