File: export-correct-package-name.diff

package info (click to toggle)
glycin 1.2.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 11,868 kB
  • sloc: python: 257; ansic: 93; xml: 44; makefile: 28; sh: 21; javascript: 10
file content (25 lines) | stat: -rw-r--r-- 895 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From: Marvin W <git@larma.de>
Date: Tue, 1 Apr 2025 23:29:27 +0200
Subject: Meson: Export correct package name

Previously, the .gir would announce a package libglycin-1, when it in fact
was glycin-1. The build even logged a related warning.

Forwarded: https://gitlab.gnome.org/GNOME/glycin/-/merge_requests/165
---
 libglycin/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libglycin/meson.build b/libglycin/meson.build
index e1069a8..70c332d 100644
--- a/libglycin/meson.build
+++ b/libglycin/meson.build
@@ -156,7 +156,7 @@ foreach package : packages
             # Listed as "C headers" in docs
             header: f'glycin@suffix@.h',
             # Listed as "pkg-config files" in docs
-            export_packages: f'libglycin@suffix@-1',
+            export_packages: f'glycin@suffix@-1',
             install: true,
         )
         if suffix == ''