-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: Makefile erlang.spec
- Loading branch information
Showing
10 changed files
with
122 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Trigger build | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
trigger-build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Extract Erlang major version | ||
run: | | ||
major=$(echo "${{ github.ref_name }}" | cut -d "-" -f 2) | ||
echo $major | ||
echo "erlang_major=$major" >> $GITHUB_ENV | ||
- name: Trigger build | ||
uses: peter-evans/repository-dispatch@v2 | ||
with: | ||
repository: rabbitmq/erlang-packages | ||
token: ${{ secrets.CI_GITHUB_TOKEN }} | ||
event-type: rpm_erlang_${{ env.erlang_major }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright VMware, Inc. or its affiliantes, 2012-2022. All Rights Reserved. | ||
# Copyright Broadcom, Inc. or its affiliantes, 2012-2024. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
@@ -12,8 +12,8 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
%global upstream_ver 26.2 | ||
%global package_ver 26.2 | ||
%global upstream_ver 27.1.3 | ||
%global package_ver 27.1.3 | ||
%global package_ver_release 1 | ||
|
||
# See https://fedoraproject.org/wiki/Changes/Broken_RPATH_will_fail_rpmbuild | ||
|
@@ -106,7 +106,6 @@ touch lib/dialyzer/SKIP | |
touch lib/diameter/SKIP | ||
touch lib/edoc/SKIP | ||
touch lib/et/SKIP | ||
touch lib/erl_docgen/SKIP | ||
touch lib/ftp/SKIP | ||
touch lib/jinterface/SKIP | ||
touch lib/megaco/SKIP | ||
|
@@ -323,6 +322,39 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
%changelog | ||
|
||
* Fri Dec 6 2024 Michael Klishin <[email protected]> - 27.1.3 | ||
- Update to Erlang/OTP 27.1.3 | ||
|
||
* Mon Oct 28 2024 Michael Klishin <[email protected]> - 27.1.2 | ||
- Update to Erlang/OTP 27.1.2 | ||
|
||
* Thu Oct 10 2024 Michael Klishin <[email protected]> - 27.1.1 | ||
- Update to Erlang/OTP 27.1.1 | ||
|
||
* Wed Oct 9 2024 Michael Klishin <[email protected]> - 26.2.5.4 | ||
- Update to Erlang/OTP 26.2.5.4 | ||
|
||
* Thu Sep 5 2024 Michael Klishin <[email protected]> - 26.2.5.3 | ||
- Update to Erlang/OTP 26.2.5.3 | ||
|
||
* Wed Jul 10 2024 Michael Klishin <[email protected]> - 26.2.5.2 | ||
- Update to Erlang/OTP 26.2.5.2 | ||
|
||
* Sat May 4 2024 Michael Klishin <[email protected]> - 26.2.5 | ||
- Update to Erlang/OTP 26.2.5 | ||
|
||
* Sat Apr 13 2024 Michael Klishin <[email protected]> - 26.2.4 | ||
- Update to Erlang/OTP 26.2.4 | ||
|
||
* Thu Mar 7 2024 Michael Klishin <[email protected]> - 26.2.3 | ||
- Update to Erlang/OTP 26.2.3 | ||
|
||
* Thu Feb 8 2024 Michael Klishin <[email protected]> - 26.2.2 | ||
- Update to Erlang/OTP 26.2.2 | ||
|
||
* Mon Dec 18 2023 Michael Klishin <[email protected]> - 26.2.1 | ||
- Update to Erlang/OTP 26.2.1 | ||
|
||
* Wed Dec 13 2023 Michael Klishin <[email protected]> - 26.2 | ||
- Update to Erlang/OTP 26.2 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters