[arch-commits] Commit in open-vm-tools/repos (4 files)

Christian Hesse eworm at gemini.archlinux.org
Wed May 25 06:48:21 UTC 2022


    Date: Wednesday, May 25, 2022 @ 06:48:21
  Author: eworm
Revision: 1210314

archrelease: copy trunk to community-testing-x86_64

Added:
  open-vm-tools/repos/community-testing-x86_64/
  open-vm-tools/repos/community-testing-x86_64/PKGBUILD
    (from rev 1210313, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-testing-x86_64/vmtoolsd.service
    (from rev 1210313, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-testing-x86_64/vmware-vmblock-fuse.service
    (from rev 1210313, open-vm-tools/trunk/vmware-vmblock-fuse.service)

-----------------------------+
 PKGBUILD                    |   67 ++++++++++++++++++++++++++++++++++++++++++
 vmtoolsd.service            |   10 ++++++
 vmware-vmblock-fuse.service |   12 +++++++
 3 files changed, 89 insertions(+)

Copied: open-vm-tools/repos/community-testing-x86_64/PKGBUILD (from rev 1210313, open-vm-tools/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2022-05-25 06:48:21 UTC (rev 1210314)
@@ -0,0 +1,67 @@
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Krzysztof Raczkowski <raczkow at gmail.com>
+
+pkgname=open-vm-tools
+epoch=6
+pkgver=12.0.5
+pkgrel=1
+pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source implementation of VMware Tools'
+arch=('x86_64')
+url='https://github.com/vmware/open-vm-tools'
+license=('LGPL')
+depends=('fuse2' 'icu' 'iproute2' 'libdnet' 'libmspack' 'libsigc++'
+         'libxcrypt' 'libcrypt.so' 'libxss' 'lsb-release' 'procps-ng'
+         'uriparser' 'gdk-pixbuf-xlib')
+makedepends=('chrpath' 'doxygen' 'gtkmm3' 'libxtst' 'python' 'rpcsvc-proto')
+checkdepends=('cunit')
+optdepends=('gtkmm3: DnD/CP plugin'
+            'libxtst: DnD/CP, resolution set plugins'
+            'netctl: suspend-resume network state'
+            'networkmanager: suspend-resume network state')
+backup=('etc/xdg/autostart/vmware-user.desktop')
+options=('docs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/vmware/open-vm-tools/archive/stable-${pkgver/_/-}.tar.gz"
+        'vmtoolsd.service'
+        'vmware-vmblock-fuse.service')
+sha256sums=('19ec67984347bb5f867a5646658c7695352cef772c4bee212a0d9216f02ebd93'
+            '0626cc86232f75a7286c24c52d6b44260bba55e2e96c17fa22ed36decb61a4d9'
+            '99e3cc1da20a751049144cc02dec77174a55109b5b5960e1facd78709da7724f')
+
+prepare() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  autoreconf -vi
+}
+
+build() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  sh ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --sysconfdir=/etc \
+    --with-udev-rules-dir=/usr/lib/udev/rules.d \
+    --without-xmlsecurity \
+    --without-kernel-modules
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  make install DESTDIR="$pkgdir"
+  chmod 7755 "$pkgdir"/usr/bin/vmware-user-suid-wrapper
+
+  # install vmware-xdg-detect-de
+  install -D -m0755 scripts/common/vmware-xdg-detect-de "$pkgdir"/usr/bin/vmware-xdg-detect-de
+
+  # install systemd files
+  install -D -m0644 "$srcdir"/vmtoolsd.service "$pkgdir"/usr/lib/systemd/system/vmtoolsd.service
+  install -D -m0644 "$srcdir"/vmware-vmblock-fuse.service "$pkgdir"/usr/lib/systemd/system/vmware-vmblock-fuse.service
+}

Copied: open-vm-tools/repos/community-testing-x86_64/vmtoolsd.service (from rev 1210313, open-vm-tools/trunk/vmtoolsd.service)
===================================================================
--- community-testing-x86_64/vmtoolsd.service	                        (rev 0)
+++ community-testing-x86_64/vmtoolsd.service	2022-05-25 06:48:21 UTC (rev 1210314)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Open Virtual Machine Tools (VMware Tools)
+ConditionVirtualization=vmware
+After=display-manager.service
+
+[Service]
+ExecStart=/usr/bin/vmtoolsd
+
+[Install]
+WantedBy=multi-user.target

Copied: open-vm-tools/repos/community-testing-x86_64/vmware-vmblock-fuse.service (from rev 1210313, open-vm-tools/trunk/vmware-vmblock-fuse.service)
===================================================================
--- community-testing-x86_64/vmware-vmblock-fuse.service	                        (rev 0)
+++ community-testing-x86_64/vmware-vmblock-fuse.service	2022-05-25 06:48:21 UTC (rev 1210314)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Open Virtual Machine Tools (vmware-vmblock-fuse)
+ConditionVirtualization=vmware
+
+[Service]
+Type=simple
+RuntimeDirectory=vmblock-fuse
+RuntimeDirectoryMode=755
+ExecStart=/usr/bin/vmware-vmblock-fuse -d -f -o subtype=vmware-vmblock,default_permissions,allow_other /run/vmblock-fuse
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list