Package Details: orca-slicer 2.2.0-1

Git Clone URL: https://aur.archlinux.org/orca-slicer.git (read-only, click to copy)
Package Base: orca-slicer
Description: Orca Slicer is a fork of Bambu Studio. It was previously known as BambuStudio-SoftFever
Upstream URL: https://github.com/SoftFever/OrcaSlicer
Keywords: bambustudio orcaslicer
Licenses: AGPLv3
Conflicts: OrcaSlicer
Provides: OrcaSlicer
Submitter: xburst
Maintainer: c2h5oh
Last Packager: c2h5oh
Votes: 15
Popularity: 1.41
First Submitted: 2023-03-29 15:51 (UTC)
Last Updated: 2024-10-29 14:57 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 9 Next › Last »

tobur commented on 2024-10-22 19:18 (UTC) (edited on 2024-10-22 19:25 (UTC) by tobur)

Hi,

Getting a checksum error on orca-slicer.sh:

orca-slicer.sh ... FAILED

VorpalWay commented on 2024-09-29 05:49 (UTC)

I get this build error (sometimes, seem a bit random where exactly it fails, so perhaps a parallel make issue with underspecified dependencies)?

[ 13%] Performing download step (download, verify and extract) for 'dep_OpenCV'
-- Downloading...
   dst='/build/orca-slicer/src/OrcaSlicer/deps/build/../DL_CACHE/OpenCV/4.6.0.tar.gz'
   timeout='none'
   inactivity timeout='none'
-- Using src='https://github.com/opencv/opencv/archive/refs/tags/4.6.0.tar.gz'
-- verifying file...
       file='/build/orca-slicer/src/OrcaSlicer/deps/build/../DL_CACHE/OpenCV/4.6.0.tar.gz'
-- Downloading... done
-- extracting...
     src='/build/orca-slicer/src/OrcaSlicer/deps/DL_CACHE/OpenCV/4.6.0.tar.gz'
     dst='/build/orca-slicer/src/OrcaSlicer/deps/build/dep_OpenCV-prefix/src/dep_OpenCV'
-- extracting... [tar xfz]
-- extracting... [analysis]
-- extracting... [rename]
-- extracting... [clean up]
-- extracting... done
[ 13%] No update step for 'dep_OpenCV'
[ 14%] Performing patch step for 'dep_OpenCV'
Checking patch deps/build/dep_OpenCV-prefix/src/dep_OpenCV/cmake/templates/OpenCVConfig.root-WIN32.cmake.in...
error: deps/build/dep_OpenCV-prefix/src/dep_OpenCV/cmake/templates/OpenCVConfig.root-WIN32.cmake.in: No such file or directory
Checking patch deps/build/dep_OpenCV-prefix/src/dep_OpenCV/cmake/OpenCVDetectCXXCompiler.cmake...
error: deps/build/dep_OpenCV-prefix/src/dep_OpenCV/cmake/OpenCVDetectCXXCompiler.cmake: No such file or directory
make[2]: *** [CMakeFiles/dep_OpenCV.dir/build.make:117: dep_OpenCV-prefix/src/dep_OpenCV-stamp/dep_OpenCV-patch] Error 1
make[1]: *** [CMakeFiles/Makefile2:689: CMakeFiles/dep_OpenCV.dir/all] Error 2
make: *** [Makefile:91: all] Error 2

VorpalWay commented on 2024-09-28 10:24 (UTC)

@l8086 The shell script needs to use quotes around $@, or it will not handle file names with spaces in them correctly.

--- old/orca-slicer     2024-09-26 16:58:53.739631059 -0300
+++ new/orca-slicer     2024-09-26 16:58:49.212964574 -0300
@@ -2,4 +2,4 @@
 if [ ! -d $HOME/.config/OrcaSlicer ]; then
   mkdir -p $HOME/.config/OrcaSlicer
 fi
-$0-bin
+$0-bin "$@"

is the correct patch

l8086 commented on 2024-09-26 20:00 (UTC)

Please correct the wrapper (shell script) /usr/bin/orca-slicer to pass all arguments to the actual program binary (/usr/bin/orca-slicer-bin). See suggested patch below.

--- old/orca-slicer     2024-09-26 16:58:53.739631059 -0300
+++ new/orca-slicer     2024-09-26 16:58:49.212964574 -0300
@@ -2,4 +2,4 @@
 if [ ! -d $HOME/.config/OrcaSlicer ]; then
   mkdir -p $HOME/.config/OrcaSlicer
 fi
-$0-bin
+$0-bin $@

UmbraEx commented on 2024-09-14 23:49 (UTC)

@cgx appreciate the suggestion but had the same problem with the model viewing area still being black with additional artifacts on the menus when trying it with gamescope.

cgx commented on 2024-09-14 17:20 (UTC)

@UmbraEx As a temporary workaround, you might try running it with gamescope. Something like gamescope -w 1920 -h 1080 -f -b orca-slicer

UmbraEx commented on 2024-09-12 20:56 (UTC) (edited on 2024-09-12 20:56 (UTC) by UmbraEx)

Having issues under wayland with KDE Plasma. The area where you view the models is blank. If I switch back over to X it works fine though. Relatively new to arch but have tried going through the log outputs but not sure what to look for.

Log of lines look like this:

(orca-slicer-bin:14550): Gtk-CRITICAL **: 16:45:58.711: gtk_widget_set_size_request: assertion 'width >= -1' failed

(orca-slicer-bin:14550): Gtk-CRITICAL **: 16:45:58.711: gtk_widget_set_size_request: assertion 'width >= -1' failed

(orca-slicer-bin:14550): Gtk-CRITICAL **: 16:45:58.711: gtk_cell_layout_get_cells: assertion 'GTK_IS_CELL_LAYOUT (cell_layout)' failed

(orca-slicer-bin:14550): Gtk-CRITICAL **: 16:45:58.949: gtk_window_resize: assertion 'height > 0' failed

(orca-slicer-bin:14550): GStreamer-Play-WARNING **: 16:45:59.044: GstPlay: scaletempo element not available. Audio pitch will not be preserved during trick modes

(orca-slicer-bin:14550): GLib-GObject-CRITICAL **: 16:45:59.045: g_object_set_is_valid_property: object class 'GstPlayer' has no property named 'audio-sink'

Failed to create GBM buffer of size 2560x1300: Invalid argument

Any suggestions would be appreciated, thanks!

lod commented on 2024-09-04 11:36 (UTC)

I think you don't need ttf-harmonyos-sans any more. You should also check namcap it has a couple of complaints.

valo commented on 2024-09-03 23:13 (UTC)

pkgrel in .SRCINFO currently does not match PKGBUILD. See ArchWiki entry for .SRCINFO as for why this is bad.

cgx commented on 2024-08-28 10:44 (UTC) (edited on 2024-08-28 10:44 (UTC) by cgx)

I have no issues building this package on arch updated today. Also, updating the pkgbuild to 2.1.1+updpkgsums, everything compiles and seems to work fine.

diff --git a/PKGBUILD b/PKGBUILD
index 1e5e760..92ff73f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,9 @@
 # Maintainer: shizhiex shizhiex@gmail.com

pkgname="orca-slicer" -pkgver=2.0.0 -_tag='2.0.0' -pkgrel=3 +pkgver=2.1.1 +_tag='2.1.1' +pkgrel=0 pkgdesc="Orca Slicer is a fork of Bambu Studio. It was previously known as BambuStudio-SoftFever" arch=('x86_64') url="https://github.com/SoftFever/OrcaSlicer" @@ -19,7 +19,7 @@ source=( 'orca-slicer.sh' '0002-clipper.patch' ) -sha256sums=('1b431d5060f3ed4edde39c0ad841548249962d6ef7b80a178036e3a8a8a6bd31' +sha256sums=('dbe7c864fdabf429b99ecdf004a3bbb75b7416ffd3552cd2a54cecd6344a14ac' 'bb2662d0a4c58c43726ec98ef4acf201fcf98719c9bbfd207e2d6cdf695a2093' '01171a77d533584026f113092a6586e28c9d87e10117c0f81cb4357d11a29fb1' '30d860958f3fd5fc657daa6addce45e91689d9833b931c9feb646da760d61de8'