mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 20:08:43 -04:00
Compare commits
23 Commits
9093b05970
...
f956a14776
Author | SHA1 | Date | |
---|---|---|---|
|
f956a14776 | ||
|
c722e38a10 | ||
|
df4785f632 | ||
|
665a037f52 | ||
|
a808477017 | ||
|
1e1e7770c6 | ||
|
cd8d550a83 | ||
|
450e7c0a12 | ||
|
d6a0420159 | ||
|
5da86e0aca | ||
|
5fd5930e53 | ||
|
c0388e220c | ||
|
15a1d6a30c | ||
|
6b1632d223 | ||
|
5912fc2b02 | ||
|
ecbe5973b9 | ||
|
2a1399110f | ||
|
aedcbe879d | ||
|
cee7ec6fac | ||
|
bbee431aec | ||
|
fc4e8f1e26 | ||
|
8fbde9ba5b | ||
|
28fbc8da54 |
152
.github/workflows/issues-bumper.js
vendored
152
.github/workflows/issues-bumper.js
vendored
@ -1,152 +0,0 @@
|
||||
const { graphql } = require("@octokit/graphql");
|
||||
const fs = require("fs");
|
||||
const toml = require("toml");
|
||||
|
||||
function getGithubAccount(packageName) {
|
||||
const tomlFileContent = fs.readFileSync(
|
||||
".github/workflows/overlay.toml",
|
||||
"utf8"
|
||||
);
|
||||
return toml.parse(tomlFileContent)[packageName]["github_account"];
|
||||
}
|
||||
|
||||
async function searchLimit(graphqlWithAuth) {
|
||||
const query = `
|
||||
query {
|
||||
rateLimit {
|
||||
remaining
|
||||
}
|
||||
}
|
||||
`;
|
||||
const { rateLimit } = await graphqlWithAuth(query);
|
||||
if (rateLimit.remaining === 0) {
|
||||
console.warn("Rate limit exceeded.");
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
module.exports = async ({ github, context, core }) => {
|
||||
const graphqlWithAuth = graphql.defaults({
|
||||
headers: {
|
||||
authorization: `token ${process.env.GITHUB_TOKEN}`,
|
||||
},
|
||||
});
|
||||
|
||||
if (await searchLimit(graphqlWithAuth)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const gentooZhOfficialRepoName = "microcai/gentoo-zh";
|
||||
const repoName = process.env.GITHUB_REPOSITORY;
|
||||
const repoIsGentooZhOfficial = repoName === gentooZhOfficialRepoName;
|
||||
|
||||
const pkg = {
|
||||
name: process.env.name,
|
||||
newver: process.env.newver,
|
||||
oldver: process.env.oldver,
|
||||
};
|
||||
|
||||
const titlePrefix = `[nvchecker] ${pkg.name} can be bump to `;
|
||||
const title = titlePrefix + pkg.newver;
|
||||
let body = pkg.oldver ? `oldver: ${pkg.oldver}` : "";
|
||||
|
||||
const githubAccounts = getGithubAccount(pkg.name);
|
||||
if (Array.isArray(githubAccounts)) {
|
||||
body += "\nCC:" + githubAccounts.map((account) => (repoIsGentooZhOfficial ? ` @${account}` : ` ${account}`)).join("");
|
||||
} else if (typeof githubAccounts === "string") {
|
||||
body += repoIsGentooZhOfficial ? `\nCC: @${githubAccounts}` : `\nCC: ${githubAccounts}`;
|
||||
}
|
||||
|
||||
if (!body) {
|
||||
body = null;
|
||||
}
|
||||
|
||||
const searchQuery = `
|
||||
query($searchQuery: String!, $cursor: String) {
|
||||
search(query: $searchQuery, type: ISSUE, first: 100, after: $cursor) {
|
||||
issueCount
|
||||
edges {
|
||||
node {
|
||||
... on Issue {
|
||||
number
|
||||
title
|
||||
body
|
||||
state
|
||||
}
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
endCursor
|
||||
hasNextPage
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
const variables = {
|
||||
searchQuery: `repo:${repoName} is:issue in:title ${titlePrefix}`,
|
||||
cursor: null,
|
||||
};
|
||||
|
||||
let issuesData = [];
|
||||
do {
|
||||
const { search } = await graphqlWithAuth(searchQuery, variables);
|
||||
issuesData = issuesData.concat(search.edges.map((edge) => edge.node));
|
||||
variables.cursor = search.pageInfo.endCursor;
|
||||
} while (variables.cursor);
|
||||
|
||||
for (const issue of issuesData) {
|
||||
if (issue.title.startsWith(titlePrefix)) {
|
||||
if (issue.body === body && issue.title === title) {
|
||||
return;
|
||||
} else if (issue.state === "OPEN") {
|
||||
await github.rest.issues.update({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: issue.number,
|
||||
title: title,
|
||||
body: body,
|
||||
});
|
||||
console.log(`Updated issue: ${issue.number}`);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
const createIssueMutation = `
|
||||
mutation($title: String!, $body: String, $repoId: ID!) {
|
||||
createIssue(input: {title: $title, body: $body, repositoryId: $repoId}) {
|
||||
issue {
|
||||
url
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
const repoQuery = `
|
||||
query($owner: String!, $name: String!) {
|
||||
repository(owner: $owner, name: $name) {
|
||||
id
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
const { repository } = await graphqlWithAuth(repoQuery, {
|
||||
owner: context.repo.owner,
|
||||
name: context.repo.repo,
|
||||
});
|
||||
|
||||
const { createIssue } = await graphqlWithAuth(createIssueMutation, {
|
||||
title: title,
|
||||
body: body,
|
||||
repoId: repository.id,
|
||||
});
|
||||
|
||||
console.log(`Created issue: ${createIssue.issue.url}`);
|
||||
} catch (error) {
|
||||
core.warning(`Failed to create issue: ${error.message}`);
|
||||
throw error;
|
||||
}
|
||||
};
|
25
.github/workflows/nvchecker.yml
vendored
25
.github/workflows/nvchecker.yml
vendored
@ -2,6 +2,8 @@ name: nvchecker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
# * is a special character in YAML so you have to quote this string
|
||||
@ -14,6 +16,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
nvchecker:
|
||||
if: github.repository == 'microcai/gentoo-zh'
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/liangyongxiang/gentoo-testing:master
|
||||
@ -66,24 +69,22 @@ jobs:
|
||||
matrix:
|
||||
include: ${{ fromJson(needs.nvchecker.outputs.nvcmp) }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
- name: Checkout bumpbot
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: 'gentoo-zh-drafts/bumpbot'
|
||||
|
||||
- name: install github-script depends
|
||||
run: |
|
||||
npm install toml @octokit/graphql
|
||||
- name: Checkout gentoo-zh
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
path: 'gentoo-zh'
|
||||
|
||||
- name: update issues
|
||||
uses: actions/github-script@v7
|
||||
timeout-minutes: 1
|
||||
env:
|
||||
name: ${{ matrix.name }}
|
||||
newver: ${{ matrix.newver }}
|
||||
oldver: ${{ matrix.oldver }}
|
||||
GITHUB_TOKEN: ${{ secrets.GENTOO_ZH_NVCHECKER_PAT }}
|
||||
with:
|
||||
script: |
|
||||
const script = require('./.github/workflows/issues-bumper.js');
|
||||
(async function () {
|
||||
await script({github, context, core});
|
||||
})();
|
||||
GITHUB_TOKEN: ${{ secrets.GENTOO_ZH_NVCHECKER_PAT }} # https://github.com/microcai/gentoo-zh/pull/3130
|
||||
run: |
|
||||
go run . --file gentoo-zh/.github/workflows/overlay.toml --name "$name" --newver "$newver" --oldver "$oldver"
|
||||
|
@ -1,4 +1,4 @@
|
||||
DIST chezmoi_2.60.1_linux_amd64.deb 19977194 BLAKE2B 017631f73f89440f5fb3db19757165f7d73f9804d36ecb1ebf0bf0f640aa990561d804719e654c74f485d40d1cdbcbc39553a453a9e5ef95184a9b7aec81b225 SHA512 e90a83088ed5f5bdaaa4df9bb4ed06fc0763d121727e3702f58a41d122c4fcf02204c250a2ed10acc8c8f27d90f09f1cbf6abe78df9a894e04ba4262c44ad3af
|
||||
DIST chezmoi_2.60.1_linux_arm64.deb 18593374 BLAKE2B d12a1122014ccbe107b139df90d077e1951856e08f43a11a45a6f8032b7645324f64940a3f214924a82eb39fe7b94ce906aacbe935b17e0ff8f5dc31530b60de SHA512 1af791fe7660ce1fc89e3f5619ddcbd7abf9e1179550ecff424875e3feb32603c02c8468fc55eaf1666377ee37a36cbe0d5d24c91e02700d079e408019b5877f
|
||||
DIST chezmoi_2.60.1_linux_armel.deb 18643220 BLAKE2B 5e9a3c4e253d2c46880bec7287ccb6dd3e2e1d0333e36aa2296eda0f54b19ac4fa3ed7074c55f1e1621f54be9831d3a2b9dc4c6f37d5147cd1f493877d57e012 SHA512 c150d0759f13b7e4037696fcefe6c893666ad72d3a70fdc0863a8a158bf8c8ba6762256bf0a21e52426688fba0772a400a283f16fc423796ecd08f3cb08afe5b
|
||||
DIST chezmoi_2.60.1_linux_i386.deb 18571970 BLAKE2B be098c8161d62182835522edd28c60fb18c3f080cf62d8fe1c48b0d678429b1cb93e30f0605b5a7e902df1322b557250e6a90484e49dfd10582502ed7b22d5aa SHA512 64ada75e48d0c54ecf8530d1bf9d1d313b3363401572bfa0a9aac09dfe01d76be5d8f897717b2f1d73345a944cf8600159fc720dc4c0438fa5c1189394096028
|
||||
DIST chezmoi_2.61.0_linux_amd64.deb 12227710 BLAKE2B cb28b622afa2a29874d69cebd1caf982f878dc21c9847e77edfd23438f1efb4af584f60f98adcec6982214f3157ff12ebd61d403eaff077a9a74e47a16afb6d4 SHA512 ce1396b540faac11b3ecdfd7ed93d1fc0bd7939fa72029bc9c7c6c886988c7db76364cb84026ea8c050ca147d674f593f2d323df690acbd7a097c589ec9a8652
|
||||
DIST chezmoi_2.61.0_linux_arm64.deb 11198094 BLAKE2B 4c37e2d7c1d143883e0130810370efe6e78fd066e7a106aea0021d54057f802562514f7ed2bbd448361d8166b390308be03ab06edac42b9ef39d4b0db1cecb58 SHA512 a86b5b42299c3bf098c6ed50c0423d9f6246edee4332288c0a9438f817642d66f289a018b82a9324d2522350bf55d4f8a8bec4adc0fa85a2c73e19bf17d25c68
|
||||
DIST chezmoi_2.61.0_linux_armel.deb 11471688 BLAKE2B 558c5d406eab64e5ebe7c565811209b39537de2cb05207966c22ccf2eca4ce065e059e1e7e8814887043c2e24dd8d1ecb5016233469ffe5f6e34aa794ad9c1d5 SHA512 0b2b8637e53a5b4a9d36272587069e3fd536697368016bf9c5f680ff0e9570c0a721532dab671bb6a5700f4064c13239ab99fbd2926ad5153353b7e298adfa86
|
||||
DIST chezmoi_2.61.0_linux_i386.deb 11518582 BLAKE2B 5b618c7eaa39d9980f4ad98ab52b77ccb0fa70de4c3f41961d306cd40cb4626caaaa1751e8afdcfc655000c3c178474ef48b3965b50c98f8ee5f3e99dd937875 SHA512 6e206f9b90a914061b570d09b27c81718a141207ece891c4a7fa4947acab121222e823e42a509dc6047322be447d0b21e324a17a5bdb8fb2c80eeaec610ccf49
|
||||
|
@ -1,2 +1,2 @@
|
||||
DIST chezmoi-2.60.1-vendor.tar.xz 9334072 BLAKE2B ea7e5c04678653fe519e0596fcedc53158ea998530dda3c88d4096f0ef63181051c1899f143bf2724e922f8fddddc48bf9a96072d4bdf6481d5e61494d150cb8 SHA512 57fcdc20ee3e060c1cafe33d05330cc2e6f4c94eef6b8899fbd11de874adce26c98fd7cbefac0d04853126e94312f2eab4576f625e3d15dc1b6c1970235ef0d7
|
||||
DIST chezmoi-2.60.1.tar.gz 2550028 BLAKE2B 0429a9fc4aa2efba1d25e86f5f2ab2821869ca208d19887fcb129db5e540ff568389ec6cd4db4836100e494e03731d639e7b81032890b056edf2088b0bd71529 SHA512 2564a543de16b27d904411d93aa8656d8a65d06d0ab6f16f6d53dba6dabe652549d63f237231874a69f70c8e5dc543ec652dbd3dc723f93b2bec0b04d26a38c6
|
||||
DIST chezmoi-2.61.0-vendor.tar.xz 7120708 BLAKE2B adb2e054011accafe00814a8d2270eee7a1555401b3cd485fc98d18efc32d9c551314fe426d5cb37c6395036d8a7f6bd575d17959867b34ec97f8ad764b8d234 SHA512 93661e9caf62cb7571ae96b2382ce8f8de9c4d872b8c6868d3c42135302764fc71480d848055337cdedd523a09f2f0a1e1582a660002bfe70b7fc2bc55e2be0a
|
||||
DIST chezmoi-2.61.0.tar.gz 2542912 BLAKE2B 892778016bc67534f5a5c036057c757d502aeead325862e2b84afcd13d00f9b02686c8f0ff1a469f9a23672810fae81e8c04bf732a1edc344d071f6e40effca0 SHA512 bf36dc90ae4488425782f2ea03516f0a13743ad5987fa3dc2b19dc9efdb6b3753804544cde1efb07aa7eb87e5c750a4c0c77797db5b13bf75464bbf735d01523
|
||||
|
@ -2,3 +2,4 @@ DIST softmaker-freeoffice-2021-1062-amd64.tgz 130160899 BLAKE2B e8e1d4491909fccd
|
||||
DIST softmaker-freeoffice-2021-1064-amd64.tgz 130167508 BLAKE2B 8ea095a351558feee88e9ed3cafdfe0468cb0a87a28c0836d0a5ee6ef69b7c97945b7b8423342dcbe545f429da16b39c1e4671846f7e5b166457b7e7760b81cc SHA512 b8583710a0d4ea9c6a969c729d0394642b7e855bd07da0e36599e24d9e75c1578e055e39d66eb672e9d4f2493f97310d149b809c2e623c84a042caa07e59fbc1
|
||||
DIST softmaker-freeoffice-2021-1068-amd64.tgz 130164325 BLAKE2B 56ea5939f316aedc79ec53f520ac6c13ae6176ad04cc697b2af4ca343a94497923dd4a6e6a09e1249a632e5e07ec1471bf320dacd92832ba490b7aed8e6ebd2f SHA512 7321d725d496d716b72e7813117d46e32d467c2659512fef8af072afda99ff7d6404107d04750630abcb3870fe8cf70d9c5dc9e191b2c4101492e53060abe27d
|
||||
DIST softmaker-freeoffice-2024-1220-amd64.tgz 167312730 BLAKE2B 37c97b52a5316bf0a9aeceab653f72e830a7fe5d0e0ad39423759e500817c22ffe8d410a6746d626f5ee807e34d32893b1ec818c3e766497631a606214734174 SHA512 04555737aa16e2593429524f974d0be5c69237a2550b510524e61d513c139660ebd71a6c7f67fd246b379ea2b09a7a411962dd9d63eadebddb90183a2ddcd8e7
|
||||
DIST softmaker-freeoffice-2024-1224-amd64.tgz 167202436 BLAKE2B ab51f1d2ce570ba11ff48e56ab528eb6e46a2dd2acaa300bcf0083cb14b0546db1adb4fade2c8fdc904ecf9ad62667bd935029266403af5b83eb065326747011 SHA512 e199d0d904ef0ccf986fecde33502e3b8c25db50551351887386a97b38fb85e1dad858b0afbffaaa5e5420a9f6bc9883c0f366cc327fb174d3bb940b3a7d79e3
|
||||
|
192
app-office/freeoffice/freeoffice-1224.ebuild
Normal file
192
app-office/freeoffice/freeoffice-1224.ebuild
Normal file
@ -0,0 +1,192 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit desktop pax-utils xdg
|
||||
|
||||
DESCRIPTION="A complete, free Microsoft Office-compatible alternative office suite."
|
||||
HOMEPAGE="https://www.freeoffice.com"
|
||||
BASE_URI="https://www.softmaker.net/down/softmaker-freeoffice-2024-${PV}"
|
||||
SRC_URI="${BASE_URI}-amd64.tgz"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="SoftMaker"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
LANGUAGES="ar bg da de el en-GB en-US es et fi fr hu id it ja kk ko lt lv nl pl pt pt-BR ro ru sl sv tr uk zh"
|
||||
for lang in ${LANGUAGES}; do
|
||||
IUSE+="l10n_${lang%:*} "
|
||||
done
|
||||
|
||||
RESTRICT="mirror strip"
|
||||
|
||||
DEPEND="
|
||||
app-admin/chrpath
|
||||
app-arch/xz-utils"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
media-libs/mesa
|
||||
net-misc/curl
|
||||
x11-libs/libXrandr
|
||||
dev-util/desktop-file-utils
|
||||
dev-util/gtk-update-icon-cache
|
||||
media-libs/libglvnd
|
||||
x11-misc/xdg-utils"
|
||||
|
||||
QA_PRESTRIPPED="*"
|
||||
QA_PREBUILT="*"
|
||||
QA_FLAGS_IGNORED="*"
|
||||
|
||||
font_clean(){
|
||||
for lang in ${LANGUAGES}; do
|
||||
use l10n_${lang%:*} && continue
|
||||
declare suf
|
||||
case ${lang%:*} in
|
||||
zh-CN)
|
||||
suf="sc";;
|
||||
ko)
|
||||
suf="kr";;
|
||||
ja)
|
||||
suf="jp";;
|
||||
esac
|
||||
rm fonts/NotoSansCJK${suf}-Regular.otf
|
||||
done
|
||||
}
|
||||
|
||||
free_clean(){
|
||||
for lang in ${LANGUAGES}; do
|
||||
use l10n_${lang%:*} && continue
|
||||
declare fix
|
||||
case ${lang%:*} in
|
||||
de)
|
||||
fix="de";;
|
||||
esac
|
||||
rm *free_${fix}.pdf
|
||||
done
|
||||
}
|
||||
|
||||
lang_clean(){
|
||||
for lang in ${LANGUAGES}; do
|
||||
use l10n_${lang%:*} && continue
|
||||
declare suffix
|
||||
case ${lang%:*} in
|
||||
da)
|
||||
suffix="dk";;
|
||||
el)
|
||||
suffix="gr";;
|
||||
en-US)
|
||||
suffix="us";;
|
||||
en-GB)
|
||||
suffix="uk";;
|
||||
et)
|
||||
suffix="ee";;
|
||||
ja)
|
||||
suffix="jp";;
|
||||
kk)
|
||||
suffix="kz";;
|
||||
ko)
|
||||
suffix="kr";;
|
||||
pt-BR)
|
||||
suffix="pb";;
|
||||
sl)
|
||||
suffix="si";;
|
||||
sv)
|
||||
suffix="se";;
|
||||
uk)
|
||||
suffix="ua";;
|
||||
*)
|
||||
suffix="${lang%:*}";;
|
||||
esac
|
||||
rm *_${suffix}.dwr
|
||||
done
|
||||
|
||||
}
|
||||
|
||||
doc_clean(){
|
||||
for lang in ${LANGUAGES}; do
|
||||
use l10n_${lang%:*} && continue
|
||||
declare doc
|
||||
case ${lang%:*} in
|
||||
da)
|
||||
doc="dk";;
|
||||
el)
|
||||
doc="gr";;
|
||||
en-US)
|
||||
doc="us";;
|
||||
en-GB)
|
||||
doc="uk";;
|
||||
et)
|
||||
doc="ee";;
|
||||
ja)
|
||||
doc="jp";;
|
||||
kk)
|
||||
doc="kz";;
|
||||
ko)
|
||||
doc="kr";;
|
||||
pt-BR)
|
||||
doc="pb";;
|
||||
sl)
|
||||
doc="si";;
|
||||
sv)
|
||||
doc="se";;
|
||||
uk)
|
||||
doc="ua";;
|
||||
*)
|
||||
doc="${lang%:*}";;
|
||||
esac
|
||||
rm inst/*_${doc}.zip
|
||||
done
|
||||
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
:
|
||||
}
|
||||
|
||||
src_install(){
|
||||
mkdir -p "${ED}/usr/lib64/${PN}"
|
||||
cd "${ED}/usr/lib64/${PN}"
|
||||
|
||||
unpack ${A}
|
||||
xz -d "freeoffice2024.tar.lzma" || die
|
||||
tar x -f "freeoffice2024.tar" \
|
||||
&& rm "freeoffice2024.tar" || die
|
||||
rm "installfreeoffice"
|
||||
|
||||
chrpath --delete "textmaker"
|
||||
chrpath --delete "planmaker"
|
||||
chrpath --delete "presentations"
|
||||
|
||||
font_clean
|
||||
lang_clean
|
||||
free_clean
|
||||
doc_clean
|
||||
|
||||
for m in "${FILESDIR}"/*.desktop; do
|
||||
domenu "${m}"
|
||||
done
|
||||
|
||||
for size in 16 24 32 48 64 128 256 512; do
|
||||
newicon -s ${size} icons/pml_${size}.png ${PN}-planmaker.png
|
||||
newicon -s ${size} icons/prl_${size}.png ${PN}-presentations.png
|
||||
newicon -s ${size} icons/tml_${size}.png ${PN}-textmaker.png
|
||||
done
|
||||
|
||||
insinto /usr/share/mime/packages
|
||||
doins mime/softmaker-freeoffice24.xml
|
||||
|
||||
pax-mark -m "${ED}"/usr/lib64/${PN}/planmaker
|
||||
pax-mark -m "${ED}"/usr/lib64/${PN}/presentations
|
||||
pax-mark -m "${ED}"/usr/lib64/${PN}/textmaker
|
||||
}
|
||||
|
||||
pkg_postinst(){
|
||||
einfo
|
||||
elog "In order to use Softmaker Freeoffice, you need a serial number."
|
||||
elog "To obtain a valid free serial number, please visit"
|
||||
elog "https://www.freeoffice.com/en/download"
|
||||
einfo
|
||||
xdg_pkg_postinst
|
||||
}
|
@ -1,3 +1,3 @@
|
||||
DIST asdf-vm-0.15.0.tar.gz 234561 BLAKE2B 3f2a569d80a2f5253caf4ed2eab9b540db1e16126c16babce4e78c919d8565251540b0b8a671d2c30610a7213c902a040f1898f39f22fa615d78da7eb2e5b4b6 SHA512 e577bfe8a0590585d2c84d63a49b29c4c5936cc4883f4e833f1108af39504b683fa79c7cb57cbc9fcfa4d7343a282f87e29b3cdbd8cdf32e2e81b50269e25ec3
|
||||
DIST asdf-vm-0.16.5-vendor.tar.xz 2536088 BLAKE2B 33954d07571c7d700a1857c751d6b3053967436152fbe8736772043a199058f73e42535289e4cf40b8972598068876c41185c7ff3a81f0d401093b4ed84a2420 SHA512 c9dfe8f6e18e2e5613af6d342f05f3479d391b07982f025b487f46923729183909916fff58728903887fd3f0822c03a94fde5adae3e4734d48774eca60d44eea
|
||||
DIST asdf-vm-0.16.5.tar.gz 323594 BLAKE2B 59410aa6a050971886645020980d86f0d6932cb431c14421d2318506ae23b2108ca47b1501ffa98eeec11a0bbc368463a050aca034a146f346fd5c483948bada SHA512 bfbb6724f92bf30f7ca9e854502d876823ed9bb35cc213eb0d8bee948ff9895e401b266a0ff2b8f68e2c47fd9fc4933e27ed81c41f58f63c76a91f86390e0cdd
|
||||
DIST asdf-vm-0.16.6-vendor.tar.xz 2533116 BLAKE2B 19f725a5f29817fbfa7c826683d8cc5fc053368d9a0a1584104cd2c7d2181d101e214f511b502c122f2184cb46edcff8fa52a4467b92713a8c685a16adc70b11 SHA512 96fcddbb3e05a49e71eaf9ce2d538701e91538e5a997a6d7ff4a4336d7b36be2be2c1a5b892d7eb2f5daf9ba7627c29876f0ac5b5c1f005b840d9c957fafeddb
|
||||
DIST asdf-vm-0.16.6.tar.gz 326205 BLAKE2B 3f6ad0381870301dfa006df560dcfe6cfcf69bb4bb05a04731cc5986943940a2d404cadb1b0d7f5e228c35db008cfaf26d301644ebeddb47ad36797025567d85 SHA512 991f6d41a012cddc3a85e6ccff544569b993aa2fa2dbe78e8d60f8f3e318c9c98786479a06a298490fdb682231c24be969ec1c2d2e9bfe821cc6d71593330871
|
||||
|
@ -1,2 +1,4 @@
|
||||
DIST goland-2024.3.4-aarch64.tar.gz 1108954980 BLAKE2B 7a94ab02d133f9177616a3e13549426f2e8c64da9bedf12d1e6d7a26a6034d6d090bd0d6037c7d3317cb0b2b82bab92b4e9b18d66ac6e5b21b42799c155d935b SHA512 8d940ef20145babb715d9ba9bb69e15c1833b6e3f5b4f17e631b00da13afd876d48bdb02ab86c382ebf385c1f26fe8f3d653bfd174f60de10fb0ee5d0df37a3d
|
||||
DIST goland-2024.3.4.tar.gz 1109282670 BLAKE2B 34cc73f9629dd6faf26215d20ad24a90fa7a313970f188b16a0dcef6e3b45ed0a14dfbe94a2d283ce67f91c0f0f7ebdcb968779555429927c69d11d3431eba9a SHA512 cfbcf36507b16a11426207c60387151f86d9785ca1f884eb934bf2be2c97d478109d48fb71beef1479c0bfc2c71927642ad88bf7ab28b97d85ac1b4fefcf55d3
|
||||
DIST goland-2024.3.5-aarch64.tar.gz 1108972234 BLAKE2B 6f9cf2b9d5b61b4608dde0006b282ca929484d2a74a918806efdde032bf8239b23ef00bf46f5c3b33a7cfd77625e5588f474f5524cfed20b9ca14fdf81db252f SHA512 e6acbd595531ee66ed132d4f70df3fa2c3181e126c7570a083df89d87f203789263576f96c496593d311866475c4f845d50e08dd137556bcc26ece810568fa27
|
||||
DIST goland-2024.3.5.tar.gz 1109319258 BLAKE2B 03c0f91313f492b2db3cbc139eef866193d17a56f4f20a45a64c7cf9a27f36cd9ebf87c95689cb406dabbe7f147a6802fa27a4eab2b33acb5c732e470b21836b SHA512 40a81c037d29210294920bf6400778104bc20dde37966c6f9305e0003ca546cb582aa4aa1fb74001e6c340d0c25b692dd84f6d3c881381b06fc20ea57842636d
|
||||
|
97
dev-util/goland/goland-2024.3.5.ebuild
Normal file
97
dev-util/goland/goland-2024.3.5.ebuild
Normal file
@ -0,0 +1,97 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit desktop wrapper
|
||||
|
||||
DESCRIPTION="Golang IDE by JetBrains"
|
||||
HOMEPAGE="https://www.jetbrains.com/go/"
|
||||
SRC_URI="
|
||||
amd64? ( https://download.jetbrains.com/go/${P}.tar.gz )
|
||||
arm64? ( https://download.jetbrains.com/go/${P}-aarch64.tar.gz )
|
||||
"
|
||||
S="${WORKDIR}/GoLand-${PV}"
|
||||
LICENSE="|| ( JetBrains-business JetBrains-classroom JetBrains-educational JetBrains-individual )
|
||||
Apache-2.0
|
||||
BSD
|
||||
CC0-1.0
|
||||
CDDL
|
||||
CDDL-1.1
|
||||
EPL-1.0
|
||||
GPL-2
|
||||
GPL-2-with-classpath-exception
|
||||
ISC
|
||||
LGPL-2.1
|
||||
LGPL-3
|
||||
MIT
|
||||
MPL-1.1
|
||||
OFL-1.1
|
||||
ZLIB
|
||||
"
|
||||
SLOT="0/2024"
|
||||
KEYWORDS="~amd64 ~arm64"
|
||||
IUSE="wayland"
|
||||
|
||||
RESTRICT="bindist mirror"
|
||||
QA_PREBUILT="opt/${P}/*"
|
||||
|
||||
BDEPEND="
|
||||
dev-util/debugedit
|
||||
dev-util/patchelf
|
||||
"
|
||||
RDEPEND="
|
||||
>=virtual/jre-17:*
|
||||
dev-lang/go
|
||||
dev-libs/wayland
|
||||
sys-libs/pam
|
||||
sys-process/audit
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
local remove_me=(
|
||||
lib/async-profiler/aarch64
|
||||
plugins/go-plugin/lib/dlv/linuxarm/dlv
|
||||
)
|
||||
|
||||
rm -rv "${remove_me[@]}" || die
|
||||
|
||||
# removing debug symbols and relocating debug files as per #876295
|
||||
# we're escaping all the files that contain $() in their name
|
||||
# as they should not be executed
|
||||
find . -type f ! -name '*$(*)*' -exec sh -c '
|
||||
if file "{}" | grep -qE "ELF (32|64)-bit"; then
|
||||
objcopy --remove-section .note.gnu.build-id "{}"
|
||||
debugedit -b "${EPREFIX}/opt/${PN}" -d "/usr/lib/debug" -i "{}"
|
||||
fi
|
||||
' \;
|
||||
|
||||
patchelf --set-rpath '$ORIGIN' "jbr/lib/libjcef.so" || die
|
||||
patchelf --set-rpath '$ORIGIN' "jbr/lib/jcef_helper" || die
|
||||
|
||||
# As per https://blog.jetbrains.com/platform/2024/07/wayland-support-preview-in-2024-2/ for full wayland support
|
||||
if use wayland; then
|
||||
echo "-Dawt.toolkit.name=WLToolkit" >> bin/webstorm64.vmoptions || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local dir="/opt/${P}"
|
||||
|
||||
insinto "${dir}"
|
||||
doins -r *
|
||||
fperms 755 "${dir}"/bin/{format.sh,goland.sh,inspect.sh,ltedit.sh,remote-dev-server.sh,restarter,fsnotifier}
|
||||
fperms 755 "${dir}"/jbr/bin/{java,javac,javadoc,jcmd,jdb,jfr,jhsdb,jinfo,jmap,jps,jrunscript,jstack,jstat,keytool,rmiregistry,serialver}
|
||||
fperms 755 "${dir}"/jbr/lib/{chrome-sandbox,jcef_helper,jexec,jspawnhelper}
|
||||
fperms 755 "${dir}"/plugins/go-plugin/lib/dlv/linux/dlv
|
||||
|
||||
make_wrapper "${PN}" "${dir}/bin/${PN}.sh"
|
||||
newicon "bin/${PN}.png" "${PN}.png"
|
||||
make_desktop_entry "${PN}" "Goland ${PV}" "${PN}" "Development;IDE;"
|
||||
|
||||
# recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
|
||||
insinto /usr/lib/sysctl.d
|
||||
newins - 30-"${PN}"-inotify-watches.conf <<<"fs.inotify.max_user_watches = 524288"
|
||||
}
|
@ -1,2 +1,2 @@
|
||||
DIST pack-v0.36.4-linux-arm64.tgz 9112473 BLAKE2B a6d632155373f5413d959bad99d24f91639f6067e4fca6c410cf834c969503266e0d4d6767bb21b2fabd4f3850c6b51894504ab218958f266cb1358e76db9092 SHA512 11605b4e5bab235c49bb81a7977630015dc434b7ba28e7fe8c46914deb3485903fdc43a8652a472178c6aa782b7489f126748afb3f4658e026bc5da58ab616ef
|
||||
DIST pack-v0.36.4-linux.tgz 9970633 BLAKE2B 84d3b534c7efd1d81c79a0f51d645cc15ff624b0a6f8df4c6d6cc5531b25ce9f675fddbe66b32521c0dd5bf734fd45bf1ac47c3c0fb897cb0acb27e7be8329ce SHA512 b10a2dd84d702d112d4d580cb620a270dbfb7c02c5c4293c63515c6a34bfe3695bdb3183030afdf0eb84d9cb43524f2239726aff67612b652315578ad9af565a
|
||||
DIST pack-v0.37.0-linux-arm64.tgz 9193558 BLAKE2B de52bfb51620941d6dd0544ff9802abdc4ad8d75c37a95a4af76571d1ecc3550c5ed77412648a832159e4af1b9fa678098df7b5abc8bc256e559f9b0dacef042 SHA512 f032c327d589c18dff73bb0d8634518f277c4d2ce54e9ed8799de8109e4ab4c757756d881d908d800b0fa5513d4f46f0e75b7b019e8b22db9cce7a481b0cfa7e
|
||||
DIST pack-v0.37.0-linux.tgz 10052568 BLAKE2B 5cd29dc049acea39cbef9734825faf854c89c2180cec6c6f2fbb411aa0cecb9b668456ebc4d0f7cec8eecb25b7660e5fe70d7d047aaae6449ecd4a0dc93eadb8 SHA512 e32c23cdfe0eae09fd3458059134dbf7a54275168d1673d3ed983591b713e7b07625b2a5ab570205ed08d31b0725842f758e9fad1f10fbb36c17c4fd573ef1e1
|
||||
|
@ -1,2 +1,2 @@
|
||||
DIST pack-cli-0.36.4-vendor.tar.xz 7071472 BLAKE2B fd6d05df7b843b3de841bccd09a4ae87a4de182ce2a8f01cdbfed6d7bf63c2bbc8b2dbeaa8264aeac35eecdeddfdedcea24f9e648d493cf6013c6865b3a31d7c SHA512 05b75e5fd7d2d08bdba0139a6f359a2ebb23ef4ec2dd9e9aeff16eeb70d00d0136aee4ad33b11f3b470ea73b1b49839fcc83da5941121dceee1130663ff335cd
|
||||
DIST pack-cli-0.36.4.tar.gz 1500052 BLAKE2B a2128c8daef8cf2abbd1b44ed9f31fdcc8e0da4af99afcc7ee33cba8302ccd9913aacc30d45ecf6eddb4e79b4cbbe3156ad764a940d4e07eb4cbd90264fc524f SHA512 0e4862f361e863a2b56317e37fe7e9ebd55ee2291badd501a55b0b843a5c7b0f2bf165112cb1cb58caeadbaf965718bff8a36c994fc800456b851f53b42e19a0
|
||||
DIST pack-cli-0.37.0-vendor.tar.xz 7145812 BLAKE2B 7b4ff65d2bc1a0ebf7fe96d98d35627086a89fa410978a7c307268869f0adb9119b68f5311476de1e2c3aef7b0a132b306452aa328dd77bc83c3f7a7d0faa156 SHA512 190f38314543c72c295b29cf803a20fa4fee948058ef91643570d979451bcf0db6b469f05e7c7ab522c3c03325764c1e5e1859ee729ae52726f257a6f306e83f
|
||||
DIST pack-cli-0.37.0.tar.gz 1500999 BLAKE2B 9d2a348ebccbb7945e286adc5c4b444f0e57706cc443cb999882e7e985feb56d8717188f95b224858d25fb236a57d0eff1529b4f170d75411d129f70bcfda265 SHA512 d6ed16d16a9723b1ead7232b24ada4b24ea6d62cf4f7ffb2e492a6f7bb5f01f5d01f5a9a18891a170556b68e220718cea250e6ae79c54ec7520d469a355e49af
|
||||
|
@ -1,4 +1,4 @@
|
||||
DIST vfox_0.6.3_linux_aarch64.deb 4511914 BLAKE2B 52877c759dacb6ce13a5a8b59142c0883c6e587b48fc50ec05c28fc3acb81db676a82fd0eb65c73b82d1887914cc0a7a602891789864d582912167ff9559f80e SHA512 c4309c15fdce475059e725e888cb9e30b9f775df061516998deb07e96fbab439dfee7187f4d69f5cae5de5196beebd0ec5670ef7c44da8af4cdc92f57656f5dc
|
||||
DIST vfox_0.6.3_linux_armv7.deb 4633572 BLAKE2B dd23659a836fb32ea83cea1adee950705ff7e629407a39af88fef8bcdaae12d72865226aafeef5fa70e68ec23b85a930dde02a4d5d1c92e5896c235df86b7955 SHA512 14947949f784eee09daf57dccf676d1500018dbf7e2a79e3b0798d2f427f76f77539de1d3c1ec38d9c3506c520876f6adc6369b54a3ba89cedd5ef3e89818da6
|
||||
DIST vfox_0.6.3_linux_i386.deb 4652248 BLAKE2B 58a9377d3f67a34e19aee7ff4191a638dad106ecc5969bc4c156c09afca9e409c4addfce821619d655031f1aabb320d15e28ee547d8aae32d0d150c6c90d1989 SHA512 db2a1660a083345e0e06ee4e5a54a2a410c2c3a3a820687b1805ba8ad71e035e84fefddd9ea3714960de4d3bd4d21d5f163084e6d677e074ece8a9afd67f90fa
|
||||
DIST vfox_0.6.3_linux_x86_64.deb 4897608 BLAKE2B e7cc154c2d8f0e06bca7a629071ea2f22808e21534528d021e9c1b2c2e004e2b1c3ad4c1b6fedf59f50a7e299b9ce849e541f9119466d04a49de310da0047c70 SHA512 4a6639cade75f60f3f104dd9aa74284f21ebd66a9e7dcf559afddfdbad0c5869ad95a4d193c22dc85b37ba84721e9b184c3284d84a97c555ef302da6cb42b8bc
|
||||
DIST vfox_0.6.4_linux_aarch64.deb 4511914 BLAKE2B de4d093300e71383b21f5f2417bb774d008d8625fd10d1be441bc9c50a1ed17817dac53264b9f9fe6bb54f87a6b83fb9523794788f115d3fd5b1738da26295d6 SHA512 f4d4fc5e5a049eac6613c68320a1a8ae851c6dfd6091165ae56a8ce30a827c118ccc9a014ff252a1cae9d5fea26bd9d16bf5b3b349ae3b76b2a5fa45aec08a50
|
||||
DIST vfox_0.6.4_linux_armv7.deb 4633570 BLAKE2B 3fb007a2f9918fed9e764f342e627350a5e32ac133a3ce92c31b692404693e77850266488029a837e480814a404fd0bb093d6f36f72565e429e04400202638c5 SHA512 3f1dcac73b8f6d165bd52132d126f722894931aba2381eaef4d0bc85a7fa7a9aa601f3875ca5efe0d9ede9548292db5665c7f381368509f5b95e3aa88695771b
|
||||
DIST vfox_0.6.4_linux_i386.deb 4652248 BLAKE2B e4b557e62e622d558b6ed27051efeabe6288053cb4b88d173c9b33bbc40f1fb2f87c0e20c0230e6091ccbc720bf958c218154f77fedf15acd5cd14dff250dc91 SHA512 69b6677857dc0de54eb786ff18700932e25d4488c05a6a7bfc9f6ceab75e1d2d46122a278ab719a54773e2c2f6126d55d4c9a72d974147ba0e245b931275767d
|
||||
DIST vfox_0.6.4_linux_x86_64.deb 4897616 BLAKE2B 8fb71dec599ba3ee8a75b37ea2e381c32fc987522e128e32391dc4937ea9a3caf25b4b969e660c49de4494eeff9060be7ecb0f5e0d5c065d629b0369c53f90df SHA512 01e6145b33e7399709c6e76ffb6c6a49c1a7a44550954e17e64d86e03c164f7fac3654ac66013b92dd99b386f009f616bc07bbaa659bbe6adb2a6d5a19652003
|
||||
|
@ -1,2 +1,2 @@
|
||||
DIST vfox-0.6.3-vendor.tar.xz 1848592 BLAKE2B 5bbf95d0c691232a223112cc67d419e8ca59faed6cecdede09261363f75fba84d2d8e3501f9e914bc6752ffaf2d4a24a23f59ff0ab5cc53543d083405e55928e SHA512 1f47149adbeb98af496b7e8368550994d3fff248fea83cbedf8d30c34ed2f65c391de8b30bebd62fc5a4d644fbf1681d180988c2fa41ea7fa85fad2e7d8d69ee
|
||||
DIST vfox-0.6.3.tar.gz 3277467 BLAKE2B 6f63b2d78e79c902c2bd68d795792bdb8a87543ce59c887093fcd2643e8734cb4a2c76dee0b70a2e33fc597fac8629f82b97292704f22e05d5d5c541f78577bf SHA512 30812110e656d5b7df313cf831f75dec28bc55ac8cad7439cb431cc307ae53aafb1956ea4995d90dc4095ef659f3cdc86937774b5c04a2323dc87f190fa7451a
|
||||
DIST vfox-0.6.4-vendor.tar.xz 1848808 BLAKE2B b7082a0b93e0a865ca6a729e185e7a71fd8f4180b6dbdf0af08a5b0da754139f304a7d0a31a53ed5b7b1b8279051bb746c1a38093da79910ed4fe18be88d0cc1 SHA512 ec7af55c377ddbad76d2d61b440093ce79bc65710e2c4c50648c064f7aa941a1589f73a4ca54b2fea1d4ddc8d9b6a732b5dcba399858d32906dd7c05650628ac
|
||||
DIST vfox-0.6.4.tar.gz 3277455 BLAKE2B 23d22bbe5ab1118106ddb84f26ac95e8afd2b37348c8c23c57737d051744b70abc2f2c9edea667b3b9781691e3ca45a945c651539c1866f9c3fefaf0bcee47cd SHA512 ef2adf4945728b9c1a79d57328d1c16c4a7f9c2fba69e37707f6f20707873be8daad48a994d47399f00b7b80dbd0dec34ade74ccadbb84ae49ff21f3f8c68e7c
|
||||
|
@ -1 +1 @@
|
||||
DIST LXGWNeoXiHei.ttf 7206280 BLAKE2B fe202f54ce351f90139c164af01b121e062e95b6a6cd187b6db7466f4818c303547138ccb34b6a2a3a4c051005e1e5eb59f217220ecb1e87ca7126b81658f9af SHA512 3193027566a08765de2ae53fa41aa331d5dd2188d2fcc317993289cdc5841b245dec30a0ee909bad580a42c1a084e6f6704843863311803c82634bfd702b017c
|
||||
DIST LXGWNeoXiHei.ttf 7206288 BLAKE2B 981abf049ec252f53d7c6e4189f7470c677f7d6e796f64a5c50d650a3ef87c4664772db2414716fd77657da9f698817d5766db08841812e6c845c148acf9bfcf SHA512 22417cadb363ce78087f071d6d05480a9512f041547e611ae48a0fc8ccff878ef98729c675cf7b08e8d3d79d660b2dd9afee94658e7ce11993467bf08fe6ac56
|
||||
|
@ -1 +1 @@
|
||||
DIST io.github.msojocs.bilibili_1.16.3-1_amd64.deb 214634132 BLAKE2B bf2352f778efedd95a3e09406032c96cb1f4d2689bfddaee4679ebe47781ea438c5b650d915111253ca242d3bd74ea637c57197536d781cf9db227f56131597b SHA512 d941a2aa292b9c7c7889c2e11366011f2378ed5eaa43886f940ae304bf45bae1ed478e0d6606ad7e3e48af1cda1709e81ea907b8f0046880e7dd191890ed2b4d
|
||||
DIST io.github.msojocs.bilibili_1.16.3-2_amd64.deb 214605244 BLAKE2B 43117bda98851b447211f1ee41ffe737d42b6a2cfae2e308468f1bfe972537ab02bfb6bad7bb1ff0ef261f0141a0db4b0fbcaef585eed01a9c9b949913e28f40 SHA512 6fc2d20760572e9a5ba31986e054fd989bca2350dbdfa52a7cf6237e3239834024d6639022cd5e638ce1b4f3b9fcfc1b9d6bc524f31ff61d70121c4e51554044
|
||||
|
@ -9,6 +9,6 @@ LICENSE=MIT
|
||||
RDEPEND=dev-vcs/git !app-admin/chezmoi-bin
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/twpayne/chezmoi/archive/v2.60.1.tar.gz -> chezmoi-2.60.1.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/chezmoi-2.60.1/chezmoi-2.60.1-vendor.tar.xz
|
||||
SRC_URI=https://github.com/twpayne/chezmoi/archive/v2.61.0.tar.gz -> chezmoi-2.61.0.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/chezmoi-2.61.0/chezmoi-2.61.0-vendor.tar.xz
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467
|
||||
_md5_=1fd334ac25d4fa196a91bcab4c691469
|
@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~arm ~arm64 ~x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-vcs/git !app-admin/chezmoi
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/twpayne/chezmoi/releases/download/v2.60.1/chezmoi_2.60.1_linux_amd64.deb ) x86? ( https://github.com/twpayne/chezmoi/releases/download/v2.60.1/chezmoi_2.60.1_linux_i386.deb ) arm64? ( https://github.com/twpayne/chezmoi/releases/download/v2.60.1/chezmoi_2.60.1_linux_arm64.deb ) arm? ( https://github.com/twpayne/chezmoi/releases/download/v2.60.1/chezmoi_2.60.1_linux_armel.deb )
|
||||
SRC_URI=amd64? ( https://github.com/twpayne/chezmoi/releases/download/v2.61.0/chezmoi_2.61.0_linux_amd64.deb ) x86? ( https://github.com/twpayne/chezmoi/releases/download/v2.61.0/chezmoi_2.61.0_linux_i386.deb ) arm64? ( https://github.com/twpayne/chezmoi/releases/download/v2.61.0/chezmoi_2.61.0_linux_arm64.deb ) arm? ( https://github.com/twpayne/chezmoi/releases/download/v2.61.0/chezmoi_2.61.0_linux_armel.deb )
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627
|
||||
_md5_=05ac15314f7eca44e097ba98b2f9134b
|
16
metadata/md5-cache/app-office/freeoffice-1224
Normal file
16
metadata/md5-cache/app-office/freeoffice-1224
Normal file
@ -0,0 +1,16 @@
|
||||
DEFINED_PHASES=install postinst postrm preinst unpack
|
||||
DEPEND=app-admin/chrpath app-arch/xz-utils
|
||||
DESCRIPTION=A complete, free Microsoft Office-compatible alternative office suite.
|
||||
EAPI=8
|
||||
HOMEPAGE=https://www.freeoffice.com
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=desktop pax-utils xdg
|
||||
IUSE=l10n_ar l10n_bg l10n_da l10n_de l10n_el l10n_en-GB l10n_en-US l10n_es l10n_et l10n_fi l10n_fr l10n_hu l10n_id l10n_it l10n_ja l10n_kk l10n_ko l10n_lt l10n_lv l10n_nl l10n_pl l10n_pt l10n_pt-BR l10n_ro l10n_ru l10n_sl l10n_sv l10n_tr l10n_uk l10n_zh
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=SoftMaker
|
||||
RDEPEND=app-admin/chrpath app-arch/xz-utils media-libs/mesa net-misc/curl x11-libs/libXrandr dev-util/desktop-file-utils dev-util/gtk-update-icon-cache media-libs/libglvnd x11-misc/xdg-utils
|
||||
RESTRICT=mirror strip
|
||||
SLOT=0
|
||||
SRC_URI=https://www.softmaker.net/down/softmaker-freeoffice-2024-1224-amd64.tgz
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed pax-utils 5555f2e75744739fe100ee62c22d28fe xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=c65c4d028893689e1ff29c985322a189
|
@ -9,6 +9,6 @@ LICENSE=MIT
|
||||
RDEPEND=net-misc/curl dev-vcs/git
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/asdf-vm/asdf/archive/v0.16.5.tar.gz -> asdf-vm-0.16.5.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/asdf-vm-0.16.5/asdf-vm-0.16.5-vendor.tar.xz
|
||||
SRC_URI=https://github.com/asdf-vm/asdf/archive/v0.16.6.tar.gz -> asdf-vm-0.16.6.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/asdf-vm-0.16.6/asdf-vm-0.16.6-vendor.tar.xz
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467
|
||||
_md5_=809a7e4da86e76adc5347a9d2cd83a01
|
15
metadata/md5-cache/dev-util/goland-2024.3.5
Normal file
15
metadata/md5-cache/dev-util/goland-2024.3.5
Normal file
@ -0,0 +1,15 @@
|
||||
BDEPEND=dev-util/debugedit dev-util/patchelf
|
||||
DEFINED_PHASES=install prepare
|
||||
DESCRIPTION=Golang IDE by JetBrains
|
||||
EAPI=8
|
||||
HOMEPAGE=https://www.jetbrains.com/go/
|
||||
INHERIT=desktop wrapper
|
||||
IUSE=wayland
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=|| ( JetBrains-business JetBrains-classroom JetBrains-educational JetBrains-individual ) Apache-2.0 BSD CC0-1.0 CDDL CDDL-1.1 EPL-1.0 GPL-2 GPL-2-with-classpath-exception ISC LGPL-2.1 LGPL-3 MIT MPL-1.1 OFL-1.1 ZLIB
|
||||
RDEPEND=>=virtual/jre-17:* dev-lang/go dev-libs/wayland sys-libs/pam sys-process/audit
|
||||
RESTRICT=bindist mirror
|
||||
SLOT=0/2024
|
||||
SRC_URI=amd64? ( https://download.jetbrains.com/go/goland-2024.3.5.tar.gz ) arm64? ( https://download.jetbrains.com/go/goland-2024.3.5-aarch64.tar.gz )
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed wrapper 11a2a3bd712784986679b60a0cab34a0
|
||||
_md5_=35b5a6e1c1fb665e761c96e31e440c05
|
@ -9,6 +9,6 @@ LICENSE=Apache-2.0
|
||||
RDEPEND=|| ( app-containers/docker-cli app-containers/podman ) !dev-util/pack-cli-bin
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/buildpacks/pack/archive/v0.36.4.tar.gz -> pack-cli-0.36.4.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/pack-cli-0.36.4/pack-cli-0.36.4-vendor.tar.xz
|
||||
SRC_URI=https://github.com/buildpacks/pack/archive/v0.37.0.tar.gz -> pack-cli-0.37.0.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/pack-cli-0.37.0/pack-cli-0.37.0-vendor.tar.xz
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467
|
||||
_md5_=5f59d5e26a8086fdafb15e33510769bd
|
@ -6,5 +6,5 @@ KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=|| ( app-containers/docker-cli app-containers/podman ) !dev-util/pack-cli
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/buildpacks/pack/releases/download/v0.36.4/pack-v0.36.4-linux.tgz ) arm64? ( https://github.com/buildpacks/pack/releases/download/v0.36.4/pack-v0.36.4-linux-arm64.tgz )
|
||||
SRC_URI=amd64? ( https://github.com/buildpacks/pack/releases/download/v0.37.0/pack-v0.37.0-linux.tgz ) arm64? ( https://github.com/buildpacks/pack/releases/download/v0.37.0/pack-v0.37.0-linux-arm64.tgz )
|
||||
_md5_=4268617e4f131d9d5e67a4ab95f42d54
|
@ -9,6 +9,6 @@ LICENSE=Apache-2.0
|
||||
RDEPEND=app-shells/bash !dev-util/vfox-bin
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/version-fox/vfox/archive/v0.6.3.tar.gz -> vfox-0.6.3.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/vfox-0.6.3/vfox-0.6.3-vendor.tar.xz
|
||||
SRC_URI=https://github.com/version-fox/vfox/archive/v0.6.4.tar.gz -> vfox-0.6.4.tar.gz https://github.com/tsln1998/gentoo-deps/releases/download/vfox-0.6.4/vfox-0.6.4-vendor.tar.xz
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467
|
||||
_md5_=b460f8aa9d6696230061d5f265e7f3e4
|
@ -7,6 +7,6 @@ KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-shells/bash !dev-util/vfox
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/version-fox/vfox/releases/download/v0.6.3/vfox_0.6.3_linux_x86_64.deb ) x86? ( https://github.com/version-fox/vfox/releases/download/v0.6.3/vfox_0.6.3_linux_i386.deb ) arm64? ( https://github.com/version-fox/vfox/releases/download/v0.6.3/vfox_0.6.3_linux_aarch64.deb ) arm? ( https://github.com/version-fox/vfox/releases/download/v0.6.3/vfox_0.6.3_linux_armv7.deb )
|
||||
SRC_URI=amd64? ( https://github.com/version-fox/vfox/releases/download/v0.6.4/vfox_0.6.4_linux_x86_64.deb ) x86? ( https://github.com/version-fox/vfox/releases/download/v0.6.4/vfox_0.6.4_linux_i386.deb ) arm64? ( https://github.com/version-fox/vfox/releases/download/v0.6.4/vfox_0.6.4_linux_aarch64.deb ) arm? ( https://github.com/version-fox/vfox/releases/download/v0.6.4/vfox_0.6.4_linux_armv7.deb )
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627
|
||||
_md5_=9df96ef29136959910ca51cb58bcc690
|
@ -8,6 +8,6 @@ IUSE=X
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=IPAfont
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/lxgw/LxgwNeoXiHei/releases/download/v1.215/LXGWNeoXiHei.ttf
|
||||
SRC_URI=https://github.com/lxgw/LxgwNeoXiHei/releases/download/v1.216/LXGWNeoXiHei.ttf
|
||||
_eclasses_=font aa113a3df9cd0a9693a1c1ee7c34a6eb
|
||||
_md5_=be19f68596f259ebcea6096f6f55739d
|
@ -9,6 +9,6 @@ KEYWORDS=-* ~amd64
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-libs/nss media-libs/alsa-lib x11-libs/gtk+:* x11-libs/libxkbcommon x11-libs/libX11 x11-libs/libXext x11-libs/libxcb x11-misc/xdg-utils wayland? ( dev-libs/wayland ) x11-libs/libvdpau
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/msojocs/bilibili-linux/releases/download/v1.16.3-1/io.github.msojocs.bilibili_1.16.3-1_amd64.deb
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627
|
||||
SRC_URI=https://github.com/msojocs/bilibili-linux/releases/download/v1.16.3-2/io.github.msojocs.bilibili_1.16.3-2_amd64.deb
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=4e6b5b69bf272f4b2d21ec78c7575071
|
@ -1,15 +0,0 @@
|
||||
DEFINED_PHASES=install postinst postrm preinst unpack
|
||||
DEPEND=dev-libs/libayatana-appindicator net-libs/webkit-gtk:4.1 dev-libs/openssl:0/3
|
||||
DESCRIPTION=(Continuation) of Clash Meta GUI based on Tauri.
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/clash-verge-rev/clash-verge-rev
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=desktop unpacker xdg
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=dev-libs/libayatana-appindicator net-libs/webkit-gtk:4.1 dev-libs/openssl:0/3
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/clash-verge-rev/clash-verge-rev/releases/download/v2.2.1/Clash.Verge_2.2.1_amd64.deb ) arm64? ( https://github.com/clash-verge-rev/clash-verge-rev/releases/download/v2.2.1/Clash.Verge_2.2.1_arm64.deb )
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=a005eedd4adc1419c562bc51fe4d3418
|
@ -15,8 +15,8 @@ acct-user/n2n 0: System user: n2n
|
||||
acct-user/ntpd-rs 0: user for ntpd-rs daemon
|
||||
acct-user/ntpd-rs-observe 0: user for ntpd-rs-observe daemon
|
||||
acct-user/vintagestory 0: User for Vintage Story Server
|
||||
app-admin/chezmoi 2.60.1: Manage your dotfiles across multiple diverse machines, securely.
|
||||
app-admin/chezmoi-bin 2.60.1: Manage your dotfiles across multiple diverse machines, securely.
|
||||
app-admin/chezmoi 2.61.0: Manage your dotfiles across multiple diverse machines, securely.
|
||||
app-admin/chezmoi-bin 2.61.0: Manage your dotfiles across multiple diverse machines, securely.
|
||||
app-admin/enpass 6.10.1.1661 6.11.6.1833: A cross-platform, complete password management solution.
|
||||
app-admin/rbw 1.13.2: Unofficial Bitwarden CLI
|
||||
app-admin/zenmonitor3 2.0.0: Zen monitor is monitoring software for AMD Zen-based CPUs
|
||||
@ -85,7 +85,7 @@ app-misc/xmind 25.01.01061: Brainstorming and Mind Mapping Software
|
||||
app-misc/yazi 25.3.2: Blazing fast terminal file manager written in Rust, based on async I/O.
|
||||
app-office/anytype-bin 0.35.4 0.45.3: A notebook based on p2p network
|
||||
app-office/bytedance-feishu 7.22.9 7.36.11: 飞书(Feishu) 飞书整合即时消息、日历、音视频会议、云文档、工作台等功能于一体,成就团队和个人,更高效、更愉悦。
|
||||
app-office/freeoffice 1062 1064 1068 1220: A complete, free Microsoft Office-compatible alternative office suite.
|
||||
app-office/freeoffice 1062 1064 1068 1220 1224: A complete, free Microsoft Office-compatible alternative office suite.
|
||||
app-office/wps-office 11.1.0.11719-r1 12.1.0.17900: WPS Office is an office productivity suite, Here is the Chinese version
|
||||
app-pda/ipadcharge 9999: Enables USB charging for Apple devices.
|
||||
app-shells/blesh 9999: A line editor written in pure Bash with enhanced features
|
||||
@ -142,21 +142,21 @@ dev-python/pytube 15.0.0: Python tools for downloading YouTube Videos
|
||||
dev-python/qasync 0.27.1: Implementation of the asyncio (PEP 3156) event-loop with Qt
|
||||
dev-util/android-studio 2024.3.1.13: Android development environment based on IntelliJ IDEA
|
||||
dev-util/arch-install-scripts 29: Arch Linux install tools (pacstrap, genfstab, arch-chroot)
|
||||
dev-util/asdf-vm 0.15.0 0.16.5: Manage all your runtime versions with one tool
|
||||
dev-util/asdf-vm 0.15.0 0.16.6: Manage all your runtime versions with one tool
|
||||
dev-util/binsider 0.2.1: Analyze ELF binaries like a boss
|
||||
dev-util/execstack 0_pre20130503: set the executable stack flag of ELF binaries and libraries
|
||||
dev-util/goland 2024.3.4: Golang IDE by JetBrains
|
||||
dev-util/goland 2024.3.4 2024.3.5: Golang IDE by JetBrains
|
||||
dev-util/jetbrains-toolbox 1.28.1.15219 2.5.4.38621: Manage all your JetBrains Projects and Tools
|
||||
dev-util/mamba 2.0.5: The Fast Cross-Platform Package Manager
|
||||
dev-util/osc 1.14.0: The Command Line Interface to work with an Open Build Service
|
||||
dev-util/pack-cli 0.36.4: CLI for building apps using Cloud Native Buildpacks
|
||||
dev-util/pack-cli-bin 0.36.4: CLI for building apps using Cloud Native Buildpacks
|
||||
dev-util/pack-cli 0.37.0: CLI for building apps using Cloud Native Buildpacks
|
||||
dev-util/pack-cli-bin 0.37.0: CLI for building apps using Cloud Native Buildpacks
|
||||
dev-util/pacstrap 29: Pacstrap - install packages to the specified new root directorye
|
||||
dev-util/patchelf-liblol 0.1.9: patchelf patched for building libLoL only
|
||||
dev-util/redpanda-cpp 2.26 3.1: A lightweight yet powerful C/C++/GNU Assembly IDE.
|
||||
dev-util/tailspin 4.0.0: A log file highlighter
|
||||
dev-util/vfox 0.6.3: A cross-platform version manager, extendable via plugins
|
||||
dev-util/vfox-bin 0.6.3: A cross-platform version manager, extendable via plugins
|
||||
dev-util/vfox 0.6.4: A cross-platform version manager, extendable via plugins
|
||||
dev-util/vfox-bin 0.6.4: A cross-platform version manager, extendable via plugins
|
||||
dev-util/zprint-bin 1.2.9: Clojure and Clojurescript source code formatter
|
||||
dev-vcs/gitoxide 0.41.0: A command-line application for interacting with git repositories
|
||||
dev-vcs/sourcegit-bin 2025.10: Opensource Git GUI client.
|
||||
@ -175,7 +175,7 @@ kde-misc/plasma-applet-netspeed-widget 2.0 3.1 9999: Plasma 5 widget that displa
|
||||
media-fonts/Plangothic 2.9.5771: 遍黑体项目(Plangothic Project)
|
||||
media-fonts/iansui 1.011: An open-source Chinese font derived from Klee One (Fontworks).
|
||||
media-fonts/jf-openhuninn 2.1: An opensource Chinese font by justfont, based on Kosugi Maru and Varela Round
|
||||
media-fonts/lxgw-neo-xihei 1.215: A Chinese sans-serif font derived from IPAex Gothic.
|
||||
media-fonts/lxgw-neo-xihei 1.216: A Chinese sans-serif font derived from IPAex Gothic.
|
||||
media-fonts/lxgw-neo-zhisong 1.028.1: An open-source Chinese font derived from IPAmj Mincho
|
||||
media-fonts/misans 4.003-r1: MiSans 是由小米主导,联合汉仪发布的可免费使用的字体
|
||||
media-fonts/nerd-fonts 3.3.0: Nerd Fonts is a project that patches developer targeted fonts with glyphs
|
||||
@ -215,7 +215,7 @@ media-sound/yesplaymusic-bin 0.4.8: A third party music player for Netease Music
|
||||
media-sound/ytmdesktop-bin 2.0.8: A Desktop App for YouTube Music
|
||||
media-video/amdgpu-pro-amf 1.4.29.1538781: AMD's closed source Advanced Media Framework (AMF) driver
|
||||
media-video/avplayer 9999: avplayer is a p2p video downloader and player
|
||||
media-video/bilibili 1.16.3_p1: Based on the Bilibli offcial client to linux version, support roaming
|
||||
media-video/bilibili 1.16.3_p2: Based on the Bilibli offcial client to linux version, support roaming
|
||||
media-video/implay 1.5.1: A Cross-Platform Desktop Media Player
|
||||
media-video/iptvnator-bin 0.16.0: Cross-platform IPTV player application with multiple features
|
||||
media-video/mpv-handler 0.3.13: Play website videos and songs with mpv & yt-dlp
|
||||
@ -271,7 +271,7 @@ net-proxy/bore 0.5.2: bore is a simple CLI tool for making tunnels to localhost
|
||||
net-proxy/cgproxy 0.20-r1: Transparent Proxy with cgroup v2
|
||||
net-proxy/clash-nyanpasu 1.5.1: Clash GUI based on tauri
|
||||
net-proxy/clash-rs 0.7.6: Custom protocol, rule based network proxy
|
||||
net-proxy/clash-verge-bin 1.6.0 1.6.4 1.6.6 1.7.7-r1 2.0.2 2.0.3 2.1.2 2.2.1: (Continuation) of Clash Meta GUI based on Tauri.
|
||||
net-proxy/clash-verge-bin 1.6.0 1.6.4 1.6.6 1.7.7-r1 2.0.2 2.0.3 2.1.2: (Continuation) of Clash Meta GUI based on Tauri.
|
||||
net-proxy/dae 0.9.0 9999: A lightweight and high-performance transparent proxy solution based on eBPF
|
||||
net-proxy/daed 0.9.0 9999: A Modern Dashboard For dae
|
||||
net-proxy/hysteria 2.6.1: A powerful, lightning fast and censorship resistant proxy.
|
||||
|
@ -1 +1 @@
|
||||
Mon, 24 Mar 2025 07:05:16 +0000
|
||||
Mon, 24 Mar 2025 16:20:21 +0000
|
||||
|
@ -4,8 +4,6 @@ DIST Clash.Verge_2.0.3_amd64.deb 45023004 BLAKE2B f441cfd64150a26df0eb3c68560b1f
|
||||
DIST Clash.Verge_2.0.3_arm64.deb 42691082 BLAKE2B f7acec965a20ef1e181570db0787a185ff542318ce5a68947a1720cffdcb782909e41c223f7e0b6b48e92b8769541e1a06307e71aba141b4659653149ccdf5c4 SHA512 d7fba116228a8246d812ba6ca7eabc77e1b1008a7200867a2bc9bd0e9b339adb4207834ffecfd71759da3bca61eb76def04ee0fed1e8808da10e0f14b838fad2
|
||||
DIST Clash.Verge_2.1.2_amd64.deb 45831328 BLAKE2B 5e95b3f1077dcc4c50ec8cfb57f859d6f97c80a4e323b3259f28fce6c316a718524d0d8ce14fb39c6bc681c334c96bcf23f7601967880ef224596c6e05e71e74 SHA512 773ea007fab335f671ef15c15fda7344ece646d8acfddde885175a62aa10710f29bb19957ee7b6d763e24e1194fa7dde041527a2674f84b4ede3bcae434a61a7
|
||||
DIST Clash.Verge_2.1.2_arm64.deb 43387176 BLAKE2B dd188255469b3fe15bd481f7be68245e4c0d064cb38b9925f4fe812b1f1ca4df118727b00e6c2f9c60e6b209e14b5746008b8b6868a8ed37c844b4240b9c858c SHA512 d88fe550ff1ac640b0042e874edcf0ff02c02bbdd20348d6a777d13bd92212b0b8b4ecffe79f55645ea303120df9ab9fc139a46203bf79eb0a9c83544e412589
|
||||
DIST Clash.Verge_2.2.1_amd64.deb 48455526 BLAKE2B ed2abf237ac307d8a93e2a15c043389c197cbcff90020b553b7d1bb28010894328b72b415fb293de1fcbd591d4457b9917a56eb98374ade33d375021e59929cb SHA512 6ce99059555e1cb2056137cc257e8f409cddf7cd60f8c52caa6a3e2f480232c05f681297b4479b71a3812e7a0f1a71f0555f9bf98e6fb375e6db5fbe1d42d390
|
||||
DIST Clash.Verge_2.2.1_arm64.deb 45808754 BLAKE2B 7e233c656d26d94aa013d5000264ff66dd17d298a08a306976261259b868ac8e9e77befc503d8b6f34f30fba6f20eff7ade5827e35780f629eeddbaeb9d11c7c SHA512 d642bf59a2135cd3feeb74e013e28a7974b83964810e24726978fbf84f09e70c4db3a4e17363677a69bd5842a65901935f20f51bbe647c0f831308dde24b1bad
|
||||
DIST clash-verge_1.6.0_amd64.deb 43532710 BLAKE2B cd603d8f7fd0e84de895a06bbdad7205435cc71a075b7cd43a060010634564b9d0e25e3e6952e017d480f255a63219c65aa66a4408730b293c7bfab420ba61ef SHA512 4e17e319a5d83bc35967c204f91dc270e3061009fa3a3a6175090c28e89d81959036abce9f29280e56b470e954feb872714abd8583dc23800f9e7659b68172c1
|
||||
DIST clash-verge_1.6.0_arm64.deb 42036378 BLAKE2B ca99c2e29604c9fd62471ad77d2897adbe56472a0c6a4e7611fb9a86201b2e9510803bfe3103c02d69264f6a8c83c1fdc92be42b96be4f18dd8731793750bf52 SHA512 161ed9865292f7fc9ab38509caae58c48010bf25d030e322f7d1e0f41a803469154fa9b6b3d1d5072f417d2a70f1a4551aee314a8bf0c92e393fa34e2a5e866f
|
||||
DIST clash-verge_1.6.4_amd64.deb 43581684 BLAKE2B 520f02299115efb25ac070abc03324af829c5245b2776e8f6b15c5ccee29f5868fb553d37f82582c7183cf32d4ec49ac74d6f1b8cd8310ef35a518e50d2629e8 SHA512 c3d7004039085c54729703af262791b90afae3ddab17572899766fa6fc29997cb17543a3c6c692e2a5642ecc5a53e1b72b1276e141c452f95932c587b055e353
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit desktop unpacker xdg
|
||||
|
||||
DESCRIPTION="(Continuation) of Clash Meta GUI based on Tauri. "
|
||||
HOMEPAGE="https://github.com/clash-verge-rev/clash-verge-rev"
|
||||
SRC_URI="
|
||||
amd64? ( https://github.com/clash-verge-rev/clash-verge-rev/releases/download/v${PV}/Clash.Verge_${PV}_amd64.deb )
|
||||
arm64? ( https://github.com/clash-verge-rev/clash-verge-rev/releases/download/v${PV}/Clash.Verge_${PV}_arm64.deb )
|
||||
"
|
||||
|
||||
S="${WORKDIR}"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/libayatana-appindicator
|
||||
net-libs/webkit-gtk:4.1
|
||||
dev-libs/openssl:0/3
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
RESTRICT="strip"
|
||||
|
||||
src_install(){
|
||||
exeinto /opt/clash-verge/bin
|
||||
doexe "${S}"/usr/bin/*
|
||||
insinto /usr/lib/clash-verge
|
||||
doins -r "${S}"/usr/lib/Clash\ Verge/resources
|
||||
domenu "${FILESDIR}"/clash-verge.desktop
|
||||
doicon -s 128 usr/share/icons/hicolor/128x128/apps/${PN/-bin}.png
|
||||
doicon -s 256 usr/share/icons/hicolor/256x256@2/apps/${PN/-bin}.png
|
||||
doicon -s 32 usr/share/icons/hicolor/32x32/apps/${PN/-bin}.png
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user