public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/libvncserver: libvncserver-0.9.9-r3.ebuild ChangeLog
@ 2014-09-19 15:45 Michael Palimaka (kensington)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Palimaka (kensington) @ 2014-09-19 15:45 UTC (permalink / raw
  To: gentoo-commits

kensington    14/09/19 15:45:25

  Modified:             ChangeLog
  Added:                libvncserver-0.9.9-r3.ebuild
  Log:
  Backport patch from upstream solving a segfault when built with USE="-ipv6" wrt bug #523156.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)

Revision  Changes    Path
1.80                 net-libs/libvncserver/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	9 Aug 2014 10:48:03 -0000	1.79
+++ ChangeLog	19 Sep 2014 15:45:25 -0000	1.80
@@ -1,6 +1,13 @@
 # ChangeLog for net-libs/libvncserver
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.79 2014/08/09 10:48:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.80 2014/09/19 15:45:25 kensington Exp $
+
+*libvncserver-0.9.9-r3 (19 Sep 2014)
+
+  19 Sep 2014; Michael Palimaka <kensington@gentoo.org>
+  +files/libvncserver-0.9.9-segfault.patch, +libvncserver-0.9.9-r3.ebuild:
+  Backport patch from upstream solving a segfault when built with USE="-ipv6"
+  wrt bug #523156.
 
   09 Aug 2014; Agostino Sarubbo <ago@gentoo.org> libvncserver-0.9.9-r1.ebuild:
   Stable for ppc64, wrt bug #515276



1.1                  net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.1&content-type=text/plain

Index: libvncserver-0.9.9-r3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 1.1 2014/09/19 15:45:25 kensington Exp $

EAPI="5"

inherit eutils libtool multilib-minimal

DESCRIPTION="library for creating vnc servers"
HOMEPAGE="http://libvncserver.sourceforge.net/"
SRC_URI="http://libvncserver.sourceforge.net/LibVNCServer-${PV/_}.tar.gz
	mirror://sourceforge/${PN}/LibVNCServer-${PV/_}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
IUSE="+24bpp gcrypt gnutls ipv6 +jpeg +png ssl static-libs test threads +zlib"

REQUIRED_USE="png? ( zlib )"

DEPEND="
	gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] )
	gnutls? (
		>=net-libs/gnutls-2.12.23-r6[${MULTILIB_USEDEP}]
		>=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}]
	)
	!gnutls? (
		ssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )
	)
	jpeg? ( >=virtual/jpeg-0-r2[${MULTILIB_USEDEP}] )
	png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] )
	zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
"
RDEPEND="${DEPEND}"

S="${WORKDIR}"/LibVNCServer-${PV/_}

DOCS=( AUTHORS ChangeLog NEWS README TODO )

src_prepare() {
	epatch "${FILESDIR}"/${P}-segfault.patch

	sed -i -r \
		-e '/^CFLAGS =/d' \
		-e "/^SUBDIRS/s:\<($(use test || echo 'test|')client_examples|examples)\>::g" \
		Makefile.in || die

	elibtoolize
}

multilib_src_configure() {
	ECONF_SOURCE=${S} \
	econf \
		--disable-silent-rules \
		--without-x11vnc \
		$(use_enable static-libs static) \
		$(use_with 24bpp) \
		$(use_with gnutls) \
		$(usex gnutls --with-gcrypt $(use_with gcrypt)) \
		$(usex gnutls --without-ssl $(use_with ssl)) \
		$(use_with ipv6) \
		$(use_with jpeg) \
		$(use_with png) \
		$(use_with threads pthread) \
		$(use_with zlib)
}

multilib_src_compile() {
	default
	multilib_is_native_abi && emake -C examples noinst_PROGRAMS=storepasswd
}

multilib_src_install_all() {
	einstalldocs
	prune_libtool_files
}





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

* [gentoo-commits] gentoo-x86 commit in net-libs/libvncserver: libvncserver-0.9.9-r3.ebuild ChangeLog
@ 2014-10-04  9:25 Chi-Thanh Christopher Nguyen (chithanh)
  0 siblings, 0 replies; 4+ messages in thread
From: Chi-Thanh Christopher Nguyen (chithanh) @ 2014-10-04  9:25 UTC (permalink / raw
  To: gentoo-commits

chithanh    14/10/04 09:25:25

  Modified:             libvncserver-0.9.9-r3.ebuild ChangeLog
  Log:
  Keyword ~mips
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x2324E7B566DF2611!)

Revision  Changes    Path
1.2                  net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?r1=1.1&r2=1.2

Index: libvncserver-0.9.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libvncserver-0.9.9-r3.ebuild	19 Sep 2014 15:45:25 -0000	1.1
+++ libvncserver-0.9.9-r3.ebuild	4 Oct 2014 09:25:25 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 1.1 2014/09/19 15:45:25 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 1.2 2014/10/04 09:25:25 chithanh Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="+24bpp gcrypt gnutls ipv6 +jpeg +png ssl static-libs test threads +zlib"
 
 REQUIRED_USE="png? ( zlib )"



1.81                 net-libs/libvncserver/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	19 Sep 2014 15:45:25 -0000	1.80
+++ ChangeLog	4 Oct 2014 09:25:25 -0000	1.81
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/libvncserver
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.80 2014/09/19 15:45:25 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.81 2014/10/04 09:25:25 chithanh Exp $
+
+  04 Oct 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+  libvncserver-0.9.9-r3.ebuild:
+  Keyword ~mips
 
 *libvncserver-0.9.9-r3 (19 Sep 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in net-libs/libvncserver: libvncserver-0.9.9-r3.ebuild ChangeLog
@ 2014-10-23 14:25 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2014-10-23 14:25 UTC (permalink / raw
  To: gentoo-commits

pacho       14/10/23 14:25:26

  Modified:             libvncserver-0.9.9-r3.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #526032
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?r1=1.2&r2=1.3

Index: libvncserver-0.9.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libvncserver-0.9.9-r3.ebuild	4 Oct 2014 09:25:25 -0000	1.2
+++ libvncserver-0.9.9-r3.ebuild	23 Oct 2014 14:25:26 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 1.2 2014/10/04 09:25:25 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 1.3 2014/10/23 14:25:26 pacho Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="+24bpp gcrypt gnutls ipv6 +jpeg +png ssl static-libs test threads +zlib"
 
 REQUIRED_USE="png? ( zlib )"



1.82                 net-libs/libvncserver/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	4 Oct 2014 09:25:25 -0000	1.81
+++ ChangeLog	23 Oct 2014 14:25:26 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libvncserver
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.81 2014/10/04 09:25:25 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.82 2014/10/23 14:25:26 pacho Exp $
+
+  23 Oct 2014; Pacho Ramos <pacho@gentoo.org> libvncserver-0.9.9-r3.ebuild:
+  amd64/x86 stable, bug #526032
 
   04 Oct 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
   libvncserver-0.9.9-r3.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/libvncserver: libvncserver-0.9.9-r3.ebuild ChangeLog
@ 2015-03-02  9:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-02  9:29 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/02 09:29:06

  Modified:             libvncserver-0.9.9-r3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #526032
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?r1=1.6&r2=1.7

Index: libvncserver-0.9.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libvncserver-0.9.9-r3.ebuild	16 Jan 2015 11:19:50 -0000	1.6
+++ libvncserver-0.9.9-r3.ebuild	2 Mar 2015 09:29:06 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 1.6 2015/01/16 11:19:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 1.7 2015/03/02 09:29:06 ago Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="+24bpp gcrypt gnutls ipv6 +jpeg +png ssl static-libs test threads +zlib"
 
 REQUIRED_USE="png? ( zlib )"



1.86                 net-libs/libvncserver/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	16 Jan 2015 11:19:50 -0000	1.85
+++ ChangeLog	2 Mar 2015 09:29:06 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libvncserver
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.85 2015/01/16 11:19:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.86 2015/03/02 09:29:06 ago Exp $
+
+  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> libvncserver-0.9.9-r3.ebuild:
+  Stable for ppc, wrt bug #526032
 
   16 Jan 2015; Raúl Porcel <armin76@gentoo.org> libvncserver-0.9.9-r3.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #526032





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

end of thread, other threads:[~2015-03-02  9:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-19 15:45 [gentoo-commits] gentoo-x86 commit in net-libs/libvncserver: libvncserver-0.9.9-r3.ebuild ChangeLog Michael Palimaka (kensington)
  -- strict thread matches above, loose matches on Subject: below --
2014-10-04  9:25 Chi-Thanh Christopher Nguyen (chithanh)
2014-10-23 14:25 Pacho Ramos (pacho)
2015-03-02  9:29 Agostino Sarubbo (ago)

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