Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: stardust-server #2048

Draft
wants to merge 28 commits into
base: frawhide
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
eaf71f6
initial package for stardust-server
Owen-sz Sep 7, 2024
1be9bd5
add missing build deps
june-fish Sep 7, 2024
b7a6644
move to stardust folder
june-fish Sep 7, 2024
b3b817d
inisital package for stardust-black-hole
Owen-sz Sep 8, 2024
2062a8d
RPM bug workaround stardust-black-hole.spec
Owen-sz Sep 8, 2024
41108c9
Remove conflicts
Owen-sz Sep 8, 2024
228d090
Update anda/stardust/black-hole/update.rhai
Owen-sz Sep 9, 2024
a5d2fb6
Update anda/stardust/black-hole/stardust-black-hole.spec
Owen-sz Sep 9, 2024
b856915
Update anda/stardust/black-hole/stardust-black-hole.spec
Owen-sz Sep 9, 2024
bf015aa
Update anda/stardust/black-hole/stardust-black-hole.spec
Owen-sz Sep 9, 2024
b84c4c8
Update stardust-black-hole.spec
Owen-sz Sep 9, 2024
22bdb72
Update anda.hcl
Owen-sz Sep 10, 2024
2c65027
Update stardust-black-hole.spec
Owen-sz Sep 10, 2024
7632cc6
Update update.rhai
Owen-sz Sep 10, 2024
86caf0b
Update stardust-black-hole.spec
Owen-sz Sep 10, 2024
bc5791d
Update stardust-black-hole.spec
Owen-sz Sep 10, 2024
bc6784b
Update update.rhai
Owen-sz Sep 10, 2024
919fa9c
Update anda/stardust/black-hole/update.rhai
Owen-sz Sep 11, 2024
c4a0bae
fix directories issue
Owen-sz Sep 11, 2024
acbaea5
actually fix directories error
Owen-sz Sep 11, 2024
5ac7da9
Update anda/stardust/server/stardust-server.spec
Owen-sz Sep 11, 2024
cea6f42
Update stardust-server.spec
Owen-sz Sep 12, 2024
86babd9
Update stardust-server.spec
Owen-sz Sep 13, 2024
c7e0121
Update stardust-server.spec
Owen-sz Sep 13, 2024
aee685f
Update stardust-server.spec
Owen-sz Sep 13, 2024
c50a624
it works now
Owen-sz Sep 15, 2024
06f406c
switch to 0.45.1
Owen-sz Sep 17, 2024
73aa3bb
Update update.rhai
Owen-sz Sep 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions anda/stardust/server/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-server.spec"
}
labels {
nightly = 1
}
}
45 changes: 45 additions & 0 deletions anda/stardust/server/stardust-server.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$

Name: stardust-server
Version: 0.45.1
Release: 1%?dist
Summary: Usable Linux display server that reinvents human-computer interaction for all kinds of XR.
URL: https://github.com/StardustXR/server
Source0: %url/archive/refs/tags/%version.tar.gz
License: GPLv2

BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold g++
BuildRequires: glx-utils fontconfig-devel glibc libxcb-devel wayland-devel
BuildRequires: openxr-devel libglvnd-devel libglvnd-gles mesa-libgbm-devel
BuildRequires: libwayland-egl libX11-devel libXfixes-devel lld clang
BuildRequires: mesa-libEGL-devel libxkbcommon-devel

Requires: libxkbcommon libstdc++ openxr-libs libX11 libXfixes
Requires: libglvnd-egl mesa-libgbm fontconfig libgcc glibc jsoncpp libxcb libglvnd
Requires: libwayland-server libdrm expat libxcb freetype libxml2 libXau libXau
Requires: libffi zlib-ng-compat bzip2-libs libpng harfbuzz libbrotli xz-libs
Requires: glib2 graphite2 libbrotli pcre2

Packager: Owen Zimmerman <[email protected]>

%description
Usable Linux display server that reinvents human-computer interaction for all kinds of XR, from putting 2D/XR apps into various 3D shells for varying uses to SDF-based interaction.

%prep
%autosetup -n server-%version
%cargo_prep_online

%build

%install
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked
%cargo_install

%files
%_bindir/stardust-xr-server
%license LICENSE
%doc README.md

%changelog
* Sat Sep 14 2024 Owen-sz <[email protected]>
- Package StardustXR Server
1 change: 1 addition & 0 deletions anda/stardust/server/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rpm.version(gh("StardustXR/server"));
Loading