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.8.0" have entirely different histories.
110 changed files with 183 additions and 2247 deletions
2
.github/workflows/android.yaml
vendored
2
.github/workflows/android.yaml
vendored
|
@ -1,6 +1,8 @@
|
||||||
name: Build for Android
|
name: Build for Android
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
2
.github/workflows/appimage.yaml
vendored
2
.github/workflows/appimage.yaml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: ["x86_64"]
|
arch: ["x86_64", "aarch64"]
|
||||||
|
|
||||||
name: Build the AppImage
|
name: Build the AppImage
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
3
.github/workflows/aur.yaml
vendored
3
.github/workflows/aur.yaml
vendored
|
@ -1,6 +1,9 @@
|
||||||
name: Publish to AUR
|
name: Publish to AUR
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "*"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
@ -10,7 +10,6 @@ For more information on lune, see [lune-org/lune](https://github.com/lune-org/lu
|
||||||
| Scoop |  |
|
| Scoop |  |
|
||||||
| AppImage |  |
|
| AppImage |  |
|
||||||
| APT |  |
|
| APT |  |
|
||||||
| COPR | [Project](https://copr.fedorainfracloud.org/coprs/devcomp/lune/) |
|
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
2
lune-src
2
lune-src
|
@ -1 +1 @@
|
||||||
Subproject commit 5d1401cdf611cc9f215f03bdf16ada0e77717edf
|
Subproject commit a52dfc1483f9acfe3661c4eafdf37beb8fef4545
|
|
@ -1 +1 @@
|
||||||
5d1401c
|
a52dfc1
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.8.9
|
v0.8.1
|
||||||
|
|
|
@ -3,12 +3,10 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd lune-src
|
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
|
[[ $(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
|
wget https://dl.google.com/android/repository/android-ndk-r25c-linux.zip && unzip android-ndk-*.zip
|
||||||
mv android-ndk-r25c $HOME/android-ndk
|
mv android-ndk-r25c $HOME/android-ndk
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = lune-bin
|
pkgbase = lune-bin
|
||||||
pkgdesc = [Precompiled Binaries] A standalone Luau script runtime
|
pkgdesc = [Precompiled Binaries] A standalone Luau script runtime
|
||||||
pkgver = 0.8.9
|
pkgver = 0.8.1
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://lune-org.github.io/docs
|
url = https://lune-org.github.io/docs
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
|
@ -9,9 +9,9 @@ pkgbase = lune-bin
|
||||||
depends = glibc
|
depends = glibc
|
||||||
provides = lune
|
provides = lune
|
||||||
conflicts = lune
|
conflicts = lune
|
||||||
source_x86_64 = https://github.com/filiptibell/lune/releases/download/v0.8.9/lune-0.8.9-linux-x86_64.zip
|
source_x86_64 = https://github.com/filiptibell/lune/releases/download/v0.8.1/lune-0.8.1-linux-x86_64.zip
|
||||||
sha256sums_x86_64 = eb30bdde967ba97951a4e0cafa0a197396ddd68dfc58e1b60349129c178eee8b
|
sha256sums_x86_64 = a4ae71b81cafc04a2ecd632381b06609cbedd7d5f479457fea60388afc0e9e27
|
||||||
source_aarch64 = https://github.com/filiptibell/lune/releases/download/v0.8.9/lune-0.8.9-linux-aarch64.zip
|
source_aarch64 = https://github.com/filiptibell/lune/releases/download/v0.8.1/lune-0.8.1-linux-aarch64.zip
|
||||||
sha256sums_aarch64 = 913b07e1c42b8f8fc9e11a1f9d8b07e903e97efcf42b109d60326e85f5cc3cb7
|
sha256sums_aarch64 = 1313640a246553e9c72fd1983bd9a764a1739459017ed51a44d411fe7dbd1e0a
|
||||||
|
|
||||||
pkgname = lune-bin
|
pkgname = lune-bin
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||||
|
|
||||||
pkgname=lune-bin
|
pkgname=lune-bin
|
||||||
pkgver=0.8.9
|
pkgver=0.8.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="[Precompiled Binaries] A standalone Luau script runtime"
|
pkgdesc="[Precompiled Binaries] A standalone Luau script runtime"
|
||||||
arch=(x86_64 aarch64)
|
arch=(x86_64 aarch64)
|
||||||
|
@ -13,9 +13,9 @@ provides=(lune)
|
||||||
conflicts=(lune)
|
conflicts=(lune)
|
||||||
source_x86_64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-x86_64.zip")
|
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")
|
source_aarch64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-aarch64.zip")
|
||||||
sha256sums_x86_64=('eb30bdde967ba97951a4e0cafa0a197396ddd68dfc58e1b60349129c178eee8b')
|
sha256sums_x86_64=('a4ae71b81cafc04a2ecd632381b06609cbedd7d5f479457fea60388afc0e9e27')
|
||||||
sha256sums_aarch64=('913b07e1c42b8f8fc9e11a1f9d8b07e903e97efcf42b109d60326e85f5cc3cb7')
|
sha256sums_aarch64=('1313640a246553e9c72fd1983bd9a764a1739459017ed51a44d411fe7dbd1e0a')
|
||||||
|
|
||||||
package() {
|
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
|
pkgbase = lune-git
|
||||||
pkgdesc = [Latest Git Commit] A standalone Luau script runtime
|
pkgdesc = [Latest Git Commit] A standalone Luau script runtime
|
||||||
pkgver = 0.8.9.r0.g010cd36
|
pkgver = 0.8.1.r0.ga52dfc1
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://lune-org.github.io/docs
|
url = https://lune-org.github.io/docs
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
arch = aarch64
|
arch = aarch64
|
||||||
license = MPL2
|
license = MPL2
|
||||||
makedepends = cargo
|
makedepends = cargo
|
||||||
makedepends = cmake
|
|
||||||
makedepends = git
|
makedepends = git
|
||||||
depends = glibc
|
depends = glibc
|
||||||
provides = lune
|
provides = lune
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||||
|
|
||||||
pkgname=lune-git
|
pkgname=lune-git
|
||||||
pkgver=0.8.9.r0.g010cd36
|
pkgver=0.8.1.r0.ga52dfc1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="[Latest Git Commit] A standalone Luau script runtime"
|
pkgdesc="[Latest Git Commit] A standalone Luau script runtime"
|
||||||
arch=(x86_64 aarch64)
|
arch=(x86_64 aarch64)
|
||||||
|
@ -9,7 +9,7 @@ conflicts=(lune lune-bin)
|
||||||
url="https://lune-org.github.io/docs"
|
url="https://lune-org.github.io/docs"
|
||||||
license=(MPL2)
|
license=(MPL2)
|
||||||
depends=(glibc)
|
depends=(glibc)
|
||||||
makedepends=(cargo cmake git)
|
makedepends=(cargo git)
|
||||||
provides=(lune)
|
provides=(lune)
|
||||||
conflicts=(lune)
|
conflicts=(lune)
|
||||||
options=(!lto)
|
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
|
pkgbase = lune
|
||||||
pkgdesc = [Latest Stable Source] A standalone Luau script runtime
|
pkgdesc = [Latest Stable Source] A standalone Luau script runtime
|
||||||
pkgver = 0.8.9
|
pkgver = 0.8.1
|
||||||
pkgrel = 2
|
pkgrel = 1
|
||||||
url = https://lune-org.github.io/docs
|
url = https://lune-org.github.io/docs
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
arch = aarch64
|
arch = aarch64
|
||||||
license = MPL2
|
license = MPL2
|
||||||
makedepends = cargo
|
makedepends = cargo
|
||||||
makedepends = cmake
|
|
||||||
depends = glibc
|
depends = glibc
|
||||||
conflicts = lune-git
|
conflicts = lune-git
|
||||||
conflicts = lune-bin
|
conflicts = lune-bin
|
||||||
options = !lto
|
options = !lto
|
||||||
source = lune-0.8.9.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v0.8.9.tar.gz
|
source = lune-0.8.1.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v0.8.1.tar.gz
|
||||||
sha256sums = b37bdf53dece55037ba00d82fe33a9ace9777cbb42b4d8d6602bcf704c9e1c59
|
sha256sums = 10d9b3ae927d77307bb057fd8ec0ff396307ee9826c240ba9779fdeeb2f2eed2
|
||||||
|
|
||||||
pkgname = lune
|
pkgname = lune
|
||||||
|
|
|
@ -1,41 +1,38 @@
|
||||||
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
# Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||||
|
|
||||||
pkgname=lune
|
pkgname=lune
|
||||||
pkgver=0.8.9
|
pkgver=0.8.1
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
pkgdesc="[Latest Stable Source] A standalone Luau script runtime"
|
pkgdesc="[Latest Stable Source] A standalone Luau script runtime"
|
||||||
arch=(x86_64 aarch64)
|
arch=(x86_64 aarch64)
|
||||||
conflicts=(lune-git lune-bin)
|
conflicts=(lune-git lune-bin)
|
||||||
url="https://lune-org.github.io/docs"
|
url="https://lune-org.github.io/docs"
|
||||||
license=(MPL2)
|
license=(MPL2)
|
||||||
depends=(glibc)
|
depends=(glibc)
|
||||||
makedepends=(cargo cmake)
|
makedepends=(cargo)
|
||||||
options=(!lto)
|
options=(!lto)
|
||||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v${pkgver}.tar.gz")
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/filiptibell/lune/archive/refs/tags/v${pkgver}.tar.gz")
|
||||||
sha256sums=('b37bdf53dece55037ba00d82fe33a9ace9777cbb42b4d8d6602bcf704c9e1c59')
|
sha256sums=('10d9b3ae927d77307bb057fd8ec0ff396307ee9826c240ba9779fdeeb2f2eed2')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd "lune-${pkgver}"
|
cd "lune-${pkgver}"
|
||||||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
|
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "lune-${pkgver}"
|
cd "lune-${pkgver}"
|
||||||
export RUSTUP_TOOLCHAIN=stable
|
export RUSTUP_TOOLCHAIN=stable
|
||||||
export CARGO_TARGET_DIR=target
|
export CARGO_TARGET_DIR=target
|
||||||
cargo build --frozen --release --all-features
|
cargo build --frozen --release --all-features
|
||||||
}
|
}
|
||||||
|
|
||||||
check() {
|
check() {
|
||||||
cd lune-${pkgver}
|
cd lune-${pkgver}
|
||||||
export RUSTUP_TOOLCHAIN=stable
|
export RUSTUP_TOOLCHAIN=stable
|
||||||
cargo test --frozen --all-features -- --test-threads 1 || (
|
cargo test --frozen --all-features -- --test-threads 1 || (EC=$?; if [ $EC -ne 0 ]; then exit 0; fi)
|
||||||
EC=$?
|
|
||||||
if [ $EC -ne 0 ]; then exit 0; fi
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "lune-${pkgver}"
|
cd "lune-${pkgver}"
|
||||||
install -Dm755 -t ${pkgdir}/usr/bin target/release/lune
|
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
|
Label: . bookworm
|
||||||
Suite: bookworm
|
Suite: bookworm
|
||||||
Codename: bookworm
|
Codename: bookworm
|
||||||
Date: Tue, 8 Oct 2024 09:11:05 UTC
|
Date: Sun, 14 Jan 2024 17:23:32 UTC
|
||||||
Architectures: amd64 arm64
|
Architectures: amd64 arm64
|
||||||
Components: main
|
Components: main
|
||||||
Description: Generated by aptly
|
Description: Generated by aptly
|
||||||
|
@ -18,13 +18,13 @@ MD5Sum:
|
||||||
21e95effa741b01ff1f528f699193934 62 main/Contents-amd64.gz
|
21e95effa741b01ff1f528f699193934 62 main/Contents-amd64.gz
|
||||||
bf473f9f2315fe4d0af42e32abe3828e 32 main/Contents-arm64
|
bf473f9f2315fe4d0af42e32abe3828e 32 main/Contents-arm64
|
||||||
21e95effa741b01ff1f528f699193934 62 main/Contents-arm64.gz
|
21e95effa741b01ff1f528f699193934 62 main/Contents-arm64.gz
|
||||||
58f387bbfc261b50eabd763f46dcdc76 9626 main/binary-amd64/Packages
|
22577288edcca86ca35a39efadfd458a 4532 main/binary-amd64/Packages
|
||||||
4db1093752583575edb57e75572826b7 3218 main/binary-amd64/Packages.bz2
|
02449728dde68daf17ea5d04f8fecba4 1738 main/binary-amd64/Packages.bz2
|
||||||
767f7c08d3f5e22fbf021b0677cc7c1e 3092 main/binary-amd64/Packages.gz
|
edbdd28851ef84dbd6760de0a988d462 1609 main/binary-amd64/Packages.gz
|
||||||
10fa9c1021a44a2b98f1134663f2c4fe 107 main/binary-amd64/Release
|
10fa9c1021a44a2b98f1134663f2c4fe 107 main/binary-amd64/Release
|
||||||
d906fb57caf2b1ae45945774fab085d5 9609 main/binary-arm64/Packages
|
96dae28ec57597df1af184dbfa63e194 4524 main/binary-arm64/Packages
|
||||||
aa61bcf19c12bdf1f2be952072130246 3189 main/binary-arm64/Packages.bz2
|
04b7c777b0dd9949cce2357fed2c6e04 1730 main/binary-arm64/Packages.bz2
|
||||||
c2f873ada69b30933179bc1fdfc79b3e 3077 main/binary-arm64/Packages.gz
|
db4c856995d173f0258757e6961c3838 1606 main/binary-arm64/Packages.gz
|
||||||
e457aeaf5fe929cccaefa81fb8d8e0b3 107 main/binary-arm64/Release
|
e457aeaf5fe929cccaefa81fb8d8e0b3 107 main/binary-arm64/Release
|
||||||
SHA1:
|
SHA1:
|
||||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 Contents-amd64
|
a91de688e42e55f270c5f7947a51f474b575b67b 32 Contents-amd64
|
||||||
|
@ -35,13 +35,13 @@ SHA1:
|
||||||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-amd64.gz
|
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-amd64.gz
|
||||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 main/Contents-arm64
|
a91de688e42e55f270c5f7947a51f474b575b67b 32 main/Contents-arm64
|
||||||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-arm64.gz
|
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-arm64.gz
|
||||||
eec16ae99a87c628c51b493c3e2039141ba76a29 9626 main/binary-amd64/Packages
|
ade31c056ff26cda3f4d9e8856f43314078161dc 4532 main/binary-amd64/Packages
|
||||||
69dfc7633dcbb2b4f02acc5550152da70e27617d 3218 main/binary-amd64/Packages.bz2
|
9aaf3c0da19535bef54d027e9c2f567aa130b899 1738 main/binary-amd64/Packages.bz2
|
||||||
8de5718b1e598dc7360e8213fd6155fece324e7e 3092 main/binary-amd64/Packages.gz
|
d8412bca4750049cf4e0387d6b51fdd4fb685e53 1609 main/binary-amd64/Packages.gz
|
||||||
269a2515815f5030bf3af40a7c3eec3e0e2052ee 107 main/binary-amd64/Release
|
269a2515815f5030bf3af40a7c3eec3e0e2052ee 107 main/binary-amd64/Release
|
||||||
764c17a3ada590367c7b5ee40080c3dc974a0668 9609 main/binary-arm64/Packages
|
098ded4376785c3490cb7afb1f689139481ad19c 4524 main/binary-arm64/Packages
|
||||||
803d015d90f1e71ab0846ed3d35cf6c5bc9eb0b4 3189 main/binary-arm64/Packages.bz2
|
22ef59e5ed9d828ad46adb3027a6c018b9a1b2b6 1730 main/binary-arm64/Packages.bz2
|
||||||
61fbe01cf2bba2655d2f5c7d1a983b929323e138 3077 main/binary-arm64/Packages.gz
|
0f1e14a4975ccaf4fbf4960f79ceaaec1ac3699e 1606 main/binary-arm64/Packages.gz
|
||||||
2389623756acc2e410d5c6d8596c7d3c248eec5e 107 main/binary-arm64/Release
|
2389623756acc2e410d5c6d8596c7d3c248eec5e 107 main/binary-arm64/Release
|
||||||
SHA256:
|
SHA256:
|
||||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 Contents-amd64
|
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 Contents-amd64
|
||||||
|
@ -52,13 +52,13 @@ SHA256:
|
||||||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-amd64.gz
|
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-amd64.gz
|
||||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 main/Contents-arm64
|
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 main/Contents-arm64
|
||||||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-arm64.gz
|
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-arm64.gz
|
||||||
855b78edfcc8f8757d94ae565bf7afbdd913a85971cfd4959bde9815bbffc350 9626 main/binary-amd64/Packages
|
1da8975387c2f4aaeef76373e722ee353ed2ef1b7ac6ccef82138308cf880a4c 4532 main/binary-amd64/Packages
|
||||||
f97313cfe0cf747563d03e698fd0e830e9bfe60c33abaab21a3add9009391a84 3218 main/binary-amd64/Packages.bz2
|
771f602ae46208adabee0d722e06f329c6d7352d35286f9b3ccafdbe3f8131d0 1738 main/binary-amd64/Packages.bz2
|
||||||
06b81109cdd298e6d7f3d203878fe33d3688a6124b0ce2534fb89f0cf3550199 3092 main/binary-amd64/Packages.gz
|
e15ef9abbb3af0775318108298081f87782ed4214cf55c6cb26abb909fc2630f 1609 main/binary-amd64/Packages.gz
|
||||||
0a3b95a9243e294ba621ef500542995de72ee6234e5d893eb03a52dafea4e21d 107 main/binary-amd64/Release
|
0a3b95a9243e294ba621ef500542995de72ee6234e5d893eb03a52dafea4e21d 107 main/binary-amd64/Release
|
||||||
fd6f84316ea3c47c20da88f7f88518441976300ab5e9bcc75bfa6a57fb74a14b 9609 main/binary-arm64/Packages
|
932214bf584405e48b80d7db23f703d0cf7daed79fecb628c1c8550a11377fd5 4524 main/binary-arm64/Packages
|
||||||
36436fb8ca9a2772fd1827de7cb442c92cf786686a508d0e98e991ecd861ebe9 3189 main/binary-arm64/Packages.bz2
|
b6499128064cfcc9fffb68ad96881f3d8db327185e24e4303a629053f0654a50 1730 main/binary-arm64/Packages.bz2
|
||||||
ca407505e79fa89c786ca1dcb2e18d15afad2ff14f74497c0896f4829f3c4b56 3077 main/binary-arm64/Packages.gz
|
6ff120c064dadc80a9ec08342927e9b096464790f5df3294eae4d6b4419efc73 1606 main/binary-arm64/Packages.gz
|
||||||
dbe6441a0ab35858d6beb741cc4a35ee48f26cafb140b1f0a4b8b6075279522b 107 main/binary-arm64/Release
|
dbe6441a0ab35858d6beb741cc4a35ee48f26cafb140b1f0a4b8b6075279522b 107 main/binary-arm64/Release
|
||||||
SHA512:
|
SHA512:
|
||||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 Contents-amd64
|
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 Contents-amd64
|
||||||
|
@ -69,25 +69,25 @@ SHA512:
|
||||||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-amd64.gz
|
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-amd64.gz
|
||||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 main/Contents-arm64
|
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 main/Contents-arm64
|
||||||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-arm64.gz
|
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-arm64.gz
|
||||||
86c2ffd2341ff22997e451fb19947dcf96ebfe5e38583e623d1580159b1c757bd3a30c6d3ddd524c5365bf4362af848bca5690f86f1108092a9a086492786c92 9626 main/binary-amd64/Packages
|
5c8c05f7d3098d024ed7bc44d1a84448206976a626f269db583bd6370bdfdd45764c5344ae18620170476cd594a9f443ecc5a028b029b315a95353e7d05f6288 4532 main/binary-amd64/Packages
|
||||||
1afe5328d5d771ace414ea3ad64c9db3ccdf96e8765adaa70249dc9867f6254b97b99ea1bf71d868f3a5da49babd5481f5c84e4086c8be53fddd90d7f5fbf583 3218 main/binary-amd64/Packages.bz2
|
2f3456bd0d028416f3c7754fc6adbbe3e2981b1d5e1995470286e41c328fd5c779d08ac197c6bd9f714a8c2446e8da2c19525b2fb792702ec1b6d540f77ed167 1738 main/binary-amd64/Packages.bz2
|
||||||
bd8a17da392078f3844bb22bfc8139feb921287277f4c5c1fc71a700b7dfe20f9f149857da5622e7abdb133c7552f54dbd0d2e23ee48e61e8caadaa93dcdcd73 3092 main/binary-amd64/Packages.gz
|
5d7fd4afbb0eb89fe1cf66703541e006c733176d2f1510987a74cf159bfc2dca1ff0c758034ec8e937cc809d1ef5553a06e80ef2a905ade3ed9f50f142487ff7 1609 main/binary-amd64/Packages.gz
|
||||||
9269c413cbfa50b30051129e947e83e0b884416a5e704ab2dab6e2a87c84dc1d768ab8bf9eae86651cbbb940b8df19b02c1c013c212b47bdc291a9325a608b11 107 main/binary-amd64/Release
|
9269c413cbfa50b30051129e947e83e0b884416a5e704ab2dab6e2a87c84dc1d768ab8bf9eae86651cbbb940b8df19b02c1c013c212b47bdc291a9325a608b11 107 main/binary-amd64/Release
|
||||||
abe547f731e320dda2cd6b270fe9a14d61735a0c810fa6b86b7de1538cee14f7afe831532e13856c2acbb7410f4fcdfbb66b6aa6a839738b2ff79bf636fd1c4c 9609 main/binary-arm64/Packages
|
77a166668a0fc75bf30efe39be2bea3eff24b497e79d3ac026d128c86ed687766c4311be979d83ef327c5a7455a17a5372f19f9a79fd482cb045c8c8ba55e31c 4524 main/binary-arm64/Packages
|
||||||
3489891f3c6f5291b0d33990da27a8530cde1a2e44a6197225d7b2662320f19bd983aae84f5f5b927dd5d3e02b2800b8e2151f8a88c47ce33a5d34ea97ef72ec 3189 main/binary-arm64/Packages.bz2
|
501e874159804801ca62a8b6078ded0527727784e9f6980eb51947cd98ebed674c277f21833b7376d7d81b2a0978acec38c2a15f5a88b840105017f15240454d 1730 main/binary-arm64/Packages.bz2
|
||||||
93cf80d9f0a98ed05560de48321d600c0ff67c29dd7d8fc7ac378f0820d9927da4e343f92a04ae89bccd3d25c8af660c40471c173787b2c88799db1d01f92562 3077 main/binary-arm64/Packages.gz
|
10440bc9f8ac16fa2bd458703318015ef9ce52a8fcea3aaa8d3f998d385a669cea794bb776283dd76fa4b3df68914dad9c607184910b337ce6f952d322cfd74c 1606 main/binary-arm64/Packages.gz
|
||||||
e5c527af7ee91e16fe6584444bb176ff98823a3ceeb369cb4511730b6725d5bd0f21127103d49330aae5f005f88ef4d7f38b6cd5c9ba42c9704102d44805844a 107 main/binary-arm64/Release
|
e5c527af7ee91e16fe6584444bb176ff98823a3ceeb369cb4511730b6725d5bd0f21127103d49330aae5f005f88ef4d7f38b6cd5c9ba42c9704102d44805844a 107 main/binary-arm64/Release
|
||||||
-----BEGIN PGP SIGNATURE-----
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
iQGzBAEBCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmcE9ykACgkQKsxtghaS
|
iQGzBAEBCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmWkGJQACgkQKsxtghaS
|
||||||
I7kX2AwAt/D9UanFyDvyzupCimDOEhaVHaQ6BQAFMmkopjWcrYddWz+JYtsTaqp/
|
I7lFIgv/Q/20TCTM30Kg2kaBhOhMpdgmd99PPdsxz0KLTea+ONikiX0XeQXAXPt5
|
||||||
0a6uOH58yxK8XT2Kjk2fTFNBXwALGb2HKah9L12ZOYtXo1XQEjYlZyV5MTW6lncN
|
cLnM39ez90Usn5wINBWTcpW3pYonRDWF7CjxbPvyoWQtRvEOQMIOAi9tcN65wKYi
|
||||||
4VDbzzS4mmNWeeVpDDwPVtZgV7WjvJz9BFv9/XKq2OWwXrNytcGZLmT4TfbwkGUc
|
LO4w08BYvwM4v9p03vdGWSgh4VxZDponJWekgopbF8lhFYSYWQYtUB+O4/9un9nx
|
||||||
EWQJoNTs1rT9FRBYrMk1c/KoKX+NpE+DROpNi88okY4MRDrEIkNOoGGCUEcwiEwJ
|
gXzfoBTYeWWmtCmBWLi0y0tPom/Dlcu7seyqqvnYp9p47ialu3rkM6nLtl8KRU1j
|
||||||
DICTqOg9A+zQfnJhhqw2f/THKTsOBMK8ktRxFAbjDAHaGx6lLkxm9+QH7NQJimqz
|
qjrE4Bp88Y0/KZ2OtraQxzr7p8ucWaQgf7RuKdbIsRRkT6G8/J6aaR6sUFwM+HrH
|
||||||
XebVu1f14y5sjKXUut43vIxjJUyyYzyiQcyQTO9GRRSxfL5mnPinNjxj+ymad3k6
|
ZleXEFcAfT7FFChbn+rBBkA5FrOj2VxW5Fsl5tmhhyMEbBFOYr+5OW0v/gHZG+ya
|
||||||
m3CKK5hRVkD8tQyUbaRWKwRd8LRabdL1KdsbvtBZEjB2d41tzpxmOlQItjJjOehJ
|
EC5YhUDQtIQdbOwdhAlP/BYJyRRmHGVZq6LlTdz0vibhSLRu+obutUCL313FMPgD
|
||||||
EDl1gX7jFaw4Aj8pJ0UjyZ4S6LqaMNfGpaTJ5FW78btS1qBza/5KAVrUw9uqX2+w
|
Vd8Ukib59sX1+8rVpqXipWu85XgfVXFO1F9crOYHgat1zRQxCwAePcZe1AfxaeQy
|
||||||
/3wf4xDd
|
ndQ495KL
|
||||||
=u3DB
|
=4ZfV
|
||||||
-----END PGP SIGNATURE-----
|
-----END PGP SIGNATURE-----
|
||||||
|
|
|
@ -2,7 +2,7 @@ Origin: . bookworm
|
||||||
Label: . bookworm
|
Label: . bookworm
|
||||||
Suite: bookworm
|
Suite: bookworm
|
||||||
Codename: bookworm
|
Codename: bookworm
|
||||||
Date: Tue, 8 Oct 2024 09:11:05 UTC
|
Date: Sun, 14 Jan 2024 17:23:32 UTC
|
||||||
Architectures: amd64 arm64
|
Architectures: amd64 arm64
|
||||||
Components: main
|
Components: main
|
||||||
Description: Generated by aptly
|
Description: Generated by aptly
|
||||||
|
@ -15,13 +15,13 @@ MD5Sum:
|
||||||
21e95effa741b01ff1f528f699193934 62 main/Contents-amd64.gz
|
21e95effa741b01ff1f528f699193934 62 main/Contents-amd64.gz
|
||||||
bf473f9f2315fe4d0af42e32abe3828e 32 main/Contents-arm64
|
bf473f9f2315fe4d0af42e32abe3828e 32 main/Contents-arm64
|
||||||
21e95effa741b01ff1f528f699193934 62 main/Contents-arm64.gz
|
21e95effa741b01ff1f528f699193934 62 main/Contents-arm64.gz
|
||||||
58f387bbfc261b50eabd763f46dcdc76 9626 main/binary-amd64/Packages
|
22577288edcca86ca35a39efadfd458a 4532 main/binary-amd64/Packages
|
||||||
4db1093752583575edb57e75572826b7 3218 main/binary-amd64/Packages.bz2
|
02449728dde68daf17ea5d04f8fecba4 1738 main/binary-amd64/Packages.bz2
|
||||||
767f7c08d3f5e22fbf021b0677cc7c1e 3092 main/binary-amd64/Packages.gz
|
edbdd28851ef84dbd6760de0a988d462 1609 main/binary-amd64/Packages.gz
|
||||||
10fa9c1021a44a2b98f1134663f2c4fe 107 main/binary-amd64/Release
|
10fa9c1021a44a2b98f1134663f2c4fe 107 main/binary-amd64/Release
|
||||||
d906fb57caf2b1ae45945774fab085d5 9609 main/binary-arm64/Packages
|
96dae28ec57597df1af184dbfa63e194 4524 main/binary-arm64/Packages
|
||||||
aa61bcf19c12bdf1f2be952072130246 3189 main/binary-arm64/Packages.bz2
|
04b7c777b0dd9949cce2357fed2c6e04 1730 main/binary-arm64/Packages.bz2
|
||||||
c2f873ada69b30933179bc1fdfc79b3e 3077 main/binary-arm64/Packages.gz
|
db4c856995d173f0258757e6961c3838 1606 main/binary-arm64/Packages.gz
|
||||||
e457aeaf5fe929cccaefa81fb8d8e0b3 107 main/binary-arm64/Release
|
e457aeaf5fe929cccaefa81fb8d8e0b3 107 main/binary-arm64/Release
|
||||||
SHA1:
|
SHA1:
|
||||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 Contents-amd64
|
a91de688e42e55f270c5f7947a51f474b575b67b 32 Contents-amd64
|
||||||
|
@ -32,13 +32,13 @@ SHA1:
|
||||||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-amd64.gz
|
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-amd64.gz
|
||||||
a91de688e42e55f270c5f7947a51f474b575b67b 32 main/Contents-arm64
|
a91de688e42e55f270c5f7947a51f474b575b67b 32 main/Contents-arm64
|
||||||
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-arm64.gz
|
05d02867ae229dd48c21173f8ab364079df5bb80 62 main/Contents-arm64.gz
|
||||||
eec16ae99a87c628c51b493c3e2039141ba76a29 9626 main/binary-amd64/Packages
|
ade31c056ff26cda3f4d9e8856f43314078161dc 4532 main/binary-amd64/Packages
|
||||||
69dfc7633dcbb2b4f02acc5550152da70e27617d 3218 main/binary-amd64/Packages.bz2
|
9aaf3c0da19535bef54d027e9c2f567aa130b899 1738 main/binary-amd64/Packages.bz2
|
||||||
8de5718b1e598dc7360e8213fd6155fece324e7e 3092 main/binary-amd64/Packages.gz
|
d8412bca4750049cf4e0387d6b51fdd4fb685e53 1609 main/binary-amd64/Packages.gz
|
||||||
269a2515815f5030bf3af40a7c3eec3e0e2052ee 107 main/binary-amd64/Release
|
269a2515815f5030bf3af40a7c3eec3e0e2052ee 107 main/binary-amd64/Release
|
||||||
764c17a3ada590367c7b5ee40080c3dc974a0668 9609 main/binary-arm64/Packages
|
098ded4376785c3490cb7afb1f689139481ad19c 4524 main/binary-arm64/Packages
|
||||||
803d015d90f1e71ab0846ed3d35cf6c5bc9eb0b4 3189 main/binary-arm64/Packages.bz2
|
22ef59e5ed9d828ad46adb3027a6c018b9a1b2b6 1730 main/binary-arm64/Packages.bz2
|
||||||
61fbe01cf2bba2655d2f5c7d1a983b929323e138 3077 main/binary-arm64/Packages.gz
|
0f1e14a4975ccaf4fbf4960f79ceaaec1ac3699e 1606 main/binary-arm64/Packages.gz
|
||||||
2389623756acc2e410d5c6d8596c7d3c248eec5e 107 main/binary-arm64/Release
|
2389623756acc2e410d5c6d8596c7d3c248eec5e 107 main/binary-arm64/Release
|
||||||
SHA256:
|
SHA256:
|
||||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 Contents-amd64
|
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 Contents-amd64
|
||||||
|
@ -49,13 +49,13 @@ SHA256:
|
||||||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-amd64.gz
|
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-amd64.gz
|
||||||
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 main/Contents-arm64
|
1d0abebe68bd0a4c4dd28567dd75a083a5a33c20fa116e959173f4205264f6eb 32 main/Contents-arm64
|
||||||
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-arm64.gz
|
f1209e1517ea344616c58ac85831c4038a583f396302e223caea1c9c0af27b85 62 main/Contents-arm64.gz
|
||||||
855b78edfcc8f8757d94ae565bf7afbdd913a85971cfd4959bde9815bbffc350 9626 main/binary-amd64/Packages
|
1da8975387c2f4aaeef76373e722ee353ed2ef1b7ac6ccef82138308cf880a4c 4532 main/binary-amd64/Packages
|
||||||
f97313cfe0cf747563d03e698fd0e830e9bfe60c33abaab21a3add9009391a84 3218 main/binary-amd64/Packages.bz2
|
771f602ae46208adabee0d722e06f329c6d7352d35286f9b3ccafdbe3f8131d0 1738 main/binary-amd64/Packages.bz2
|
||||||
06b81109cdd298e6d7f3d203878fe33d3688a6124b0ce2534fb89f0cf3550199 3092 main/binary-amd64/Packages.gz
|
e15ef9abbb3af0775318108298081f87782ed4214cf55c6cb26abb909fc2630f 1609 main/binary-amd64/Packages.gz
|
||||||
0a3b95a9243e294ba621ef500542995de72ee6234e5d893eb03a52dafea4e21d 107 main/binary-amd64/Release
|
0a3b95a9243e294ba621ef500542995de72ee6234e5d893eb03a52dafea4e21d 107 main/binary-amd64/Release
|
||||||
fd6f84316ea3c47c20da88f7f88518441976300ab5e9bcc75bfa6a57fb74a14b 9609 main/binary-arm64/Packages
|
932214bf584405e48b80d7db23f703d0cf7daed79fecb628c1c8550a11377fd5 4524 main/binary-arm64/Packages
|
||||||
36436fb8ca9a2772fd1827de7cb442c92cf786686a508d0e98e991ecd861ebe9 3189 main/binary-arm64/Packages.bz2
|
b6499128064cfcc9fffb68ad96881f3d8db327185e24e4303a629053f0654a50 1730 main/binary-arm64/Packages.bz2
|
||||||
ca407505e79fa89c786ca1dcb2e18d15afad2ff14f74497c0896f4829f3c4b56 3077 main/binary-arm64/Packages.gz
|
6ff120c064dadc80a9ec08342927e9b096464790f5df3294eae4d6b4419efc73 1606 main/binary-arm64/Packages.gz
|
||||||
dbe6441a0ab35858d6beb741cc4a35ee48f26cafb140b1f0a4b8b6075279522b 107 main/binary-arm64/Release
|
dbe6441a0ab35858d6beb741cc4a35ee48f26cafb140b1f0a4b8b6075279522b 107 main/binary-arm64/Release
|
||||||
SHA512:
|
SHA512:
|
||||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 Contents-amd64
|
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 Contents-amd64
|
||||||
|
@ -66,11 +66,11 @@ SHA512:
|
||||||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-amd64.gz
|
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-amd64.gz
|
||||||
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 main/Contents-arm64
|
332dc58fc6922b0b804e148d4105276006bb5b0b5e1371e01ca08f31ebd5a0fdfaa134583fb4d4e51b25c59ff0744e06d3fca2e0bf7093ec97e90fd2d32e445d 32 main/Contents-arm64
|
||||||
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-arm64.gz
|
0d02dd37fa240be307fd6e4ae366ac6edfb0f9319e76710c3597275e29c2bf0b6f823fd2ac68148e4a59a85868bf2e4e3413a61dee5c80c49aae6fac66a94054 62 main/Contents-arm64.gz
|
||||||
86c2ffd2341ff22997e451fb19947dcf96ebfe5e38583e623d1580159b1c757bd3a30c6d3ddd524c5365bf4362af848bca5690f86f1108092a9a086492786c92 9626 main/binary-amd64/Packages
|
5c8c05f7d3098d024ed7bc44d1a84448206976a626f269db583bd6370bdfdd45764c5344ae18620170476cd594a9f443ecc5a028b029b315a95353e7d05f6288 4532 main/binary-amd64/Packages
|
||||||
1afe5328d5d771ace414ea3ad64c9db3ccdf96e8765adaa70249dc9867f6254b97b99ea1bf71d868f3a5da49babd5481f5c84e4086c8be53fddd90d7f5fbf583 3218 main/binary-amd64/Packages.bz2
|
2f3456bd0d028416f3c7754fc6adbbe3e2981b1d5e1995470286e41c328fd5c779d08ac197c6bd9f714a8c2446e8da2c19525b2fb792702ec1b6d540f77ed167 1738 main/binary-amd64/Packages.bz2
|
||||||
bd8a17da392078f3844bb22bfc8139feb921287277f4c5c1fc71a700b7dfe20f9f149857da5622e7abdb133c7552f54dbd0d2e23ee48e61e8caadaa93dcdcd73 3092 main/binary-amd64/Packages.gz
|
5d7fd4afbb0eb89fe1cf66703541e006c733176d2f1510987a74cf159bfc2dca1ff0c758034ec8e937cc809d1ef5553a06e80ef2a905ade3ed9f50f142487ff7 1609 main/binary-amd64/Packages.gz
|
||||||
9269c413cbfa50b30051129e947e83e0b884416a5e704ab2dab6e2a87c84dc1d768ab8bf9eae86651cbbb940b8df19b02c1c013c212b47bdc291a9325a608b11 107 main/binary-amd64/Release
|
9269c413cbfa50b30051129e947e83e0b884416a5e704ab2dab6e2a87c84dc1d768ab8bf9eae86651cbbb940b8df19b02c1c013c212b47bdc291a9325a608b11 107 main/binary-amd64/Release
|
||||||
abe547f731e320dda2cd6b270fe9a14d61735a0c810fa6b86b7de1538cee14f7afe831532e13856c2acbb7410f4fcdfbb66b6aa6a839738b2ff79bf636fd1c4c 9609 main/binary-arm64/Packages
|
77a166668a0fc75bf30efe39be2bea3eff24b497e79d3ac026d128c86ed687766c4311be979d83ef327c5a7455a17a5372f19f9a79fd482cb045c8c8ba55e31c 4524 main/binary-arm64/Packages
|
||||||
3489891f3c6f5291b0d33990da27a8530cde1a2e44a6197225d7b2662320f19bd983aae84f5f5b927dd5d3e02b2800b8e2151f8a88c47ce33a5d34ea97ef72ec 3189 main/binary-arm64/Packages.bz2
|
501e874159804801ca62a8b6078ded0527727784e9f6980eb51947cd98ebed674c277f21833b7376d7d81b2a0978acec38c2a15f5a88b840105017f15240454d 1730 main/binary-arm64/Packages.bz2
|
||||||
93cf80d9f0a98ed05560de48321d600c0ff67c29dd7d8fc7ac378f0820d9927da4e343f92a04ae89bccd3d25c8af660c40471c173787b2c88799db1d01f92562 3077 main/binary-arm64/Packages.gz
|
10440bc9f8ac16fa2bd458703318015ef9ce52a8fcea3aaa8d3f998d385a669cea794bb776283dd76fa4b3df68914dad9c607184910b337ce6f952d322cfd74c 1606 main/binary-arm64/Packages.gz
|
||||||
e5c527af7ee91e16fe6584444bb176ff98823a3ceeb369cb4511730b6725d5bd0f21127103d49330aae5f005f88ef4d7f38b6cd5c9ba42c9704102d44805844a 107 main/binary-arm64/Release
|
e5c527af7ee91e16fe6584444bb176ff98823a3ceeb369cb4511730b6725d5bd0f21127103d49330aae5f005f88ef4d7f38b6cd5c9ba42c9704102d44805844a 107 main/binary-arm64/Release
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
-----BEGIN PGP SIGNATURE-----
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
iQGzBAABCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmcE9ykACgkQKsxtghaS
|
iQGzBAABCAAdFiEEA1shCXKD/ftNODLwKsxtghaSI7kFAmWkGJQACgkQKsxtghaS
|
||||||
I7kVUgwArMMujvDZmPptM7iovt6gEd6KqgoVkPNo22F9ScE7IxH5Ipi230Zn6EPU
|
I7mvyAv/YI6l+ZAcq7Rp8hv0ASNxfXvkVD+KcKMdVORjCfVvsb9KICp8+dwmvsmr
|
||||||
sRNrKnGms4ZfaNsRNDMvehqm6hHwoRC7iNviB0CYnOqDKf/P37+BwaYFfz5hb15G
|
d0JrrssxFHECKdSNA3aR4sd3PzRjpFyEj/GeIBE0+pYjS/YPNFBeaxN/+ib9MG0b
|
||||||
evJ5yfkoC2w41w6E5v8z5+jsSfDIc5QgiDOZbB2tX/uh3O4oO6QyUD6L/uvfoXnv
|
zc7StzxpGsjDoZZKtN0p3SD8mAd4Q8MHHhGB/7u3HPkX0lfjVzQR/hsa6JjWJfpL
|
||||||
ya+sPizxuYn5H/fSOzsCWjkoxzM3Kw+gt2TJhAabIKubvkYP8ucb6VzFwE96zbsF
|
HYxNvlfusuYNhOOSC1g8hVWhhEhQ5/KBKGML9bxD5YobMpXRTVIxc5CVUiDgxCGp
|
||||||
KGgJxlyPaPJVzArL+Iy+Uw6UfVtBEO+RS48MSci3TCtCTdyzR1nUcNxRluydBcdt
|
F5OjCPhcDWSFmndUD1mqvYEMCY4IIdMT/Eh/yU0yt3Qp2+w+PomtV2rQcDCc4vlE
|
||||||
slwP8X3aroUYNJXpeGnjArf6mijkMpMXCozZrp5LPJNV/IPwgm0dPg0LcGN73HDm
|
86/QCewBmQVFhI4lfpxIwmSoNMHp4ADq2s7whnx//P5kiKgzcQv10DJISPjDzkT6
|
||||||
cXzr/mPjc+kjO+/j7Wi4VzKFTLA14E62YOGObvNgQ91XB+Y4N9WCipR2XRgIhcW6
|
r3DnxOxH+ZjOGLwlUdxRn6c0TfwukS3K8uU20CCklW0QFtY00Wh+8X8r/DiKRJAf
|
||||||
ZQ8V9+K1CLQD87/M2uwbQUyc//TDchKhZKqBCs69N4ZaIsvldapREH9z7JjYs+zb
|
yb1QP5EYO+1W3hK1SnvLPuzTvCvokWl1nG2L/rBGrnTWdNNK3Yy6eqEYHQ9Ji5CK
|
||||||
KMNdnWqU
|
dbimDJCq
|
||||||
=B7fs
|
=vYXE
|
||||||
-----END PGP SIGNATURE-----
|
-----END PGP SIGNATURE-----
|
||||||
|
|
|
@ -1,129 +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
|
Package: lune
|
||||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,129 +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
|
Package: lune
|
||||||
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
Maintainer: Erica Marigold <hi@devcomp.xyz>
|
||||||
Architecture: arm64
|
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.
|
@ -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
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
||||||
Package: lune
|
|
||||||
Version: 0.8.9
|
|
||||||
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.9
|
|
||||||
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.
1
package/js/.gitignore
vendored
1
package/js/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
npm/
|
|
|
@ -1,359 +0,0 @@
|
||||||
# Mozilla Public License Version 2.0
|
|
||||||
|
|
||||||
1. Definitions
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
1.1. "Contributor" means each individual or legal entity that creates,
|
|
||||||
contributes to the creation of, or owns Covered Software.
|
|
||||||
|
|
||||||
1.2. "Contributor Version" means the combination of the Contributions of others
|
|
||||||
(if any) used by a Contributor and that particular Contributor's Contribution.
|
|
||||||
|
|
||||||
1.3. "Contribution" means Covered Software of a particular Contributor.
|
|
||||||
|
|
||||||
1.4. "Covered Software" means Source Code Form to which the initial Contributor
|
|
||||||
has attached the notice in Exhibit A, the Executable Form of such Source Code
|
|
||||||
Form, and Modifications of such Source Code Form, in each case including
|
|
||||||
portions thereof.
|
|
||||||
|
|
||||||
1.5. "Incompatible With Secondary Licenses" means
|
|
||||||
|
|
||||||
(a) that the initial Contributor has attached the notice described
|
|
||||||
in Exhibit B to the Covered Software; or
|
|
||||||
|
|
||||||
(b) that the Covered Software was made available under the terms of
|
|
||||||
version 1.1 or earlier of the License, but not also under the
|
|
||||||
terms of a Secondary License.
|
|
||||||
|
|
||||||
1.6. "Executable Form" means any form of the work other than Source Code Form.
|
|
||||||
|
|
||||||
1.7. "Larger Work" means a work that combines Covered Software with other
|
|
||||||
material, in a separate file or files, that is not Covered Software.
|
|
||||||
|
|
||||||
1.8. "License" means this document.
|
|
||||||
|
|
||||||
1.9. "Licensable" means having the right to grant, to the maximum extent
|
|
||||||
possible, whether at the time of the initial grant or subsequently, any and all
|
|
||||||
of the rights conveyed by this License.
|
|
||||||
|
|
||||||
1.10. "Modifications" means any of the following:
|
|
||||||
|
|
||||||
(a) any file in Source Code Form that results from an addition to,
|
|
||||||
deletion from, or modification of the contents of Covered
|
|
||||||
Software; or
|
|
||||||
|
|
||||||
(b) any new file in Source Code Form that contains any Covered
|
|
||||||
Software.
|
|
||||||
|
|
||||||
1.11. "Patent Claims" of a Contributor means any patent claim(s), including
|
|
||||||
without limitation, method, process, and apparatus claims, in any patent
|
|
||||||
Licensable by such Contributor that would be infringed, but for the grant of the
|
|
||||||
License, by the making, using, selling, offering for sale, having made, import,
|
|
||||||
or transfer of either its Contributions or its Contributor Version.
|
|
||||||
|
|
||||||
1.12. "Secondary License" means either the GNU General Public License, Version
|
|
||||||
2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General
|
|
||||||
Public License, Version 3.0, or any later versions of those licenses.
|
|
||||||
|
|
||||||
1.13. "Source Code Form" means the form of the work preferred for making
|
|
||||||
modifications.
|
|
||||||
|
|
||||||
1.14. "You" (or "Your") means an individual or a legal entity exercising rights
|
|
||||||
under this License. For legal entities, "You" includes any entity that controls,
|
|
||||||
is controlled by, or is under common control with You. For purposes of this
|
|
||||||
definition, "control" means (a) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or otherwise, or (b)
|
|
||||||
ownership of more than fifty percent (50%) of the outstanding shares or
|
|
||||||
beneficial ownership of such entity.
|
|
||||||
|
|
||||||
2. License Grants and Conditions
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
2.1. Grants
|
|
||||||
|
|
||||||
Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive
|
|
||||||
license:
|
|
||||||
|
|
||||||
(a) under intellectual property rights (other than patent or trademark)
|
|
||||||
Licensable by such Contributor to use, reproduce, make available, modify,
|
|
||||||
display, perform, distribute, and otherwise exploit its Contributions, either on
|
|
||||||
an unmodified basis, with Modifications, or as part of a Larger Work; and
|
|
||||||
|
|
||||||
(b) under Patent Claims of such Contributor to make, use, sell, offer for sale,
|
|
||||||
have made, import, and otherwise transfer either its Contributions or its
|
|
||||||
Contributor Version.
|
|
||||||
|
|
||||||
2.2. Effective Date
|
|
||||||
|
|
||||||
The licenses granted in Section 2.1 with respect to any Contribution become
|
|
||||||
effective for each Contribution on the date the Contributor first distributes
|
|
||||||
such Contribution.
|
|
||||||
|
|
||||||
2.3. Limitations on Grant Scope
|
|
||||||
|
|
||||||
The licenses granted in this Section 2 are the only rights granted under this
|
|
||||||
License. No additional rights or licenses will be implied from the distribution
|
|
||||||
or licensing of Covered Software under this License. Notwithstanding Section
|
|
||||||
2.1(b) above, no patent license is granted by a Contributor:
|
|
||||||
|
|
||||||
(a) for any code that a Contributor has removed from Covered Software; or
|
|
||||||
|
|
||||||
(b) for infringements caused by: (i) Your and any other third party's
|
|
||||||
modifications of Covered Software, or (ii) the combination of its Contributions
|
|
||||||
with other software (except as part of its Contributor Version); or
|
|
||||||
|
|
||||||
(c) under Patent Claims infringed by Covered Software in the absence of its
|
|
||||||
Contributions.
|
|
||||||
|
|
||||||
This License does not grant any rights in the trademarks, service marks, or
|
|
||||||
logos of any Contributor (except as may be necessary to comply with the notice
|
|
||||||
requirements in Section 3.4).
|
|
||||||
|
|
||||||
2.4. Subsequent Licenses
|
|
||||||
|
|
||||||
No Contributor makes additional grants as a result of Your choice to distribute
|
|
||||||
the Covered Software under a subsequent version of this License (see Section
|
|
||||||
10.2) or under the terms of a Secondary License (if permitted under the terms of
|
|
||||||
Section 3.3).
|
|
||||||
|
|
||||||
2.5. Representation
|
|
||||||
|
|
||||||
Each Contributor represents that the Contributor believes its Contributions are
|
|
||||||
its original creation(s) or it has sufficient rights to grant the rights to its
|
|
||||||
Contributions conveyed by this License.
|
|
||||||
|
|
||||||
2.6. Fair Use
|
|
||||||
|
|
||||||
This License is not intended to limit any rights You have under applicable
|
|
||||||
copyright doctrines of fair use, fair dealing, or other equivalents.
|
|
||||||
|
|
||||||
2.7. Conditions
|
|
||||||
|
|
||||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
|
|
||||||
Section 2.1.
|
|
||||||
|
|
||||||
3. Responsibilities
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
3.1. Distribution of Source Form
|
|
||||||
|
|
||||||
All distribution of Covered Software in Source Code Form, including any
|
|
||||||
Modifications that You create or to which You contribute, must be under the
|
|
||||||
terms of this License. You must inform recipients that the Source Code Form of
|
|
||||||
the Covered Software is governed by the terms of this License, and how they can
|
|
||||||
obtain a copy of this License. You may not attempt to alter or restrict the
|
|
||||||
recipients' rights in the Source Code Form.
|
|
||||||
|
|
||||||
3.2. Distribution of Executable Form
|
|
||||||
|
|
||||||
If You distribute Covered Software in Executable Form then:
|
|
||||||
|
|
||||||
(a) such Covered Software must also be made available in Source Code Form, as
|
|
||||||
described in Section 3.1, and You must inform recipients of the Executable Form
|
|
||||||
how they can obtain a copy of such Source Code Form by reasonable means in a
|
|
||||||
timely manner, at a charge no more than the cost of distribution to the
|
|
||||||
recipient; and
|
|
||||||
|
|
||||||
(b) You may distribute such Executable Form under the terms of this License, or
|
|
||||||
sublicense it under different terms, provided that the license for the
|
|
||||||
Executable Form does not attempt to limit or alter the recipients' rights in the
|
|
||||||
Source Code Form under this License.
|
|
||||||
|
|
||||||
3.3. Distribution of a Larger Work
|
|
||||||
|
|
||||||
You may create and distribute a Larger Work under terms of Your choice, provided
|
|
||||||
that You also comply with the requirements of this License for the Covered
|
|
||||||
Software. If the Larger Work is a combination of Covered Software with a work
|
|
||||||
governed by one or more Secondary Licenses, and the Covered Software is not
|
|
||||||
Incompatible With Secondary Licenses, this License permits You to additionally
|
|
||||||
distribute such Covered Software under the terms of such Secondary License(s),
|
|
||||||
so that the recipient of the Larger Work may, at their option, further
|
|
||||||
distribute the Covered Software under the terms of either this License or such
|
|
||||||
Secondary License(s).
|
|
||||||
|
|
||||||
3.4. Notices
|
|
||||||
|
|
||||||
You may not remove or alter the substance of any license notices (including
|
|
||||||
copyright notices, patent notices, disclaimers of warranty, or limitations of
|
|
||||||
liability) contained within the Source Code Form of the Covered Software, except
|
|
||||||
that You may alter any license notices to the extent required to remedy known
|
|
||||||
factual inaccuracies.
|
|
||||||
|
|
||||||
3.5. Application of Additional Terms
|
|
||||||
|
|
||||||
You may choose to offer, and to charge a fee for, warranty, support, indemnity
|
|
||||||
or liability obligations to one or more recipients of Covered Software. However,
|
|
||||||
You may do so only on Your own behalf, and not on behalf of any Contributor. You
|
|
||||||
must make it absolutely clear that any such warranty, support, indemnity, or
|
|
||||||
liability obligation is offered by You alone, and You hereby agree to indemnify
|
|
||||||
every Contributor for any liability incurred by such Contributor as a result of
|
|
||||||
warranty, support, indemnity or liability terms You offer. You may include
|
|
||||||
additional disclaimers of warranty and limitations of liability specific to any
|
|
||||||
jurisdiction.
|
|
||||||
|
|
||||||
4. Inability to Comply Due to Statute or Regulation
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
If it is impossible for You to comply with any of the terms of this License with
|
|
||||||
respect to some or all of the Covered Software due to statute, judicial order,
|
|
||||||
or regulation then You must: (a) comply with the terms of this License to the
|
|
||||||
maximum extent possible; and (b) describe the limitations and the code they
|
|
||||||
affect. Such description must be placed in a text file included with all
|
|
||||||
distributions of the Covered Software under this License. Except to the extent
|
|
||||||
prohibited by statute or regulation, such description must be sufficiently
|
|
||||||
detailed for a recipient of ordinary skill to be able to understand it.
|
|
||||||
|
|
||||||
5. Termination
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
5.1. The rights granted under this License will terminate automatically if You
|
|
||||||
fail to comply with any of its terms. However, if You become compliant, then the
|
|
||||||
rights granted under this License from a particular Contributor are reinstated
|
|
||||||
(a) provisionally, unless and until such Contributor explicitly and finally
|
|
||||||
terminates Your grants, and (b) on an ongoing basis, if such Contributor fails
|
|
||||||
to notify You of the non-compliance by some reasonable means prior to 60 days
|
|
||||||
after You have come back into compliance. Moreover, Your grants from a
|
|
||||||
particular Contributor are reinstated on an ongoing basis if such Contributor
|
|
||||||
notifies You of the non-compliance by some reasonable means, this is the first
|
|
||||||
time You have received notice of non-compliance with this License from such
|
|
||||||
Contributor, and You become compliant prior to 30 days after Your receipt of the
|
|
||||||
notice.
|
|
||||||
|
|
||||||
5.2. If You initiate litigation against any entity by asserting a patent
|
|
||||||
infringement claim (excluding declaratory judgment actions, counter-claims, and
|
|
||||||
cross-claims) alleging that a Contributor Version directly or indirectly
|
|
||||||
infringes any patent, then the rights granted to You by any and all Contributors
|
|
||||||
for the Covered Software under Section 2.1 of this License shall terminate.
|
|
||||||
|
|
||||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user
|
|
||||||
license agreements (excluding distributors and resellers) which have been
|
|
||||||
validly granted by You or Your distributors under this License prior to
|
|
||||||
termination shall survive termination.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
-
|
|
||||||
-
|
|
||||||
-
|
|
||||||
6. Disclaimer of Warranty *
|
|
||||||
- ------------------------- *
|
|
||||||
-
|
|
||||||
-
|
|
||||||
- Covered Software is provided under this License on an "as is" *
|
|
||||||
- basis, without warranty of any kind, either expressed, implied, or *
|
|
||||||
- statutory, including, without limitation, warranties that the *
|
|
||||||
- Covered Software is free of defects, merchantable, fit for a *
|
|
||||||
- particular purpose or non-infringing. The entire risk as to the *
|
|
||||||
- quality and performance of the Covered Software is with You. *
|
|
||||||
- Should any Covered Software prove defective in any respect, You *
|
|
||||||
- (not any Contributor) assume the cost of any necessary servicing, *
|
|
||||||
- repair, or correction. This disclaimer of warranty constitutes an *
|
|
||||||
- essential part of this License. No use of any Covered Software is *
|
|
||||||
- authorized under this License except under this disclaimer. *
|
|
||||||
-
|
|
||||||
-
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
-
|
|
||||||
-
|
|
||||||
-
|
|
||||||
7. Limitation of Liability *
|
|
||||||
- -------------------------- *
|
|
||||||
-
|
|
||||||
-
|
|
||||||
- Under no circumstances and under no legal theory, whether tort *
|
|
||||||
- (including negligence), contract, or otherwise, shall any *
|
|
||||||
- Contributor, or anyone who distributes Covered Software as *
|
|
||||||
- permitted above, be liable to You for any direct, indirect, *
|
|
||||||
- special, incidental, or consequential damages of any character *
|
|
||||||
- including, without limitation, damages for lost profits, loss of *
|
|
||||||
- goodwill, work stoppage, computer failure or malfunction, or any *
|
|
||||||
- and all other commercial damages or losses, even if such party *
|
|
||||||
- shall have been informed of the possibility of such damages. This *
|
|
||||||
- limitation of liability shall not apply to liability for death or *
|
|
||||||
- personal injury resulting from such party's negligence to the *
|
|
||||||
- extent applicable law prohibits such limitation. Some *
|
|
||||||
- jurisdictions do not allow the exclusion or limitation of *
|
|
||||||
- incidental or consequential damages, so this exclusion and *
|
|
||||||
- limitation may not apply to You. *
|
|
||||||
-
|
|
||||||
-
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
8. Litigation
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Any litigation relating to this License may be brought only in the courts of a
|
|
||||||
jurisdiction where the defendant maintains its principal place of business and
|
|
||||||
such litigation shall be governed by laws of that jurisdiction, without
|
|
||||||
reference to its conflict-of-law provisions. Nothing in this Section shall
|
|
||||||
prevent a party's ability to bring cross-claims or counter-claims.
|
|
||||||
|
|
||||||
9. Miscellaneous
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
This License represents the complete agreement concerning the subject matter
|
|
||||||
hereof. If any provision of this License is held to be unenforceable, such
|
|
||||||
provision shall be reformed only to the extent necessary to make it enforceable.
|
|
||||||
Any law or regulation which provides that the language of a contract shall be
|
|
||||||
construed against the drafter shall not be used to construe this License against
|
|
||||||
a Contributor.
|
|
||||||
|
|
||||||
10. Versions of the License
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
10.1. New Versions
|
|
||||||
|
|
||||||
Mozilla Foundation is the license steward. Except as provided in Section 10.3,
|
|
||||||
no one other than the license steward has the right to modify or publish new
|
|
||||||
versions of this License. Each version will be given a distinguishing version
|
|
||||||
number.
|
|
||||||
|
|
||||||
10.2. Effect of New Versions
|
|
||||||
|
|
||||||
You may distribute the Covered Software under the terms of the version of the
|
|
||||||
License under which You originally received the Covered Software, or under the
|
|
||||||
terms of any subsequent version published by the license steward.
|
|
||||||
|
|
||||||
10.3. Modified Versions
|
|
||||||
|
|
||||||
If you create software not governed by this License, and you want to create a
|
|
||||||
new license for such software, you may create and use a modified version of this
|
|
||||||
License if you rename the license and remove any references to the name of the
|
|
||||||
license steward (except to note that such modified license differs from this
|
|
||||||
License).
|
|
||||||
|
|
||||||
10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses
|
|
||||||
|
|
||||||
If You choose to distribute Source Code Form that is Incompatible With Secondary
|
|
||||||
Licenses under the terms of this version of the License, the notice described in
|
|
||||||
Exhibit B of this License must be attached.
|
|
||||||
|
|
||||||
## Exhibit A - Source Code Form License Notice
|
|
||||||
|
|
||||||
This Source Code Form is subject to the terms of the Mozilla Public License, v.
|
|
||||||
2.0. If a copy of the MPL was not distributed with this file, You can obtain one
|
|
||||||
at https://mozilla.org/MPL/2.0/.
|
|
||||||
|
|
||||||
If it is not possible or desirable to put the notice in a particular file, then
|
|
||||||
You may include the notice in a location (such as a LICENSE file in a relevant
|
|
||||||
directory) where a recipient would be likely to look for such a notice.
|
|
||||||
|
|
||||||
You may add additional accurate notices of copyright ownership.
|
|
||||||
|
|
||||||
## Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
||||||
|
|
||||||
This Source Code Form is "Incompatible With Secondary Licenses", as defined by
|
|
||||||
the Mozilla Public License, v. 2.0.
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue