public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-06-14 21:45 Michal Gorny (mgorny)
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-14 21:45 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/14 21:45:52

  Modified:             ChangeLog
  Added:                axtls-1.4.9-r1.ebuild
  Log:
  Enable multilib support, needed for net-misc/curl.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.27                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	3 Mar 2013 09:29:54 -0000	1.26
+++ ChangeLog	14 Jun 2014 21:45:52 -0000	1.27
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/axtls
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.26 2013/03/03 09:29:54 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.27 2014/06/14 21:45:52 mgorny Exp $
+
+*axtls-1.4.9-r1 (14 Jun 2014)
+
+  14 Jun 2014; Michał Górny <mgorny@gentoo.org> +axtls-1.4.9-r1.ebuild,
+  +files/explicit-libdir-r1.patch:
+  Enable multilib support, needed for net-misc/curl.
 
   03 Mar 2013; Mike Frysinger <vapier@gentoo.org> axtls-1.4.9.ebuild:
   Add s390 lovin.



1.1                  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.1 2014/06/14 21:45:52 mgorny Exp $

EAPI="5"

inherit eutils multilib multilib-minimal savedconfig toolchain-funcs user

################################################################################
# axtls CONFIG MINI-HOWTO
#
# Note: axtls is highly configurable and uses mconf, like the linux kernel.
# You can configure it in a couple of ways:
#
# 1) USE="-savedconfig" and set/unset the remaining flags to obtain the features
# you want, and possibly a lot more.
#
# 2) You can create your own configuration file by doing
#
#	FEATURES="keepwork" USE="savedconfig -*" emerge axtls
#	cd /var/tmp/portage/net-libs/axtls*/work/axTLS
#	make menuconfig
#
# Now configure axtls as you want.  Finally save your config file:
#
#	cp config/.config /etc/portage/savedconfig/net-libs/axtls-${PV}
#
# where ${PV} is the current version.  You can then run emerge again with
# your configuration by doing
#
#	USE="savedconfig" emerge axtls
#
################################################################################

MY_PN=${PN/tls/TLS}

DESCRIPTION="Embedded client/server TLSv1 SSL library and small HTTP(S) server"
HOMEPAGE="http://axtls.sourceforge.net/"
SRC_URI="mirror://sourceforge/axtls/${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}"

LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"

IUSE="httpd cgi-lua cgi-php static static-libs doc"

# TODO: add ipv6, and c#, java, lua, perl bindings
# Currently these all have some issue
DEPEND="doc? ( app-doc/doxygen )"
RDEPEND="
	httpd? (
		cgi-lua? ( dev-lang/lua )
		cgi-php? ( dev-lang/php[cgi] )
	)"

#Note1: static, cgi-* makes no sense if httpd is not given
REQUIRED_USE="
	static? ( httpd )
	cgi-lua? ( httpd )
	cgi-php? ( httpd )"

AXTLS_GROUP="axtls"
AXTLS_USER="axtls"

pkg_setup() {
	use httpd && {
		ebegin "Creating axtls user and group"
		enewgroup ${AXTLS_GROUP}
		enewuser ${AXTLS_USER} -1 -1 -1 ${AXTLS_GROUP}
	}
}

src_prepare() {
	epatch "${FILESDIR}/explicit-libdir-r1.patch"

	#We want CONFIG_DEBUG to avoid stripping
	#but not for debugging info
	sed -i -e 's: -g::' config/Rules.mak || die
	sed -i -e 's: -g::' config/makefile.conf || die

	multilib_copy_sources
}

use_flag_config() {
	cp "${FILESDIR}"/config config/.config || die

	#Respect CFLAGS/LDFLAGS
	sed -i -e "s:^CONFIG_EXTRA_CFLAGS_OPTIONS.*$:CONFIG_EXTRA_CFLAGS_OPTIONS=\"${CFLAGS}\":" \
		config/.config || die
	sed -i -e "s:^CONFIG_EXTRA_LDFLAGS_OPTIONS.*$:CONFIG_EXTRA_LDFLAGS_OPTIONS=\"${LDLAGS}\":" \
		config/.config || die

	#The logic is that the default config file enables everything and we disable
	#here with sed unless a USE flags says to keep it
	if use httpd; then
		if ! use static; then
			sed -i -e 's:^CONFIG_HTTP_STATIC_BUILD:# CONFIG_HTTP_STATIC_BUILD:' \
				config/.config || die
		fi
		if ! use cgi-php && ! use cgi-lua; then
			sed -i -e 's:^CONFIG_HTTP_HAS_CGI:# CONFIG_HTTP_HAS_CGI:' \
				config/.config || die
		fi
		if ! use cgi-php; then
			sed -i -e 's:,.php::' config/.config || die
		fi
		if ! use cgi-lua; then
			sed -i -e 's:\.lua,::' \
				-e 's:lua:php:' \
				-e 's:^CONFIG_HTTP_ENABLE_LUA:# CONFIG_HTTP_ENABLE_LUA:' \
				config/.config || die
		fi
	else
		sed -i -e 's:^CONFIG_AXHTTPD:# CONFIG_AXHTTPD:' \
			config/.config || die
	fi

	yes "n" | emake -j1 oldconfig > /dev/null || die
}

multilib_src_configure() {
	tc-export AR CC

	#Per-ABI substitutions.
	sed -i -e 's:^LIBDIR.*/lib:LIBDIR = $(PREFIX)/'"$(get_libdir):" \
		Makefile || die

	#Use CC as the host compiler for mconf
	sed -i -e "s:^HOSTCC.*:HOSTCC=${CC}:" \
		config/Rules.mak || die

	if use savedconfig; then
		restore_config config/.config
		if [[ -f config/.config ]]; then
			ewarn "Using saved config, all other USE flags ignored"
		else
			ewarn "No saved config, seeding with the default"
			cp "${FILESDIR}"/config config/.config || die
		fi
		yes "" | emake -j1 oldconfig > /dev/null || die
	else
		use_flag_config
	fi
}

multilib_src_compile() {
	default
	multilib_is_native_abi && use doc && emake docs
}

multilib_src_install() {
	if multilib_is_native_abi && use savedconfig; then
		save_config config/.config
	fi

	emake PREFIX="${ED}/usr" install

	if ! use static-libs; then
		rm -f "${ED}"/usr/$(get_libdir)/libaxtls.a || die
	fi

	if use doc; then
		dodoc -r docsrc/html
	fi
}

multilib_src_install_all() {
	if [[ -f "${ED}"/usr/bin/htpasswd ]]; then
		mv "${ED}"/usr/bin/{,ax}htpasswd || die
	fi

	if use httpd; then
		newinitd "${FILESDIR}"/axhttpd.initd axhttpd
		newconfd "${FILESDIR}"/axhttpd.confd axhttpd
	fi

	docompress -x /usr/share/doc/${PF}/README
	dodoc README
}





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

* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-09-14 21:57 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2014-09-14 21:57 UTC (permalink / raw
  To: gentoo-commits

jer         14/09/14 21:57:46

  Modified:             axtls-1.4.9-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #522502).
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- axtls-1.4.9-r1.ebuild	14 Jun 2014 21:45:52 -0000	1.1
+++ axtls-1.4.9-r1.ebuild	14 Sep 2014 21:57:46 -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/axtls/axtls-1.4.9-r1.ebuild,v 1.1 2014/06/14 21:45:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.2 2014/09/14 21:57:46 jer Exp $
 
 EAPI="5"
 
@@ -41,7 +41,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="~amd64 ~arm hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
 
 IUSE="httpd cgi-lua cgi-php static static-libs doc"
 



1.28                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	14 Jun 2014 21:45:52 -0000	1.27
+++ ChangeLog	14 Sep 2014 21:57:46 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.27 2014/06/14 21:45:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.28 2014/09/14 21:57:46 jer Exp $
+
+  14 Sep 2014; Jeroen Roovers <jer@gentoo.org> axtls-1.4.9-r1.ebuild:
+  Stable for HPPA (bug #522502).
 
 *axtls-1.4.9-r1 (14 Jun 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-09-22 20:08 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-09-22 20:08 UTC (permalink / raw
  To: gentoo-commits

blueness    14/09/22 20:08:28

  Modified:             axtls-1.4.9-r1.ebuild ChangeLog
  Log:
  Fix build with USE=doc
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.3                  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- axtls-1.4.9-r1.ebuild	14 Sep 2014 21:57:46 -0000	1.2
+++ axtls-1.4.9-r1.ebuild	22 Sep 2014 20:08:28 -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/axtls/axtls-1.4.9-r1.ebuild,v 1.2 2014/09/14 21:57:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.3 2014/09/22 20:08:28 blueness Exp $
 
 EAPI="5"
 
@@ -144,11 +144,6 @@
 	fi
 }
 
-multilib_src_compile() {
-	default
-	multilib_is_native_abi && use doc && emake docs
-}
-
 multilib_src_install() {
 	if multilib_is_native_abi && use savedconfig; then
 		save_config config/.config
@@ -160,7 +155,9 @@
 		rm -f "${ED}"/usr/$(get_libdir)/libaxtls.a || die
 	fi
 
+	# The build system needs to install before it builds docs
 	if use doc; then
+		emake docs
 		dodoc -r docsrc/html
 	fi
 }



1.29                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	14 Sep 2014 21:57:46 -0000	1.28
+++ ChangeLog	22 Sep 2014 20:08:28 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.28 2014/09/14 21:57:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.29 2014/09/22 20:08:28 blueness Exp $
+
+  22 Sep 2014; Anthony G. Basile <blueness@gentoo.org> axtls-1.4.9-r1.ebuild:
+  Fix build with USE=doc
 
   14 Sep 2014; Jeroen Roovers <jer@gentoo.org> axtls-1.4.9-r1.ebuild:
   Stable for HPPA (bug #522502).





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

* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-09-22 23:55 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-09-22 23:55 UTC (permalink / raw
  To: gentoo-commits

blueness    14/09/22 23:55:41

  Modified:             axtls-1.4.9-r1.ebuild ChangeLog
  Log:
  Avoid rebuilding docs for each abi.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.4                  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- axtls-1.4.9-r1.ebuild	22 Sep 2014 20:08:28 -0000	1.3
+++ axtls-1.4.9-r1.ebuild	22 Sep 2014 23:55:41 -0000	1.4
@@ -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/axtls/axtls-1.4.9-r1.ebuild,v 1.3 2014/09/22 20:08:28 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.4 2014/09/22 23:55:41 blueness Exp $
 
 EAPI="5"
 
@@ -156,7 +156,7 @@
 	fi
 
 	# The build system needs to install before it builds docs
-	if use doc; then
+	if multilib_is_native_abi && use doc; then
 		emake docs
 		dodoc -r docsrc/html
 	fi



1.30                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	22 Sep 2014 20:08:28 -0000	1.29
+++ ChangeLog	22 Sep 2014 23:55:41 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.29 2014/09/22 20:08:28 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.30 2014/09/22 23:55:41 blueness Exp $
+
+  22 Sep 2014; Anthony G. Basile <blueness@gentoo.org> axtls-1.4.9-r1.ebuild:
+  Avoid rebuilding docs for each abi.
 
   22 Sep 2014; Anthony G. Basile <blueness@gentoo.org> axtls-1.4.9-r1.ebuild:
   Fix build with USE=doc





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

* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-10-09  9:54 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-09  9:54 UTC (permalink / raw
  To: gentoo-commits

ago         14/10/09 09:54:24

  Modified:             axtls-1.4.9-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #522818
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- axtls-1.4.9-r1.ebuild	24 Sep 2014 19:42:42 -0000	1.5
+++ axtls-1.4.9-r1.ebuild	9 Oct 2014 09:54:24 -0000	1.6
@@ -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/axtls/axtls-1.4.9-r1.ebuild,v 1.5 2014/09/24 19:42:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.6 2014/10/09 09:54:24 ago Exp $
 
 EAPI="5"
 
@@ -41,7 +41,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
 
 IUSE="httpd cgi-lua cgi-php static static-libs doc"
 



1.32                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	24 Sep 2014 19:42:42 -0000	1.31
+++ ChangeLog	9 Oct 2014 09:54:24 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.31 2014/09/24 19:42:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.32 2014/10/09 09:54:24 ago Exp $
+
+  09 Oct 2014; Agostino Sarubbo <ago@gentoo.org> axtls-1.4.9-r1.ebuild:
+  Stable for amd64, wrt bug #522818
 
   24 Sep 2014; Markus Meier <maekke@gentoo.org> axtls-1.4.9-r1.ebuild:
   arm stable, bug #522818





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

* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-10-10 11:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-10 11:03 UTC (permalink / raw
  To: gentoo-commits

ago         14/10/10 11:03:18

  Modified:             axtls-1.4.9-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #522818
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- axtls-1.4.9-r1.ebuild	9 Oct 2014 09:54:24 -0000	1.6
+++ axtls-1.4.9-r1.ebuild	10 Oct 2014 11:03:18 -0000	1.7
@@ -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/axtls/axtls-1.4.9-r1.ebuild,v 1.6 2014/10/09 09:54:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.7 2014/10/10 11:03:18 ago Exp $
 
 EAPI="5"
 
@@ -41,7 +41,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 x86"
 
 IUSE="httpd cgi-lua cgi-php static static-libs doc"
 



1.33                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	9 Oct 2014 09:54:24 -0000	1.32
+++ ChangeLog	10 Oct 2014 11:03:18 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.32 2014/10/09 09:54:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.33 2014/10/10 11:03:18 ago Exp $
+
+  10 Oct 2014; Agostino Sarubbo <ago@gentoo.org> axtls-1.4.9-r1.ebuild:
+  Stable for x86, wrt bug #522818
 
   09 Oct 2014; Agostino Sarubbo <ago@gentoo.org> axtls-1.4.9-r1.ebuild:
   Stable for amd64, wrt bug #522818





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

* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-10-18 14:16 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-18 14:16 UTC (permalink / raw
  To: gentoo-commits

ago         14/10/18 14:16:37

  Modified:             axtls-1.4.9-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #522818
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- axtls-1.4.9-r1.ebuild	10 Oct 2014 11:03:18 -0000	1.7
+++ axtls-1.4.9-r1.ebuild	18 Oct 2014 14:16:37 -0000	1.8
@@ -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/axtls/axtls-1.4.9-r1.ebuild,v 1.7 2014/10/10 11:03:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.8 2014/10/18 14:16:37 ago Exp $
 
 EAPI="5"
 
@@ -41,7 +41,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 x86"
+KEYWORDS="amd64 arm hppa ~mips ppc ~ppc64 ~s390 x86"
 
 IUSE="httpd cgi-lua cgi-php static static-libs doc"
 



1.34                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	10 Oct 2014 11:03:18 -0000	1.33
+++ ChangeLog	18 Oct 2014 14:16:37 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.33 2014/10/10 11:03:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.34 2014/10/18 14:16:37 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo <ago@gentoo.org> axtls-1.4.9-r1.ebuild:
+  Stable for ppc, wrt bug #522818
 
   10 Oct 2014; Agostino Sarubbo <ago@gentoo.org> axtls-1.4.9-r1.ebuild:
   Stable for x86, wrt bug #522818





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

* [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog
@ 2014-10-21 14:20 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-10-21 14:20 UTC (permalink / raw
  To: gentoo-commits

blueness    14/10/21 14:20:59

  Modified:             axtls-1.4.9-r1.ebuild ChangeLog
  Log:
  Stable for ppc64, bug #522818
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.9                  net-libs/axtls/axtls-1.4.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild?r1=1.8&r2=1.9

Index: axtls-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- axtls-1.4.9-r1.ebuild	18 Oct 2014 14:16:37 -0000	1.8
+++ axtls-1.4.9-r1.ebuild	21 Oct 2014 14:20:59 -0000	1.9
@@ -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/axtls/axtls-1.4.9-r1.ebuild,v 1.8 2014/10/18 14:16:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.9 2014/10/21 14:20:59 blueness Exp $
 
 EAPI="5"
 
@@ -41,7 +41,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ~mips ppc ~ppc64 ~s390 x86"
+KEYWORDS="amd64 arm hppa ~mips ppc ppc64 ~s390 x86"
 
 IUSE="httpd cgi-lua cgi-php static static-libs doc"
 



1.35                 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	18 Oct 2014 14:16:37 -0000	1.34
+++ ChangeLog	21 Oct 2014 14:20:59 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.34 2014/10/18 14:16:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.35 2014/10/21 14:20:59 blueness Exp $
+
+  21 Oct 2014; Anthony G. Basile <blueness@gentoo.org> axtls-1.4.9-r1.ebuild:
+  Stable for ppc64, bug #522818
 
   18 Oct 2014; Agostino Sarubbo <ago@gentoo.org> axtls-1.4.9-r1.ebuild:
   Stable for ppc, wrt bug #522818





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

end of thread, other threads:[~2014-10-21 14:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-21 14:20 [gentoo-commits] gentoo-x86 commit in net-libs/axtls: axtls-1.4.9-r1.ebuild ChangeLog Anthony G. Basile (blueness)
  -- strict thread matches above, loose matches on Subject: below --
2014-10-18 14:16 Agostino Sarubbo (ago)
2014-10-10 11:03 Agostino Sarubbo (ago)
2014-10-09  9:54 Agostino Sarubbo (ago)
2014-09-22 23:55 Anthony G. Basile (blueness)
2014-09-22 20:08 Anthony G. Basile (blueness)
2014-09-14 21:57 Jeroen Roovers (jer)
2014-06-14 21:45 Michal Gorny (mgorny)

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