public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-05-24  4:25 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeremy Olexa (darkside) @ 2012-05-24  4:25 UTC (permalink / raw
  To: gentoo-commits

darkside    12/05/24 04:25:27

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  Further fixes, don't create /var/run/screen, bump to EAPI4, cleanup
  
  (Portage version: 2.1.10.62/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.1&r2=1.2

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- screen-4.0.3-r5.ebuild	24 May 2012 04:13:41 -0000	1.1
+++ screen-4.0.3-r5.ebuild	24 May 2012 04:25:27 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.1 2012/05/24 04:13:41 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.2 2012/05/24 04:25:27 darkside Exp $
 
-EAPI="3"
+EAPI=4
 
 WANT_AUTOCONF="2.5"
 
@@ -119,47 +119,34 @@
 }
 
 src_install() {
-	dobin screen || die "dobin failed"
-	keepdir /var/run/screen || die "keepdir failed"
+	dobin screen
 
 	if use multiuser || use prefix
 	then
-		fperms 4755 /usr/bin/screen || die "fperms failed"
+		fperms 4755 /usr/bin/screen
 	else
-		fowners root:utmp /{usr/bin,var/run}/screen \
-			|| die "fowners failed, use multiuser USE-flag instead"
-		fperms 2755 /usr/bin/screen || die "fperms failed"
+		fowners root:utmp /usr/bin/screen
+		fperms 2755 /usr/bin/screen
 	fi
 
 	insinto /usr/share/screen
-	doins terminfo/{screencap,screeninfo.src} || die "doins failed"
+	doins terminfo/{screencap,screeninfo.src}
 	insinto /usr/share/screen/utf8encodings
-	doins utf8encodings/?? || die "doins failed"
+	doins utf8encodings/??
 	insinto /etc
-	doins "${FILESDIR}"/screenrc || die "doins failed"
+	doins "${FILESDIR}"/screenrc
 
-	pamd_mimic_system screen auth || die "pamd_mimic_system failed"
+	pamd_mimic_system screen auth
 
 	dodoc \
 		README ChangeLog INSTALL TODO NEWS* patchlevel.h \
-		doc/{FAQ,README.DOTSCREEN,fdpat.ps,window_to_display.ps} \
-		|| die "dodoc failed"
+		doc/{FAQ,README.DOTSCREEN,fdpat.ps,window_to_display.ps}
 
-	doman doc/screen.1 || die "doman failed"
-	doinfo doc/screen.info* || die "doinfo failed"
+	doman doc/screen.1
+	doinfo doc/screen.info*
 }
 
 pkg_postinst() {
-	if use prefix; then
-		chmod 0777 "${EROOT}"/var/run/screen
-	elif use multiuser; then
-		chown root:0 "${EROOT}"/var/run/screen
-		chmod 0755 "${EROOT}"/var/run/screen
-	else
-		chown root:utmp "${EROOT}"/var/run/screen
-		chmod 0775 "${EROOT}"/var/run/screen
-	fi
-
 	elog "Some dangerous key bindings have been removed or changed to more safe values."
 	elog "We enable some xterm hacks in our default screenrc, which might break some"
 	elog "applications. Please check /etc/screenrc for information on these changes."



1.165                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.165&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.165&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.164&r2=1.165

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog	24 May 2012 04:13:41 -0000	1.164
+++ ChangeLog	24 May 2012 04:25:27 -0000	1.165
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.164 2012/05/24 04:13:41 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.165 2012/05/24 04:25:27 darkside Exp $
+
+  24 May 2012; Jeremy Olexa <darkside@gentoo.org> screen-4.0.3-r5.ebuild:
+  Further fixes, don't create /var/run/screen, bump to EAPI4, cleanup
 
 *screen-4.0.3-r5 (24 May 2012)
 






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-06-27 11:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-27 11:58 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/27 11:58:09

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #423775
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.3&r2=1.4

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- screen-4.0.3-r5.ebuild	1 Jun 2012 02:03:37 -0000	1.3
+++ screen-4.0.3-r5.ebuild	27 Jun 2012 11:58:09 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.3 2012/06/01 02:03:37 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.4 2012/06/27 11:58:09 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug nethack pam selinux multiuser"
 
 RDEPEND=">=sys-libs/ncurses-5.2



1.167                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.167&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.167&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.166&r2=1.167

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog	1 Jun 2012 02:03:37 -0000	1.166
+++ ChangeLog	27 Jun 2012 11:58:09 -0000	1.167
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.166 2012/06/01 02:03:37 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.167 2012/06/27 11:58:09 ago Exp $
+
+  27 Jun 2012; Agostino Sarubbo <ago@gentoo.org> screen-4.0.3-r5.ebuild:
+  Stable for amd64, wrt bug #423775
 
   01 Jun 2012; Zac Medico <zmedico@gentoo.org> screen-4.0.3-r4.ebuild,
   screen-4.0.3-r5.ebuild:






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-06-28  7:20 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-28  7:20 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/06/28 07:20:47

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  marked x86 per bug 423775
  
  (Portage version: 2.2.0_alpha114/cvs/Linux i686)

Revision  Changes    Path
1.5                  app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.4&r2=1.5

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- screen-4.0.3-r5.ebuild	27 Jun 2012 11:58:09 -0000	1.4
+++ screen-4.0.3-r5.ebuild	28 Jun 2012 07:20:46 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.4 2012/06/27 11:58:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.5 2012/06/28 07:20:46 jdhore Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug nethack pam selinux multiuser"
 
 RDEPEND=">=sys-libs/ncurses-5.2



1.168                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.167&r2=1.168

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog	27 Jun 2012 11:58:09 -0000	1.167
+++ ChangeLog	28 Jun 2012 07:20:46 -0000	1.168
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.167 2012/06/27 11:58:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.168 2012/06/28 07:20:46 jdhore Exp $
+
+  28 Jun 2012; Jeff Horelick <jdhore@gentoo.org> screen-4.0.3-r5.ebuild:
+  marked x86 per bug 423775
 
   27 Jun 2012; Agostino Sarubbo <ago@gentoo.org> screen-4.0.3-r5.ebuild:
   Stable for amd64, wrt bug #423775






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-06-28 14:02 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2012-06-28 14:02 UTC (permalink / raw
  To: gentoo-commits

jer         12/06/28 14:02:09

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #423775).
  
  (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.5&r2=1.6

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- screen-4.0.3-r5.ebuild	28 Jun 2012 07:20:46 -0000	1.5
+++ screen-4.0.3-r5.ebuild	28 Jun 2012 14:02:07 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.5 2012/06/28 07:20:46 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.6 2012/06/28 14:02:07 jer Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug nethack pam selinux multiuser"
 
 RDEPEND=">=sys-libs/ncurses-5.2



1.169                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.169&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.169&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.168&r2=1.169

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog	28 Jun 2012 07:20:46 -0000	1.168
+++ ChangeLog	28 Jun 2012 14:02:07 -0000	1.169
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.168 2012/06/28 07:20:46 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.169 2012/06/28 14:02:07 jer Exp $
+
+  28 Jun 2012; Jeroen Roovers <jer@gentoo.org> screen-4.0.3-r5.ebuild:
+  Stable for HPPA (bug #423775).
 
   28 Jun 2012; Jeff Horelick <jdhore@gentoo.org> screen-4.0.3-r5.ebuild:
   marked x86 per bug 423775






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-07-01 16:36 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-07-01 16:36 UTC (permalink / raw
  To: gentoo-commits

armin76     12/07/01 16:36:41

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #423775
  
  (Portage version: 2.1.10.53/cvs/Linux ia64)

Revision  Changes    Path
1.7                  app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.6&r2=1.7

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- screen-4.0.3-r5.ebuild	28 Jun 2012 14:02:07 -0000	1.6
+++ screen-4.0.3-r5.ebuild	1 Jul 2012 16:36:41 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.6 2012/06/28 14:02:07 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.7 2012/07/01 16:36:41 armin76 Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug nethack pam selinux multiuser"
 
 RDEPEND=">=sys-libs/ncurses-5.2



1.170                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.170&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.170&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.169&r2=1.170

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	28 Jun 2012 14:02:07 -0000	1.169
+++ ChangeLog	1 Jul 2012 16:36:41 -0000	1.170
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.169 2012/06/28 14:02:07 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.170 2012/07/01 16:36:41 armin76 Exp $
+
+  01 Jul 2012; Raúl Porcel <armin76@gentoo.org> screen-4.0.3-r5.ebuild:
+  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #423775
 
   28 Jun 2012; Jeroen Roovers <jer@gentoo.org> screen-4.0.3-r5.ebuild:
   Stable for HPPA (bug #423775).






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-07-10 17:55 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-07-10 17:55 UTC (permalink / raw
  To: gentoo-commits

ranger      12/07/10 17:55:48

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  Marking screen-4.0.3-r5 ppc for bug 423775
  
  (Portage version: 2.1.10.65/cvs/Linux ppc64)

Revision  Changes    Path
1.8                  app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.7&r2=1.8

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- screen-4.0.3-r5.ebuild	1 Jul 2012 16:36:41 -0000	1.7
+++ screen-4.0.3-r5.ebuild	10 Jul 2012 17:55:48 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.7 2012/07/01 16:36:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.8 2012/07/10 17:55:48 ranger Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug nethack pam selinux multiuser"
 
 RDEPEND=">=sys-libs/ncurses-5.2



1.171                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.170&r2=1.171

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	1 Jul 2012 16:36:41 -0000	1.170
+++ ChangeLog	10 Jul 2012 17:55:48 -0000	1.171
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.170 2012/07/01 16:36:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.171 2012/07/10 17:55:48 ranger Exp $
+
+  10 Jul 2012; Brent Baude <ranger@gentoo.org> screen-4.0.3-r5.ebuild:
+  Marking screen-4.0.3-r5 ppc for bug 423775
 
   01 Jul 2012; Raúl Porcel <armin76@gentoo.org> screen-4.0.3-r5.ebuild:
   alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #423775






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-11-04 21:51 Sven Wegener (swegener)
  0 siblings, 0 replies; 8+ messages in thread
From: Sven Wegener (swegener) @ 2012-11-04 21:51 UTC (permalink / raw
  To: gentoo-commits

swegener    12/11/04 21:51:59

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  Support CPPFLAGS for bug #424557.
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x64D4CF24)

Revision  Changes    Path
1.10                 app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.9&r2=1.10

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- screen-4.0.3-r5.ebuild	10 Jul 2012 19:12:22 -0000	1.9
+++ screen-4.0.3-r5.ebuild	4 Nov 2012 21:51:59 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.9 2012/07/10 19:12:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.10 2012/11/04 21:51:59 swegener Exp $
 
 EAPI=4
 
@@ -89,17 +89,20 @@
 	# Allow usernames up to 32 chars
 	epatch "${FILESDIR}"/${PV}-extend-d_termname-ng2.patch
 
+	# support CPPFLAGS
+	epatch "${FILESDIR}"/${P}-cppflags.patch
+
 	# reconfigure
 	eautoconf
 }
 
 src_configure() {
-	append-flags "-DMAXWIN=${MAX_SCREEN_WINDOWS:-100}"
+	append-cppflags "-DMAXWIN=${MAX_SCREEN_WINDOWS:-100}"
 
 	[[ ${CHOST} == *-solaris* ]] && append-libs -lsocket -lnsl
 
-	use nethack || append-flags "-DNONETHACK"
-	use debug && append-flags "-DDEBUG"
+	use nethack || append-cppflags "-DNONETHACK"
+	use debug && append-cppflags "-DDEBUG"
 
 	econf \
 		--with-socket-dir="${EPREFIX}/var/run/screen" \



1.174                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	10 Jul 2012 19:19:37 -0000	1.173
+++ ChangeLog	4 Nov 2012 21:51:59 -0000	1.174
@@ -1,6 +1,10 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.173 2012/07/10 19:19:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.174 2012/11/04 21:51:59 swegener Exp $
+
+  04 Nov 2012; Sven Wegener <swegener@gentoo.org> screen-4.0.3-r5.ebuild,
+  +files/screen-4.0.3-cppflags.patch:
+  Support CPPFLAGS for bug #424557.
 
   10 Jul 2012; Justin Lecher <jlec@gentoo.org> -screen-4.0.3-r4.ebuild,
   metadata.xml:





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog
@ 2012-11-06 19:15 Justin Lecher (jlec)
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher (jlec) @ 2012-11-06 19:15 UTC (permalink / raw
  To: gentoo-commits

jlec        12/11/06 19:15:19

  Modified:             screen-4.0.3-r5.ebuild ChangeLog
  Log:
  app-misc/screen: Revert last commit
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)

Revision  Changes    Path
1.11                 app-misc/screen/screen-4.0.3-r5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild?r1=1.10&r2=1.11

Index: screen-4.0.3-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- screen-4.0.3-r5.ebuild	4 Nov 2012 21:51:59 -0000	1.10
+++ screen-4.0.3-r5.ebuild	6 Nov 2012 19:15:19 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.10 2012/11/04 21:51:59 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.0.3-r5.ebuild,v 1.11 2012/11/06 19:15:19 jlec Exp $
 
 EAPI=4
 
@@ -89,20 +89,17 @@
 	# Allow usernames up to 32 chars
 	epatch "${FILESDIR}"/${PV}-extend-d_termname-ng2.patch
 
-	# support CPPFLAGS
-	epatch "${FILESDIR}"/${P}-cppflags.patch
-
 	# reconfigure
 	eautoconf
 }
 
 src_configure() {
-	append-cppflags "-DMAXWIN=${MAX_SCREEN_WINDOWS:-100}"
+	append-flags "-DMAXWIN=${MAX_SCREEN_WINDOWS:-100}"
 
 	[[ ${CHOST} == *-solaris* ]] && append-libs -lsocket -lnsl
 
-	use nethack || append-cppflags "-DNONETHACK"
-	use debug && append-cppflags "-DDEBUG"
+	use nethack || append-flags "-DNONETHACK"
+	use debug && append-flags "-DDEBUG"
 
 	econf \
 		--with-socket-dir="${EPREFIX}/var/run/screen" \



1.175                app-misc/screen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.174&r2=1.175

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	4 Nov 2012 21:51:59 -0000	1.174
+++ ChangeLog	6 Nov 2012 19:15:19 -0000	1.175
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/screen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.174 2012/11/04 21:51:59 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.175 2012/11/06 19:15:19 jlec Exp $
+
+  06 Nov 2012; Justin Lecher <jlec@gentoo.org> screen-4.0.3-r5.ebuild:
+  Revert last commit
 
   04 Nov 2012; Sven Wegener <swegener@gentoo.org> screen-4.0.3-r5.ebuild,
   +files/screen-4.0.3-cppflags.patch:





^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-11-06 19:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-28  7:20 [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.0.3-r5.ebuild ChangeLog Jeff Horelick (jdhore)
  -- strict thread matches above, loose matches on Subject: below --
2012-11-06 19:15 Justin Lecher (jlec)
2012-11-04 21:51 Sven Wegener (swegener)
2012-07-10 17:55 Brent Baude (ranger)
2012-07-01 16:36 Raul Porcel (armin76)
2012-06-28 14:02 Jeroen Roovers (jer)
2012-06-27 11:58 Agostino Sarubbo (ago)
2012-05-24  4:25 Jeremy Olexa (darkside)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox