[arch-commits] Commit in puppet/repos (3 files)

Felix Yan felixonmars at archlinux.org
Thu Dec 26 01:31:28 UTC 2019


    Date: Thursday, December 26, 2019 @ 01:31:28
  Author: felixonmars
Revision: 541780

archrelease: copy trunk to community-staging-any

Added:
  puppet/repos/community-staging-any/
  puppet/repos/community-staging-any/PKGBUILD
    (from rev 541779, puppet/trunk/PKGBUILD)
  puppet/repos/community-staging-any/puppet.install
    (from rev 541779, puppet/trunk/puppet.install)

----------------+
 PKGBUILD       |  100 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 puppet.install |    5 ++
 2 files changed, 105 insertions(+)

Copied: puppet/repos/community-staging-any/PKGBUILD (from rev 541779, puppet/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2019-12-26 01:31:28 UTC (rev 541780)
@@ -0,0 +1,100 @@
+# Maintainer: Christian Rebischke <chris.rebischke at archlinux.org>
+# Contributor: Jonathan Steel <jsteel at archlinux.org>
+# Contributor: Greg Sutcliffe <puppet-aur (at) emeraldreverie (dot) org>
+# Contributor: Hyacinthe Cartiaux <hyacinthe (dot) cartiaux (at) free (dot) fr>
+# Contributor: Thomas S Hatch <thatch45 (at) Gmail (dot) com>
+# Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
+# Contributor: Miah Johnson <miah (at) chia-pet dot org>
+# Contributor: Dave Simons <miouhpi (at) Gmail (dot) com>
+# Contributor: Niels Abspoel <aboe76 (at) Gmail (dot) com>
+# Contributor: Tim Meusel <tim (at) bastelfreak (dot) de>
+
+pkgname=puppet
+pkgver=6.10.1
+pkgrel=2
+pkgdesc="Server automation framework and application"
+arch=('any')
+url="https://puppet.com/products/open-source-projects"
+license=('Apache')
+depends=('ruby' 'facter' 'hiera' 'ruby-semantic_puppet' 'ruby-augeas'
+'ruby-shadow' 'ruby-concurrent' 'ruby-multi_json')
+makedepends=('jq' 'git')
+optdepends=('ruby-shadow: user password management')
+backup=('etc/puppetlabs/puppet/auth.conf'
+        'etc/puppetlabs/puppet/puppet.conf'
+        'etc/puppetlabs/puppet/hiera.yaml')
+install="$pkgname.install"
+_augeas_commit=17996b5b325e72de79f51d8acafb8e0a13c558af
+_cron_commit=272c303b5e9bcbeb177a6804a6c88353f101a5c6
+_host_commit=74a081cb9e89ad8338c9ae50c85871c6584b28a7
+_mount_commit=6157ab8de510dcc570e4e969c740dff67b9b07a1
+_selinux_commit=bfe34e48f786d29ad429be99704b8319744f0686
+_sshkeys_commit=0e4857be537f100cc952948bac6710f2854c82a6
+_yumrepo_commit=89383579962eb70390788ec21c67a6ac6ec6d3c1
+_zfs_commit=30f2d0135b22e32785b9e2c3b077157e23dc00c0
+_zone_commit=37e62d40a26216c27f80525aa60a55924cb08028
+
+source=("https://downloads.puppetlabs.com/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
+        "augeas_core::git+https://github.com/puppetlabs/puppetlabs-augeas_core#commit=${_augeas_commit}"
+        "cron_core::git+https://github.com/puppetlabs/puppetlabs-cron_core#commit=${_cron_commit}"
+        "host_core::git+https://github.com/puppetlabs/puppetlabs-host_core#commit=${_host_commit}"
+        "mount_core::git+https://github.com/puppetlabs/puppetlabs-mount_core#commit=${_mount_commit}"
+        "selinux_core::git+https://github.com/puppetlabs/puppetlabs-selinux_core#commit=${_selinux_commit}"
+        "sshkeys_core::git+https://github.com/puppetlabs/puppetlabs-sshkeys_core#commit=${_sshkeys_commit}"
+        "yumrepo_core::git+https://github.com/puppetlabs/puppetlabs-yumrepo_core#commit=${_yumrepo_commit}"
+        "zfs_core::git+https://github.com/puppetlabs/puppetlabs-zfs_core#commit=${_zfs_commit}"
+        "zone_core::git+https://github.com/puppetlabs/puppetlabs-zone_core#commit=${_zone_commit}"
+        )
+sha512sums=('211c9837eb4a77a54bf09811a1a84709eef06f17e0c5c9c598d01bce2e183e69974709ad4dfb8f5fecd7433c1ff52757aa699c623155d1a0742f2e07eaf2ec56'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP')
+conflicts=('puppet5')
+provides=('puppet')
+validpgpkeys=('6F6B15509CF8E59E6E469F327F438280EF8D349F')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # FS#45044: fix file location
+  sed -i 's_/opt/puppetlabs/puppet_/usr_' ext/systemd/puppet.service
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
+    'puts RbConfig::CONFIG["vendorlibdir"]' )"
+
+  install -d "$pkgdir"/usr/lib/{sysusers.d,tmpfiles.d}
+
+  echo 'u puppet 52 "Puppet" /var/lib/puppet' > \
+    "$pkgdir"/usr/lib/sysusers.d/$pkgname.conf
+  echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
+    "$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+
+  # systemd
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/systemd/$pkgname.service \
+    "$pkgdir"/usr/lib/systemd/system/$pkgname.service
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Match permissions that puppet sets when running
+  install -dm775 "$pkgdir"/var/lib/puppet
+  chmod 750 "$pkgdir"/var/log/puppetlabs/puppet
+
+  rm -r "$pkgdir"/var/run
+
+  cd ..
+  install --directory "${pkgdir}/opt/puppetlabs/puppet/vendor_modules/"
+  mv *_core "${pkgdir}/opt/puppetlabs/puppet/vendor_modules/"
+  # Search for unwanted .git directories and delete them
+  find "${pkgdir}/opt/puppetlabs/puppet/vendor_modules/" -type d -name .git -exec rm -rf {} +
+}

Copied: puppet/repos/community-staging-any/puppet.install (from rev 541779, puppet/trunk/puppet.install)
===================================================================
--- community-staging-any/puppet.install	                        (rev 0)
+++ community-staging-any/puppet.install	2019-12-26 01:31:28 UTC (rev 541780)
@@ -0,0 +1,5 @@
+pre_remove() {
+  if [[ -f /run/puppetlabs/agent.pid ]]; then
+    systemctl stop puppet
+  fi
+}



More information about the arch-commits mailing list