SHA256
1
0
forked from pool/d2
Files
d2/d2.spec
Jeff Kowalczyk cb21e5c6cd Accepting request 1139555 from home:jfkw:branches:devel:languages:go
- Update to version 0.6.3:
  * Themes can be customized via d2-config vars. #1777
  * Icons can be added for special objects (sql_table, class, code, markdown, latex). #1774
  * Fix importing files that override an existing value with an array. #1762
  * Fixes missing unfilled triangle arrowheads when sketch flag is on. #1763
  * Fixes a bug where the render target could be incorrect if the target path contains "index". #1764
  * Fixes ELK layout with outside labels/icons. #1776
  * Fixes a bug where an edge could become disconnected with dagre layout and direction right. #1778

OBS-URL: https://build.opensuse.org/request/show/1139555
OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/d2?expand=0&rev=13
2024-01-17 22:52:21 +00:00

56 lines
1.6 KiB
RPMSpec

#
# spec file for package d2
#
# 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/
#
Name: d2
Version: 0.6.3
Release: 0
Summary: CLI tool and modern declarative language that turns text to diagrams
License: Apache-2.0 AND MIT AND MPL-2.0 AND EPL-2.0 AND GPL-2.0-or-later AND BSD-3-Clause
Group: Productivity/Text/Utilities
URL: https://github.com/terrastruct/d2
Source: %{name}-%{version}.tar.gz
Source1: vendor.tar.gz
BuildRequires: golang(API) >= 1.20
%description
A modern declarative diagramming language that turns text to diagrams. Create
beautiful diagrams in minutes. Simple syntax. Endlessly customizable. D2 is the
fastest and easiest way to get a mental model from your head onto the screen,
then make edits with your team.
%prep
%autosetup -a 1
%build
go build \
-buildmode=pie
%check
# execute the binary as a basic check
./%{name} --help
%install
install -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}"
%files
%doc README.md
%license LICENSE.txt
%{_bindir}/%{name}
%changelog