Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #277

Merged
merged 32 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
719dca6
Update Elixir, Erlang and HAProxy to the latest versions
andyone Mar 21, 2024
0e96eea
Update nodejs to 20.11.1
andyone Mar 22, 2024
2f77963
Update Adoptium Java to the latest versions
andyone Mar 22, 2024
469862a
Update fish to 3.7.1
andyone Mar 25, 2024
8d01ef2
Update Golang to 1.22.2
andyone Apr 3, 2024
87ad92f
Update Erlang 24, 25, and 26 to the latest versions
andyone Apr 16, 2024
a675564
Update tmux to 3.4
andyone Apr 16, 2024
0bf9ab9
Update tig to 2.5.9
andyone Apr 16, 2024
4747623
Update upx to 4.2.3
andyone Apr 16, 2024
8bf2c0a
Update vips to 8.15.2
andyone Apr 16, 2024
42c1243
Update yarn to 1.22.22
andyone Apr 16, 2024
f988564
Update rsync to 3.3.0
andyone Apr 16, 2024
223e4c2
Update orc to 0.4.38
andyone Apr 16, 2024
7a4961a
Update nodejs to 20.12.2
andyone Apr 16, 2024
1bbd865
Update ninja-build to 1.12.0
andyone Apr 16, 2024
9e018cf
Update nghttp to 1.61.0
andyone Apr 16, 2024
bed1b94
Update nasm to 2.16.02
andyone Apr 16, 2024
65341e3
Update meson to 1.4.0
andyone Apr 16, 2024
b306cc3
curl updated to 8.7.1
andyone Apr 16, 2024
5a6e45c
Update memcache to 1.6.26
andyone Apr 16, 2024
db23af6
Update zstd to 1.5.6
andyone Apr 16, 2024
f9457dc
Update HAProxy to the latest versions
andyone Apr 16, 2024
dc698d4
Update git to 2.44.0
andyone Apr 18, 2024
5052226
Update gradle to 8.7
andyone Apr 18, 2024
24265b9
Update goaccess to 1.9.2
andyone Apr 18, 2024
4e81466
Update etcd to 3.5.13
andyone Apr 18, 2024
f67cb1f
Update cronie to 1.7.2
andyone Apr 18, 2024
4c63a31
Update createrepo_c to 1.1.0
andyone Apr 18, 2024
5f3a792
Update autoconf to 2.72
andyone Apr 18, 2024
c19bc95
Update release info generation script
andyone Apr 18, 2024
da457bb
Update erlang tests
andyone Apr 18, 2024
d086684
Update tests for golang
andyone Apr 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions release-info-gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2023 ESSENTIAL KAOS //
// Copyright (c) 202 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down Expand Up @@ -249,13 +249,13 @@ func listDeletions(changes Changes) {

// parseChangeInfo parses change info
func parseChangeInfo(line string) Change {
changeType := strutil.ReadField(line, 0, true, " ", "\t")
changeType := strutil.ReadField(line, 0, true, ' ', '\t')

switch changeType {
case TYPE_ADDED, TYPE_DELETED, TYPE_MODIFIED:
return Change{
Type: changeType,
File: strutil.ReadField(line, 1, true, " ", "\t"),
File: strutil.ReadField(line, 1, true, ' ', '\t'),
}
}

Expand All @@ -265,8 +265,8 @@ func parseChangeInfo(line string) Change {

return Change{
Type: TYPE_RENAMED,
File: strutil.ReadField(line, 2, true, " ", "\t"),
Source: strutil.ReadField(line, 1, true, " ", "\t"),
File: strutil.ReadField(line, 2, true, ' ', '\t'),
Source: strutil.ReadField(line, 1, true, ' ', '\t'),
Similarity: extractSimilarityIndex(changeType),
}
}
Expand Down
12 changes: 8 additions & 4 deletions specs/adoptium/jdk11.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 11.0.21
%define jdk_minor 9
%define jdk_major 11.0.22
%define jdk_minor 7
%define jdk_patch .1

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 1167
%define alt_priority 1168

################################################################################

Summary: OpenJDK Runtime Environment (JDK 11)
Name: jdk11
Epoch: 1
Version: %{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -110,6 +111,9 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 11.0.22-7.1
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-11.0.22+7

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 11.0.21-9
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-11.0.21+9

Expand Down
12 changes: 8 additions & 4 deletions specs/adoptium/jdk17.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 17.0.9
%define jdk_minor 9
%define jdk_major 17.0.10
%define jdk_minor 7
%define jdk_patch %{nil}

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 1755
%define alt_priority 1756

################################################################################

Summary: OpenJDK Runtime Environment (JDK 17)
Name: jdk17
Epoch: 1
Version: %{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -110,6 +111,9 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 17.0.10-7
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-17.0.10+7

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 17.0.9-9
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-17.0.9+9

Expand Down
12 changes: 8 additions & 4 deletions specs/adoptium/jdk21.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 21.0.1
%define jdk_minor 12
%define jdk_major 21.0.2
%define jdk_minor 13
%define jdk_patch %{nil}

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 2155
%define alt_priority 2156

################################################################################

Summary: OpenJDK Runtime Environment (JDK 21)
Name: jdk21
Epoch: 1
Version: %{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -110,5 +111,8 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 21.0.2-13
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-21.0.2+13

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 21.0.1-12
- Initial build for kaos repository
12 changes: 8 additions & 4 deletions specs/adoptium/jdk8.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 392
%define jdk_minor b08
%define jdk_major 402
%define jdk_minor b06
%define jdk_patch %{nil}

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 865
%define alt_priority 866

################################################################################

Summary: OpenJDK Runtime Environment (JDK 8)
Name: jdk8
Epoch: 1
Version: 1.8.0.%{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -111,6 +112,9 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 1.8.0.402-b06
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk8u402-b06

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 1.8.0.392-b08
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk8u392-b08

Expand Down
12 changes: 8 additions & 4 deletions specs/adoptium/jre11.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 11.0.21
%define jdk_minor 9
%define jdk_major 11.0.22
%define jdk_minor 7
%define jdk_patch .1

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 1117
%define alt_priority 1118

################################################################################

Summary: OpenJDK Runtime Environment (JRE 11)
Name: jre11
Epoch: 1
Version: %{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -110,6 +111,9 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 11.0.22-7.1
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-11.0.22+7

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 11.0.21-9
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-11.0.21+9

Expand Down
12 changes: 8 additions & 4 deletions specs/adoptium/jre17.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 17.0.9
%define jdk_minor 9
%define jdk_major 17.0.10
%define jdk_minor 7
%define jdk_patch %{nil}

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 1705
%define alt_priority 1706

################################################################################

Summary: OpenJDK Runtime Environment (JRE 17)
Name: jre17
Epoch: 1
Version: %{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -110,6 +111,9 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 17.0.10-7
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-17.0.10+7

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 17.0.9-9
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-17.0.9+9

Expand Down
12 changes: 8 additions & 4 deletions specs/adoptium/jre21.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 21.0.1
%define jdk_minor 12
%define jdk_major 21.0.2
%define jdk_minor 13
%define jdk_patch %{nil}

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 2100
%define alt_priority 2101

################################################################################

Summary: OpenJDK Runtime Environment (JRE 21)
Name: jre21
Epoch: 1
Version: %{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -110,5 +111,8 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 21.0.2-13
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk-21.0.2+13

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 21.0.1-12
- Initial build for kaos repository
12 changes: 8 additions & 4 deletions specs/adoptium/jre8.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@

################################################################################

%define jdk_major 392
%define jdk_minor b08
%define jdk_major 402
%define jdk_minor b06
%define jdk_patch %{nil}

%define install_dir %{_prefix}/java/%{name}-%{version}
%define jdk_bin_dir %{install_dir}/bin
%define jdk_man_dir %{install_dir}/man/man1

%define alt_priority 815
%define alt_priority 816

################################################################################

Summary: OpenJDK Runtime Environment (JRE 8)
Name: jre8
Epoch: 1
Version: 1.8.0.%{jdk_major}
Release: %{jdk_minor}%{?dist}
Release: %{jdk_minor}%{jdk_patch}%{?dist}
Group: Development/Languages
License: ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib
URL: https://adoptium.net
Expand Down Expand Up @@ -111,6 +112,9 @@ deps="$deps --slave %{_sysconfdir}/profile.d/java.sh java-profile %{install_dir}
################################################################################

%changelog
* Fri Mar 22 2024 Anton Novojilov <[email protected]> - 1.8.0.402-b06
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk8u402-b06

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 1.8.0.392-b08
- https://adoptium.net/en-GB/temurin/release-notes/?version=jdk8u392-b08

Expand Down
5 changes: 4 additions & 1 deletion specs/autoconf.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Summary: A GNU tool for automatically configuring source code
Name: autoconf
Version: 2.71
Version: 2.72
Release: 0%{?dist}
License: GPLv2+ and GFDL
Group: Development/Tools
Expand Down Expand Up @@ -82,5 +82,8 @@ rm -rf %{buildroot}
################################################################################

%changelog
* Thu Apr 18 2024 Anton Novojilov <[email protected]> - 2.72-0
- Updated to the latest stable release

* Sat Jul 08 2023 Anton Novojilov <[email protected]> - 2.71-0
- Initial build for EK repository
5 changes: 4 additions & 1 deletion specs/createrepo_c.spec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

Summary: Creates a common metadata repository
Name: createrepo_c
Version: 1.0.2
Version: 1.1.0
Release: 0%{?dist}
License: GPLv2
Group: Development/Tools
Expand Down Expand Up @@ -188,6 +188,9 @@ rm -rf %{buildroot}
################################################################################

%changelog
* Thu Apr 18 2024 Anton Novojilov <[email protected]> - 1.1.0-0
- https://github.com/rpm-software-management/createrepo_c/compare/1.0.2...1.1.0

* Wed Dec 06 2023 Anton Novojilov <[email protected]> - 1.0.2-0
- https://github.com/rpm-software-management/createrepo_c/compare/1.0.1...1.0.2
- Build with sanitizers disabled by default due to many leak alerts
Expand Down
5 changes: 4 additions & 1 deletion specs/cronie.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

Summary: Cron daemon for executing programs at set times
Name: cronie
Version: 1.7.1
Version: 1.7.2
Release: 0%{?dist}
License: MIT and BSD and ISC and GPLv2
Group: System Environment/Base
Expand Down Expand Up @@ -241,6 +241,9 @@ systemctl try-restart %{service_name}.service &>/dev/null || :
################################################################################

%changelog
* Thu Apr 18 2024 Anton Novojilov <[email protected]> - 1.7.2-0
- https://github.com/cronie-crond/cronie/releases/tag/cronie-1.7.2

* Wed Jan 17 2024 Anton Novojilov <[email protected]> - 1.7.1-0
- https://github.com/cronie-crond/cronie/releases/tag/cronie-1.7.1

Expand Down
Loading