[arch-commits] Commit in libldm/repos/community-x86_64 (4 files)

Maxime Gauduin alucryd at archlinux.org
Tue Jan 26 10:39:38 UTC 2021


    Date: Tuesday, January 26, 2021 @ 10:39:38
  Author: alucryd
Revision: 830388

archrelease: copy trunk to community-x86_64

Added:
  libldm/repos/community-x86_64/PKGBUILD
    (from rev 830387, libldm/trunk/PKGBUILD)
  libldm/repos/community-x86_64/ldmtool.service
    (from rev 830387, libldm/trunk/ldmtool.service)
Deleted:
  libldm/repos/community-x86_64/PKGBUILD
  libldm/repos/community-x86_64/ldmtool.service

-----------------+
 PKGBUILD        |  123 +++++++++++++++++++++++++++---------------------------
 ldmtool.service |   26 +++++------
 2 files changed, 76 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-01-26 10:39:32 UTC (rev 830387)
+++ PKGBUILD	2021-01-26 10:39:38 UTC (rev 830388)
@@ -1,60 +0,0 @@
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: Chris Severance <aur.severach at spamgourmet.com>
-# Contributor: Neal Buchanan <neal.buchanan at gmx.com>
-
-pkgname=libldm
-pkgver=0.2.4.r20.a856552
-pkgrel=1
-pkgdesc='A tool and library for managing Microsoft Windows Dynamic Disks'
-arch=(x86_64)
-url=https://github.com/mdbooth/libldm
-license=(
-  GPL3
-  LGPL3
-)
-depends=(
-  device-mapper
-  glib2
-  json-glib
-  libreadline.so
-  libuuid.so
-  zlib
-)
-makedepends=(
-  git
-  gtk-doc
-)
-provides=(
-  ldmtool
-  libldm-1.0.so
-)
-conflicts=(ldmtool)
-source=(
-  git+https://github.com/mdbooth/libldm.git#commit=a856552670944b4dbb28740aa42e58ffa8434803
-  ldmtool.service
-)
-sha256sums=(
-  SKIP
-  bc191523e702b9f8813d93f9e37693e6b97d9adf7eada5463c29fbf1b46c6f2a
-)
-
-pkgver() {
-  cd libldm
-
-  git describe --tags | sed 's/^libldm-//; s/-/.r/; s/-g/./'
-}
-
-build() {
-  cd libldm
-
-  ./autogen.sh \
-    --prefix=/usr
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C libldm install
-  install -Dm 644 ldmtool.service -t "${pkgdir}"/usr/lib/systemd/system/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libldm/repos/community-x86_64/PKGBUILD (from rev 830387, libldm/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-01-26 10:39:38 UTC (rev 830388)
@@ -0,0 +1,63 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Chris Severance <aur.severach at spamgourmet.com>
+# Contributor: Neal Buchanan <neal.buchanan at gmx.com>
+
+pkgname=libldm
+pkgver=0.2.4.r22.63883d8
+pkgrel=1
+pkgdesc='A tool and library for managing Microsoft Windows Dynamic Disks'
+arch=(x86_64)
+url=https://github.com/mdbooth/libldm
+license=(
+  GPL3
+  LGPL3
+)
+depends=(
+  device-mapper
+  glib2
+  json-glib
+  libreadline.so
+  libuuid.so
+  zlib
+)
+makedepends=(
+  git
+  gtk-doc
+)
+provides=(
+  ldmtool
+  libldm-1.0.so
+)
+conflicts=(ldmtool)
+_commit=63883d8151cbdbf0714332984c41c7fb291dea67
+source=(
+  git+https://github.com/mdbooth/libldm.git#commit=${_commit}
+  ldmtool.service
+)
+b2sums=('SKIP'
+        'fa03762f3642959b8abd50e62f79cc23e0dfca49c7c7d661c38d49fd5282d5bd95ccf5b66562a7b005657312b4f4f72e92c4e75365f007ca09e8199b7ba9802a')
+
+pkgver() {
+  cd libldm
+
+  git describe --tags | sed 's/^libldm-//; s/-/.r/; s/-g/./'
+}
+
+prepare() {
+  cd libldm
+  autoreconf -fiv
+}
+
+build() {
+  cd libldm
+  ./configure \
+    --prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libldm install
+  install -Dm 644 ldmtool.service -t "${pkgdir}"/usr/lib/systemd/system/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: ldmtool.service
===================================================================
--- ldmtool.service	2021-01-26 10:39:32 UTC (rev 830387)
+++ ldmtool.service	2021-01-26 10:39:38 UTC (rev 830388)
@@ -1,13 +0,0 @@
-[Unit]
-Description=Windows Dynamic Disk Mount
-Before=local-fs-pre.target
-DefaultDependencies=no
-
-[Service]
-Type=simple
-User=root
-ExecStart=/usr/bin/ldmtool create all
-
-[Install]
-WantedBy=local-fs-pre.target
-

Copied: libldm/repos/community-x86_64/ldmtool.service (from rev 830387, libldm/trunk/ldmtool.service)
===================================================================
--- ldmtool.service	                        (rev 0)
+++ ldmtool.service	2021-01-26 10:39:38 UTC (rev 830388)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Windows Dynamic Disk Mount
+Before=local-fs-pre.target
+DefaultDependencies=no
+
+[Service]
+Type=simple
+User=root
+ExecStart=/usr/bin/ldmtool create all
+
+[Install]
+WantedBy=local-fs-pre.target
+



More information about the arch-commits mailing list