Brett Cornwall pushed to branch main at Arch Linux / Packaging / Packages / libmusicxml
Commits: 0a73bbcb by Brett Cornwall at 2026-02-20T12:36:15-08:00 Update license to spdx format - - - - - 175d9f81 by Brett Cornwall at 2026-02-20T12:41:39-08:00 Add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to fix compile - - - - - ed8c771b by Brett Cornwall at 2026-02-20T12:42:09-08:00 gcc-libs dep deprecation https://archlinux.org/todo/gcc-libs-deprecation/ - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes: ===================================== .SRCINFO ===================================== @@ -1,13 +1,13 @@ pkgbase = libmusicxml pkgdesc = Portable C++ library around the MusicXML format pkgver = 3.22 - pkgrel = 3 + pkgrel = 4 url = https://github.com/grame-cncm/libmusicxml arch = x86_64 - license = MPL2 + license = MPL-2.0 makedepends = cmake - depends = gcc-libs - depends = glibc + depends = libgcc_s.so + depends = libstdc++.so provides = liblibmusicxml.so source = https://github.com/grame-cncm/libmusicxml/archive/v3.22/libmusicxml-v3.22.tar.gz sha512sums = 31e7dcddfd471185f927c84369f4ae2b0a92354073368400d63e09a413dc2227bcc3b9124a2035b07553e6dc79c1cee19d4e27e1f2ff19a43d512a19505fb8dc ===================================== PKGBUILD ===================================== @@ -1,13 +1,17 @@ # Maintainer: David Runge <[email protected]> +# Maintainer: Brett Cornwall <[email protected]> pkgname=libmusicxml pkgver=3.22 -pkgrel=3 +pkgrel=4 pkgdesc="Portable C++ library around the MusicXML format" arch=(x86_64) url="https://github.com/grame-cncm/libmusicxml" -license=(MPL2) -depends=(gcc-libs glibc) +license=(MPL-2.0) +depends=( + libgcc_s.so + libstdc++.so +) makedepends=(cmake) provides=(liblibmusicxml.so) source=($url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz) @@ -18,6 +22,7 @@ build() { local cmake_options=( -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=None + -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -W no-dev -B build -S $pkgname-$pkgver/build View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/libmusicxml/-/compare/488d5f61582507f52791d7970c849d667580c2dd...ed8c771b19191a74df921eb0eb009fb7e25491a5 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/libmusicxml/-/compare/488d5f61582507f52791d7970c849d667580c2dd...ed8c771b19191a74df921eb0eb009fb7e25491a5 You're receiving this email because of your account on gitlab.archlinux.org.
