Skip to content

Commit

Permalink
Merge branch 'master' into new-cortile-pacscript
Browse files Browse the repository at this point in the history
  • Loading branch information
Elsie19 authored Dec 8, 2024
2 parents c32a850 + 03b4508 commit 7c60ca1
Show file tree
Hide file tree
Showing 82 changed files with 523 additions and 390 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codacy-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@97bf5df3c09e75f5bcd72695998f96ebd701846e
uses: codacy/codacy-analysis-cli-action@master
with:
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
# You can also omit the token and run the tools that support default configurations
Expand Down
1 change: 1 addition & 0 deletions packagelist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ apx-git
ardour-git
arduino-cli-bin
arduino-ide-bin
asdf-vm
aseprite
awesome-git
aws-cli-v2-bin
Expand Down
18 changes: 18 additions & 0 deletions packages/asdf-vm/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
pkgbase = asdf-vm
pkgver = 0.14.1
pkgdesc = Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more
url = https://asdf-vm.com
arch = any
depends = curl
depends = git
optdepends = build-essential: Array of tools to build software
optdepends = bash-completion: For completions to work in Bash
optdepends = libncurses5-dev: Text-based UI library for terminal applications
optdepends = libncurses-dev: Text-based UI library for terminal applications
optdepends = unzip: Needed by some plugins, like Elixir
license = MIT
repology = project: asdf-vm
source = asdf-vm-0.14.1.tar.gz::https://github.com/asdf-vm/asdf/archive/v0.14.1.tar.gz
sha256sums = 308a7f2e1eb551e435458974fbe37dcef1c940e961ad40e47ae78cabc154543e

pkgname = asdf-vm
65 changes: 65 additions & 0 deletions packages/asdf-vm/asdf-vm.pacscript
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
pkgname=asdf-vm
pkgver=0.14.1
pkgdesc='Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more'
repology=("project: ${pkgname}")
arch=('any')
url='https://asdf-vm.com'
license=('MIT')
depends=(
'curl'
'git'
)
optdepends=(
'build-essential: Array of tools to build software'
'bash-completion: For completions to work in Bash'
'libncurses5-dev: Text-based UI library for terminal applications'
'libncurses-dev: Text-based UI library for terminal applications'
'unzip: Needed by some plugins, like Elixir'
)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/asdf-vm/asdf/archive/v${pkgver}.tar.gz")
sha256sums=('308a7f2e1eb551e435458974fbe37dcef1c940e961ad40e47ae78cabc154543e')

package() {
cd "asdf-${pkgver}"

local dst="${pkgdir}/opt/${pkgname}"
mkdir -p "${dst}"

cp -r bin lib asdf.elv asdf.fish asdf.nu asdf.sh defaults help.txt version.txt "${dst}"

local usrshare="${pkgdir}/usr/share"

local docdir="${usrshare}/doc/${pkgname}"
mkdir -p "${docdir}"
cp help.txt "${docdir}"

# https://aur.archlinux.org/packages/asdf-vm#comment-886293
find . \
-path ./.github \
-prune \
-o \
-name '*.md' \
-exec cp --parents '{}' "${docdir}" \;

install -Dm644 -t "${usrshare}/licenses/${pkgname}/" LICENSE

cd completions

install -Dm644 asdf.bash "${usrshare}/bash-completion/completions/asdf"
install -Dm644 asdf.fish "${usrshare}/fish/vendor_completions.d/asdf.fish"
install -Dm644 _asdf "${usrshare}/zsh/site-functions/_asdf"
}

post_install() {
cat << EOF
Add the following line to your .bashrc or .profile:
. /opt/asdf-vm/asdf.sh
For more information see the official instructions [0].
Especially the section titled "YOUR_SHELL & Pacman".
[0] https://asdf-vm.com/guide/getting-started.html#_3-install-asdf
EOF
}
2 changes: 1 addition & 1 deletion packages/bazecor-app/bazecor-app.pacscript
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ maintainer=("Elsie19 <[email protected]>")
repology=("project: bazecor")

package() {
cd "${_archive}"
cd "${srcdir}"
mkdir -p "${pkgdir}/usr/share/icons/hicolor/256x256/apps/" "${pkgdir}/usr/share/applications/"
echo "[Desktop Entry]
Name=Bazecor
Expand Down
6 changes: 3 additions & 3 deletions packages/brave-browser-beta-deb/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = brave-browser-beta-deb
gives = brave-browser-beta
pkgver = 1.67.101
pkgver = 1.74.14
pkgdesc = Testing version of world's most unique, privacy friendly web browser
url = https://brave.com/
arch = amd64
Expand All @@ -11,7 +11,7 @@ pkgbase = brave-browser-beta-deb
maintainer = Elsie19 <[email protected]>
repology = project: brave
repology = visiblename: brave-beta-bin
source = https://github.com/brave/brave-browser/releases/download/v1.67.101/brave-browser-beta_1.67.101_amd64.deb
sha256sums = 42c50beec9311de1c82df3a7e0010dc4ceda68b0453014878b616b5a07d9b4c0
source = https://github.com/brave/brave-browser/releases/download/v1.74.14/brave-browser-beta_1.74.14_amd64.deb
sha256sums = 596b2d56bf6f49d53f48e0897776c3897189fe59b119a72717e6b0453cf121eb

pkgname = brave-browser-beta-deb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
pkgname="brave-browser-beta-deb"
gives="brave-browser-beta"
arch=("amd64")
pkgver="1.67.101"
pkgver="1.74.14"
breaks=("${gives}-bin" "${gives}-git" "${gives}-app")
source=("https://github.com/brave/brave-browser/releases/download/v${pkgver}/${gives}_${pkgver}_amd64.deb")
url='https://brave.com/'
pkgdesc="Testing version of world's most unique, privacy friendly web browser"
sha256sums=("42c50beec9311de1c82df3a7e0010dc4ceda68b0453014878b616b5a07d9b4c0")
sha256sums=("596b2d56bf6f49d53f48e0897776c3897189fe59b119a72717e6b0453cf121eb")
pacdeps=("brave-keyring-deb")
repology=("project: brave" "visiblename: brave-beta-bin")
maintainer=("Elsie19 <[email protected]>")
6 changes: 3 additions & 3 deletions packages/brave-browser-nightly-deb/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = brave-browser-nightly-deb
gives = brave-browser-nightly
pkgver = 1.75.32
pkgver = 1.75.69
pkgdesc = The Brave browser is a fast, private and secure web browser for PC, Mac and mobile - Nightly channel
url = https://brave.com/
arch = amd64
Expand All @@ -12,7 +12,7 @@ pkgbase = brave-browser-nightly-deb
maintainer = Elsie19 <[email protected]>
repology = project: brave
repology = visiblename: brave-nightly-bin
source = https://github.com/brave/brave-browser/releases/download/v1.75.32/brave-browser-nightly_1.75.32_amd64.deb
sha256sums = 2ed6e6523054fbcf46c2d04546be401e6413fa5e3e1901ebb8114756af84b3e0
source = https://github.com/brave/brave-browser/releases/download/v1.75.69/brave-browser-nightly_1.75.69_amd64.deb
sha256sums = eb3c170be5d75245572147ca9f2c1daea74965023588d7bd43f6dddcf700e71a

pkgname = brave-browser-nightly-deb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
pkgname="brave-browser-nightly-deb"
pkgver="1.75.32"
pkgver="1.75.69"
gives="brave-browser-nightly"
breaks=("${gives}-bin" "${gives}-app" "${gives}-git")
replaces=("${gives}")
pacdeps=("brave-keyring-deb")
source=("https://github.com/brave/brave-browser/releases/download/v${pkgver}/${gives}_${pkgver}_amd64.deb")
url='https://brave.com/'
pkgdesc="The Brave browser is a fast, private and secure web browser for PC, Mac and mobile - Nightly channel"
sha256sums=("2ed6e6523054fbcf46c2d04546be401e6413fa5e3e1901ebb8114756af84b3e0")
sha256sums=("eb3c170be5d75245572147ca9f2c1daea74965023588d7bd43f6dddcf700e71a")
arch=('amd64')
repology=("project: brave" "visiblename: brave-nightly-bin")
maintainer=("Elsie19 <[email protected]>")
6 changes: 3 additions & 3 deletions packages/discord-canary/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pkgbase = discord-canary
pkgver = 0.0.327
pkgver = 0.0.528
pkgdesc = Chat for Communities and Friends - Unstable
url = https://discord.com/
arch = amd64
Expand All @@ -21,7 +21,7 @@ pkgbase = discord-canary
depends = libgbm1
maintainer = DismissedGuy <[email protected]>
repology = project: discord-canary
source = https://dl-canary.discordapp.net/apps/linux/0.0.327/discord-canary-0.0.327.tar.gz
sha256sums = a8c7b282cdc463913e252db466299c0bc5fd185493bf6c5cf270cf4a1eddc75a
source = https://dl-canary.discordapp.net/apps/linux/0.0.528/discord-canary-0.0.528.tar.gz
sha256sums = 6a3407592a63a6e69d1654f95955ec4997f9360f2d6b84b219b669ed34dbfbc4

pkgname = discord-canary
4 changes: 2 additions & 2 deletions packages/discord-canary/discord-canary.pacscript
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
pkgname="discord-canary"
repology=("project: discord-canary")
pkgver="0.0.327"
pkgver="0.0.528"
maintainer=("DismissedGuy <[email protected]>")
source=("https://dl-canary.discordapp.net/apps/linux/${pkgver}/${pkgname}-${pkgver}.tar.gz")
url='https://discord.com/'
depends=("libc6" "libasound2" "libatomic1" "libnotify4" "libnspr4" "libnss3" "libstdc++6" "libxss1" "libxtst6" "libc++1" "libatk1.0-0" "libatk-bridge2.0-0" "libcups2" "libdrm2" "libgtk-3-0" "libgbm1")
pkgdesc="Chat for Communities and Friends - Unstable"
arch=('amd64')
sha256sums=("a8c7b282cdc463913e252db466299c0bc5fd185493bf6c5cf270cf4a1eddc75a")
sha256sums=("6a3407592a63a6e69d1654f95955ec4997f9360f2d6b84b219b669ed34dbfbc4")

package() {
cd "${_archive}"
Expand Down
7 changes: 4 additions & 3 deletions packages/firefox-developer-edition-bin/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = firefox-developer-edition-bin
gives = firefox-developer-edition
pkgver = 133.0b8
pkgver = 134.0b7
pkgdesc = The browser made for developers. All the latest developer tools in beta, plus experimental features like the Multi-line Console Editor and WebSocket Inspector.
url = https://www.mozilla.org/en-US/firefox/developer/
arch = amd64
Expand All @@ -9,13 +9,14 @@ pkgbase = firefox-developer-edition-bin
breaks = firefox-developer-edition-deb
breaks = firefox-developer-edition-app
maintainer = Oren Klopfer <[email protected]>
maintainer = James Ed Randson <[email protected]>
repology = project: firefox
repology = visiblename: firefox-developer-edition
repology = status: devel
source = https://download-installer.cdn.mozilla.net/pub/devedition/releases/133.0b8/linux-x86_64/en-US/firefox-133.0b8.tar.bz2
source = https://download-installer.cdn.mozilla.net/pub/devedition/releases/134.0b7/linux-x86_64/en-US/firefox-134.0b7.tar.bz2
source = firefox-developer-edition.desktop
source = firefox-developer-edition.png::https://www.mozilla.org/media/img/structured-data/logo-firefox-developer.8aedc8028e4d.png
sha256sums = c86d126c7e6ee621706177f1ee5d52afe894570a485d40abf1fc261e640af8dc
sha256sums = dfa42ba6a09deb378741f53f814983bce2e837068c8f63a29f2f74bd47ee934b
sha256sums = SKIP
sha256sums = SKIP

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pkgname="firefox-developer-edition-bin"
maintainer=("Oren Klopfer <[email protected]>")
maintainer=("Oren Klopfer <[email protected]>" "James Ed Randson <[email protected]>")
gives="firefox-developer-edition"
pkgver="133.0b8"
pkgver="134.0b7"
pkgdesc="The browser made for developers. All the latest developer tools in beta, plus experimental features like the Multi-line Console Editor and WebSocket Inspector."
source=(
"https://download-installer.cdn.mozilla.net/pub/devedition/releases/${pkgver}/linux-x86_64/en-US/firefox-${pkgver}.tar.bz2"
Expand All @@ -11,11 +11,11 @@ source=(
url='https://www.mozilla.org/en-US/firefox/developer/'
breaks=("${gives}" "${gives}-git" "${gives}-deb" "${gives}-app")
sha256sums=(
"c86d126c7e6ee621706177f1ee5d52afe894570a485d40abf1fc261e640af8dc"
"dfa42ba6a09deb378741f53f814983bce2e837068c8f63a29f2f74bd47ee934b"
"SKIP"
"SKIP"
)
arch=('amd64')
arch=("amd64")
repology=("project: firefox" "visiblename: firefox-developer-edition" "status: devel")

package() {
Expand Down
6 changes: 3 additions & 3 deletions packages/freetube-deb/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pkgbase = freetube-deb
gives = freetube
pkgver = 0.21.3
pkgver = 0.22.0
pkgdesc = An Open Source YouTube app for privacy.
arch = amd64
maintainer = Zahrun <[email protected]>
repology = project: freetube
source = https://github.com/FreeTubeApp/FreeTube/releases/download/v0.21.3-beta/freetube_0.21.3_amd64.deb
sha256sums = bf8649c7b384cd50178d6c887371472916bfdacb9971e939c35ddbe4ab3adc08
source = https://github.com/FreeTubeApp/FreeTube/releases/download/v0.22.0-beta/freetube_0.22.0_amd64.deb
sha256sums = 619ea02297e180b5fe9f647ee12f48ab07112bfe539688c58ee2302a2dc48e2e

pkgname = freetube-deb
4 changes: 2 additions & 2 deletions packages/freetube-deb/freetube-deb.pacscript
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
pkgname="freetube-deb"
gives="freetube"
pkgver="0.21.3"
pkgver="0.22.0"
source=("https://github.com/FreeTubeApp/FreeTube/releases/download/v${pkgver}-beta/${gives}_${pkgver}_amd64.deb")
pkgdesc="An Open Source YouTube app for privacy."
repology=("project: freetube")
sha256sums=("bf8649c7b384cd50178d6c887371472916bfdacb9971e939c35ddbe4ab3adc08")
sha256sums=("619ea02297e180b5fe9f647ee12f48ab07112bfe539688c58ee2302a2dc48e2e")
arch=('amd64')
maintainer=("Zahrun <[email protected]>")
15 changes: 8 additions & 7 deletions packages/github-desktop-deb/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
pkgbase = github-desktop-deb
gives = github-desktop
pkgver = 3.4.3
pkgver = 3.4.8
pkgdesc = Fork of GitHub Desktop to support various Linux distributions
url = https://desktop.github.com
arch = amd64
arch = arm64
arch = armhf
maintainer = Elsie19 <[email protected]>
maintainer = James Ed Randson <[email protected]>
repology = project: github-desktop
repology = visiblename: github-desktop
repology = repo: aur
source_amd64 = https://github.com/shiftkey/desktop/releases/download/release-3.4.3-linux1/GitHubDesktop-linux-amd64-3.4.3-linux1.deb
sha256sums_amd64 = e2c8aa0ee4f67b1d12e96080fef4dd342b0fd7aa619ead158f1e48cd5123c238
source_arm64 = https://github.com/shiftkey/desktop/releases/download/release-3.4.3-linux1/GitHubDesktop-linux-arm64-3.4.3-linux1.deb
sha256sums_arm64 = da070a8379dda95cceb6c2a331fde7d33d56feee31de647e334435d34c6cfb22
source_armhf = https://github.com/shiftkey/desktop/releases/download/release-3.4.3-linux1/GitHubDesktop-linux-armhf-3.4.3-linux1.deb
sha256sums_armhf = 44b85e5a3fdb1c575b6ee6101f45c97680554f143add2dec330104575e10468b
source_amd64 = https://github.com/shiftkey/desktop/releases/download/release-3.4.8-linux1/GitHubDesktop-linux-amd64-3.4.8-linux1.deb
sha256sums_amd64 = 20d6813659f3937b3a2e1abb507f0d5c2f051bf99da8c6ab1d42c4af2f3a8495
source_arm64 = https://github.com/shiftkey/desktop/releases/download/release-3.4.8-linux1/GitHubDesktop-linux-arm64-3.4.8-linux1.deb
sha256sums_arm64 = 52c7cef5bd1c965731f962f0c09bdb71f62bbbf4b25699bb4b15a9db485bb2b2
source_armhf = https://github.com/shiftkey/desktop/releases/download/release-3.4.8-linux1/GitHubDesktop-linux-armhf-3.4.8-linux1.deb
sha256sums_armhf = 41c6e4d884b7f20669abe9b71ce0a28afc124e27071ab5071dc93e8bfdb41b71

pkgname = github-desktop-deb
16 changes: 9 additions & 7 deletions packages/github-desktop-deb/github-desktop-deb.pacscript
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
pkgname="github-desktop-deb"
gives="github-desktop"
pkgver="3.4.3"
pkgver="3.4.8"
arch=("amd64" "arm64" "armhf")
source=("https://github.com/shiftkey/desktop/releases/download/release-${pkgver}-linux1/GitHubDesktop-linux-${CARCH}-${pkgver}-linux1.deb")
url='https://desktop.github.com'
source_amd64=("https://github.com/shiftkey/desktop/releases/download/release-${pkgver}-linux1/GitHubDesktop-linux-amd64-${pkgver}-linux1.deb")
source_arm64=("https://github.com/shiftkey/desktop/releases/download/release-${pkgver}-linux1/GitHubDesktop-linux-arm64-${pkgver}-linux1.deb")
source_armhf=("https://github.com/shiftkey/desktop/releases/download/release-${pkgver}-linux1/GitHubDesktop-linux-armhf-${pkgver}-linux1.deb")
url="https://desktop.github.com"
repology=("project: github-desktop" "visiblename: github-desktop" "repo: aur")
pkgdesc="Fork of GitHub Desktop to support various Linux distributions"
maintainer=("Elsie19 <[email protected]>")
sha256sums_amd64=("e2c8aa0ee4f67b1d12e96080fef4dd342b0fd7aa619ead158f1e48cd5123c238")
sha256sums_arm64=("da070a8379dda95cceb6c2a331fde7d33d56feee31de647e334435d34c6cfb22")
sha256sums_armhf=("44b85e5a3fdb1c575b6ee6101f45c97680554f143add2dec330104575e10468b")
maintainer=("Elsie19 <[email protected]>" "James Ed Randson <[email protected]>")
sha256sums_amd64=("20d6813659f3937b3a2e1abb507f0d5c2f051bf99da8c6ab1d42c4af2f3a8495")
sha256sums_arm64=("52c7cef5bd1c965731f962f0c09bdb71f62bbbf4b25699bb4b15a9db485bb2b2")
sha256sums_armhf=("41c6e4d884b7f20669abe9b71ce0a28afc124e27071ab5071dc93e8bfdb41b71")
6 changes: 3 additions & 3 deletions packages/honkers-launcher-bin/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = honkers-launcher-bin
gives = honkers-launcher
pkgver = 1.9.0
pkgver = 1.10.2
pkgdesc = Launcher for a honkers game with auto-patching, discord rpc and time tracking
arch = amd64
depends = git
Expand All @@ -21,9 +21,9 @@ pkgbase = honkers-launcher-bin
incompatible = debian:bullseye
maintainer = vbrabandt2005 <[email protected]>
repology = project: honkers-launcher
source = https://github.com/an-anime-team/honkers-launcher/releases/download/1.9.0/honkers-launcher
source = https://github.com/an-anime-team/honkers-launcher/releases/download/1.10.2/honkers-launcher
source = icon.png::https://raw.githubusercontent.com/an-anime-team/honkers-launcher/main/assets/images/icon.png
sha256sums = aaad4ec59be762ddebc50490e2c9eb88365162e53392c2cc58f3baab647e2795
sha256sums = fad29685e319b9411725d5ac55b37420af509ec02924ad52de78f5715af87813
sha256sums = SKIP

pkgname = honkers-launcher-bin
4 changes: 2 additions & 2 deletions packages/honkers-launcher-bin/honkers-launcher-bin.pacscript
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
pkgname="honkers-launcher-bin"
gives="honkers-launcher"
arch=("amd64")
pkgver="1.9.0"
pkgver="1.10.2"
pkgdesc="Launcher for a honkers game with auto-patching, discord rpc and time tracking"
repology=("project: honkers-launcher")
source=(
"https://github.com/an-anime-team/honkers-launcher/releases/download/${pkgver}/honkers-launcher"
"icon.png::https://raw.githubusercontent.com/an-anime-team/honkers-launcher/main/assets/images/icon.png"
)
sha256sums=(
"aaad4ec59be762ddebc50490e2c9eb88365162e53392c2cc58f3baab647e2795"
"fad29685e319b9411725d5ac55b37420af509ec02924ad52de78f5715af87813"
"SKIP"
)
depends=("git" "p7zip-full" "webp")
Expand Down
2 changes: 1 addition & 1 deletion packages/joplin-desktop-app/joplin-desktop-app.pacscript
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ arch=("amd64")
maintainer=("lfromanini <[email protected]>")

package() {
cd "${_archive}"
cd "${srcdir}"
install -Dm755 "Joplin-${pkgver}.AppImage" "${pkgdir}/usr/bin/${gives}"
install -Dm644 "${srcdir}/joplin-desktop.png" "${pkgdir}/usr/share/pixmaps/joplin-desktop.png"
mkdir -p "${pkgdir}/usr/share/applications/"
Expand Down
2 changes: 1 addition & 1 deletion packages/krita-app/krita-app.pacscript
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ arch=("amd64")
maintainer=("harrietobrien <[email protected]>")

package() {
cd "${_archive}"
cd "${srcdir}"
chmod +x "${gives}-${pkgver}-x86_64.appimage"
install -Dm755 "${gives}-${pkgver}-x86_64.appimage" "${pkgdir}/usr/bin/${gives}"
install -Dm644 "${srcdir}/krita.svgz" "${pkgdir}/usr/share/pixmaps/krita.svgz"
Expand Down
Loading

0 comments on commit 7c60ca1

Please sign in to comment.