Package Details: libadwaita-git 1.6.rc.r16.g6e98d61-2

Git Clone URL: https://aur.archlinux.org/libadwaita-git.git (read-only, click to copy)
Package Base: libadwaita-git
Description: Building blocks for modern adaptive GNOME applications
Upstream URL: https://gnome.pages.gitlab.gnome.org/libadwaita
Licenses: LGPL-2.1-or-later
Conflicts: libadwaita
Provides: libadwaita, libadwaita-1.so
Submitter: tallero
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 7
Popularity: 0.000000
First Submitted: 2021-01-20 02:44 (UTC)
Last Updated: 2024-09-03 21:22 (UTC)

Required by (562)

Sources (1)

Latest Comments

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

mazharhussain commented on 2022-02-28 09:18 (UTC)

It should be split into three packages (libadwaita-git, libadwaita-docs-git, libadwaita-demos-git) like the packages in the official ArchLinux repositories.

PKGBUILD of libadwaita in the official repos is available here.

I had previously created split packages for libadwaita-docs-git and libadwaita-demos-git here.

I will be happy to merge them into this package to create a single pkgbase with all three split packages.

crabvk commented on 2021-12-27 20:34 (UTC)

Got an error during the build

Dependency gtk4 found: NO found 4.4.1 but need: '>= 4.5.0'
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency gtk4 found: NO 

libadwaita/src/meson.build:227:0: ERROR: Invalid version of dependency, need 'gtk4' ['>= 4.5.0'] found '4.4.1'.

tallero commented on 2021-04-10 17:55 (UTC)

@yochananmarqos @SilverRainZ added in yesterday's commit.

SilverRainZ commented on 2021-04-10 16:30 (UTC)

Missing makedep sassc.

yochananmarqos commented on 2021-04-06 17:22 (UTC)

This now requires sassc to build.

<deleted-account> commented on 2021-03-30 23:31 (UTC)

Upstream is moved to https://gitlab.gnome.org/GNOME/libadwaita

FredBezies commented on 2021-03-29 16:16 (UTC)

You have to add an epoch=1 in the PKGBUILD because the new version is considered to be older than the previous version.

Old version: libadwaita-git 1.1.0.r.g73c17e0-3 New version: libadwaita-git r1558.77243b8-1

flipflop97 commented on 2021-03-26 12:22 (UTC)

Thanks for updating the pkgver function! Can you also build the package locally and then commit the new version? This updates the version number in the aur and will make aur helpers not display an update is available all the time.

flipflop97 commented on 2021-03-24 12:27 (UTC) (edited on 2021-03-24 12:27 (UTC) by flipflop97)

Here's a working pkgver:

pkgver() {
  cd libadwaita
  ( set -o pipefail
    git describe --long --tags 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

Since the repo has no tags yet, it will use the bottom part (which is probably why the current one fails). Once a tag is made, it will switch to the upper function which will create a version number just like the current one.