Accepting request 755456 from home:gsantomaggio_suse:branches:devel:languages:erlang
Add unzip to "build require" - Elixir 1.9.4 * Bug fixes Mix [mix local.hex] Remove invalid deprecation warning on mix local.hex command - Elixir 1.9.3 * Enhancements Mix [mix release] Add :tar option for releases to create a tarball * Bug fixes Mix [mix release] Use default_release option when name is not given [mix release] Make release's boot script contents deterministic * Deprecations Mix [mix archive.install] Warn when installing from URI [mix escript.install] Warn when installing from URI - Elixir 1.9.2 * Enhancements Mix [mix release] Allow {:from_app, app_name} as a version for releases * Bug fixes Elixir [Kernel] Ensure compilation works for a variable named super [Kernel] Ensure capture operator of a local function expands correctly inside a macro [Regex] Ensure dynamic recompilation of regexes considers options. This fixes an issue where parsing the protocol in URI.parse/1 seemingly looked case sensitive when running Elixir precompiled on another machine * Mix [mix release] Use Base.encode32 when generating cookie to avoid unsafe chars [mix release] Fix install command on Windows [mix release] Quote executable path on Windows to ensure it works on directories with spaces - Elixir 1.9.1 * Enhancements Mix [mix format] Print relative paths in --check-formatted output [mix release] Support included applications * Bug fixes Elixir [Code] Fix formatter wrongly removing nested parens in nested calls * Logger [Logger] Do not crash translator on poorly formatted supervisor names * Mix [mix compile] Raise readable error for mismatched sources during compilation [mix release] Preserve UTF8 encoding in release config files OBS-URL: https://build.opensuse.org/request/show/755456 OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/elixir?expand=0&rev=48
This commit is contained in:
parent
f4519acf14
commit
c5ac5de614
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dbf4cb66634e22d60fe4aa162946c992257f700c7db123212e7e29d1c0b0c487
|
||||
size 2247212
|
3
elixir-1.9.4.tar.gz
Normal file
3
elixir-1.9.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a251ce0168ec31aabe51fcc3b8b2d27f95103ec16cb45d67dd5180e23408fd0d
|
||||
size 2531934
|
@ -12,12 +12,12 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: elixir-doc
|
||||
Version: 1.9.0
|
||||
Version: 1.9.4
|
||||
Release: 0
|
||||
Summary: Documentation for elixir
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +1,60 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 3 09:25:13 UTC 2019 - Gabriele Santomaggio <gsantomaggio@suse.de>
|
||||
|
||||
- Elixir 1.9.4
|
||||
* Bug fixes
|
||||
Mix
|
||||
[mix local.hex] Remove invalid deprecation warning on mix local.hex command
|
||||
|
||||
- Elixir 1.9.3
|
||||
* Enhancements
|
||||
Mix
|
||||
[mix release] Add :tar option for releases to create a tarball
|
||||
|
||||
* Bug fixes
|
||||
Mix
|
||||
[mix release] Use default_release option when name is not given
|
||||
[mix release] Make release's boot script contents deterministic
|
||||
|
||||
* Deprecations
|
||||
Mix
|
||||
[mix archive.install] Warn when installing from URI
|
||||
[mix escript.install] Warn when installing from URI
|
||||
|
||||
- Elixir 1.9.2
|
||||
* Enhancements
|
||||
Mix
|
||||
[mix release] Allow {:from_app, app_name} as a version for releases
|
||||
|
||||
* Bug fixes
|
||||
Elixir
|
||||
[Kernel] Ensure compilation works for a variable named super
|
||||
[Kernel] Ensure capture operator of a local function expands correctly inside a macro
|
||||
[Regex] Ensure dynamic recompilation of regexes considers options.
|
||||
This fixes an issue where parsing the protocol in URI.parse/1 seemingly looked case sensitive when running Elixir precompiled on another machine
|
||||
|
||||
* Mix
|
||||
[mix release] Use Base.encode32 when generating cookie to avoid unsafe chars
|
||||
[mix release] Fix install command on Windows
|
||||
[mix release] Quote executable path on Windows to ensure it works on directories with spaces
|
||||
|
||||
- Elixir 1.9.1
|
||||
* Enhancements
|
||||
Mix
|
||||
[mix format] Print relative paths in --check-formatted output
|
||||
[mix release] Support included applications
|
||||
|
||||
* Bug fixes
|
||||
Elixir
|
||||
[Code] Fix formatter wrongly removing nested parens in nested calls
|
||||
|
||||
* Logger
|
||||
[Logger] Do not crash translator on poorly formatted supervisor names
|
||||
|
||||
* Mix
|
||||
[mix compile] Raise readable error for mismatched sources during compilation
|
||||
[mix release] Preserve UTF8 encoding in release config files
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 25 08:55:44 UTC 2019 - g.santomaggio@gmail.com
|
||||
|
||||
|
@ -12,12 +12,12 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: elixir
|
||||
Version: 1.9.0
|
||||
Version: 1.9.4
|
||||
Release: 0
|
||||
Summary: Functional meta-programming aware language built atop Erlang
|
||||
License: Apache-2.0
|
||||
@ -34,6 +34,7 @@ BuildRequires: erlang >= 20
|
||||
BuildRequires: erlang-dialyzer
|
||||
BuildRequires: erlang-src
|
||||
BuildRequires: git >= 1.7
|
||||
BuildRequires: unzip
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
Requires: erlang
|
||||
|
Loading…
Reference in New Issue
Block a user