mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
AutoBuild: readline started at 2025-07-09-18UTC (#12159)
* Readline => 8.3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to readline * Add built packages for linux/amd64 to readline * Add built packages for linux/arm/v7 to readline * Adjust build workflow Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust git source for readline. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust git source for readline. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
2afbf2f7fb
commit
142a8dbe67
24
.github/workflows/Build.yml
vendored
24
.github/workflows/Build.yml
vendored
@@ -41,20 +41,6 @@ jobs:
|
||||
env:
|
||||
STEPS_CONTEXT: ${{ toJson(steps) }}
|
||||
run: echo "$STEPS_CONTEXT"
|
||||
get-temp-token:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Get Token
|
||||
id: get_workflow_token
|
||||
uses: peter-murray/workflow-application-token-action@v4
|
||||
with:
|
||||
application_id: ${{ secrets.APPLICATION_ID }}
|
||||
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
|
||||
organization: chromebrew
|
||||
- name: Export github token to github context
|
||||
id: gh_token_export
|
||||
run: |
|
||||
echo "GH_TOKEN=${{ steps.get_workflow_token.outputs.token }}" >> "$GITHUB_ENV"
|
||||
setup:
|
||||
if: ${{ ( github.repository_owner == 'chromebrew' ) && ( inputs.branch != 'master' ) }}
|
||||
runs-on: ubuntu-24.04
|
||||
@@ -344,11 +330,19 @@ jobs:
|
||||
git reset --hard "origin/${{ env.BRANCH }}"
|
||||
git pull --rebase origin master && git push -f
|
||||
git log --oneline -10
|
||||
- name: Get GH Token
|
||||
id: get_workflow_token
|
||||
uses: peter-murray/workflow-application-token-action@v4
|
||||
with:
|
||||
application_id: ${{ secrets.APPLICATION_ID }}
|
||||
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
|
||||
organization: chromebrew
|
||||
- name: Create Pull Request
|
||||
if: ${{ github.event.inputs.with_pr == 'true' }}
|
||||
env:
|
||||
CHANGED_MANIFEST_FILES: ${{ steps.changed-manifest-files.outputs.all_changed_files }}
|
||||
CHANGED_PACKAGES: ${{ needs.setup.outputs.changed_packages }}
|
||||
GH_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
|
||||
TIMESTAMP: ${{ needs.setup.outputs.timestamp }}
|
||||
i686_PACKAGES: ${{ needs.setup.outputs.i686_packages }}
|
||||
x86_64_PACKAGES: ${{ needs.setup.outputs.x86_64_packages }}
|
||||
@@ -378,6 +372,8 @@ jobs:
|
||||
echo "PR_NUMBER=${PR_NUMBER}" >> "$GITHUB_ENV"
|
||||
- name: Trigger Unit Test Workflow & Add Reviewer Team
|
||||
if: ${{ github.event.inputs.with_pr == 'true' }}
|
||||
env:
|
||||
GH_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
|
||||
run: |
|
||||
echo "Flipping pr ${PR_NUMBER} state."
|
||||
gh pr close "${PR_NUMBER}" && gh pr reopen "${PR_NUMBER}"
|
||||
|
||||
@@ -3,25 +3,23 @@ require 'package'
|
||||
class Readline < Package
|
||||
description 'The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in.'
|
||||
homepage 'https://tiswww.cwru.edu/php/chet/readline/rltop.html'
|
||||
version '8.3-rc2'
|
||||
version '8.3'
|
||||
license 'GPL-2'
|
||||
compatibility 'all'
|
||||
# source_url "https://ftpmirror.gnu.org/readline/readline-#{version}.tar.gz"
|
||||
# source_sha256 '4df532d8e46e726bb216c63304163a174542cc870109abfe23177fac9e605425'
|
||||
source_url 'https://https.git.savannah.gnu.org/git/readline.git'
|
||||
git_hashtag '1f2d3a51df1195446e126c5ebca621d9d81809ea'
|
||||
source_url 'https://git.savannah.gnu.org/git/readline.git'
|
||||
git_hashtag "readline-#{version}"
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '85dff3d0aa6a72f845cb8136d631c10b5efbac27ff62e52b1cf3432a5f350669',
|
||||
armv7l: '85dff3d0aa6a72f845cb8136d631c10b5efbac27ff62e52b1cf3432a5f350669',
|
||||
i686: '1603ee7a4ac94b0d33e5aa75275391d3ec1797c1dc161ae3f332230068913cef',
|
||||
x86_64: '3522e3a49daa2a52ff5dfe2d31162579401d888613dbd34147370270d424ed30'
|
||||
aarch64: '03591d5160e17e7f9625e3621a61770c969e46d5bacd6451d8849ad029020f02',
|
||||
armv7l: '03591d5160e17e7f9625e3621a61770c969e46d5bacd6451d8849ad029020f02',
|
||||
i686: '445ce86768f5f9c68b40b4ea63f14e90a0f7c5737b1b0e7a2757e2f4c4534c06',
|
||||
x86_64: '8063bcca47645dd5cef9182cc82aafce3871accda72dd19969e67362133293dc'
|
||||
})
|
||||
|
||||
depends_on 'gcc_lib' # R
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'ncurses' # R
|
||||
depends_on 'gcc_lib' # R
|
||||
|
||||
def self.build
|
||||
system "./configure \
|
||||
|
||||
Reference in New Issue
Block a user