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