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

Gaetan Bisson bisson at nymeria.archlinux.org
Tue Apr 29 18:49:14 UTC 2014


    Date: Tuesday, April 29, 2014 @ 20:49:14
  Author: bisson
Revision: 211915

db-move: moved screen from [testing] to [extra] (i686, x86_64)

Added:
  screen/repos/extra-i686/PKGBUILD
    (from rev 211914, screen/repos/testing-i686/PKGBUILD)
  screen/repos/extra-i686/install
    (from rev 211914, screen/repos/testing-i686/install)
  screen/repos/extra-i686/pam.d
    (from rev 211914, screen/repos/testing-i686/pam.d)
  screen/repos/extra-x86_64/PKGBUILD
    (from rev 211914, screen/repos/testing-x86_64/PKGBUILD)
  screen/repos/extra-x86_64/install
    (from rev 211914, screen/repos/testing-x86_64/install)
  screen/repos/extra-x86_64/pam.d
    (from rev 211914, screen/repos/testing-x86_64/pam.d)
Deleted:
  screen/repos/extra-i686/PKGBUILD
  screen/repos/extra-i686/install
  screen/repos/extra-i686/long-term.patch
  screen/repos/extra-i686/pam.d
  screen/repos/extra-x86_64/PKGBUILD
  screen/repos/extra-x86_64/install
  screen/repos/extra-x86_64/long-term.patch
  screen/repos/extra-x86_64/pam.d
  screen/repos/testing-i686/
  screen/repos/testing-x86_64/

------------------------------+
 /PKGBUILD                    |  102 +++++++++++++++++++++++++++++++++++++++++
 /install                     |   40 ++++++++++++++++
 /pam.d                       |    2 
 extra-i686/PKGBUILD          |   60 ------------------------
 extra-i686/install           |   25 ----------
 extra-i686/long-term.patch   |   24 ---------
 extra-i686/pam.d             |    1 
 extra-x86_64/PKGBUILD        |   60 ------------------------
 extra-x86_64/install         |   25 ----------
 extra-x86_64/long-term.patch |   24 ---------
 extra-x86_64/pam.d           |    1 
 11 files changed, 144 insertions(+), 220 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-i686/PKGBUILD	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-# Contributor: Allan McRae <allan at archlinux.org>
-# Committer: dorphell <dorphell at gmx.net>
-
-pkgname=screen
-pkgver=4.2.0
-pkgrel=1
-_ptygroup=5 #the UID of our PTY/TTY group
-pkgdesc='Full-screen window manager that multiplexes a physical terminal'
-url='http://www.gnu.org/software/screen/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('ncurses' 'pam')
-backup=('etc/screenrc' 'etc/pam.d/screen')
-#source=("http://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"
-source=("http://download.savannah.gnu.org/releases/screen/screen-${pkgver}.tar.gz"
-        'long-term.patch'
-        'pam.d')
-sha1sums=('85a206e1e474fd608f17e88bfe5f90a55f21c51a'
-          '4ca8408ec03e97777e37f45a99cf8ab503592734'
-          '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
-
-options=('!makeflags')
-install=install
-
-prepare() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	patch -p1 -i ../long-term.patch
-	./autogen.sh
-}
-
-build() {
-	cd "${srcdir}/${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 "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install
-
-	install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
-
-	install -Dm644 etc/completer.zsh "${pkgdir}"/usr/share/zsh/site-functions/screen
-	install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
-	install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
-}

Copied: screen/repos/extra-i686/PKGBUILD (from rev 211914, screen/repos/testing-i686/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2014-04-29 18:49:14 UTC (rev 211915)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Committer: dorphell <dorphell at gmx.net>
+
+pkgname=screen
+pkgver=4.2.1
+pkgrel=2
+_ptygroup=5 #the UID of our PTY/TTY group
+pkgdesc='Full-screen window manager that multiplexes a physical terminal'
+url='http://www.gnu.org/software/screen/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'pam')
+backup=('etc/screenrc' 'etc/pam.d/screen')
+source=("http://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
+        'pam.d')
+sha1sums=('21eadf5f1d64120649f3390346253c6bc8a5103c' 'SKIP'
+          '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
+
+options=('!makeflags')
+install=install
+
+build() {
+	cd "${srcdir}/${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 "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+
+	install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
+
+	install -Dm644 etc/completer.zsh "${pkgdir}"/usr/share/zsh/site-functions/screen
+	install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
+	install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
+}

Deleted: extra-i686/install
===================================================================
--- extra-i686/install	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-i686/install	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1,25 +0,0 @@
-infodir=usr/share/info
-filelist=(screen.info screen.info-1 screen.info-2 screen.info-3 screen.info-4 screen.info-5)
-
-post_install() {
-	[ -x usr/bin/install-info ] || return 0
-	for file in ${filelist[@]}; do
-		install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-	done
-}
-
-post_upgrade() {
-	post_install $1
-	if [ $(vercmp $2 4.0.3-15) -lt 0 ]; then
-		echo 'The location of the screen sockets has changed.'
-		echo 'If you need to access running screen sessions, run'
-		echo '  # SCREENDIR=/tmp/screens/S-$USER/ screen ...'
-	fi
-}
-
-pre_remove() {
-	[ -x usr/bin/install-info ] || return 0
-	for file in ${filelist[@]}; do
-		install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-	done
-}

Copied: screen/repos/extra-i686/install (from rev 211914, screen/repos/testing-i686/install)
===================================================================
--- extra-i686/install	                        (rev 0)
+++ extra-i686/install	2014-04-29 18:49:14 UTC (rev 211915)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+
+post_install() {
+	[ -x usr/bin/install-info ] || return 0
+	install-info $infodir/screen.info.gz $infodir/dir 2>/dev/null
+}
+
+post_upgrade() {
+	post_install $1
+	if [ $(vercmp $2 4.0.3-15) -lt 0 ]; then
+		echo 'The location of the screen sockets has changed.'
+		echo 'If you need to access running screen sessions, run'
+		echo '  # SCREENDIR=/tmp/screens/S-$USER/ screen ...'
+	fi
+}
+
+pre_remove() {
+	[ -x usr/bin/install-info ] || return 0
+	install-info --delete $infodir/screen.info.gz $infodir/dir 2>/dev/null
+}

Deleted: extra-i686/long-term.patch
===================================================================
--- extra-i686/long-term.patch	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-i686/long-term.patch	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1,24 +0,0 @@
-diff -aur old/display.h new/display.h
---- old/display.h	2014-04-16 11:38:41.000000000 -1000
-+++ new/display.h	2014-04-17 16:20:36.992994397 -1000
-@@ -73,7 +73,7 @@
-   struct win *d_other;		/* pointer to other window */
-   int   d_nonblock;		/* -1 don't block if obufmax reached */
- 				/* >0: block after nonblock secs */
--  char  d_termname[20 + 1];	/* $TERM */
-+  char  d_termname[40 + 1];	/* $TERM */
-   char	*d_tentry;		/* buffer for tgetstr */
-   char	d_tcinited;		/* termcap inited flag */
-   int	d_width, d_height;	/* width/height of the screen */
-diff -aur old/screen.h new/screen.h
---- old/screen.h	2014-04-16 11:38:41.000000000 -1000
-+++ new/screen.h	2014-04-17 16:20:36.992994397 -1000
-@@ -214,7 +214,7 @@
- 	  char preselect[20];
- 	  int esc;		/* his new escape character unless -1 */
- 	  int meta_esc;		/* his new meta esc character unless -1 */
--	  char envterm[20 + 1];	/* terminal type */
-+	  char envterm[40 + 1];	/* terminal type */
- 	  int encoding;		/* encoding of display */
- 	  int detachfirst;      /* whether to detach remote sessions first */
- 	}

Deleted: extra-i686/pam.d
===================================================================
--- extra-i686/pam.d	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-i686/pam.d	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1 +0,0 @@
-auth		required	pam_unix.so

Copied: screen/repos/extra-i686/pam.d (from rev 211914, screen/repos/testing-i686/pam.d)
===================================================================
--- extra-i686/pam.d	                        (rev 0)
+++ extra-i686/pam.d	2014-04-29 18:49:14 UTC (rev 211915)
@@ -0,0 +1 @@
+auth		required	pam_unix.so

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-x86_64/PKGBUILD	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-# Contributor: Allan McRae <allan at archlinux.org>
-# Committer: dorphell <dorphell at gmx.net>
-
-pkgname=screen
-pkgver=4.2.0
-pkgrel=1
-_ptygroup=5 #the UID of our PTY/TTY group
-pkgdesc='Full-screen window manager that multiplexes a physical terminal'
-url='http://www.gnu.org/software/screen/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('ncurses' 'pam')
-backup=('etc/screenrc' 'etc/pam.d/screen')
-#source=("http://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"
-source=("http://download.savannah.gnu.org/releases/screen/screen-${pkgver}.tar.gz"
-        'long-term.patch'
-        'pam.d')
-sha1sums=('85a206e1e474fd608f17e88bfe5f90a55f21c51a'
-          '4ca8408ec03e97777e37f45a99cf8ab503592734'
-          '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
-
-options=('!makeflags')
-install=install
-
-prepare() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	patch -p1 -i ../long-term.patch
-	./autogen.sh
-}
-
-build() {
-	cd "${srcdir}/${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 "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install
-
-	install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
-
-	install -Dm644 etc/completer.zsh "${pkgdir}"/usr/share/zsh/site-functions/screen
-	install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
-	install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
-}

Copied: screen/repos/extra-x86_64/PKGBUILD (from rev 211914, screen/repos/testing-x86_64/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2014-04-29 18:49:14 UTC (rev 211915)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Committer: dorphell <dorphell at gmx.net>
+
+pkgname=screen
+pkgver=4.2.1
+pkgrel=2
+_ptygroup=5 #the UID of our PTY/TTY group
+pkgdesc='Full-screen window manager that multiplexes a physical terminal'
+url='http://www.gnu.org/software/screen/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'pam')
+backup=('etc/screenrc' 'etc/pam.d/screen')
+source=("http://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
+        'pam.d')
+sha1sums=('21eadf5f1d64120649f3390346253c6bc8a5103c' 'SKIP'
+          '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
+
+options=('!makeflags')
+install=install
+
+build() {
+	cd "${srcdir}/${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 "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+
+	install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
+
+	install -Dm644 etc/completer.zsh "${pkgdir}"/usr/share/zsh/site-functions/screen
+	install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
+	install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
+}

Deleted: extra-x86_64/install
===================================================================
--- extra-x86_64/install	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-x86_64/install	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1,25 +0,0 @@
-infodir=usr/share/info
-filelist=(screen.info screen.info-1 screen.info-2 screen.info-3 screen.info-4 screen.info-5)
-
-post_install() {
-	[ -x usr/bin/install-info ] || return 0
-	for file in ${filelist[@]}; do
-		install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-	done
-}
-
-post_upgrade() {
-	post_install $1
-	if [ $(vercmp $2 4.0.3-15) -lt 0 ]; then
-		echo 'The location of the screen sockets has changed.'
-		echo 'If you need to access running screen sessions, run'
-		echo '  # SCREENDIR=/tmp/screens/S-$USER/ screen ...'
-	fi
-}
-
-pre_remove() {
-	[ -x usr/bin/install-info ] || return 0
-	for file in ${filelist[@]}; do
-		install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-	done
-}

Copied: screen/repos/extra-x86_64/install (from rev 211914, screen/repos/testing-x86_64/install)
===================================================================
--- extra-x86_64/install	                        (rev 0)
+++ extra-x86_64/install	2014-04-29 18:49:14 UTC (rev 211915)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+
+post_install() {
+	[ -x usr/bin/install-info ] || return 0
+	install-info $infodir/screen.info.gz $infodir/dir 2>/dev/null
+}
+
+post_upgrade() {
+	post_install $1
+	if [ $(vercmp $2 4.0.3-15) -lt 0 ]; then
+		echo 'The location of the screen sockets has changed.'
+		echo 'If you need to access running screen sessions, run'
+		echo '  # SCREENDIR=/tmp/screens/S-$USER/ screen ...'
+	fi
+}
+
+pre_remove() {
+	[ -x usr/bin/install-info ] || return 0
+	install-info --delete $infodir/screen.info.gz $infodir/dir 2>/dev/null
+}

Deleted: extra-x86_64/long-term.patch
===================================================================
--- extra-x86_64/long-term.patch	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-x86_64/long-term.patch	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1,24 +0,0 @@
-diff -aur old/display.h new/display.h
---- old/display.h	2014-04-16 11:38:41.000000000 -1000
-+++ new/display.h	2014-04-17 16:20:36.992994397 -1000
-@@ -73,7 +73,7 @@
-   struct win *d_other;		/* pointer to other window */
-   int   d_nonblock;		/* -1 don't block if obufmax reached */
- 				/* >0: block after nonblock secs */
--  char  d_termname[20 + 1];	/* $TERM */
-+  char  d_termname[40 + 1];	/* $TERM */
-   char	*d_tentry;		/* buffer for tgetstr */
-   char	d_tcinited;		/* termcap inited flag */
-   int	d_width, d_height;	/* width/height of the screen */
-diff -aur old/screen.h new/screen.h
---- old/screen.h	2014-04-16 11:38:41.000000000 -1000
-+++ new/screen.h	2014-04-17 16:20:36.992994397 -1000
-@@ -214,7 +214,7 @@
- 	  char preselect[20];
- 	  int esc;		/* his new escape character unless -1 */
- 	  int meta_esc;		/* his new meta esc character unless -1 */
--	  char envterm[20 + 1];	/* terminal type */
-+	  char envterm[40 + 1];	/* terminal type */
- 	  int encoding;		/* encoding of display */
- 	  int detachfirst;      /* whether to detach remote sessions first */
- 	}

Deleted: extra-x86_64/pam.d
===================================================================
--- extra-x86_64/pam.d	2014-04-29 17:37:18 UTC (rev 211914)
+++ extra-x86_64/pam.d	2014-04-29 18:49:14 UTC (rev 211915)
@@ -1 +0,0 @@
-auth		required	pam_unix.so

Copied: screen/repos/extra-x86_64/pam.d (from rev 211914, screen/repos/testing-x86_64/pam.d)
===================================================================
--- extra-x86_64/pam.d	                        (rev 0)
+++ extra-x86_64/pam.d	2014-04-29 18:49:14 UTC (rev 211915)
@@ -0,0 +1 @@
+auth		required	pam_unix.so




More information about the arch-commits mailing list