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

Update rkdeveloptool-1.32.ebuild #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
33 changes: 33 additions & 0 deletions .github/workflows/pkgcheck-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: pkgcheck
description: Run pkgcheck over an ebuild repository
inputs:
args:
description: Arguments to pass to pkgcheck
required: false
default: ''
runs:
using: composite
steps:
- name: Cache pkgcheck
uses: actions/cache@v4
with:
path: |
~/.cache/pkgcore
~/.cache/pkgcheck
key: pkgcheck

- name: Run pkgcheck
uses: docker://ghcr.io/pkgcore/pkgcheck:latest
with:
entrypoint: /usr/bin/bash
args: >
-c "
runner() { echo \"::group::${1}\"; shift 1; \"$@\"; local exit=$?; echo; echo \"::endgroup::\"; return $exit; } ;
runner \"Sync gentoo repo\" pmaint sync gentoo || exit 1 ;
runner \"Update repo metadata\" pmaint regen --dir ~/.cache/pkgcheck/repos . ;
runner \"Marking workspace safe for git\" git config --global --add safe.directory '*' ;
runner \"Run pkgcheck\" pkgcheck --color y ci --failures ~/failures.json --exit GentooCI ${{ inputs.args }} ;
scan_exit_status=$? ;
pkgcheck replay --color y ~/failures.json ;
exit $scan_exit_status
"
8 changes: 2 additions & 6 deletions dev-embedded/rkdeveloptool/rkdeveloptool-1.32.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@

EAPI=7

inherit autotools

HASH="46bb4c073624226c3f05b37b9ecc50bbcf543f5a"
inherit git-r3 autotools

DESCRIPTION="Tool from Rockchip to communicate with Rockusb devices"
HOMEPAGE="http://opensource.rock-chips.com/wiki_Rkdeveloptool https://github.com/rockchip-linux/rkdeveloptool"
SRC_URI="https://github.com/rockchip-linux/rkdeveloptool/archive/${HASH}.tar.gz -> ${P}.tar.gz"

S="${WORKDIR}/${PN}-${HASH}"
EGIT_REPO_URI="https://github.com/rockchip-linux/rkdeveloptool.git"

LICENSE="GPL-2+"
SLOT="0"
Expand Down