Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: msgraph-0.2.1
@ 2024-03-23 17:30 fanyx
  2024-03-23 17:34 ` [PR PATCH] [Updated] " fanyx
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: fanyx @ 2024-03-23 17:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 760 bytes --]

There is a new pull request by fanyx against master on the void-packages repository

https://github.com/fanyx/void-packages msgraph
https://github.com/void-linux/void-packages/pull/49479

New package: msgraph-0.2.1
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

Needed by `gvfs-1.54.0` (https://github.com/void-linux/void-packages/pull/49428)
Includes

A patch file from https://github.com/void-linux/void-packages/pull/49479.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-msgraph-49479.patch --]
[-- Type: text/x-diff, Size: 3409 bytes --]

From 87ef8177a6682d4c26efe74e53a5e7961c3e1caf Mon Sep 17 00:00:00 2001
From: fanyx <fanyx@posteo.net>
Date: Sat, 23 Mar 2024 18:22:06 +0100
Subject: [PATCH 1/2] uhttpmock: update to 0.10.0.

---
 srcpkgs/uhttpmock/template | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/uhttpmock/template b/srcpkgs/uhttpmock/template
index 0b405980cecc17..6778a4d4fc8f11 100644
--- a/srcpkgs/uhttpmock/template
+++ b/srcpkgs/uhttpmock/template
@@ -1,17 +1,17 @@
 # Template file for 'uhttpmock'
 pkgname=uhttpmock
-version=0.5.3
+version=0.10.0
 revision=1
-build_style=gnu-configure
+build_style=meson
 build_helper="gir"
 hostmakedepends="automake pkg-config vala"
-makedepends="glib-devel libsoup-devel vala"
+makedepends="glib-devel libsoup3-devel vala gtk-doc"
 short_desc="HTTP web service mocking project for projects which use libsoup"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://gitlab.com/uhttpmock/uhttpmock"
 distfiles="http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$version.tar.xz"
-checksum=90843223c3a30bdb7f1eb3442373a03fee425af85a9df289cd687698ccff112f
+checksum=40b6b7edf8492ce4e70443057a8bd478faf61b041e791706053ece9a2929fd52
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -24,10 +24,9 @@ uhttpmock-devel_package() {
 	short_desc+=" - development files"
 	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
 	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/*.a
 		vmove usr/lib/*.so
 		vmove usr/lib/pkgconfig
+		vmove usr/lib/girepository-1.0
 		vmove usr/share/gtk-doc
 		vmove usr/share/gir-1.0
 		vmove usr/share/vala

From 9f6cdb8aad9c9073e2f38420717672cf31bc8b20 Mon Sep 17 00:00:00 2001
From: fanyx <fanyx@posteo.net>
Date: Sat, 23 Mar 2024 18:25:44 +0100
Subject: [PATCH 2/2] New package: msgraph-0.2.1

---
 srcpkgs/msgraph-devel    |  1 +
 srcpkgs/msgraph/template | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)
 create mode 120000 srcpkgs/msgraph-devel
 create mode 100644 srcpkgs/msgraph/template

diff --git a/srcpkgs/msgraph-devel b/srcpkgs/msgraph-devel
new file mode 120000
index 00000000000000..19dfc8750ad133
--- /dev/null
+++ b/srcpkgs/msgraph-devel
@@ -0,0 +1 @@
+msgraph
\ No newline at end of file
diff --git a/srcpkgs/msgraph/template b/srcpkgs/msgraph/template
new file mode 100644
index 00000000000000..1cf6e66ffa3db2
--- /dev/null
+++ b/srcpkgs/msgraph/template
@@ -0,0 +1,29 @@
+# Template file for 'msgraph'
+pkgname=msgraph
+version=0.2.1
+revision=1
+build_style=meson
+build_helper="gir"
+hostmakedepends="glib-devel pkg-config"
+makedepends="json-glib-devel rest-devel gnome-online-accounts-devel
+ uhttpmock-devel gi-docgen"
+short_desc="Library to acces MS Graph API for Office 365"
+maintainer="fanyx <fanyx@posteo.net>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.gnome.org/GNOME/msgraph"
+changelog="https://gitlab.gnome.org/GNOME/msgraph/-/raw/main/NEWS"
+distfiles="${GNOME_SITE}/msgraph/${version%.*}/msgraph-${version}.tar.xz"
+checksum=e0e59eaa8ae3e0a48ec0a6c2fed0470856a709248e9212b6a1d037de5792ecbb
+
+msgraph-devel_package() {
+	short_desc+=" - development files"
+	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
+	pkg_install() {
+        vmove usr/include
+		vmove usr/lib/*.so
+		vmove usr/lib/pkgconfig
+		vmove usr/lib/girepository-1.0
+		vmove usr/share/doc
+		vmove usr/share/gir-1.0
+	}
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] New package: msgraph-0.2.1
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
@ 2024-03-23 17:34 ` fanyx
  2024-03-23 17:45 ` fanyx
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: fanyx @ 2024-03-23 17:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 841 bytes --]

There is an updated pull request by fanyx against master on the void-packages repository

https://github.com/fanyx/void-packages msgraph
https://github.com/void-linux/void-packages/pull/49479

New package: msgraph-0.2.1
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

Needed by `gvfs-1.54.0` (https://github.com/void-linux/void-packages/pull/49428)
Includes `uhttpmock-0.10.0` (https://github.com/void-linux/void-packages/pull/49480)

A patch file from https://github.com/void-linux/void-packages/pull/49479.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-msgraph-49479.patch --]
[-- Type: text/x-diff, Size: 3403 bytes --]

From 87ef8177a6682d4c26efe74e53a5e7961c3e1caf Mon Sep 17 00:00:00 2001
From: fanyx <fanyx@posteo.net>
Date: Sat, 23 Mar 2024 18:22:06 +0100
Subject: [PATCH 1/2] uhttpmock: update to 0.10.0.

---
 srcpkgs/uhttpmock/template | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/uhttpmock/template b/srcpkgs/uhttpmock/template
index 0b405980cecc17..6778a4d4fc8f11 100644
--- a/srcpkgs/uhttpmock/template
+++ b/srcpkgs/uhttpmock/template
@@ -1,17 +1,17 @@
 # Template file for 'uhttpmock'
 pkgname=uhttpmock
-version=0.5.3
+version=0.10.0
 revision=1
-build_style=gnu-configure
+build_style=meson
 build_helper="gir"
 hostmakedepends="automake pkg-config vala"
-makedepends="glib-devel libsoup-devel vala"
+makedepends="glib-devel libsoup3-devel vala gtk-doc"
 short_desc="HTTP web service mocking project for projects which use libsoup"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://gitlab.com/uhttpmock/uhttpmock"
 distfiles="http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$version.tar.xz"
-checksum=90843223c3a30bdb7f1eb3442373a03fee425af85a9df289cd687698ccff112f
+checksum=40b6b7edf8492ce4e70443057a8bd478faf61b041e791706053ece9a2929fd52
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -24,10 +24,9 @@ uhttpmock-devel_package() {
 	short_desc+=" - development files"
 	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
 	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/*.a
 		vmove usr/lib/*.so
 		vmove usr/lib/pkgconfig
+		vmove usr/lib/girepository-1.0
 		vmove usr/share/gtk-doc
 		vmove usr/share/gir-1.0
 		vmove usr/share/vala

From b5a0b8279ac4c5ff1e214894930458e205f02aa4 Mon Sep 17 00:00:00 2001
From: fanyx <fanyx@posteo.net>
Date: Sat, 23 Mar 2024 18:25:44 +0100
Subject: [PATCH 2/2] New package: msgraph-0.2.1

---
 srcpkgs/msgraph-devel    |  1 +
 srcpkgs/msgraph/template | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)
 create mode 120000 srcpkgs/msgraph-devel
 create mode 100644 srcpkgs/msgraph/template

diff --git a/srcpkgs/msgraph-devel b/srcpkgs/msgraph-devel
new file mode 120000
index 00000000000000..19dfc8750ad133
--- /dev/null
+++ b/srcpkgs/msgraph-devel
@@ -0,0 +1 @@
+msgraph
\ No newline at end of file
diff --git a/srcpkgs/msgraph/template b/srcpkgs/msgraph/template
new file mode 100644
index 00000000000000..a6bb5ffd32f8cb
--- /dev/null
+++ b/srcpkgs/msgraph/template
@@ -0,0 +1,29 @@
+# Template file for 'msgraph'
+pkgname=msgraph
+version=0.2.1
+revision=1
+build_style=meson
+build_helper="gir"
+hostmakedepends="glib-devel pkg-config"
+makedepends="json-glib-devel rest-devel gnome-online-accounts-devel
+ uhttpmock-devel gi-docgen"
+short_desc="Library to acces MS Graph API for Office 365"
+maintainer="fanyx <fanyx@posteo.net>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.gnome.org/GNOME/msgraph"
+changelog="https://gitlab.gnome.org/GNOME/msgraph/-/raw/main/NEWS"
+distfiles="${GNOME_SITE}/msgraph/${version%.*}/msgraph-${version}.tar.xz"
+checksum=e0e59eaa8ae3e0a48ec0a6c2fed0470856a709248e9212b6a1d037de5792ecbb
+
+msgraph-devel_package() {
+	short_desc+=" - development files"
+	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/*.so
+		vmove usr/lib/pkgconfig
+		vmove usr/lib/girepository-1.0
+		vmove usr/share/doc
+		vmove usr/share/gir-1.0
+	}
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] New package: msgraph-0.2.1
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
  2024-03-23 17:34 ` [PR PATCH] [Updated] " fanyx
@ 2024-03-23 17:45 ` fanyx
  2024-03-23 17:59 ` New package: msgraph-0.2.1, uhttpmock: update to 0.10.0 fanyx
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: fanyx @ 2024-03-23 17:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 841 bytes --]

There is an updated pull request by fanyx against master on the void-packages repository

https://github.com/fanyx/void-packages msgraph
https://github.com/void-linux/void-packages/pull/49479

New package: msgraph-0.2.1
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

Needed by `gvfs-1.54.0` (https://github.com/void-linux/void-packages/pull/49428)
Includes `uhttpmock-0.10.0` (https://github.com/void-linux/void-packages/pull/49480)

A patch file from https://github.com/void-linux/void-packages/pull/49479.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-msgraph-49479.patch --]
[-- Type: text/x-diff, Size: 3457 bytes --]

From 8606b33c931a93a1eb4430f5c484f78f87bc6c27 Mon Sep 17 00:00:00 2001
From: fanyx <fanyx@posteo.net>
Date: Sat, 23 Mar 2024 18:22:06 +0100
Subject: [PATCH 1/2] uhttpmock: update to 0.10.0.

---
 srcpkgs/uhttpmock/template | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/uhttpmock/template b/srcpkgs/uhttpmock/template
index 0b405980cecc17..7fe76450f6668f 100644
--- a/srcpkgs/uhttpmock/template
+++ b/srcpkgs/uhttpmock/template
@@ -1,17 +1,17 @@
 # Template file for 'uhttpmock'
 pkgname=uhttpmock
-version=0.5.3
+version=0.10.0
 revision=1
-build_style=gnu-configure
+build_style=meson
 build_helper="gir"
-hostmakedepends="automake pkg-config vala"
-makedepends="glib-devel libsoup-devel vala"
+hostmakedepends="automake pkg-config vala gtk-doc"
+makedepends="glib-devel libsoup3-devel vala"
 short_desc="HTTP web service mocking project for projects which use libsoup"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://gitlab.com/uhttpmock/uhttpmock"
 distfiles="http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$version.tar.xz"
-checksum=90843223c3a30bdb7f1eb3442373a03fee425af85a9df289cd687698ccff112f
+checksum=40b6b7edf8492ce4e70443057a8bd478faf61b041e791706053ece9a2929fd52
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -24,10 +24,9 @@ uhttpmock-devel_package() {
 	short_desc+=" - development files"
 	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
 	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/*.a
 		vmove usr/lib/*.so
 		vmove usr/lib/pkgconfig
+		vmove usr/lib/girepository-1.0
 		vmove usr/share/gtk-doc
 		vmove usr/share/gir-1.0
 		vmove usr/share/vala

From 1f5207e7fc3deabf2fe2dc381ca00cfe94af7d29 Mon Sep 17 00:00:00 2001
From: fanyx <fanyx@posteo.net>
Date: Sat, 23 Mar 2024 18:25:44 +0100
Subject: [PATCH 2/2] New package: msgraph-0.2.1

---
 srcpkgs/msgraph-devel    |  1 +
 srcpkgs/msgraph/template | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)
 create mode 120000 srcpkgs/msgraph-devel
 create mode 100644 srcpkgs/msgraph/template

diff --git a/srcpkgs/msgraph-devel b/srcpkgs/msgraph-devel
new file mode 120000
index 00000000000000..19dfc8750ad133
--- /dev/null
+++ b/srcpkgs/msgraph-devel
@@ -0,0 +1 @@
+msgraph
\ No newline at end of file
diff --git a/srcpkgs/msgraph/template b/srcpkgs/msgraph/template
new file mode 100644
index 00000000000000..95e5285fb5ab22
--- /dev/null
+++ b/srcpkgs/msgraph/template
@@ -0,0 +1,29 @@
+# Template file for 'msgraph'
+pkgname=msgraph
+version=0.2.1
+revision=1
+build_style=meson
+build_helper="gir"
+hostmakedepends="glib-devel pkg-config gtk-doc gi-docgen"
+makedepends="json-glib-devel rest-devel gnome-online-accounts-devel
+ uhttpmock-devel"
+short_desc="Library to acces MS Graph API for Office 365"
+maintainer="fanyx <fanyx@posteo.net>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.gnome.org/GNOME/msgraph"
+changelog="https://gitlab.gnome.org/GNOME/msgraph/-/raw/main/NEWS"
+distfiles="${GNOME_SITE}/msgraph/${version%.*}/msgraph-${version}.tar.xz"
+checksum=e0e59eaa8ae3e0a48ec0a6c2fed0470856a709248e9212b6a1d037de5792ecbb
+
+msgraph-devel_package() {
+	short_desc+=" - development files"
+	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/*.so
+		vmove usr/lib/pkgconfig
+		vmove usr/lib/girepository-1.0
+		vmove usr/share/doc
+		vmove usr/share/gir-1.0
+	}
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: msgraph-0.2.1, uhttpmock: update to 0.10.0
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
  2024-03-23 17:34 ` [PR PATCH] [Updated] " fanyx
  2024-03-23 17:45 ` fanyx
@ 2024-03-23 17:59 ` fanyx
  2024-03-23 18:41 ` classabbyamp
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: fanyx @ 2024-03-23 17:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

New comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49479#issuecomment-2016562058

Comment:
reading the error messages, i assume this cannot be built for archs other than `x86*`

https://gitlab.archlinux.org/archlinux/packaging/packages/msgraph/-/blob/main/PKGBUILD?ref_type=heads#L12
Arch also only build it for x86_64

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: msgraph-0.2.1, uhttpmock: update to 0.10.0
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
                   ` (2 preceding siblings ...)
  2024-03-23 17:59 ` New package: msgraph-0.2.1, uhttpmock: update to 0.10.0 fanyx
@ 2024-03-23 18:41 ` classabbyamp
  2024-03-23 20:02 ` cinerea0
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: classabbyamp @ 2024-03-23 18:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 227 bytes --]

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/49479#issuecomment-2016572183

Comment:
> Arch also only build it for x86_64

arch only exists (officially) for x86_64

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Closed]: New package: msgraph-0.2.1, uhttpmock: update to 0.10.0
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
                   ` (4 preceding siblings ...)
  2024-03-23 20:02 ` cinerea0
@ 2024-03-23 20:02 ` cinerea0
  2024-03-23 20:05 ` fanyx
  2024-03-23 20:05 ` fanyx
  7 siblings, 0 replies; 9+ messages in thread
From: cinerea0 @ 2024-03-23 20:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 620 bytes --]

There's a closed pull request on the void-packages repository

New package: msgraph-0.2.1, uhttpmock: update to 0.10.0
https://github.com/void-linux/void-packages/pull/49479

Description:
#### Testing the changes
- I tested the changes in this PR: **NO**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

Needed by `gvfs-1.54.0` (https://github.com/void-linux/void-packages/pull/49428)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: msgraph-0.2.1, uhttpmock: update to 0.10.0
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
                   ` (3 preceding siblings ...)
  2024-03-23 18:41 ` classabbyamp
@ 2024-03-23 20:02 ` cinerea0
  2024-03-23 20:02 ` [PR PATCH] [Closed]: " cinerea0
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cinerea0 @ 2024-03-23 20:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 382 bytes --]

New comment by cinerea0 on void-packages repository

https://github.com/void-linux/void-packages/pull/49479#issuecomment-2016589538

Comment:
I've been working on this offline over the past week, just opened a PR here: https://github.com/void-linux/void-packages/pull/49482. It builds properly for all architectures, but you have to disable docs on cross. I'll just close this one.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: msgraph-0.2.1, uhttpmock: update to 0.10.0
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
                   ` (5 preceding siblings ...)
  2024-03-23 20:02 ` [PR PATCH] [Closed]: " cinerea0
@ 2024-03-23 20:05 ` fanyx
  2024-03-23 20:05 ` fanyx
  7 siblings, 0 replies; 9+ messages in thread
From: fanyx @ 2024-03-23 20:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 288 bytes --]

New comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49479#issuecomment-2016589971

Comment:
Ohhh, absolutely missed your one.
only got active with gnome a few days ago, so thanks for letting me know

I'll try rebuilding goa using your pr

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: msgraph-0.2.1, uhttpmock: update to 0.10.0
  2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
                   ` (6 preceding siblings ...)
  2024-03-23 20:05 ` fanyx
@ 2024-03-23 20:05 ` fanyx
  7 siblings, 0 replies; 9+ messages in thread
From: fanyx @ 2024-03-23 20:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 247 bytes --]

New comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49479#issuecomment-2016589971

Comment:
Ohhh, absolutely missed your one.
only got active with gnome a few days ago, so thanks for letting me know

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-03-23 20:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-23 17:30 [PR PATCH] New package: msgraph-0.2.1 fanyx
2024-03-23 17:34 ` [PR PATCH] [Updated] " fanyx
2024-03-23 17:45 ` fanyx
2024-03-23 17:59 ` New package: msgraph-0.2.1, uhttpmock: update to 0.10.0 fanyx
2024-03-23 18:41 ` classabbyamp
2024-03-23 20:02 ` cinerea0
2024-03-23 20:02 ` [PR PATCH] [Closed]: " cinerea0
2024-03-23 20:05 ` fanyx
2024-03-23 20:05 ` fanyx

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).