Compare commits

...

21 commits

Author SHA1 Message Date
a96848c560
fix(copr): missed space in cat heredoc for .cargo/config.toml 2025-01-31 14:19:12 +05:30
03618acc2d
fix(copr): modify rust linker config for aarch64 fedora packages 2025-01-31 14:13:10 +05:30
04cc042671
fix(copr): add aarch64 g++ into BuildRequires 2025-01-31 14:08:54 +05:30
aad9e45c76
fix(copr): add more BuildRequires for aarch64 targets 2025-01-31 13:55:58 +05:30
94a5fcf8ef
fix(copr): add perl as BuildRequires 2025-01-31 13:13:52 +05:30
94f5b37a43
fix(copr): remove attributes in first line from all source files 2025-01-31 13:06:55 +05:30
1352efc33e
fix(copr): just remove the first line with sed instead of pattern 2025-01-31 12:45:55 +05:30
ec89aaad51
fix(copr): no need to use any variable, we're already in dir 2025-01-31 12:20:38 +05:30
7d3b7d9b7d
fix(copr): attempt to use $WORKSPACE var for extracted src 2025-01-31 12:16:27 +05:30
326f40bfb5
fix(copr): add prep step to remove clippy attribute before build 2025-01-31 12:06:57 +05:30
9ea4daacbf
fix(copr): use correct aarch64 gcc package name
Some checks are pending
Update setup-lune Repository / Update setup-lune action (push) Waiting to run
APT Repository / deploy (push) Waiting to run
AUR Test / test (push) Waiting to run
CI / CI (push) Waiting to run
Homebrew Test / test_precompiled (push) Waiting to run
Homebrew Test / test_source (push) Waiting to run
Scoop Test / test (push) Waiting to run
2025-01-28 18:28:57 +05:30
7ce92e1100
fix(copr): incorrect BuildRequire condition for aarch64 deps 2025-01-28 18:25:19 +05:30
cb5152f12a
fix(copr): install aarch64 specific build dependencies 2025-01-28 18:21:51 +05:30
a77f37146d
fix(copr): add cargo build dependency requirement 2025-01-28 18:16:31 +05:30
db9c38535c
fix(copr): remove musl build dependency 2025-01-28 18:11:30 +05:30
a26a8bd28d
fix(copr): non-existent musl-tools package build dependency 2025-01-28 18:08:03 +05:30
cf5e48a63e
chore(README): link fedora COPR project
Some checks failed
Update setup-lune Repository / Update setup-lune action (push) Has been cancelled
APT Repository / deploy (push) Has been cancelled
AUR Test / test (push) Has been cancelled
CI / CI (push) Has been cancelled
Homebrew Test / test_precompiled (push) Has been cancelled
Homebrew Test / test_source (push) Has been cancelled
Scoop Test / test (push) Has been cancelled
2025-01-26 23:46:14 +05:30
69f2b364d4
feat: include rpm spec package 2025-01-26 23:37:17 +05:30
CI
4b226883ba chore: update lune sources 2024-11-06 01:08:00 +00:00
CI
b5eabbcf04 chore: update lune sources 2024-10-18 01:09:24 +00:00
CI
76cf47666d chore: update lune sources 2024-10-17 01:09:15 +00:00
4 changed files with 68 additions and 2 deletions

View file

@ -10,6 +10,7 @@ For more information on lune, see [lune-org/lune](https://github.com/lune-org/lu
| Scoop | ![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/scoop_test.yaml?logo=windows&logoColor=blue&label=%20&color=black) |
| AppImage | ![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/appimage.yaml?logo=linux&logoColor=yellow&label=%20&color=black) |
| APT | ![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/apt.yaml?logo=debian&logoColor=red&label=%20&color=black) |
| COPR | [Project](https://copr.fedorainfracloud.org/coprs/devcomp/lune/) |
## Installation

@ -1 +1 @@
Subproject commit 010cd36375b467c85292ec87c922ee5806d79581
Subproject commit 5d1401cdf611cc9f215f03bdf16ada0e77717edf

View file

@ -1 +1 @@
010cd36
5d1401c

65
package/copr/lune.spec Normal file
View file

@ -0,0 +1,65 @@
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