Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] virt-manager: update to 4.1.0.
@ 2022-09-03  9:27 paper42
  2022-09-03 10:23 ` [PR PATCH] [Updated] " paper42
  2022-09-03 18:17 ` [PR PATCH] [Merged]: " paper42
  0 siblings, 2 replies; 3+ messages in thread
From: paper42 @ 2022-09-03  9:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/paper42/void-packages virt-manager-4.1
https://github.com/void-linux/void-packages/pull/39081

virt-manager: update to 4.1.0.
* fixes build with setuptools 61

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### 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**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-virt-manager-4.1-39081.patch --]
[-- Type: text/x-diff, Size: 2857 bytes --]

From 2bb6cd539d9a3fec98c2295136cbee499679cfbe Mon Sep 17 00:00:00 2001
From: Michal Vasilek <michal@vasilek.cz>
Date: Sat, 3 Sep 2022 11:22:35 +0200
Subject: [PATCH] virt-manager: update to 4.1.0.

* fixes build with setuptools 61
---
 ...le-compile-schemas-update-icon-cache.patch | 20 -------------------
 srcpkgs/virt-manager/template                 | 12 +++++++++--
 2 files changed, 10 insertions(+), 22 deletions(-)
 delete mode 100644 srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch

diff --git a/srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch b/srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch
deleted file mode 100644
index ad8f6f798b20..000000000000
--- a/srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/setup.py
-+++ b/setup.py
-@@ -264,17 +264,6 @@ class my_install(setuptools.command.install.install):
-         setuptools.command.install.install.finalize_options(self)
- 
-     def run(self):
--        if not self.distribution.no_update_icon_cache:
--            print("running gtk-update-icon-cache")
--            icon_path = os.path.join(self.install_data, "share/icons/hicolor")
--            self.spawn(["gtk-update-icon-cache", "-q", "-t", icon_path])
--
--        if not self.distribution.no_compile_schemas:
--            print("compiling gsettings schemas")
--            gschema_install = os.path.join(self.install_data,
--                "share/glib-2.0/schemas")
--            self.spawn(["glib-compile-schemas", gschema_install])
--
-         setuptools.command.install.install.run(self)
- 
- 
diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template
index 3b66b6fd8a90..9cf74dfd50ba 100644
--- a/srcpkgs/virt-manager/template
+++ b/srcpkgs/virt-manager/template
@@ -1,6 +1,6 @@
 # Template file for 'virt-manager'
 pkgname=virt-manager
-version=4.0.0
+version=4.1.0
 revision=1
 build_style=python3-module
 pycompile_dirs="/usr/share/${pkgname}/virtManager"
@@ -16,9 +16,17 @@ license="GPL-2.0-or-later"
 homepage="https://virt-manager.org"
 changelog="https://raw.githubusercontent.com/virt-manager/virt-manager/master/NEWS.md"
 distfiles="https://virt-manager.org/download/sources/${pkgname}/${pkgname}-${version}.tar.gz"
-checksum=515aaa2021a4bf352b0573098fe6958319b1ba8ec508ea37e064803f97f17086
+checksum=950681d7b32dc61669278ad94ef31da33109bf6fcf0426ed82dfd7379aa590a2
 python_version=3
 
+do_install() {
+	# make_install_args can't be used because --no-* has to be specified
+	# before the install argument
+	./setup.py \
+	    --no-update-icon-cache --no-compile-schemas \
+	    install --root=${DESTDIR}
+}
+
 virt-manager-tools_package() {
 	short_desc="Programs to create and clone virtual machines"
 	depends="${_coredeps} python3-argcomplete"

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

* Re: [PR PATCH] [Updated] virt-manager: update to 4.1.0.
  2022-09-03  9:27 [PR PATCH] virt-manager: update to 4.1.0 paper42
@ 2022-09-03 10:23 ` paper42
  2022-09-03 18:17 ` [PR PATCH] [Merged]: " paper42
  1 sibling, 0 replies; 3+ messages in thread
From: paper42 @ 2022-09-03 10:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/paper42/void-packages virt-manager-4.1
https://github.com/void-linux/void-packages/pull/39081

virt-manager: update to 4.1.0.
* fixes build with setuptools 61

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### 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**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-virt-manager-4.1-39081.patch --]
[-- Type: text/x-diff, Size: 3300 bytes --]

From 7c96af15acf196d1863134ab14fcee2c7b60701e Mon Sep 17 00:00:00 2001
From: Michal Vasilek <michal@vasilek.cz>
Date: Sat, 3 Sep 2022 11:22:35 +0200
Subject: [PATCH] virt-manager: update to 4.1.0.

* fixes build with setuptools 61
---
 ...le-compile-schemas-update-icon-cache.patch | 20 -------------------
 srcpkgs/virt-manager/template                 | 14 ++++++++++---
 2 files changed, 11 insertions(+), 23 deletions(-)
 delete mode 100644 srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch

diff --git a/srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch b/srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch
deleted file mode 100644
index ad8f6f798b20..000000000000
--- a/srcpkgs/virt-manager/patches/disable-compile-schemas-update-icon-cache.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/setup.py
-+++ b/setup.py
-@@ -264,17 +264,6 @@ class my_install(setuptools.command.install.install):
-         setuptools.command.install.install.finalize_options(self)
- 
-     def run(self):
--        if not self.distribution.no_update_icon_cache:
--            print("running gtk-update-icon-cache")
--            icon_path = os.path.join(self.install_data, "share/icons/hicolor")
--            self.spawn(["gtk-update-icon-cache", "-q", "-t", icon_path])
--
--        if not self.distribution.no_compile_schemas:
--            print("compiling gsettings schemas")
--            gschema_install = os.path.join(self.install_data,
--                "share/glib-2.0/schemas")
--            self.spawn(["glib-compile-schemas", gschema_install])
--
-         setuptools.command.install.install.run(self)
- 
- 
diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template
index 3b66b6fd8a90..2172af5b2beb 100644
--- a/srcpkgs/virt-manager/template
+++ b/srcpkgs/virt-manager/template
@@ -1,6 +1,6 @@
 # Template file for 'virt-manager'
 pkgname=virt-manager
-version=4.0.0
+version=4.1.0
 revision=1
 build_style=python3-module
 pycompile_dirs="/usr/share/${pkgname}/virtManager"
@@ -9,16 +9,24 @@ depends="virt-manager-tools>=${version}_${revision} libvirt-glib
  gtk-vnc spice-gtk gtksourceview4 dconf vte3 gir-freedesktop"
 _coredeps="python3-gobject libvirt-python3 libosinfo
  libxml2-python3 python3-requests cdrtools"
-checkdepends="python3-pytest cpio ${_coredeps}"
+checkdepends="python3-pytest cpio xorriso ${_coredeps}"
 short_desc="User interface for managing virtual machines"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
 license="GPL-2.0-or-later"
 homepage="https://virt-manager.org"
 changelog="https://raw.githubusercontent.com/virt-manager/virt-manager/master/NEWS.md"
 distfiles="https://virt-manager.org/download/sources/${pkgname}/${pkgname}-${version}.tar.gz"
-checksum=515aaa2021a4bf352b0573098fe6958319b1ba8ec508ea37e064803f97f17086
+checksum=950681d7b32dc61669278ad94ef31da33109bf6fcf0426ed82dfd7379aa590a2
 python_version=3
 
+do_install() {
+	# make_install_args can't be used because --no-* has to be specified
+	# before the install argument
+	./setup.py \
+	    --no-update-icon-cache --no-compile-schemas \
+	    install --root=${DESTDIR}
+}
+
 virt-manager-tools_package() {
 	short_desc="Programs to create and clone virtual machines"
 	depends="${_coredeps} python3-argcomplete"

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

* Re: [PR PATCH] [Merged]: virt-manager: update to 4.1.0.
  2022-09-03  9:27 [PR PATCH] virt-manager: update to 4.1.0 paper42
  2022-09-03 10:23 ` [PR PATCH] [Updated] " paper42
@ 2022-09-03 18:17 ` paper42
  1 sibling, 0 replies; 3+ messages in thread
From: paper42 @ 2022-09-03 18:17 UTC (permalink / raw)
  To: ml

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

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

virt-manager: update to 4.1.0.
https://github.com/void-linux/void-packages/pull/39081

Description:
* fixes build with setuptools 61

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### 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**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2022-09-03 18:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-03  9:27 [PR PATCH] virt-manager: update to 4.1.0 paper42
2022-09-03 10:23 ` [PR PATCH] [Updated] " paper42
2022-09-03 18:17 ` [PR PATCH] [Merged]: " paper42

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).