SHA256
11
0
forked from pool/gleam

Compare commits

...

11 Commits

Author SHA256 Message Date
8415949902 Accepting request 1246040 from devel:languages:erlang
- Update to 1.8.1:
 * Fixed a metadata caching bug where accessors for opaque types
   could sometimes be used in other modules. (Louis Pilfold)
 * Changelog: https://gleam.run/news/gleam-gets-rename-variable/

OBS-URL: https://build.opensuse.org/request/show/1246040
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gleam?expand=0&rev=13
2025-02-16 21:40:56 +00:00
438f089886 - Update to 1.8.1:
* Fixed a metadata caching bug where accessors for opaque types
   could sometimes be used in other modules. (Louis Pilfold)
 * Changelog: https://gleam.run/news/gleam-gets-rename-variable/

OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/gleam?expand=0&rev=30
2025-02-15 03:57:39 +00:00
fad7c8ce69 Accepting request 1237192 from devel:languages:erlang
- Update to 1.7.0:
 * Changelog: https://gleam.run/news/improved-performance-and-publishing/

OBS-URL: https://build.opensuse.org/request/show/1237192
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gleam?expand=0&rev=12
2025-01-13 16:50:36 +00:00
64a9d4322b OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/gleam?expand=0&rev=28 2025-01-12 19:30:12 +00:00
Gordon Leung
7c1b0d9eb3 - Update to 1.7.0:
* Changelog: https://gleam.run/news/improved-performance-and-publishing/

OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/gleam?expand=0&rev=27
2025-01-05 18:13:07 +00:00
f32f0f6b97 Accepting request 1228090 from devel:languages:erlang
- Update to 1.6.3:
 * Fixed a bug where Gleam would be unable to compile to BEAM
   bytecode on older versions of Erlang/OTP. (yoshi)

OBS-URL: https://build.opensuse.org/request/show/1228090
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gleam?expand=0&rev=11
2024-12-04 14:26:52 +00:00
Gordon Leung
70811e731d - Update to 1.6.3:
* Fixed a bug where Gleam would be unable to compile to BEAM
   bytecode on older versions of Erlang/OTP. (yoshi)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/gleam?expand=0&rev=25
2024-12-03 17:49:05 +00:00
010c51182e Accepting request 1226382 from devel:languages:erlang
- Update to 1.6.2:
 * Fixed a bug where patterns in use expressions would not be checked
   to ensure that they were exhaustive. (Surya Rose)

OBS-URL: https://build.opensuse.org/request/show/1226382
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gleam?expand=0&rev=10
2024-11-26 19:55:52 +00:00
Gordon Leung
cabf71e90e - Update to 1.6.2:
* Fixed a bug where patterns in use expressions would not be checked
   to ensure that they were exhaustive. (Surya Rose)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/gleam?expand=0&rev=23
2024-11-25 23:00:29 +00:00
f2d4db4763 Accepting request 1225184 from devel:languages:erlang
- Update to 1.6.1:
 * fix update use_manifest logic (Jason Sipula)
 * 1.6.0 Changelog: https://gleam.run/news/context-aware-compilation/

OBS-URL: https://build.opensuse.org/request/show/1225184
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gleam?expand=0&rev=9
2024-11-20 16:00:07 +00:00
Gordon Leung
965f76f802 - Update to 1.6.1:
* fix update use_manifest logic (Jason Sipula)
 * 1.6.0 Changelog: https://gleam.run/news/context-aware-compilation/

OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/gleam?expand=0&rev=21
2024-11-20 02:18:20 +00:00
6 changed files with 51 additions and 16 deletions

View File

@@ -3,7 +3,7 @@
<param name="url">https://github.com/gleam-lang/gleam.git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="scm">git</param>
<param name="revision">v1.5.1</param>
<param name="revision">v1.8.1</param>
<param name="match-tag">*</param>
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
<param name="versionrewrite-replacement">\1</param>

BIN
gleam-1.5.1.tar.zst (Stored with Git LFS)

Binary file not shown.

BIN
gleam-1.8.1.tar.zst (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,25 +1,60 @@
-------------------------------------------------------------------
Thu Sep 26 15:10:03 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Sat Feb 15 03:56:00 UTC 2025 - litma leung <pi_cla@disroot.org>
- Update to 1.8.1:
* Fixed a metadata caching bug where accessors for opaque types
could sometimes be used in other modules. (Louis Pilfold)
* Changelog: https://gleam.run/news/gleam-gets-rename-variable/
-------------------------------------------------------------------
Sun Jan 5 18:11:58 UTC 2025 - litma Leung <pirateclip@protonmail.com>
- Update to 1.7.0:
* Changelog: https://gleam.run/news/improved-performance-and-publishing/
-------------------------------------------------------------------
Tue Dec 3 17:47:45 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.6.3:
* Fixed a bug where Gleam would be unable to compile to BEAM
bytecode on older versions of Erlang/OTP. (yoshi)
-------------------------------------------------------------------
Mon Nov 25 22:56:41 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.6.2:
* Fixed a bug where patterns in use expressions would not be checked
to ensure that they were exhaustive. (Surya Rose)
-------------------------------------------------------------------
Wed Nov 20 02:15:36 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.6.1:
* fix update use_manifest logic (Jason Sipula)
* 1.6.0 Changelog: https://gleam.run/news/context-aware-compilation/
-------------------------------------------------------------------
Thu Sep 26 15:10:03 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.5.1:
* Fixed a bug where Erlang file paths would not be escaped on Windows.
(Louis Pilfold)
-------------------------------------------------------------------
Thu Sep 19 21:34:02 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Thu Sep 19 21:34:02 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.5.0:
* Changelog: https://gleam.run/news/convenient-code-actions/
-------------------------------------------------------------------
Fri Aug 2 18:09:24 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Fri Aug 2 18:09:24 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.4.0:
* Changelog: https://gleam.run/news/supercharged-labels/
* Gleam now requires Rust 1.79 to build
-------------------------------------------------------------------
Thu Jul 11 16:10:56 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Thu Jul 11 16:10:56 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.3.2:
Language Server
@@ -44,13 +79,13 @@ Wed Jul 10 11:14:24 UTC 2024 - Pi-Cla <pirateclip@protonmail.com>
(Ameen Radwan)
-------------------------------------------------------------------
Tue Jul 9 15:22:20 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Tue Jul 9 15:22:20 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.3.0:
* Changelog: https://gleam.run/news/auto-imports-and-tolerant-expressions/
-------------------------------------------------------------------
Thu May 30 20:34:39 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Thu May 30 20:34:39 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.2.1:
* Fixed a bug where the compiler could fail to detect modules that
@@ -61,12 +96,12 @@ Thu May 30 20:34:39 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
array. (Giacomo Cavalieri)
-------------------------------------------------------------------
Mon May 27 22:02:42 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Mon May 27 22:02:42 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Update to 1.2.0:
* Changelog: https://gleam.run/news/fault-tolerant-gleam/
-------------------------------------------------------------------
Tue Apr 9 05:49:10 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
Tue Apr 9 05:49:10 UTC 2024 - litma Leung <pirateclip@protonmail.com>
- Initial commit

View File

@@ -1,7 +1,7 @@
#
# spec file for package gleam
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: gleam
Version: 1.5.1
Version: 1.8.1
Release: 0
Summary: A friendly language for building type-safe, scalable systems!
License: Apache-2.0

BIN
vendor.tar.zst (Stored with Git LFS)

Binary file not shown.