mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-04-19 19:33:45 +01:00
Compare commits
No commits in common. "main" and "v0.7.9+bed403d" have entirely different histories.
main
...
v0.7.9+bed
129 changed files with 200 additions and 2370 deletions
20
.github/workflows/action_test.yaml.bak
vendored
20
.github/workflows/action_test.yaml.bak
vendored
|
@ -1,20 +0,0 @@
|
|||
name: Test setup-lune Action
|
||||
|
||||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test setup-lune action
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Run action
|
||||
uses: CompeyDev/setup-lune@main
|
||||
|
||||
- name: Run lune
|
||||
run: lune --help
|
2
.github/workflows/action_update.yaml
vendored
2
.github/workflows/action_update.yaml
vendored
|
@ -24,6 +24,8 @@ jobs:
|
|||
|
||||
- name: Push changes
|
||||
run: |-
|
||||
git add -A
|
||||
git diff
|
||||
git config --global user.email "hi@devcomp.xyz"
|
||||
git config --global user.name "CI"
|
||||
git diff --quiet || (git add -u && git commit -m "sync: CompeyDev/lune-packaging (${{ github.sha }})")
|
||||
|
|
2
.github/workflows/android.yaml
vendored
2
.github/workflows/android.yaml
vendored
|
@ -1,6 +1,8 @@
|
|||
name: Build for Android
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/appimage.yaml
vendored
2
.github/workflows/appimage.yaml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
|||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
arch: ["x86_64"]
|
||||
arch: ["x86_64", "aarch64"]
|
||||
|
||||
name: Build the AppImage
|
||||
runs-on: ubuntu-latest
|
||||
|
|
3
.github/workflows/aur.yaml
vendored
3
.github/workflows/aur.yaml
vendored
|
@ -1,6 +1,9 @@
|
|||
name: Publish to AUR
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
This repository houses the required manifests and build scripts for lune packaging.
|
||||
For more information on lune, see [lune-org/lune](https://github.com/lune-org/lune).
|
||||
For more information on lune, see [filiptibell/lune](https://github.com/filiptibell/lune).
|
||||
|
||||
## Packaging Statuses
|
||||
|
||||
|
@ -10,7 +10,6 @@ For more information on lune, see [lune-org/lune](https://github.com/lune-org/lu
|
|||
| Scoop |  |
|
||||
| AppImage |  |
|
||||
| APT |  |
|
||||
| COPR | [Project](https://copr.fedorainfracloud.org/coprs/devcomp/lune/) |
|
||||
|
||||
|
||||
## Installation
|
||||
|
|
2
lune-src
2
lune-src
|
@ -1 +1 @@
|
|||
Subproject commit 5d1401cdf611cc9f215f03bdf16ada0e77717edf
|
||||
Subproject commit 779a11c85a0f52a8b3d5a8434a646283b465750a
|
|
@ -1 +1 @@
|
|||
5d1401c
|
||||
779a11c
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.8.9
|
||||
v0.7.10
|
||||
|
|
|
@ -11,10 +11,6 @@ runs:
|
|||
using: "composite"
|
||||
steps:
|
||||
- run: "wget https://github.com/CompeyDev/setup-lune/releases/download/latest/setup-lune-${{ runner.os }}-x86_64.zip"
|
||||
shell: bash
|
||||
- run: "unzip setup-lune-${{ runner.os }}-x86_64.zip"
|
||||
shell: bash
|
||||
- run: "chmod +X ./setup-lune && ./setup-lune"
|
||||
shell: bash
|
||||
- run: "rm -rf ./setup-lune"
|
||||
shell: bash
|
||||
|
|
|
@ -3,12 +3,10 @@
|
|||
set -e
|
||||
|
||||
cd lune-src
|
||||
current_ver=$(git describe --tags --abbrev=0 | tr -d '\n')
|
||||
current_ver=$(git describe --tags --abbrev=0)
|
||||
|
||||
[[ $(cat ../build.VERSION) == $current_ver ]] && echo "[!] Already at latest build, skipping" && exit 0
|
||||
|
||||
sudo apt install build-essential cmake
|
||||
|
||||
wget https://dl.google.com/android/repository/android-ndk-r25c-linux.zip && unzip android-ndk-*.zip
|
||||
mv android-ndk-r25c $HOME/android-ndk
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = lune-bin
|
||||
pkgdesc = [Precompiled Binaries] A standalone Luau script runtime
|
||||
pkgver = 0.8.9
|
||||
pkgver = 0.7.10
|
||||
pkgrel = 1
|
||||
url = https://lune-org.github.io/docs
|
||||
arch = x86_64
|
||||
|
@ -9,9 +9,9 @@ pkgbase = lune-bin
|
|||
depends = glibc
|
||||
provides = lune
|
||||
conflicts = lune
|
||||
source_x86_64 = https://github.com/filiptibell/lune/releases/download/v0.8.9/lune-0.8.9-linux-x86_64.zip
|
||||
sha256sums_x86_64 = eb30bdde967ba97951a4e0cafa0a197396ddd68dfc58e1b60349129c178eee8b
|
||||
source_aarch64 = https://github.com/filiptibell/lune/releases/download/v0.8.9/lune-0.8.9-linux-aarch64.zip
|
||||
sha256sums_aarch64 = 913b07e1c42b8f8fc9e11a1f9d8b07e903e97efcf42b109d60326e85f5cc3cb7
|
||||
source_x86_64 = https://github.com/filiptibell/lune/releases/download/v0.7.10/lune-0.7.10-linux-x86_64.zip
|
||||
sha256sums_x86_64 = 69c399b7281d3d7446b0fb8b6e8341c4dbfd4bfee1d441e2d4666c9d418e69ae
|
||||
source_aarch64 = https://github.com/filiptibell/lune/releases/download/v0.7.10/lune-0.7.10-linux-aarch64.zip
|
||||
sha256sums_aarch64 = d0791ea58ba284904b4f051f4495bc7c7edf417ee3e7a44edc357fde1cff51bc
|
||||
|
||||
pkgname = lune-bin
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
|
||||
pkgname=lune-bin
|
||||
pkgver=0.8.9
|
||||
pkgver=0.7.10
|
||||
pkgrel=1
|
||||
pkgdesc="[Precompiled Binaries] A standalone Luau script runtime"
|
||||
arch=(x86_64 aarch64)
|
||||
|
@ -13,9 +13,9 @@ provides=(lune)
|
|||
conflicts=(lune)
|
||||
source_x86_64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-x86_64.zip")
|
||||
source_aarch64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-aarch64.zip")
|
||||
sha256sums_x86_64=('eb30bdde967ba97951a4e0cafa0a197396ddd68dfc58e1b60349129c178eee8b')
|
||||
sha256sums_aarch64=('913b07e1c42b8f8fc9e11a1f9d8b07e903e97efcf42b109d60326e85f5cc3cb7')
|
||||
sha256sums_x86_64=('69c399b7281d3d7446b0fb8b6e8341c4dbfd4bfee1d441e2d4666c9d418e69ae')
|
||||
sha256sums_aarch64=('d0791ea58ba284904b4f051f4495bc7c7edf417ee3e7a44edc357fde1cff51bc')
|
||||
|
||||
package() {
|
||||
install -Dm755 -t "$pkgdir/usr/bin" lune
|
||||
install -Dm755 -t "$pkgdir/usr/bin" lune
|
||||
}
|
||||
|
|
44
package/aur/lune-git.PKGBUILD.OLD
Normal file
44
package/aur/lune-git.PKGBUILD.OLD
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
|
||||
pkgname=lune-git
|
||||
pkgver=0.7.5
|
||||
pkgrel=1
|
||||
pkgdesc="GIT - A standalone Luau script runtime"
|
||||
arch=('any')
|
||||
url="https://github.com/filiptibell/lune"
|
||||
license=('MPL')
|
||||
makedepends=('just' 'rust')
|
||||
provides=('lune')
|
||||
conflicts=('lune')
|
||||
source=("git+$url.git")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/lune"
|
||||
git submodule update --init
|
||||
}
|
||||
|
||||
pkgver() {
|
||||
cd "$srcdir/lune"
|
||||
git rev-parse v$pkgver
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/lune"
|
||||
|
||||
git checkout $pkgver
|
||||
just build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir/lune"
|
||||
|
||||
just test
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/lune"
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
|
||||
mv ./target/release/lune "$pkgdir/usr/bin"
|
||||
}
|
|
@ -1,13 +1,12 @@
|
|||
pkgbase = lune-git
|
||||
pkgdesc = [Latest Git Commit] A standalone Luau script runtime
|
||||
pkgver = 0.8.9.r0.g010cd36
|
||||
pkgver = 0.7.10.r0.g779a11c
|
||||
pkgrel = 1
|
||||
url = https://lune-org.github.io/docs
|
||||
arch = x86_64
|
||||
arch = aarch64
|
||||
license = MPL2
|
||||
makedepends = cargo
|
||||
makedepends = cmake
|
||||
makedepends = git
|
||||
depends = glibc
|
||||
provides = lune
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
|
||||
pkgname=lune-git
|
||||
pkgver=0.8.9.r0.g010cd36
|
||||
pkgver=0.7.10.r0.g779a11c
|
||||
pkgrel=1
|
||||
pkgdesc="[Latest Git Commit] A standalone Luau script runtime"
|
||||
arch=(x86_64 aarch64)
|
||||
|
@ -9,7 +9,7 @@ conflicts=(lune lune-bin)
|
|||
url="https://lune-org.github.io/docs"
|
||||
license=(MPL2)
|
||||
depends=(glibc)
|
||||
makedepends=(cargo cmake git)
|
||||
makedepends=(cargo git)
|
||||
provides=(lune)
|
||||
conflicts=(lune)
|
||||
options=(!lto)
|
||||
|
|
20
package/aur/lune.PKGBUILD.OLD
Normal file
20
package/aur/lune.PKGBUILD.OLD
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
|
||||
pkgname=lune
|
||||
pkgver=0.7.5
|
||||
pkgrel=1
|
||||
pkgdesc="PRECOMPILED - A standalone Luau script runtime"
|
||||
arch=('x86_64' 'aarch64')
|
||||
url="https://github.com/filiptibell/lune"
|
||||
license=('MPL')
|
||||
provides=('lune')
|
||||
conflicts=('lune-git')
|
||||
source_x86_64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-x86_64.zip")
|
||||
source_aarch64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-aarch64.zip")
|
||||
sha256sums_x86_64=('eaec8e6361c8f9b4e63f756cc9b83a94bbbba28b060e5338a144e499aae2881c')
|
||||
sha256sums_aarch64=('dad5292299db3359c8676c8e294cb9b30105ad1a47f9d96ee99fa34f2684f4fd')
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
mv "$srcdir/lune" "$pkgdir/usr/bin"
|
||||
}
|
|
@ -1,18 +1,17 @@
|
|||
pkgbase = lune
|
||||
pkgdesc = [Latest Stable Source] A standalone Luau script runtime
|
||||
pkgver = 0.8.9
|
||||
pkgrel = 2
|
||||
pkgver = 0.7.10
|
||||
pkgrel = 1
|
||||
url = https://lune-org.github.io/docs
|
||||
arch = x86_64
|
||||
arch = aarch64
|
||||
license = MPL2
|
||||
makedepends = cargo
|
||||
makedepends = cmake
|
||||
depends = glibc
|
||||
conflicts = lune-git
|
||||
conflicts = lune-bin
|
||||
options = !lto
|
||||
source = lune-0.8.9.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v0.8.9.tar.gz
|
||||
sha256sums = b37bdf53dece55037ba00d82fe33a9ace9777cbb42b4d8d6602bcf704c9e1c59
|
||||
source = lune-0.7.10.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v0.7.10.tar.gz
|
||||
sha256sums = e3851ba897f568a9fef2014b8d06f9b4c0df74d5d64b5e8aa2cedde35334507a
|
||||
|
||||
pkgname = lune
|
||||
|
|
|
@ -1,41 +1,38 @@
|
|||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
|
||||
pkgname=lune
|
||||
pkgver=0.8.9
|
||||
pkgrel=2
|
||||
pkgver=0.7.10
|
||||
pkgrel=1
|
||||
pkgdesc="[Latest Stable Source] A standalone Luau script runtime"
|
||||
arch=(x86_64 aarch64)
|
||||
conflicts=(lune-git lune-bin)
|
||||
url="https://lune-org.github.io/docs"
|
||||
license=(MPL2)
|
||||
depends=(glibc)
|
||||
makedepends=(cargo cmake)
|
||||
makedepends=(cargo)
|
||||
options=(!lto)
|
||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v${pkgver}.tar.gz")
|
||||
sha256sums=('b37bdf53dece55037ba00d82fe33a9ace9777cbb42b4d8d6602bcf704c9e1c59')
|
||||
sha256sums=('e3851ba897f568a9fef2014b8d06f9b4c0df74d5d64b5e8aa2cedde35334507a')
|
||||
|
||||
prepare() {
|
||||
cd "lune-${pkgver}"
|
||||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
|
||||
cd "lune-${pkgver}"
|
||||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "lune-${pkgver}"
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
export CARGO_TARGET_DIR=target
|
||||
cargo build --frozen --release --all-features
|
||||
cd "lune-${pkgver}"
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
export CARGO_TARGET_DIR=target
|
||||
cargo build --frozen --release --all-features
|
||||
}
|
||||
|
||||
check() {
|
||||
cd lune-${pkgver}
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
cargo test --frozen --all-features -- --test-threads 1 || (
|
||||
EC=$?
|
||||
if [ $EC -ne 0 ]; then exit 0; fi
|
||||
)
|
||||
cd lune-${pkgver}
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
cargo test --frozen --all-features -- --test-threads 1 || (EC=$?; if [ $EC -ne 0 ]; then exit 0; fi)
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "lune-${pkgver}"
|
||||
install -Dm755 -t ${pkgdir}/usr/bin target/release/lune
|
||||
cd "lune-${pkgver}"
|
||||
install -Dm755 -t ${pkgdir}/usr/bin target/release/lune
|
||||
}
|
||||
|
|
|
@ -1,65 +0,0 @@
|
|||
Name: lune
|
||||
Version: 0.8.9
|
||||
Release: 1%{?dist}
|
||||
Summary: A standalone Luau runtime
|
||||
|
||||
|
||||
License: MPL2
|
||||
URL: https://github.com/lune-org/lune
|
||||
Source0: https://github.com/lune-org/lune/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
|
||||
ExclusiveArch: x86_64 aarch64
|
||||
|
||||
|
||||
BuildRequires: cmake
|
||||
BuildRequires: rust
|
||||
BuildRequires: cargo
|
||||
BuildRequires: just
|
||||
BuildRequires: clang
|
||||
BuildRequires: perl
|
||||
%ifarch aarch64
|
||||
BuildRequires: binutils-aarch64-linux-gnu
|
||||
BuildRequires: gcc-c++-aarch64-linux-gnu
|
||||
BuildRequires: gcc-aarch64-linux-gnu
|
||||
BuildRequires: musl-devel
|
||||
%endif
|
||||
|
||||
|
||||
Requires: libstdc++
|
||||
Requires: libgcc
|
||||
Requires: openlibm
|
||||
Requires: glibc
|
||||
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n lune-%{version}
|
||||
# Removes the first line containing clippy lint attribute which is falsely flagged as a shebang in build
|
||||
find . -type f -name "*.rs" -exec perl -i -ne 'print unless /^\#!\[/ ' {} +
|
||||
cat <<EOF > .cargo/config.toml
|
||||
[target.aarch64-unknown-linux-gnu]
|
||||
linker = "aarch64-linux-gnu-gcc"
|
||||
rustflags = ["-L", "/usr/lib/gcc/aarch64-linux-gnu/14"]
|
||||
EOF
|
||||
|
||||
%build
|
||||
just build --locked --release
|
||||
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}/%{_bindir}
|
||||
install -m0755 ./target/release/%{name} %{buildroot}/%{_bindir}/%{name}
|
||||
|
||||
|
||||
%files
|
||||
%license LICENSE.txt
|
||||
%{_bindir}/%{name}
|
||||
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
|
|
@ -5,7 +5,7 @@ Origin: . bookworm
|
|||
Label: . bookworm
|
||||
Suite: bookworm
|
||||
Codename: bookworm
|
||||
Date: Tue, 8 Oct 2024 09:11:05 UTC
|
||||
Date: Thu, 26 Oct 2023 14:05:17 UTC
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: Generated by aptly
|
||||
|
@ -18,13 +18,13 @@ MD5Sum:
|
|||
21e95effa741b01ff1f528f699193934 62 main/Contents-amd64.gz
|
||||
bf473f9f2315fe4d0af42e32abe3828e 32 main/Contents-arm64
|
||||
21e95effa741b01ff1f528f699193934 62 main/Contents-arm64.gz
|
||||
58f387bbfc261b50eabd763f46dcdc76 9626 main/binary-amd64/Packages
|
||||
4db1093752583575edb57e75572826b7 3218 main/binary-amd64/Packages.bz2
|
||||
767f7c08d3f5e22fbf021b0677cc7c1e 3092 main/binary-amd64/Packages.gz
|
||||
2e8946f376556aef7951b1f82d8ecb38 3398 main/binary-amd64/Packages
|
||||
22441dec0a320d06968d3f0de9fbd854 1434 main/binary-amd64/Packages.bz2
|
||||
5351847d5dc01a8da739c864998f0f97 1295 main/binary-amd64/Packages.gz
|
||||
10fa9c1021a44a2b98f1134663f2c4fe 107 main/binary-amd64/Release
|
||||
d906fb57caf2b1ae45945774fab085d5 9609 main/binary-arm64/Packages
|
||||
aa61bcf19c12bdf1f2be952072130246 3189 main/binary-arm64/Packages.bz2
|
||||
c2f873ada69b30933179bc1fdfc79b3e 3077 main/binary-arm64/Packages.gz
|
||||
9ea38e944250387bafa4656d4d009989 3392 main/binary-arm64/Packages
|
||||
abbc83def09b7f8cb73e4fc47a8cd2db 1437 main/binary-arm64/Packages.bz2
|
||||
db2e992bd93a327d452f1df315e0b67e 1280 main/binary-arm64/Packages.gz
|
||||
e457aeaf5fe929cccaefa81fb8d8e0b3 107 main/binary-arm64/Release
|
||||
SHA1:
|
||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 Contents-amd64
|
||||
|
@ -35,13 +35,13 @@ SHA1:
|
|||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-amd64.gz
|
||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 main/Contents-arm64
|
||||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-arm64.gz
|
||||
eec16ae99a87c628c51b493c3e2039141ba76a29 9626 main/binary-amd64/Packages
|
||||
69dfc7633dcbb2b4f02acc5550152da70e27617d 3218 main/binary-amd64/Packages.bz2
|
||||
8de5718b1e598dc7360e8213fd6155fece324e7e 3092 main/binary-amd64/Packages.gz
|
||||
8daca6985fcf0dfa89714071349eee322b697c49 3398 main/binary-amd64/Packages
|
||||
f33f0c5167a81120be5f5d3438e403178f4e284c 1434 main/binary-amd64/Packages.bz2
|
||||
40bfb60ffec3979e91aa29254147b35bc77fc15d 1295 main/binary-amd64/Packages.gz
|
||||
269a2515815f5030bf3af40a7c3eec3e0e2052ee 107 main/binary-amd64/Release
|
||||
764c17a3ada590367c7b5ee40080c3dc974a0668 9609 main/binary-arm64/Packages
|
||||
803d015d90f1e71ab0846ed3d35cf6c5bc9eb0b4 3189 main/binary-arm64/Packages.bz2
|
||||
61fbe01cf2bba2655d2f5c7d1a983b929323e138 3077 main/binary-arm64/Packages.gz
|
||||
fd7d4a10a904476a72c69c401fe5b48c7a1f235b 3392 main/binary-arm64/Packages
|
||||
f9de97cf38a2c160b5aa4e103acbc9e7818409de 1437 main/binary-arm64/Packages.bz2
|
||||
c2b6d5468c81256da5ed96186021065425a5b462 1280 main/binary-arm64/Packages.gz
|
||||
2389623756acc2e410d5c6d8596c7d3c248eec5e 107 main/binary-arm64/Release
|
||||
SHA256:
|
||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 Contents-amd64
|
||||
|
@ -52,13 +52,13 @@ SHA256:
|
|||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-amd64.gz
|
||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 main/Contents-arm64
|
||||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-arm64.gz
|
||||
855b78edfcc8f8757d94ae565bf7afbdd913a85971cfd4959bde9815bbffc350 9626 main/binary-amd64/Packages
|
||||
f97313cfe0cf747563d03e698fd0e830e9bfe60c33abaab21a3add9009391a84 3218 main/binary-amd64/Packages.bz2
|
||||
06b81109cdd298e6d7f3d203878fe33d3688a6124b0ce2534fb89f0cf3550199 3092 main/binary-amd64/Packages.gz
|
||||
dc6d5f7cf353b4d847a8cbe8b2a71484cc149a5e61d2fe58b77eab439e9dff0e 3398 main/binary-amd64/Packages
|
||||
56b6f531dc92c03eeab1e25d08f6932a0cace8a66a692c676f660b9f24cf4cd7 1434 main/binary-amd64/Packages.bz2
|
||||
0c5b6923e5904e94a680d08b411c549ae011fdaeba1975eab8354578a8cc8412 1295 main/binary-amd64/Packages.gz
|
||||
0a3b95a9243e294ba621ef500542995de72ee6234e5d893eb03a52dafea4e21d 107 main/binary-amd64/Release
|
||||
fd6f84316ea3c47c20da88f7f88518441976300ab5e9bcc75bfa6a57fb74a14b 9609 main/binary-arm64/Packages
|
||||
36436fb8ca9a2772fd1827de7cb442c92cf786686a508d0e98e991ecd861ebe9 3189 main/binary-arm64/Packages.bz2
|
||||
ca407505e79fa89c786ca1dcb2e18d15afad2ff14f74497c0896f4829f3c4b56 3077 main/binary-arm64/Packages.gz
|
||||
f9dd3c97bc04593bfb4066cc9f53c3b11ed99d8d306fd72dbfd45d9f71c71246 3392 main/binary-arm64/Packages
|
||||
503d866c9f6391c880d8b8880f5b842da8e1c71bceceaa8e449062793bda2a88 1437 main/binary-arm64/Packages.bz2
|
||||
82fd46ad96b3ff89918784cd22c03e02f118e466bdf3983fb7d9c354667202e4 1280 main/binary-arm64/Packages.gz
|
||||
dbe6441a0ab35858d6beb741cc4a35ee48f26cafb140b1f0a4b8b6075279522b 107 main/binary-arm64/Release
|
||||
SHA512:
|
||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 Contents-amd64
|
||||
|
@ -69,25 +69,25 @@ SHA512:
|
|||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-amd64.gz
|
||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 main/Contents-arm64
|
||||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-arm64.gz
|
||||
86c2ffd2341ff22997e451fb19947dcf96ebfe5e38583e623d1580159b1c757bd3a30c6d3ddd524c5365bf4362af848bca5690f86f1108092a9a086492786c92 9626 main/binary-amd64/Packages
|
||||
1afe5328d5d771ace414ea3ad64c9db3ccdf96e8765adaa70249dc9867f6254b97b99ea1bf71d868f3a5da49babd5481f5c84e4086c8be53fddd90d7f5fbf583 3218 main/binary-amd64/Packages.bz2
|
||||
bd8a17da392078f3844bb22bfc8139feb921287277f4c5c1fc71a700b7dfe20f9f149857da5622e7abdb133c7552f54dbd0d2e23ee48e61e8caadaa93dcdcd73 3092 main/binary-amd64/Packages.gz
|
||||
a1d590a4f40c1e05d16a3ae383cf72ffc297c70b4f7795705d95d10f17daa93b8d760d20b09d7bddc90b00cdb7d970b1abda995c2d4542c0f6a129aedccf6f34 3398 main/binary-amd64/Packages
|
||||
451eae8e3ab383ecc90597e07c21f1738cf65eb9654422dc32d7990e50feb98697fa5052d6c8c77a693ca994d5ff551c3a5398b86fe983efc82000380ffb518e 1434 main/binary-amd64/Packages.bz2
|
||||
4b6c24d93865b7331895c6120df6802b9839c86a95982959c5249c18810e61bbb430024fcedbdc58f43647cb5600f08609b61bc8f2875d8254acb0f6c949a68f 1295 main/binary-amd64/Packages.gz
|
||||
9269c413cbfa50b30051129e947e83e0b884416a5e704ab2dab6e2a87c84dc1d768ab8bf9eae86651cbbb940b8df19b02c1c013c212b47bdc291a9325a608b11 107 main/binary-amd64/Release
|
||||
abe547f731e320dda2cd6b270fe9a14d61735a0c810fa6b86b7de1538cee14f7afe831532e13856c2acbb7410f4fcdfbb66b6aa6a839738b2ff79bf636fd1c4c 9609 main/binary-arm64/Packages
|
||||
3489891f3c6f5291b0d33990da27a8530cde1a2e44a6197225d7b2662320f19bd983aae84f5f5b927dd5d3e02b2800b8e2151f8a88c47ce33a5d34ea97ef72ec 3189 main/binary-arm64/Packages.bz2
|
||||
93cf80d9f0a98ed05560de48321d600c0ff67c29dd7d8fc7ac378f0820d9927da4e343f92a04ae89bccd3d25c8af660c40471c173787b2c88799db1d01f92562 3077 main/binary-arm64/Packages.gz
|
||||
22f41ae10034a7fa73275d1c6523b96f3f9429abf38099db82e1b37b8c17a914a3a3d821ab9be0e6202f2853c3a1d7937c7258ab4821d7d68be2b049b64ed33c 3392 main/binary-arm64/Packages
|
||||
a43146060fa3405867f040223e64c0e8097ee4ef19602e1f88b7c747dc69199db51747765d65947921733ba3138e44befca3f9e3cd0bcdd49347520ee2d3c967 1437 main/binary-arm64/Packages.bz2
|
||||
5c5b28e2ec60eaddb2256b7043fbf7fa98fa57769facb5541ffd6136a935be43668903ae1454d682b001c197d86c44f4fd828db4a5abd39f3011cd1f02b72700 1280 main/binary-arm64/Packages.gz
|
||||
e5c527af7ee91e16fe6584444bb176ff98823a3ceeb369cb4511730b6725d5bd0f21127103d49330aae5f005f88ef4d7f38b6cd5c9ba42c9704102d44805844a 107 main/binary-arm64/Release
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQGzBAEBCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmcE9ykACgkQKsxtghaS
|
||||
I7kX2AwAt/D9UanFyDvyzupCimDOEhaVHaQ6BQAFMmkopjWcrYddWz+JYtsTaqp/
|
||||
0a6uOH58yxK8XT2Kjk2fTFNBXwALGb2HKah9L12ZOYtXo1XQEjYlZyV5MTW6lncN
|
||||
4VDbzzS4mmNWeeVpDDwPVtZgV7WjvJz9BFv9/XKq2OWwXrNytcGZLmT4TfbwkGUc
|
||||
EWQJoNTs1rT9FRBYrMk1c/KoKX+NpE+DROpNi88okY4MRDrEIkNOoGGCUEcwiEwJ
|
||||
DICTqOg9A+zQfnJhhqw2f/THKTsOBMK8ktRxFAbjDAHaGx6lLkxm9+QH7NQJimqz
|
||||
XebVu1f14y5sjKXUut43vIxjJUyyYzyiQcyQTO9GRRSxfL5mnPinNjxj+ymad3k6
|
||||
m3CKK5hRVkD8tQyUbaRWKwRd8LRabdL1KdsbvtBZEjB2d41tzpxmOlQItjJjOehJ
|
||||
EDl1gX7jFaw4Aj8pJ0UjyZ4S6LqaMNfGpaTJ5FW78btS1qBza/5KAVrUw9uqX2+w
|
||||
/3wf4xDd
|
||||
=u3DB
|
||||
iQGzBAEBCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmU6ch0ACgkQKsxtghaS
|
||||
I7np7gv/dAHSVnzGAUsARyp2G4vo9zfePwyvDeo0q9UjygFlSVAvO78XWH4Wa5Xd
|
||||
Bhf4ID4YuRAtLvFUR3gh6VBHIjUXX+WgvbRUeeDSzZ8OEDfmpgAfl+KRDyIOFwUB
|
||||
R490YJz5BlQcZ7+Sdy02+QX5jLNhyFoHm5b4q2qW/EoPzm/11FQeIv18bPBCpegF
|
||||
h9FMVZoW/qracyIIKdbH5woHm1/ftbOGE9v64nX08wl45wHe/Ge/+55+IOTbEdSk
|
||||
qA8ObMqdf8+8rgFPBtivDBvdM7VEXCvxV/j/p8XdJgh847xX2tP+OkKFHeSIuxXv
|
||||
8ouUCUGTZgyqNfCTfO32rgqO0yNxHTFe89iPXMZy4J4tYoHJXR9JfUMEuT7RUZRk
|
||||
qk1XTEc+vx1sEPr28uAToKJ/g+asQNCG3kS93t0A7biv8N0xAn/or9gclPEv/wK7
|
||||
Vj4PsdVVju/EiA12D47AwYmcyTklvVedQJaLjnurulpp9gG14QLINbB7yzvhSJAr
|
||||
+XHPyJvg
|
||||
=toW7
|
||||
-----END PGP SIGNATURE-----
|
||||
|
|
|
@ -2,7 +2,7 @@ Origin: . bookworm
|
|||
Label: . bookworm
|
||||
Suite: bookworm
|
||||
Codename: bookworm
|
||||
Date: Tue, 8 Oct 2024 09:11:05 UTC
|
||||
Date: Thu, 26 Oct 2023 14:05:17 UTC
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: Generated by aptly
|
||||
|
@ -15,13 +15,13 @@ MD5Sum:
|
|||
21e95effa741b01ff1f528f699193934 62 main/Contents-amd64.gz
|
||||
bf473f9f2315fe4d0af42e32abe3828e 32 main/Contents-arm64
|
||||
21e95effa741b01ff1f528f699193934 62 main/Contents-arm64.gz
|
||||
58f387bbfc261b50eabd763f46dcdc76 9626 main/binary-amd64/Packages
|
||||
4db1093752583575edb57e75572826b7 3218 main/binary-amd64/Packages.bz2
|
||||
767f7c08d3f5e22fbf021b0677cc7c1e 3092 main/binary-amd64/Packages.gz
|
||||
2e8946f376556aef7951b1f82d8ecb38 3398 main/binary-amd64/Packages
|
||||
22441dec0a320d06968d3f0de9fbd854 1434 main/binary-amd64/Packages.bz2
|
||||
5351847d5dc01a8da739c864998f0f97 1295 main/binary-amd64/Packages.gz
|
||||
10fa9c1021a44a2b98f1134663f2c4fe 107 main/binary-amd64/Release
|
||||
d906fb57caf2b1ae45945774fab085d5 9609 main/binary-arm64/Packages
|
||||
aa61bcf19c12bdf1f2be952072130246 3189 main/binary-arm64/Packages.bz2
|
||||
c2f873ada69b30933179bc1fdfc79b3e 3077 main/binary-arm64/Packages.gz
|
||||
9ea38e944250387bafa4656d4d009989 3392 main/binary-arm64/Packages
|
||||
abbc83def09b7f8cb73e4fc47a8cd2db 1437 main/binary-arm64/Packages.bz2
|
||||
db2e992bd93a327d452f1df315e0b67e 1280 main/binary-arm64/Packages.gz
|
||||
e457aeaf5fe929cccaefa81fb8d8e0b3 107 main/binary-arm64/Release
|
||||
SHA1:
|
||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 Contents-amd64
|
||||
|
@ -32,13 +32,13 @@ SHA1:
|
|||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-amd64.gz
|
||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 main/Contents-arm64
|
||||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-arm64.gz
|
||||
eec16ae99a87c628c51b493c3e2039141ba76a29 9626 main/binary-amd64/Packages
|
||||
69dfc7633dcbb2b4f02acc5550152da70e27617d 3218 main/binary-amd64/Packages.bz2
|
||||
8de5718b1e598dc7360e8213fd6155fece324e7e 3092 main/binary-amd64/Packages.gz
|
||||
8daca6985fcf0dfa89714071349eee322b697c49 3398 main/binary-amd64/Packages
|
||||
f33f0c5167a81120be5f5d3438e403178f4e284c 1434 main/binary-amd64/Packages.bz2
|
||||
40bfb60ffec3979e91aa29254147b35bc77fc15d 1295 main/binary-amd64/Packages.gz
|
||||
269a2515815f5030bf3af40a7c3eec3e0e2052ee 107 main/binary-amd64/Release
|
||||
764c17a3ada590367c7b5ee40080c3dc974a0668 9609 main/binary-arm64/Packages
|
||||
803d015d90f1e71ab0846ed3d35cf6c5bc9eb0b4 3189 main/binary-arm64/Packages.bz2
|
||||
61fbe01cf2bba2655d2f5c7d1a983b929323e138 3077 main/binary-arm64/Packages.gz
|
||||
fd7d4a10a904476a72c69c401fe5b48c7a1f235b 3392 main/binary-arm64/Packages
|
||||
f9de97cf38a2c160b5aa4e103acbc9e7818409de 1437 main/binary-arm64/Packages.bz2
|
||||
c2b6d5468c81256da5ed96186021065425a5b462 1280 main/binary-arm64/Packages.gz
|
||||
2389623756acc2e410d5c6d8596c7d3c248eec5e 107 main/binary-arm64/Release
|
||||
SHA256:
|
||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 Contents-amd64
|
||||
|
@ -49,13 +49,13 @@ SHA256:
|
|||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-amd64.gz
|
||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 main/Contents-arm64
|
||||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-arm64.gz
|
||||
855b78edfcc8f8757d94ae565bf7afbdd913a85971cfd4959bde9815bbffc350 9626 main/binary-amd64/Packages
|
||||
f97313cfe0cf747563d03e698fd0e830e9bfe60c33abaab21a3add9009391a84 3218 main/binary-amd64/Packages.bz2
|
||||
06b81109cdd298e6d7f3d203878fe33d3688a6124b0ce2534fb89f0cf3550199 3092 main/binary-amd64/Packages.gz
|
||||
dc6d5f7cf353b4d847a8cbe8b2a71484cc149a5e61d2fe58b77eab439e9dff0e 3398 main/binary-amd64/Packages
|
||||
56b6f531dc92c03eeab1e25d08f6932a0cace8a66a692c676f660b9f24cf4cd7 1434 main/binary-amd64/Packages.bz2
|
||||
0c5b6923e5904e94a680d08b411c549ae011fdaeba1975eab8354578a8cc8412 1295 main/binary-amd64/Packages.gz
|
||||
0a3b95a9243e294ba621ef500542995de72ee6234e5d893eb03a52dafea4e21d 107 main/binary-amd64/Release
|
||||
fd6f84316ea3c47c20da88f7f88518441976300ab5e9bcc75bfa6a57fb74a14b 9609 main/binary-arm64/Packages
|
||||
36436fb8ca9a2772fd1827de7cb442c92cf786686a508d0e98e991ecd861ebe9 3189 main/binary-arm64/Packages.bz2
|
||||
ca407505e79fa89c786ca1dcb2e18d15afad2ff14f74497c0896f4829f3c4b56 3077 main/binary-arm64/Packages.gz
|
||||
f9dd3c97bc04593bfb4066cc9f53c3b11ed99d8d306fd72dbfd45d9f71c71246 3392 main/binary-arm64/Packages
|
||||
503d866c9f6391c880d8b8880f5b842da8e1c71bceceaa8e449062793bda2a88 1437 main/binary-arm64/Packages.bz2
|
||||
82fd46ad96b3ff89918784cd22c03e02f118e466bdf3983fb7d9c354667202e4 1280 main/binary-arm64/Packages.gz
|
||||
dbe6441a0ab35858d6beb741cc4a35ee48f26cafb140b1f0a4b8b6075279522b 107 main/binary-arm64/Release
|
||||
SHA512:
|
||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 Contents-amd64
|
||||
|
@ -66,11 +66,11 @@ SHA512:
|
|||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-amd64.gz
|
||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 main/Contents-arm64
|
||||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-arm64.gz
|
||||
86c2ffd2341ff22997e451fb19947dcf96ebfe5e38583e623d1580159b1c757bd3a30c6d3ddd524c5365bf4362af848bca5690f86f1108092a9a086492786c92 9626 main/binary-amd64/Packages
|
||||
1afe5328d5d771ace414ea3ad64c9db3ccdf96e8765adaa70249dc9867f6254b97b99ea1bf71d868f3a5da49babd5481f5c84e4086c8be53fddd90d7f5fbf583 3218 main/binary-amd64/Packages.bz2
|
||||
bd8a17da392078f3844bb22bfc8139feb921287277f4c5c1fc71a700b7dfe20f9f149857da5622e7abdb133c7552f54dbd0d2e23ee48e61e8caadaa93dcdcd73 3092 main/binary-amd64/Packages.gz
|
||||
a1d590a4f40c1e05d16a3ae383cf72ffc297c70b4f7795705d95d10f17daa93b8d760d20b09d7bddc90b00cdb7d970b1abda995c2d4542c0f6a129aedccf6f34 3398 main/binary-amd64/Packages
|
||||
451eae8e3ab383ecc90597e07c21f1738cf65eb9654422dc32d7990e50feb98697fa5052d6c8c77a693ca994d5ff551c3a5398b86fe983efc82000380ffb518e 1434 main/binary-amd64/Packages.bz2
|
||||
4b6c24d93865b7331895c6120df6802b9839c86a95982959c5249c18810e61bbb430024fcedbdc58f43647cb5600f08609b61bc8f2875d8254acb0f6c949a68f 1295 main/binary-amd64/Packages.gz
|
||||
9269c413cbfa50b30051129e947e83e0b884416a5e704ab2dab6e2a87c84dc1d768ab8bf9eae86651cbbb940b8df19b02c1c013c212b47bdc291a9325a608b11 107 main/binary-amd64/Release
|
||||
abe547f731e320dda2cd6b270fe9a14d61735a0c810fa6b86b7de1538cee14f7afe831532e13856c2acbb7410f4fcdfbb66b6aa6a839738b2ff79bf636fd1c4c 9609 main/binary-arm64/Packages
|
||||
3489891f3c6f5291b0d33990da27a8530cde1a2e44a6197225d7b2662320f19bd983aae84f5f5b927dd5d3e02b2800b8e2151f8a88c47ce33a5d34ea97ef72ec 3189 main/binary-arm64/Packages.bz2
|
||||
93cf80d9f0a98ed05560de48321d600c0ff67c29dd7d8fc7ac378f0820d9927da4e343f92a04ae89bccd3d25c8af660c40471c173787b2c88799db1d01f92562 3077 main/binary-arm64/Packages.gz
|
||||
22f41ae10034a7fa73275d1c6523b96f3f9429abf38099db82e1b37b8c17a914a3a3d821ab9be0e6202f2853c3a1d7937c7258ab4821d7d68be2b049b64ed33c 3392 main/binary-arm64/Packages
|
||||
a43146060fa3405867f040223e64c0e8097ee4ef19602e1f88b7c747dc69199db51747765d65947921733ba3138e44befca3f9e3cd0bcdd49347520ee2d3c967 1437 main/binary-arm64/Packages.bz2
|
||||
5c5b28e2ec60eaddb2256b7043fbf7fa98fa57769facb5541ffd6136a935be43668903ae1454d682b001c197d86c44f4fd828db4a5abd39f3011cd1f02b72700 1280 main/binary-arm64/Packages.gz
|
||||
e5c527af7ee91e16fe6584444bb176ff98823a3ceeb369cb4511730b6725d5bd0f21127103d49330aae5f005f88ef4d7f38b6cd5c9ba42c9704102d44805844a 107 main/binary-arm64/Release
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQGzBAABCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmcE9ykACgkQKsxtghaS
|
||||
I7kVUgwArMMujvDZmPptM7iovt6gEd6KqgoVkPNo22F9ScE7IxH5Ipi230Zn6EPU
|
||||
sRNrKnGms4ZfaNsRNDMvehqm6hHwoRC7iNviB0CYnOqDKf/P37+BwaYFfz5hb15G
|
||||
evJ5yfkoC2w41w6E5v8z5+jsSfDIc5QgiDOZbB2tX/uh3O4oO6QyUD6L/uvfoXnv
|
||||
ya+sPizxuYn5H/fSOzsCWjkoxzM3Kw+gt2TJhAabIKubvkYP8ucb6VzFwE96zbsF
|
||||
KGgJxlyPaPJVzArL+Iy+Uw6UfVtBEO+RS48MSci3TCtCTdyzR1nUcNxRluydBcdt
|
||||
slwP8X3aroUYNJXpeGnjArf6mijkMpMXCozZrp5LPJNV/IPwgm0dPg0LcGN73HDm
|
||||
cXzr/mPjc+kjO+/j7Wi4VzKFTLA14E62YOGObvNgQ91XB+Y4N9WCipR2XRgIhcW6
|
||||
ZQ8V9+K1CLQD87/M2uwbQUyc//TDchKhZKqBCs69N4ZaIsvldapREH9z7JjYs+zb
|
||||
KMNdnWqU
|
||||
=B7fs
|
||||
iQGzBAABCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmU6ch0ACgkQKsxtghaS
|
||||
I7kyfAwAmEzXMq+YBKcvsqk1UouG5arV7sIMNmUDsJuVETG+x7krIHXhtiTP0Jeu
|
||||
vqieu2vbchueayf/ghLJfrqcyIjnh0YFlY15WrjjpFw9aVQFHJidFad+j3unaR4G
|
||||
HISZF7zWUByDPlhWLRx1hBSDlDJ/5/uEsieKmlYOC3DK8yKOxAqUyY76aR9F5BVF
|
||||
1iuDn3RnJ5v9Hjj2kdj3GPofj1Ei70ryykjRV/lz4RZnH79xZHXmrgfAUhoznZjo
|
||||
vNpg26j0QYpcq5FWChHuqPsZAwuO1y/g7i0jmQdU4ZEg8Zb5pqunNUQjAFypOsFs
|
||||
zbwRBUc2gLu2cZRgf+Btj171lKkiFnue4ZCNyTgHnPQTZ95U5Q0WUyM1e1w9wlqw
|
||||
l+93+4DRKWIbERZuIOtYR5bmeXWFc6nNb79EefcHvxjN4CekMuTg/A5SsnMdLgXi
|
||||
GVgOZV197d71jGBuK6516a7zXcYc3VZ1mftwL2FS80Rrl/I8l1Kx+FKOPAZZamvL
|
||||
2BZ8MWDv
|
||||
=G4If
|
||||
-----END PGP SIGNATURE-----
|
||||
|
|
|
@ -1,157 +1,3 @@
|
|||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.9
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.9-1_x86-64.deb
|
||||
Size: 4399068
|
||||
MD5sum: 015dd8a8ed0f62edaa00877d3c36d092
|
||||
SHA1: b0c0a42d32851be49ac94ce95f4ca54c566d3870
|
||||
SHA256: 3eb5366fffdb0efd87a6ccc05d4ca7e2b915ca9685df96e543298f3a0b122d29
|
||||
SHA512: 6cb3d1820f8294ae1644107a5ede0f6393f164293483d3045bf1e99593a770f2261221e4640e58c1c1d2b87e6d12bab93c17d742c737a0eb14f5789cbbe5384a
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.8
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.8-1_x86-64.deb
|
||||
Size: 4352888
|
||||
MD5sum: 0667cff86ed6b1a82625400c8bf5e861
|
||||
SHA1: 7d78378c976468156b26d8bc8157a0f1e52fb6f7
|
||||
SHA256: 3f8df1c7dae865373eed30d91f397c4c9774e627b272d44fb279a6034fa6599f
|
||||
SHA512: e4a2a277035deb0614671425ff17b1a46c2e00c276c04e7f4a75d9badf584f7e3cbe7186c74b6a3e67869057004c35ef6f38a6dff54c90f0422107fb2f623b8e
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.7
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.7-1_x86-64.deb
|
||||
Size: 4350044
|
||||
MD5sum: 6638172b76ae28b10af0f9a38e1f68ce
|
||||
SHA1: 664f405af9b0a0d9e38e43de1503c5869c7b3380
|
||||
SHA256: 488e6b99f0424aad891019e81e0869e224abb69064d64cd4ca83af65cd3b7e60
|
||||
SHA512: 72831fc27012db9f62688fa0f6ef496ec1cedea2ca2d5cd26cd612431b03b18979e89d9efb34d04eb7dfc0583c6cdd67a478274fcb9887ada05bac06a87819de
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.6
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.6-1_x86-64.deb
|
||||
Size: 4385440
|
||||
MD5sum: bfaac67ebf62e3755c859822b1632e86
|
||||
SHA1: c27056a7508dd6eed2e02587d4c6d8615c588bcb
|
||||
SHA256: 2060fcb8d24b78dc18af3bb359a620e02754eb359247a22734e8b99379d02f91
|
||||
SHA512: 6a03d8bd7272298ad8846c78d94181ccc482aa0feb52ea14013e3fb2462b0c18cef72cba85df79f5bf260433408d636cddd692c4e66bd8792e495640617354ae
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.5
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.5-1_x86-64.deb
|
||||
Size: 4443908
|
||||
MD5sum: 6c37b7c0cfd0e14488e2d82505bb588a
|
||||
SHA1: b49a875c59f0da2daec40fc20643540e991b0126
|
||||
SHA256: 5c36e343d8e8766e4f677734386eebf9f6424e298eb8ce8e859383cdfa2eba4f
|
||||
SHA512: 0a8be1e75c06239ed90694f7352f524383b31bb096ca08c28039618ddff93b797aafbb43069bef9ae8cc417d4987da52c06f8b47c20c6f112cc2792226c61c5c
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.4
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.4-1_x86-64.deb
|
||||
Size: 4443768
|
||||
MD5sum: b9653e272faf0790431cc84443fb806a
|
||||
SHA1: d18ae84248773fb6c704d8ce4436673ab5b56b49
|
||||
SHA256: 5bf2b8230afc8fc3603287229cfc1bf463756526c30bb7e1e0982f07e613dd77
|
||||
SHA512: 5190f7b3b6e996a394fd82b91954fd1208a4aa6cedb16b91a64662977d221dd18bfb71c1769313c4f4ed4d0f892ea65bbc5343b0994c46ba602ce9d1244b8a88
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.3
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.3-1_x86-64.deb
|
||||
Size: 4196620
|
||||
MD5sum: 69dc7498dc16130650487e6fa823e32f
|
||||
SHA1: d5fd2a27d25610694378d90da8c6d47c7bf1f249
|
||||
SHA256: a370c1d4e887b9dc4cc1adb94517622d177f88d5f706c1a110d590a78ed6c0ba
|
||||
SHA512: a8d72695316bc9a2ba041f2fb96828c0be8ec495876cb576f1ebf3090f544477c52f9b6b8ff344cd3a09d35855d10e8080ff9edb74d0924743d7d7d28a128160
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.2
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.2-1_x86-64.deb
|
||||
Size: 4198012
|
||||
MD5sum: b34bfdb51235e1e1e580d4eca4f969a6
|
||||
SHA1: 882dab6d53469f4a6dfe951943f56ef4a8a6677d
|
||||
SHA256: d1dcc8dd685298a3fe318ad58474d3ab881804b1d9a7fc8fcd6e9725f104880d
|
||||
SHA512: 9d19b0b4f4c01d1d596435f5b8850a8b581bb775a430b863586c50569fa65f320e528671283db8563c8c6d21667af90dd78cbb9777e6e3d18abb8cd8f8a1ca24
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.1
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.1-1_x86-64.deb
|
||||
Size: 4201072
|
||||
MD5sum: 0442bd1627573a3cebac6b9db877c7c0
|
||||
SHA1: 35c2f02f36d0c87f4801c8b3267fbd1231f62b29
|
||||
SHA256: 83f3addf5e12f386784245707637efea62a2157c09e0ceff40009b1111927d79
|
||||
SHA512: abf9b53fbfc9877dbe3d705842e40364aecce4ac60e7c10ce883ed96ca484572ce6b71a9fd832380cb38c45f3526b8e993da821041bca88a35e776b6c536be09
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.8.0
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.0-1_x86-64.deb
|
||||
Size: 3975352
|
||||
MD5sum: c2d827008e62d5b30924cf806145a2cf
|
||||
SHA1: b967a6552612ee95ef12dbad8c611a55346a0053
|
||||
SHA256: 3121ff19f07befc1a0caa0c6b6f1641a2a054c73dc8b10a2b87bcc59d8544084
|
||||
SHA512: 3c99fe93d9f0f620b35b45ac2307c7299bc9f00433395934be9e5ede5efceac84bc0186c68351eb705ffaf0c13516e552277555d01fac81054ece7555da6e1ad
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
Version: 0.7.11
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.7.11-1_x86-64.deb
|
||||
Size: 3923480
|
||||
MD5sum: 20c48deedbb2957d6449442f22333b75
|
||||
SHA1: d02ea4e7bb467e451f0bc3d8039b591078ff052b
|
||||
SHA256: 57b3aec88b8d166e79d0d8bfd8deaa65dc532a3f7b14cc9da18d11afc5104332
|
||||
SHA512: afab6dbe7f36bf0069b690c20c1b1dc77daf36a2d730f4e37da7aba2e34d9d842ae34282ca73278632d511edc293f4ea05e65ff23613b11fa00baa41e59e797f
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: amd64
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,157 +1,3 @@
|
|||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.9
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.9-1_arm64.deb
|
||||
Size: 4185720
|
||||
MD5sum: 83ac54a4f92778cf92e1816ce8b334ab
|
||||
SHA1: a79bbc231448146adb7fca3d76ee4a398e3b5136
|
||||
SHA256: a6a13a4cd43fd29880671363fbbbdcc60f69df75bfa9a60445f3b9f37a840355
|
||||
SHA512: 398ede97fc6ae03597cb04042a5c3c7e54b5d6fbbb20f10fa45748c1fc90f2b52ab7d628d593e528f474038ca0e4e0335e0d89fea53f5d2a8171a724f82f9cc7
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.8
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.8-1_arm64.deb
|
||||
Size: 4135116
|
||||
MD5sum: 8702c32cf6e691ad0cec18fd29507527
|
||||
SHA1: 8918872316fbaabca311be8469b4d959be27aa44
|
||||
SHA256: d2fab2dc819bb396463f5654668893bf1aad71a76dfc61fbb94f636c1f91d46d
|
||||
SHA512: 6e57cedeb79e7fd4790cc765a56253b06ff8115ac967781e0b578bd87ab11619a448a6329672736f8c273917c059368100839679aaaa44a04e68b34945b73012
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.7
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.7-1_arm64.deb
|
||||
Size: 4140908
|
||||
MD5sum: 088ca9567e2644df851d5794942e0d75
|
||||
SHA1: c3b7728bff45f63302e8050f686998fd57280aee
|
||||
SHA256: 943a1fbefc77a8336da261404a66e3fa76a083a795e58cc1272a76417e100846
|
||||
SHA512: f120bf32a46fec899d88673f346b5d3c2f5495c490cf0e2ea33150f75db231697a1b0c57020322e2c89befe45f00f20aefa6b7f483695bbc77911a1982707365
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.6
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.6-1_arm64.deb
|
||||
Size: 4146672
|
||||
MD5sum: ef88bb9251a30b4214a13bec0b8d1075
|
||||
SHA1: 471ba6b13e33aa98eba2f2beaf2a54a0a4c6af3e
|
||||
SHA256: 262e13f9707e342fd1b05750b2db4317967c1bb38f3998c2eb510779d3327b4d
|
||||
SHA512: 3b480b0e91db79768182924126bcde40cdd3fbfee85946f4baf15d874b296b797c840c70be8ba45c9c9090769cf6992277d14825778c543fe1fd5dadcda481f4
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.5
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.5-1_arm64.deb
|
||||
Size: 4165500
|
||||
MD5sum: 280271aca6e85edfeb1a7f8ac17adb77
|
||||
SHA1: fa6c45178c1575d051792315f8d334c980cedb1b
|
||||
SHA256: 3215d43047cd031c8cde8c6e4f8e188a1c3eaa9cc6757252f7e806cf32f1d062
|
||||
SHA512: 983bca58e1f8fef456c1ca4f7cfe579afa12a8d404d7e5e41b072be137ac02c6d09483a0acb4d350621a7daaf0eccf2c525d51c77501185d5ba0bb3ab72acc72
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.4
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.4-1_arm64.deb
|
||||
Size: 4220028
|
||||
MD5sum: 96119d3cbeec00b13478f24b112fed1d
|
||||
SHA1: e7addd7f2f5048e1f1591d509c865ca2c372a348
|
||||
SHA256: 7a7c1bf0b80d6d0f7894759dc961b4a91c576d68a3bf4ac4c11fd10b5832ca7e
|
||||
SHA512: 8bfa5befd0e6a5c52c6ccb9cfbbeeba491bcad6d1f76747eee560f5a571558af2f285ae20af2c185304f35a71f15a85569f57294d2dbc8368e5ff2bcad67bcc1
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.3
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.3-1_arm64.deb
|
||||
Size: 4002868
|
||||
MD5sum: e510c3b070753e30cad5f6ca8b56b322
|
||||
SHA1: ba3f93210c67807dde61ff39daae52d4217e43df
|
||||
SHA256: f9a823c6f90187e5cd9e041d25bc8458bd533204ae34a19249c671369def0be5
|
||||
SHA512: c9c9ba515a599b0116967327159fc5fd1217f8758390d24701af0231e43b5925ba2fda4cde8e172fd823fe7f30200d24158d7aa78eb5e4a2fb306db006ef182a
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.2
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.2-1_arm64.deb
|
||||
Size: 3999260
|
||||
MD5sum: 9fb72255949dbee53952063ba6fbbd34
|
||||
SHA1: 4e91f9b0cdab29cc6f1c40344b83e1df4cdf0acb
|
||||
SHA256: 081d2fb628f7f6efeba22a201ab902dcd5606c495f39ef256740527b2cb48a47
|
||||
SHA512: a849b31e02e07aa1b13bbab8bb75a9d1aad9a796177b229b5fa6e02a7c6efa31312eafed68537dea4f03c1d857b7958914d8660ce844cf696e5e85eadb8c2ced
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.1
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.1-1_arm64.deb
|
||||
Size: 4011192
|
||||
MD5sum: 89150b0cc67d05556e74c268aebdb384
|
||||
SHA1: 99f5739210330f73d2ac373ac6d2f8714b8d3a8c
|
||||
SHA256: 717530590a4558cd28adc13bc15f1d6f739aca589bdc8826178278758c1aed4a
|
||||
SHA512: 63dcf4f8243841bda4c8282d3fdcf64582177e9ce07046ded0a215d0cef0010fa98033a6e1b7fd5cff048973fbef8cf2d1907020895196ac150c0c6383950398
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.8.0
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.8.0-1_arm64.deb
|
||||
Size: 3799572
|
||||
MD5sum: 36139d1227a9300cb7a9d693052ccae2
|
||||
SHA1: 4ff20daa7f9457483b50422f32bcfcaa0501648e
|
||||
SHA256: fdf183ff54fe027ebf8a3bc00d90d0ac54336cac8b1885b3f6c5081bf2588821
|
||||
SHA512: 5fd724830ee228b652e9ac065aea40815a18134cedd74c23ac0d8f65d0ae0163448e7b4ba8a1e19c5eeb6dafb46f6190b0d811f41cd2c6f8b83f8bb5def774a4
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
Version: 0.7.11
|
||||
Depends: glibc-source
|
||||
Filename: pool/main/l/lune/lune-0.7.11-1_arm64.deb
|
||||
Size: 3768208
|
||||
MD5sum: 3ca9e27830cc2b3067b7762d76369bc3
|
||||
SHA1: 6864f2f5db06330fc66c7122772c0ddbe37b2118
|
||||
SHA256: 0935d8ddd0048f28d0bfdacc63996e292500ee73f48f0aa678acebf9c81ec2ea
|
||||
SHA512: bdfd035dc813ce196cc56f90f8f8f531a1d48856f8a05c7f8ee84b758e8d7068b19eb915588b20ba2d0dcd99b6797272e1898e050cc6750227bf6b41cb1d87b8
|
||||
Description: A standalone Luau script runtime
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
|
||||
Package: lune
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Architecture: arm64
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.7.11
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.7.11
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.0
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.0
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.1
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.1
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.2
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.2
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.3
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.3
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.4
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.4
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.5
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.5
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.6
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: arm64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.6
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue