Package Details: cosmic-session-git 1.0.0.alpha.4.r6.g998cf3f-1

Git Clone URL: https://aur.archlinux.org/cosmic-session-git.git (read-only, click to copy)
Package Base: cosmic-session-git
Description: Session manager for the COSMIC desktop environment
Upstream URL: https://github.com/pop-os/cosmic-session
Licenses: GPL-3.0-or-later
Conflicts: cosmic-session
Provides: cosmic-session
Submitter: yochananmarqos
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 18
Popularity: 2.00
First Submitted: 2024-02-21 04:21 (UTC)
Last Updated: 2025-01-02 17:15 (UTC)

Pinned Comments

yochananmarqos commented on 2024-07-10 23:59 (UTC) (edited on 2024-07-11 00:02 (UTC) by yochananmarqos)

I build in a clean chroot. If you have any issues building with makepkg or an AUR helper, that means there may be an issue in your local environment or your AUR helper may not actually be helping.

AUR comments are not the place for troubleshooting. There are forums and things for that. Please only comment if there is a packaging issue.

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

yochananmarqos commented on 2024-08-17 17:37 (UTC)

@soloturn: I've removed CARGO_TARGET_DIR=target where possible so user can define it if they wish.

soloturn commented on 2024-08-17 13:50 (UTC)

current,

CARGO_TARGET_DIR=/tmp/mytarget paru

does not work any more, as in the PKGBUILD there is:

CARGO_TARGET_DIR=target

which explicitely prevents changing it. with the default, it has a new directory in every build, thus every restart of a build builds everything again, with 20 cosmic packages 500*20, 10000 crates. which we wanted to avoid.

0xDEADC0DE commented on 2024-08-13 06:54 (UTC)

@yochannanmarqos The reason @soloturn is pointing the CARGO_TARGET_DIR is because some of us need that variable set in order to help downloading less often. That variable is set by default to the target directory in the current workspace. @soloturn made a comment on the pop-launcher-git package too. When compiling cosmic-session-git, the pop-launcher-git keeps failing because it can't find the target/release/${pkgname%-git}-bin directory for us that have set the CARGO_TARGET_DIR to a different directory. https://wiki.archlinux.org/title/COSMIC

yochananmarqos commented on 2024-08-05 21:15 (UTC)

Yes, System76 has just tagged epoch-1.0.0-alpha.1. Settle down. It's not done yet.

DO NOT submit any additional packages to the AUR pretending there's a "release". There isn't. Someone already jumped the gun recently and the package was subsequently deleted.

soloturn commented on 2024-08-01 14:16 (UTC) (edited on 2024-08-01 16:16 (UTC) by soloturn)

on 16gb hardware for me restricting the linker to one job is necessary, to get the depency cosmic-applets-git built without out of memory error. setting cargo target avoids re-downloading dependencies for the various packages:

MOLD_JOBS=1 CARGO_TARGET_DIR=/tmp/mytarget paru

can you add me as maintainer plase? switcheroo-control control is new dependency.

yochananmarqos commented on 2024-07-29 16:33 (UTC)

@mmstick: I've added vulkan-driver to optional dependencies.

mmstick commented on 2024-07-29 12:14 (UTC)

Would it be possible to add Vulkan packages as recommended dependencies? There's a handful of Arch users reporting rendering issues due to not having Vulkan drivers installed for AMD and Intel.

yochananmarqos commented on 2024-07-25 21:08 (UTC)

@soloturn: Turns out Arch removed the local cargo cache bit from the Rust package guidelines as well. I've removed it from all related COSMIC packages.

It takes you 6 hours to build? Yikes. Maybe you should invest in a better machine if you want to build things like this. No matter what "optimizations" you attempt, it's really not going to make much of a difference without better hardware.

soloturn commented on 2024-07-25 13:20 (UTC) (edited on 2024-07-25 13:21 (UTC) by soloturn)

created a ticket for the dependencies in cosmic epoch: https://github.com/pop-os/cosmic-epoch/issues/447. screen lock not working is just a bug which will go away. the answers i find interesting. btw, i created a pull request for cosmic comp to use just instead of makefile: https://github.com/pop-os/cosmic-comp/pull/653. if you want to have a look this makes sense?

for yay, i created a ticket that it should notice the version coming out of pkgver function and not try to reinstall: https://github.com/Jguer/yay/issues/2477.

mainly because build on my t460 lenovo takes 6 hours, for cargo i created a ticket to reuse what is already built: https://github.com/rust-lang/cargo/issues/14278. ed page closed it and would love more details. he as well suggested to remove export CARGO_HOME="$srcdir/cargo-home"