mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
update_check at 2025-07-23-17UTC. (#12240)
* Update Update Checker script. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove at_spi2_atk from packages.yaml Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix crew_mvdir entry. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More cleanup Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add q package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust q package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add q build Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
committed by
GitHub
parent
1a3cd86665
commit
0b7307760c
7
manifest/x86_64/q/q.filelist
Normal file
7
manifest/x86_64/q/q.filelist
Normal file
@@ -0,0 +1,7 @@
|
||||
/usr/local/bin/q
|
||||
/usr/local/lib/python3.13/site-packages/q-3.1.6-py3.13.egg-info/PKG-INFO
|
||||
/usr/local/lib/python3.13/site-packages/q-3.1.6-py3.13.egg-info/SOURCES.txt
|
||||
/usr/local/lib/python3.13/site-packages/q-3.1.6-py3.13.egg-info/dependency_links.txt
|
||||
/usr/local/lib/python3.13/site-packages/q-3.1.6-py3.13.egg-info/entry_points.txt
|
||||
/usr/local/lib/python3.13/site-packages/q-3.1.6-py3.13.egg-info/requires.txt
|
||||
/usr/local/lib/python3.13/site-packages/q-3.1.6-py3.13.egg-info/top_level.txt
|
||||
21
packages/q.rb
Normal file
21
packages/q.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
# Adapted from Arch Linux q PKGBUILD at:
|
||||
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=q
|
||||
|
||||
require 'buildsystems/python'
|
||||
|
||||
class Q < Python
|
||||
description 'SQL-like queries on tabular text data, including joins and subqueries'
|
||||
homepage 'https://github.com/harelba/q'
|
||||
version '3.1.6'
|
||||
license 'GPL3'
|
||||
compatibility 'x86_64'
|
||||
source_url 'https://github.com/harelba/q.git'
|
||||
git_hashtag "v#{version}"
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
x86_64: '126b2ae1d134132be5e94963e286dc14c33c141bc68892614283f853851aa064'
|
||||
})
|
||||
|
||||
depends_on 'python3'
|
||||
end
|
||||
@@ -57,6 +57,8 @@ for p in $ps; do
|
||||
if [ "$a" != "none" ]; then
|
||||
star=
|
||||
repo=
|
||||
ver=
|
||||
nu=
|
||||
u=$(grep -1 "^name: ${p}$" packages.yaml | tail -1 | cut -d' ' -f2)
|
||||
version=$(grep "^ @_ver" ../packages/"$p.rb" 2>/dev/null | cut -d= -f2 | xargs)
|
||||
[ -z "$version" ] && version=$(grep "^ version" ../packages/"$p.rb" | cut -d"'" -f2)
|
||||
@@ -76,14 +78,20 @@ for p in $ps; do
|
||||
[[ "$version" != "$ver" ]] && echo "- [ ] $p$star | $nu | $version | $ver"
|
||||
;;
|
||||
github)
|
||||
relu=${u#*com}/tag/
|
||||
content=$(curl -Ls "$u" | grep "href=\"$relu")
|
||||
d=${content#*/releases/tag/}
|
||||
rel=$(echo "$d" | cut -d'"' -f1)
|
||||
rel=$(echo "$rel" | cut -d' ' -f1)
|
||||
ver=${rel%.zip*}
|
||||
relu=
|
||||
gh_repo=
|
||||
relu=${u#*github.com/}
|
||||
relu=${relu%/releases}
|
||||
gh_repo=${relu%/tags}
|
||||
if [[ $u == *"/releases"* ]]; then
|
||||
ver=$(gh release ls --exclude-pre-releases --exclude-drafts -L 1 -R ${gh_repo} --json tagName -q '.[] | .tagName')
|
||||
[[ -z "$ver" ]] && echo "- https://github.com/${gh_repo} does not use releases."
|
||||
fi
|
||||
if [[ $u == *"/tags"* ]] || [[ -z "$ver" ]]; then
|
||||
ver=$(git ls-remote --tags https://github.com/${gh_repo} | cut -d'/' -f3 | grep -v "\^{}" | tail -n 1)
|
||||
fi
|
||||
nu=${u/releases/archive}
|
||||
[[ "$version" != "$ver" ]] && echo "- [ ] $p$star | $nu/$ver.tar.gz | $version | $ver"
|
||||
[[ "$version" != "${ver#v}" ]] && echo "- [ ] $p$star | $nu/$ver.tar.gz | $version | ${ver#v}"
|
||||
;;
|
||||
savannah)
|
||||
content=$(curl -Ls "$u")
|
||||
|
||||
@@ -31,6 +31,7 @@ elfutils
|
||||
eudev
|
||||
expat
|
||||
filecmd
|
||||
findutils
|
||||
flex
|
||||
gawk
|
||||
gcc_lib
|
||||
@@ -44,6 +45,7 @@ glibc_lib
|
||||
gmp
|
||||
gnu_time
|
||||
gnutls
|
||||
grep
|
||||
groff
|
||||
gtk_doc
|
||||
help2man
|
||||
@@ -53,6 +55,7 @@ isl
|
||||
itstool
|
||||
jansson
|
||||
jemalloc
|
||||
jq
|
||||
jsoncpp
|
||||
krb5
|
||||
less
|
||||
@@ -87,6 +90,7 @@ libunbound
|
||||
libunistring
|
||||
libuv
|
||||
libversion
|
||||
libxcrypt
|
||||
libxml2
|
||||
libxslt
|
||||
libyaml
|
||||
@@ -266,6 +270,7 @@ shared_mime_info
|
||||
shellcheck
|
||||
slang
|
||||
sqlite
|
||||
tar
|
||||
texinfo
|
||||
trousers
|
||||
uchardet
|
||||
@@ -273,7 +278,9 @@ unzip
|
||||
upx
|
||||
util_linux
|
||||
util_macros
|
||||
uutils_coreutils
|
||||
valgrind
|
||||
which
|
||||
xdg_base
|
||||
xmlcatmgr
|
||||
xxhash
|
||||
|
||||
@@ -76,7 +76,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: ag
|
||||
url: https://github.com/ggreer/the_silver_searcher/releases
|
||||
url: https://github.com/ggreer/the_silver_searcher/tags
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -131,17 +131,17 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: alsa_lib
|
||||
url: https://github.com/alsa-project/alsa-lib/releases
|
||||
url: https://github.com/alsa-project/alsa-lib/tags
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: alsa_tools
|
||||
url: https://github.com/alsa-project/alsa-tools/releases
|
||||
url: https://github.com/alsa-project/alsa-tools/tags
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: alsa_utils
|
||||
url: https://github.com/alsa-project/alsa-utils/releases
|
||||
url: https://github.com/alsa-project/alsa-utils/tags
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -196,7 +196,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: apktool
|
||||
url: https://github.com/iBotPeaches/Apktool/releases/
|
||||
url: https://github.com/iBotPeaches/Apktool/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -316,7 +316,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: aspell
|
||||
url: https://ftpmirror.gnu.org/aspell
|
||||
url: https://github.com/GNUAspell/aspell/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -340,11 +340,6 @@ url: https://ftpmirror.gnu.org/aspell/dict/es/
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
name: at_spi2_atk
|
||||
url: https://github.com/GNOME/at-spi2-atk/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: at_spi2_core
|
||||
url: https://github.com/GNOME/at-spi2-core/releases
|
||||
activity: medium
|
||||
@@ -361,7 +356,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: atom
|
||||
url: https://github.com/atom/atom/releases/
|
||||
url: https://github.com/atom/atom/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -455,11 +450,6 @@ url: https://github.com/avocado-framework/avocado/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: aws
|
||||
url: https://github.com/aws/aws-cli/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
name: aws2
|
||||
url: https://github.com/simonm3/aws2/releases
|
||||
activity: low
|
||||
@@ -470,6 +460,11 @@ url: https://github.com/awslabs/aws-shell/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: awscli
|
||||
url: https://github.com/aws/aws-cli/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
name: axel
|
||||
url: https://github.com/axel-download-accelerator/axel/releases
|
||||
activity: low
|
||||
@@ -521,8 +516,8 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: bash
|
||||
url: https://ftpmirror.gnu.org/bash/
|
||||
activity: high
|
||||
url: https://github.com/bminor/bash/tags
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: bash_completion
|
||||
@@ -661,7 +656,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: bmon
|
||||
url: https://github.com/tgraf/bmon/releases/
|
||||
url: https://github.com/tgraf/bmon/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -676,12 +671,12 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: brackets
|
||||
url: https://github.com/adobe/brackets/releases/
|
||||
url: https://github.com/adobe/brackets/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: brave
|
||||
url: https://github.com/brave/brave-browser/releases/
|
||||
url: https://github.com/brave/brave-browser/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -720,13 +715,13 @@ url: https://github.com/aristocratos/btop/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: btrfsprogs
|
||||
name: btrfs_progs
|
||||
url: https://github.com/kdave/btrfs-progs/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: bubblewrap
|
||||
url: https://github.com/containers/bubblewrap/releases/
|
||||
url: https://github.com/containers/bubblewrap/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -851,7 +846,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: ccache
|
||||
url: https://github.com/ccache/ccache/releases/
|
||||
url: https://github.com/ccache/ccache/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -921,15 +916,10 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: chromaprint
|
||||
url: https://github.com/acoustid/chromaprint/releases/
|
||||
url: https://github.com/acoustid/chromaprint/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
name: chrome
|
||||
url: https://www.google.com/chrome
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
name: chromebrew_scripts
|
||||
url: https://github.com/uberhacker/chromebrew-scripts/releases
|
||||
activity: none
|
||||
@@ -1071,7 +1061,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: codelite
|
||||
url: https://github.com/eranif/codelite/releases/
|
||||
url: https://github.com/eranif/codelite/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -1186,7 +1176,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: cpu_x
|
||||
url: https://github.com/X0rg/CPU-X/releases/
|
||||
url: https://github.com/X0rg/CPU-X/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -1196,7 +1186,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: cracklib
|
||||
url: https://github.com/cracklib/cracklib/releases/
|
||||
url: https://github.com/cracklib/cracklib/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -1205,7 +1195,7 @@ url: https://chromium.googlesource.com/chromiumos/third_party/adhd
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: crew-mvdir
|
||||
name: crew_mvdir
|
||||
url: https://github.com/chromebrew/crew-mvdir/releases
|
||||
activity: medium
|
||||
---
|
||||
@@ -1226,12 +1216,12 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: cros_resize
|
||||
url: https://github.com/ethanmad/chromeos-resize/releases/
|
||||
activity: low
|
||||
url: https://github.com/ethanmad/chromeos-resize/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
name: crossmobile
|
||||
url: https://github.com/crossmob/CrossMobile/releases/
|
||||
url: https://github.com/crossmob/CrossMobile/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -1321,7 +1311,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: darktable
|
||||
url: https://github.com/darktable-org/darktable/releases/
|
||||
url: https://github.com/darktable-org/darktable/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -1396,7 +1386,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: deployer
|
||||
url: https://github.com/deployphp/deployer/releases/
|
||||
url: https://github.com/deployphp/deployer/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -1511,12 +1501,12 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: docbook_xsl
|
||||
url: https://github.com/docbook/xslt10-stylesheets/releases/
|
||||
url: https://github.com/docbook/xslt10-stylesheets/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: docbook_xsl_nons
|
||||
url: https://github.com/docbook/xslt10-stylesheets/releases/
|
||||
url: https://github.com/docbook/xslt10-stylesheets/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -1706,7 +1696,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: enchant
|
||||
url: https://github.com/AbiWord/enchant/releases/
|
||||
url: https://github.com/AbiWord/enchant/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -1896,7 +1886,7 @@ activity: high
|
||||
---
|
||||
kind: url
|
||||
name: fd
|
||||
url: https://github.com/sharkdp/fd/releases/
|
||||
url: https://github.com/sharkdp/fd/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -1931,7 +1921,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: ffmpegthumbnailer
|
||||
url: https://github.com/dirkvdb/ffmpegthumbnailer/releases/
|
||||
url: https://github.com/dirkvdb/ffmpegthumbnailer/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -1996,7 +1986,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: flatpak
|
||||
url: https://github.com/flatpak/flatpak/releases/
|
||||
url: https://github.com/flatpak/flatpak/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -2161,7 +2151,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: fontforge
|
||||
url: https://github.com/fontforge/fontforge/releases/
|
||||
url: https://github.com/fontforge/fontforge/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -2221,7 +2211,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: freecad
|
||||
url: https://github.com/FreeCAD/FreeCAD/releases/
|
||||
url: https://github.com/FreeCAD/FreeCAD/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -2281,7 +2271,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: fswatch
|
||||
url: https://github.com/emcrisostomo/fswatch/releases/
|
||||
url: https://github.com/emcrisostomo/fswatch/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -2311,7 +2301,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: gambit
|
||||
url: https://github.com/gambit/gambit/releases/
|
||||
url: https://github.com/gambit/gambit/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -2546,7 +2536,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: github_desktop
|
||||
url: https://github.com/shiftkey/desktop/releases/
|
||||
url: https://github.com/shiftkey/desktop/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -2586,7 +2576,7 @@ activity: high
|
||||
---
|
||||
kind: url
|
||||
name: glew
|
||||
url: https://github.com/nigels-com/glew/releases/
|
||||
url: https://github.com/nigels-com/glew/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -2626,12 +2616,12 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: glm
|
||||
url: https://github.com/g-truc/glm/releases/
|
||||
url: https://github.com/g-truc/glm/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: glmark2
|
||||
url: https://github.com/glmark2/glmark2/releases/
|
||||
url: https://github.com/glmark2/glmark2/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -2656,7 +2646,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: glslang
|
||||
url: https://github.com/KhronosGroup/glslang/releases/
|
||||
url: https://github.com/KhronosGroup/glslang/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -2666,7 +2656,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: gmime
|
||||
url: https://github.com/jstedfast/gmime/releases/
|
||||
url: https://github.com/jstedfast/gmime/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -2701,7 +2691,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: gnome_common
|
||||
url: https://github.com/GNOME/gnome-common/releases/
|
||||
url: https://github.com/GNOME/gnome-common/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -2786,7 +2776,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: gnome_themes_standard
|
||||
url: https://github.com/GNOME/gnome-themes-extra/releases/
|
||||
url: https://github.com/GNOME/gnome-themes-extra/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -2880,6 +2870,11 @@ url: https://ftp.gnome.org/pub/gnome/sources/gobject-introspection/
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: google_chrome
|
||||
url: https://www.google.com/chrome
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
name: google_webdesigner
|
||||
url: https://webdesigner.withgoogle.com/
|
||||
activity: high
|
||||
@@ -2991,7 +2986,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: gsettings_desktop_schemas
|
||||
url: https://github.com/GNOME/gsettings-desktop-schemas/releases/
|
||||
url: https://github.com/GNOME/gsettings-desktop-schemas/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -3041,7 +3036,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: gtk_engines_adwaita
|
||||
url: https://github.com/GNOME/gnome-themes-extra/releases/
|
||||
url: https://github.com/GNOME/gnome-themes-extra/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -3301,7 +3296,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: hugo
|
||||
url: https://github.com/gohugoio/hugo/releases/
|
||||
url: https://github.com/gohugoio/hugo/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -3356,7 +3351,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: ibus
|
||||
url: https://github.com/ibus/ibus/releases/
|
||||
url: https://github.com/ibus/ibus/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -3376,7 +3371,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: icu4c
|
||||
url: https://github.com/unicode-org/icu/releases/
|
||||
url: https://github.com/unicode-org/icu/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -3401,7 +3396,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: imagemagick6
|
||||
url: https://github.com/ImageMagick/ImageMagick6/releases
|
||||
url: https://github.com/ImageMagick/ImageMagick6/tags
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -3541,7 +3536,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: jack
|
||||
url: https://github.com/jackaudio/jack2/releases/
|
||||
url: https://github.com/jackaudio/jack2/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -3696,7 +3691,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: kakoune
|
||||
url: https://github.com/mawww/kakoune/releases/
|
||||
url: https://github.com/mawww/kakoune/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -3721,7 +3716,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: keepassxc
|
||||
url: https://github.com/keepassxreboot/keepassxc/releases/
|
||||
url: https://github.com/keepassxreboot/keepassxc/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -3731,12 +3726,12 @@ activity: high
|
||||
---
|
||||
kind: url
|
||||
name: keybinder
|
||||
url: https://github.com/kupferlauncher/keybinder/releases/
|
||||
url: https://github.com/kupferlauncher/keybinder/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
name: keychain
|
||||
url: https://github.com/funtoo/keychain/releases/
|
||||
url: https://github.com/funtoo/keychain/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -4191,7 +4186,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: libde265
|
||||
url: https://github.com/strukturag/libde265/releases/
|
||||
url: https://github.com/strukturag/libde265/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -4236,7 +4231,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: libdsm
|
||||
url: https://github.com/videolabs/libdsm/releases/
|
||||
url: https://github.com/videolabs/libdsm/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -4356,7 +4351,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: libfmt
|
||||
url: https://github.com/fmtlib/fmt/releases/
|
||||
url: https://github.com/fmtlib/fmt/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -4421,7 +4416,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: libgeotiff
|
||||
url: https://github.com/OSGeo/libgeotiff/releases/
|
||||
url: https://github.com/OSGeo/libgeotiff/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -4741,7 +4736,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: libnet
|
||||
url: https://github.com/libnet/libnet/releases/
|
||||
url: https://github.com/libnet/libnet/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -4761,7 +4756,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: libnghttp2
|
||||
url: https://github.com/nghttp2/nghttp2/releases/
|
||||
url: https://github.com/nghttp2/nghttp2/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -4771,7 +4766,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: libnotify
|
||||
url: https://github.com/GNOME/libnotify/releases/
|
||||
url: https://github.com/GNOME/libnotify/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -4831,7 +4826,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: libostree
|
||||
url: https://github.com/ostreedev/ostree/releases/
|
||||
url: https://github.com/ostreedev/ostree/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -4901,7 +4896,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: libportal
|
||||
url: https://github.com/flatpak/libportal/releases/
|
||||
url: https://github.com/flatpak/libportal/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -5366,7 +5361,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: libwpe
|
||||
url: https://github.com/WebPlatformForEmbedded/libwpe/releases/
|
||||
url: https://github.com/WebPlatformForEmbedded/libwpe/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -5591,7 +5586,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: libyaml
|
||||
url: https://github.com/yaml/libyaml/releases/
|
||||
url: https://github.com/yaml/libyaml/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -5616,7 +5611,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: linux_pam
|
||||
url: https://github.com/linux-pam/linux-pam/releases/
|
||||
url: https://github.com/linux-pam/linux-pam/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -5855,7 +5850,7 @@ url: https://www.x.org/releases/individual/util/
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
name: mandb
|
||||
name: man_db
|
||||
url: http://download.savannah.gnu.org/releases/man-db
|
||||
activity: medium
|
||||
---
|
||||
@@ -5966,7 +5961,7 @@ activity: high
|
||||
---
|
||||
kind: url
|
||||
name: mg
|
||||
url: https://github.com/troglobit/mg/releases/
|
||||
url: https://github.com/troglobit/mg/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -5996,7 +5991,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: minerd
|
||||
url: https://github.com/pooler/cpuminer/releases/
|
||||
url: https://github.com/pooler/cpuminer/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -6226,7 +6221,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: mutagen
|
||||
url: https://github.com/mutagen-io/mutagen/releases/
|
||||
url: https://github.com/mutagen-io/mutagen/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -6241,7 +6236,7 @@ activity: high
|
||||
---
|
||||
kind: url
|
||||
name: mypaint
|
||||
url: https://github.com/mypaint/mypaint/releases/
|
||||
url: https://github.com/mypaint/mypaint/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -6531,12 +6526,12 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: ntfs_3g
|
||||
url: https://github.com/tuxera/ntfs-3g/releases/
|
||||
url: https://github.com/tuxera/ntfs-3g/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: numactl
|
||||
url: https://github.com/numactl/numactl/releases/
|
||||
url: https://github.com/numactl/numactl/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -6571,7 +6566,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: oci_cli
|
||||
url: https://github.com/oracle/oci-cli/releases/
|
||||
url: https://github.com/oracle/oci-cli/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -6671,7 +6666,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: openexr
|
||||
url: https://github.com/openexr/openexr/releases/
|
||||
url: https://github.com/openexr/openexr/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -6806,7 +6801,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: osl
|
||||
url: https://github.com/periscop/openscop/releases/
|
||||
url: https://github.com/periscop/openscop/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -6841,7 +6836,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: packer_completion
|
||||
url: https://github.com/mrolli/packer-bash-completion/releases/
|
||||
url: https://github.com/mrolli/packer-bash-completion/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -6866,7 +6861,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: pandoc
|
||||
url: https://github.com/jgm/pandoc/releases/
|
||||
url: https://github.com/jgm/pandoc/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -6986,7 +6981,7 @@ activity: high
|
||||
---
|
||||
kind: url
|
||||
name: peazip
|
||||
url: https://github.com/peazip/PeaZip/releases/
|
||||
url: https://github.com/peazip/PeaZip/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -7471,7 +7466,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: powershell
|
||||
url: https://github.com/PowerShell/PowerShell/releases/
|
||||
url: https://github.com/PowerShell/PowerShell/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -7481,7 +7476,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: premake
|
||||
url: https://github.com/premake/premake-core/releases/
|
||||
url: https://github.com/premake/premake-core/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -8021,7 +8016,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: rdfind
|
||||
url: https://github.com/pauldreik/rdfind/releases/
|
||||
url: https://github.com/pauldreik/rdfind/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -8031,7 +8026,7 @@ activity: high
|
||||
---
|
||||
kind: url
|
||||
name: re2c
|
||||
url: https://github.com/skvadrik/re2c/releases/
|
||||
url: https://github.com/skvadrik/re2c/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -8556,7 +8551,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: shadow
|
||||
url: https://github.com/shadow-maint/shadow/releases/
|
||||
url: https://github.com/shadow-maint/shadow/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -8946,7 +8941,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: superlu
|
||||
url: https://github.com/xiaoyeli/superlu/releases/
|
||||
url: https://github.com/xiaoyeli/superlu/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -9061,7 +9056,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: tcpflow
|
||||
url: https://github.com/simsong/tcpflow/releases/
|
||||
url: https://github.com/simsong/tcpflow/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
@@ -9461,12 +9456,12 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: upx
|
||||
url: https://github.com/upx/upx/releases/
|
||||
url: https://github.com/upx/upx/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: uriparser
|
||||
url: https://github.com/uriparser/uriparser/releases/
|
||||
url: https://github.com/uriparser/uriparser/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -9521,7 +9516,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: v2ray
|
||||
url: https://github.com/v2ray/v2ray-core/releases/
|
||||
url: https://github.com/v2ray/v2ray-core/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -9771,7 +9766,7 @@ activity: medium
|
||||
---
|
||||
kind: url
|
||||
name: weston
|
||||
url: https://github.com/wayland-project/weston/releases/
|
||||
url: https://github.com/wayland-project/weston/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -9836,7 +9831,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: wl_clipboard
|
||||
url: https://github.com/bugaevc/wl-clipboard/releases/
|
||||
url: https://github.com/bugaevc/wl-clipboard/releases
|
||||
activity: medium
|
||||
---
|
||||
kind: url
|
||||
@@ -9871,7 +9866,7 @@ activity: low
|
||||
---
|
||||
kind: url
|
||||
name: wpebackend_fdo
|
||||
url: https://github.com/Igalia/WPEBackend-fdo/releases/
|
||||
url: https://github.com/Igalia/WPEBackend-fdo/releases
|
||||
activity: high
|
||||
---
|
||||
kind: url
|
||||
@@ -9886,17 +9881,17 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: wxwidgets
|
||||
url: https://github.com/wxWidgets/wxWidgets/releases/
|
||||
url: https://github.com/wxWidgets/wxWidgets/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: wxwidgets30
|
||||
url: https://github.com/wxWidgets/wxWidgets/releases/
|
||||
url: https://github.com/wxWidgets/wxWidgets/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: wxwidgets31
|
||||
url: https://github.com/wxWidgets/wxWidgets/releases/
|
||||
url: https://github.com/wxWidgets/wxWidgets/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -9971,7 +9966,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: xdg_dbus_proxy
|
||||
url: https://github.com/flatpak/xdg-dbus-proxy/releases/
|
||||
url: https://github.com/flatpak/xdg-dbus-proxy/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
@@ -9981,7 +9976,7 @@ activity: none
|
||||
---
|
||||
kind: url
|
||||
name: xdotool
|
||||
url: https://github.com/jordansissel/xdotool/releases/
|
||||
url: https://github.com/jordansissel/xdotool/releases
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
|
||||
Reference in New Issue
Block a user