[arch-commits] Commit in screen/repos (4 files)

Antonio Rojas arojas at gemini.archlinux.org
Wed Mar 30 07:16:22 UTC 2022


    Date: Wednesday, March 30, 2022 @ 07:16:22
  Author: arojas
Revision: 1177763

archrelease: copy trunk to community-x86_64

Added:
  screen/repos/community-x86_64/
  screen/repos/community-x86_64/PKGBUILD
    (from rev 1177762, screen/trunk/PKGBUILD)
  screen/repos/community-x86_64/pam.d
    (from rev 1177762, screen/trunk/pam.d)
  screen/repos/community-x86_64/tmpfiles.d
    (from rev 1177762, screen/trunk/tmpfiles.d)

------------+
 PKGBUILD   |   60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 pam.d      |    1 
 tmpfiles.d |    1 
 3 files changed, 62 insertions(+)

Copied: screen/repos/community-x86_64/PKGBUILD (from rev 1177762, screen/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2022-03-30 07:16:22 UTC (rev 1177763)
@@ -0,0 +1,60 @@
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Committer: dorphell <dorphell at gmx.net>
+
+pkgname=screen
+pkgver=4.9.0
+pkgrel=1
+pkgdesc='Full-screen window manager that multiplexes a physical terminal'
+url='https://www.gnu.org/software/screen/'
+arch=('x86_64')
+license=('GPL')
+depends=('ncurses' 'pam')
+validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4'
+              '71AA09D9E8870FDB0AA7B61E21F968DEF747ABD7'
+              'B4560FD8C9F2DE3BE308EBA3933AD21886F69FBF')
+source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
+        'tmpfiles.d'
+        'pam.d')
+sha256sums=('f9335281bb4d1538ed078df78a20c2f39d3af9a4e91c57d084271e0289c730f4'
+            'SKIP'
+            '1f33ce4faca7bd05dd80403411af31e682d5d23e79558e884ae5a35f1dd96223'
+            '971c25929ea97422c09e10679ab98e9e6c59295aae1a4a9970909d2206e23090')
+
+backup=('etc/screenrc' 'etc/pam.d/screen')
+options=('!makeflags')
+
+_ptygroup=5 #the UID of our PTY/TTY group
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --infodir=/usr/share/info \
+    --enable-colors256 \
+    --enable-pam \
+    --enable-rxvt_osc \
+    --enable-telnet \
+    --with-pty-group=$_ptygroup \
+    --with-socket-dir=/run/screens \
+    --with-sys-screenrc=/etc/screenrc \
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
+  install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/screen.conf
+
+  install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
+  install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
+}

Copied: screen/repos/community-x86_64/pam.d (from rev 1177762, screen/trunk/pam.d)
===================================================================
--- community-x86_64/pam.d	                        (rev 0)
+++ community-x86_64/pam.d	2022-03-30 07:16:22 UTC (rev 1177763)
@@ -0,0 +1 @@
+auth		required	pam_unix.so

Copied: screen/repos/community-x86_64/tmpfiles.d (from rev 1177762, screen/trunk/tmpfiles.d)
===================================================================
--- community-x86_64/tmpfiles.d	                        (rev 0)
+++ community-x86_64/tmpfiles.d	2022-03-30 07:16:22 UTC (rev 1177763)
@@ -0,0 +1 @@
+d /run/screens 0755 root root -



More information about the arch-commits mailing list