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.11" have entirely different histories.
119 changed files with 198 additions and 2304 deletions
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 5040deddb6b10515e2cd577aa193b094911d78ae
|
|
@ -1 +1 @@
|
|||
5d1401c
|
||||
5040ded
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.8.9
|
||||
v0.7.11
|
||||
|
|
|
@ -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.11
|
||||
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.11/lune-0.7.11-linux-x86_64.zip
|
||||
sha256sums_x86_64 = 83035b5bddf925b03b905d641182bec3bee01fc661a59f201d814cf88e4e0189
|
||||
source_aarch64 = https://github.com/filiptibell/lune/releases/download/v0.7.11/lune-0.7.11-linux-aarch64.zip
|
||||
sha256sums_aarch64 = e627b82bc7a087f5abc20c3e4b7f754242998359cfdb984861c417edbc20c210
|
||||
|
||||
pkgname = lune-bin
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
|
||||
pkgname=lune-bin
|
||||
pkgver=0.8.9
|
||||
pkgver=0.7.11
|
||||
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=('83035b5bddf925b03b905d641182bec3bee01fc661a59f201d814cf88e4e0189')
|
||||
sha256sums_aarch64=('e627b82bc7a087f5abc20c3e4b7f754242998359cfdb984861c417edbc20c210')
|
||||
|
||||
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.11.r0.g507d88e
|
||||
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.11.r0.g507d88e
|
||||
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.11
|
||||
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.11.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v0.7.11.tar.gz
|
||||
sha256sums = ceb7832821a15d36bf5c2821f18dfa07d7d597b0699e2e3f9918115b8baa733b
|
||||
|
||||
pkgname = lune
|
||||
|
|
|
@ -1,41 +1,38 @@
|
|||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
|
||||
pkgname=lune
|
||||
pkgver=0.8.9
|
||||
pkgrel=2
|
||||
pkgver=0.7.11
|
||||
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=('ceb7832821a15d36bf5c2821f18dfa07d7d597b0699e2e3f9918115b8baa733b')
|
||||
|
||||
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: Wed, 1 Nov 2023 11:17:56 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
|
||||
ff150d20d1017f4acc0148340a3d874e 3966 main/binary-amd64/Packages
|
||||
5fe5486eda3499fae3021ab40e00d62b 1575 main/binary-amd64/Packages.bz2
|
||||
eb4855320ba258b7ecbc713d0822d6f8 1450 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
|
||||
2ab30d8d7ec9e2603f5c6130663427ac 3959 main/binary-arm64/Packages
|
||||
8db68e767c26c37f95663b0cf9059842 1573 main/binary-arm64/Packages.bz2
|
||||
f62b6530dbfdfd235e3f5921438bfbc4 1442 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
|
||||
963b071362874a9020c651c73437044c652c68b4 3966 main/binary-amd64/Packages
|
||||
53b1b047bfb1204c2c0f5fbc426adbd77f934fcc 1575 main/binary-amd64/Packages.bz2
|
||||
a3b3fb9945de63affc307bc58491c7913097bf3b 1450 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
|
||||
8de077f3abe63e9741e5bc28c40f448d48242d06 3959 main/binary-arm64/Packages
|
||||
4dce4b4ed42c84e2663f3efec10805ff965e0ae0 1573 main/binary-arm64/Packages.bz2
|
||||
56811fe871fe7d8af9fa72e8323cf58a91f70ca2 1442 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
|
||||
55054df951508fdbd393c901bbe457efdef28da2284c0cfe14319e619761d6e3 3966 main/binary-amd64/Packages
|
||||
d1c92f583bfbd189f3c97ed788476df4edb563c9fc3671d46a3827801223261c 1575 main/binary-amd64/Packages.bz2
|
||||
b4f33bd1e19ac66c74da5cdfcde34674a21724172b6a7724f3ab9849c8e9b277 1450 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
|
||||
ddf772c8ed806c85dccfc054f9ba6533594b33b65388bf8bb94e77cf4b6e3727 3959 main/binary-arm64/Packages
|
||||
c68d07f6de62c260ebd6beaccc67d69f48f627bba7275d8f7d59db17e8f70119 1573 main/binary-arm64/Packages.bz2
|
||||
03c3fd65243524302365fadd8df86b0d90432ae6e6745ae00dd1dcdb766dd062 1442 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
|
||||
c4ebd86f96e1c2a3e6411674abcf812e2817f0fe740420cd4cdafffd938f7c2975199043b920c532fcef8ca1e296d275b21f83c1f8a57559c5e5f0a33353e8ce 3966 main/binary-amd64/Packages
|
||||
7721491e6bb3c195dcbb073f916784842deb8903af009cc0f35ff03d051ba203df29463df0f80c709353b7b38efd3ea72e5914112df003e834b77868904b9b33 1575 main/binary-amd64/Packages.bz2
|
||||
22508ca1d759864ef4a68585bc43bbcb2615538d7c98510e57b87b600ee15141cca6cd53400596072c6bc1b48ae573c28bc0884ff2c7f677c9db3bcd7a0a41ff 1450 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
|
||||
c4f638e6ad797ab5701ed905218b14a2763dd45d229da9f39c8f8e704b251d8a78915021589767b5c764171a876b4ef192c416bd916af108eebed788ffdd8a76 3959 main/binary-arm64/Packages
|
||||
3905b59ee96131067d2f325062e57676ca6825327fe4e0b2eaf41562ed2b99c490e3fe510a441da7ef5529a8c81210677338dc74e08cb60dab631f55b09cf923 1573 main/binary-arm64/Packages.bz2
|
||||
5441f0f3ee165ceb1add878a673f9175cb9dc3f0bd2e977ef86b8ca27aeab37e4582717e229fabac4109df1d696667cbf02feca8f51fe747bb1b489c12dbc971 1442 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/ftNODLwKsxtghaSI7kFAmVCM+QACgkQKsxtghaS
|
||||
I7m2pAv/b/t11NyiUxRfnz767mdGMLOYgSwINl+sbODRU8CdEHXYLyr2WfsiYXYb
|
||||
bLxpP2uqybQuXf5+rpUd/I19EULf3NHBS1U0jEKEKG5oUpi4SoGHb3UxfethNi7s
|
||||
SLBJszJUF8nJt4LJgsw+xtltJH8VDig8PlhUg7LPgrIPoO8XPsfTOLZ+9KM66NqI
|
||||
LYUzI4fsEEEJAcyEW/F10baCqr0SExa79SndoCsJz+pArKimfLe0ZOeXYJ+ajH5K
|
||||
bQG1nwyS0Exxl03mqtebaiLmt4jHLg2k/sRKdZBooiveD9k/a/oKAxSKEn3ojHOm
|
||||
SiRcB7GS9N8GVjKVVsYMD0WD+uikX5yJ2l2b9c0F5unim8eUX5PygOHwGbu5mzEU
|
||||
1XPE0++0imOJS7JoRuEjv5qvgrIqBSkBDrDaP9h2heu/ZC4m2/7yuGZNQAIKI0eo
|
||||
0JyRnNutX1YUIjpm/4GaAnasmAQM8oc9M0CHNGNgruab/ZYRlMru8V9sh+oh59pt
|
||||
QOt95cHz
|
||||
=nFKz
|
||||
-----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: Wed, 1 Nov 2023 11:17:56 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
|
||||
ff150d20d1017f4acc0148340a3d874e 3966 main/binary-amd64/Packages
|
||||
5fe5486eda3499fae3021ab40e00d62b 1575 main/binary-amd64/Packages.bz2
|
||||
eb4855320ba258b7ecbc713d0822d6f8 1450 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
|
||||
2ab30d8d7ec9e2603f5c6130663427ac 3959 main/binary-arm64/Packages
|
||||
8db68e767c26c37f95663b0cf9059842 1573 main/binary-arm64/Packages.bz2
|
||||
f62b6530dbfdfd235e3f5921438bfbc4 1442 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
|
||||
963b071362874a9020c651c73437044c652c68b4 3966 main/binary-amd64/Packages
|
||||
53b1b047bfb1204c2c0f5fbc426adbd77f934fcc 1575 main/binary-amd64/Packages.bz2
|
||||
a3b3fb9945de63affc307bc58491c7913097bf3b 1450 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
|
||||
8de077f3abe63e9741e5bc28c40f448d48242d06 3959 main/binary-arm64/Packages
|
||||
4dce4b4ed42c84e2663f3efec10805ff965e0ae0 1573 main/binary-arm64/Packages.bz2
|
||||
56811fe871fe7d8af9fa72e8323cf58a91f70ca2 1442 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
|
||||
55054df951508fdbd393c901bbe457efdef28da2284c0cfe14319e619761d6e3 3966 main/binary-amd64/Packages
|
||||
d1c92f583bfbd189f3c97ed788476df4edb563c9fc3671d46a3827801223261c 1575 main/binary-amd64/Packages.bz2
|
||||
b4f33bd1e19ac66c74da5cdfcde34674a21724172b6a7724f3ab9849c8e9b277 1450 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
|
||||
ddf772c8ed806c85dccfc054f9ba6533594b33b65388bf8bb94e77cf4b6e3727 3959 main/binary-arm64/Packages
|
||||
c68d07f6de62c260ebd6beaccc67d69f48f627bba7275d8f7d59db17e8f70119 1573 main/binary-arm64/Packages.bz2
|
||||
03c3fd65243524302365fadd8df86b0d90432ae6e6745ae00dd1dcdb766dd062 1442 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
|
||||
c4ebd86f96e1c2a3e6411674abcf812e2817f0fe740420cd4cdafffd938f7c2975199043b920c532fcef8ca1e296d275b21f83c1f8a57559c5e5f0a33353e8ce 3966 main/binary-amd64/Packages
|
||||
7721491e6bb3c195dcbb073f916784842deb8903af009cc0f35ff03d051ba203df29463df0f80c709353b7b38efd3ea72e5914112df003e834b77868904b9b33 1575 main/binary-amd64/Packages.bz2
|
||||
22508ca1d759864ef4a68585bc43bbcb2615538d7c98510e57b87b600ee15141cca6cd53400596072c6bc1b48ae573c28bc0884ff2c7f677c9db3bcd7a0a41ff 1450 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
|
||||
c4f638e6ad797ab5701ed905218b14a2763dd45d229da9f39c8f8e704b251d8a78915021589767b5c764171a876b4ef192c416bd916af108eebed788ffdd8a76 3959 main/binary-arm64/Packages
|
||||
3905b59ee96131067d2f325062e57676ca6825327fe4e0b2eaf41562ed2b99c490e3fe510a441da7ef5529a8c81210677338dc74e08cb60dab631f55b09cf923 1573 main/binary-arm64/Packages.bz2
|
||||
5441f0f3ee165ceb1add878a673f9175cb9dc3f0bd2e977ef86b8ca27aeab37e4582717e229fabac4109df1d696667cbf02feca8f51fe747bb1b489c12dbc971 1442 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/ftNODLwKsxtghaSI7kFAmVCM+QACgkQKsxtghaS
|
||||
I7nuxwv7BLyuR1xtBnXrcgOLUqgeiunSxEhuoKoQA+EZ0H+KktC5p3KlxPBmQjvD
|
||||
gjImGZza5H8lIsiDiHTuyjwe5qzgC93XQn5KjwwQn+BYxRe/EqePNKoNvvL4bDZK
|
||||
opdTFfOz7HteUYaESUqr/kwTZHkV1NQ98SMAnmBTzuvCuZ+mpVjGYf03NsYjAwGf
|
||||
/+IcTc5joVVjCO6dzkbKs8ouztxdO8ij4hnD8xQTHayu7nM+IkAv8auRuhbqD8bO
|
||||
P4zMFcp4gJfjyMwdl9ShKOzKMmbX1DnFdMG0E8ooHp/DUedkCbgxTwaB+zUxCq6D
|
||||
RM3b0NxUPZouUxprMmnLoZ4hsOnTgR9m8ASXOLpuNHt5o9kQdseYOO4c8aDS5tyl
|
||||
vZ4slMuRH4deJn2FWiKFvNAwfxfspjQleWqCb8N0UgA1T+4FSAbz9NxFtgGLoF5M
|
||||
WB34oVtvEYaAMa9BahucnG2FVjCOdrGoK5Aikx8c7c3EATyJXdefhd2pLrZC+Oiv
|
||||
R3HN5MLo
|
||||
=gWSN
|
||||
-----END PGP SIGNATURE-----
|
||||
|
|
|
@ -1,143 +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
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,143 +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
|
||||
|
|
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.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.
|
@ -1,7 +0,0 @@
|
|||
Package: lune
|
||||
Version: 0.8.7
|
||||
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.7
|
||||
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.8
|
||||
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.8
|
||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||
Depends: glibc-source
|
||||
Architecture: amd64
|
||||
Homepage: http://lune-org.github.io/docs
|
||||
Description: A standalone Luau script runtime
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue