public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: libselinux-2.1.13-r4.ebuild ChangeLog
@ 2013-07-28 11:23 Sven Vermeulen (swift)
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Vermeulen (swift) @ 2013-07-28 11:23 UTC (permalink / raw
  To: gentoo-commits

swift       13/07/28 11:23:18

  Modified:             ChangeLog
  Added:                libselinux-2.1.13-r4.ebuild
  Log:
  Move to python-r1, fix bug #473502
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0xCDBA2FDB)

Revision  Changes    Path
1.100                sys-libs/libselinux/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	7 Jul 2013 17:58:21 -0000	1.99
+++ ChangeLog	28 Jul 2013 11:23:18 -0000	1.100
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/libselinux
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.99 2013/07/07 17:58:21 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.100 2013/07/28 11:23:18 swift Exp $
+
+*libselinux-2.1.13-r4 (28 Jul 2013)
+
+  28 Jul 2013; Sven Vermeulen <swift@gentoo.org> +libselinux-2.1.13-r4.ebuild:
+  Migrate to python-r1, fix bug #473502
 
   07 Jul 2013; Sven Vermeulen <swift@gentoo.org> -libselinux-2.1.9.ebuild,
   -libselinux-2.1.9-r1.ebuild, -libselinux-2.1.9-r2.ebuild,



1.1                  sys-libs/libselinux/libselinux-2.1.13-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?rev=1.1&content-type=text/plain

Index: libselinux-2.1.13-r4.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.1 2013/07/28 11:23:18 swift Exp $

EAPI="5"
PYTHON_COMPAT=( python2_7 python3_1 python3_2 )
USE_RUBY="ruby18 ruby19"
RUBY_OPTIONAL="yes"

inherit multilib python-r1 toolchain-funcs eutils ruby-ng

SEPOL_VER="2.1.9"

DESCRIPTION="SELinux userland library"
HOMEPAGE="http://userspace.selinuxproject.org"
SRC_URI="http://userspace.selinuxproject.org/releases/20130423/${P}.tar.gz
	http://dev.gentoo.org/~swift/patches/${PN}/patchbundle-${P}-r3.tar.gz"

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="python ruby static-libs"

RDEPEND=">=sys-libs/libsepol-${SEPOL_VER}
	>=dev-libs/libpcre-8.30-r2[static-libs?]
	python? ( ${PYTHON_DEPS} )
	ruby? ( $(ruby_implementations_depend) )"
DEPEND="${RDEPEND}
	virtual/pkgconfig
	ruby? ( >=dev-lang/swig-2.0.9 )
	python? ( >=dev-lang/swig-2.0.9 )"

S="${WORKDIR}/${P}"

src_unpack() {
	default
}

src_prepare() {
	# fix up paths for multilib
	sed -i \
		-e "/^LIBDIR/s/lib/$(get_libdir)/" \
		-e "/^SHLIBDIR/s/lib/$(get_libdir)/" \
		src/Makefile utils/Makefile || die

	EPATCH_MULTI_MSG="Applying libselinux patches ... " \
	EPATCH_SUFFIX="patch" \
	EPATCH_SOURCE="${WORKDIR}/gentoo-patches" \
	EPATCH_FORCE="yes" \
	epatch

	epatch_user

	if use python; then
		BUILD_DIR="${S}/src"
		python_copy_sources
	fi
}

each_ruby_compile() {
	local RUBYLIBVER=$(${RUBY} -e 'print RUBY_VERSION.split(".")[0..1].join(".")')
	cd "${WORKDIR}/${P}"
	cp -r src src-ruby-${RUBYLIBVER}
	cd src-ruby-${RUBYLIBVER}

	if [[ "${RUBYLIBVER}" == "1.8" ]]; then
		emake CC="$(tc-getCC)" RUBY="${RUBY}" RUBYINC="-I$(ruby_get_hdrdir)" LDFLAGS="-fPIC $($(tc-getPKG_CONFIG) libpcre --libs) -lpthread ${LDFLAGS}" rubywrap || die
	else
		emake CC="$(tc-getCC)" RUBY="${RUBY}" LDFLAGS="-fPIC $($(tc-getPKG_CONFIG) libpcre --libs) ${LDFLAGS} -lpthread" rubywrap || die
	fi
}

src_compile() {
	tc-export RANLIB
	emake \
		AR="$(tc-getAR)" \
		CC="$(tc-getCC)" \
		LDFLAGS="-fPIC $($(tc-getPKG_CONFIG) libpcre --libs) ${LDFLAGS} -lpthread" all || die

	if use python; then
		building() {
			python_export PYTHON_INCLUDEDIR PYTHON_LIBPATH
			emake CC="$(tc-getCC)" PYINC="-I${PYTHON_INCLUDEDIR}" PYTHONLIBDIR="${PYTHON_LIBPATH}" PYPREFIX="${EPYTHON##*/}" LDFLAGS="-fPIC $($(tc-getPKG_CONFIG) libpcre --libs) ${LDFLAGS} -lpthread" pywrap
		}
		python_foreach_impl building
	fi

	if use ruby; then
		ruby-ng_src_compile
	fi
}

each_ruby_install() {
	local RUBYLIBVER=$(${RUBY} -e 'print RUBY_VERSION.split(".")[0..1].join(".")')

	cd "${WORKDIR}/${P}/src-ruby-${RUBYLIBVER}"
	emake RUBY="${RUBY}" DESTDIR="${D}" install-rubywrap || die
}

src_install() {
	emake DESTDIR="${D}" install || die

	if use python; then
		installation() {
			emake DESTDIR="${D}" install-pywrap
		}
		python_foreach_impl installation
	fi

	if use ruby; then
		ruby-ng_src_install
	fi

	use static-libs || rm "${D}"/usr/lib*/*.a
}

pkg_postinst() {
	# Fix bug 473502
	for POLTYPE in ${POLICY_TYPES};
	do
		touch /etc/selinux/${POLTYPE}/contexts/files/file_contexts.local
	done
}





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: libselinux-2.1.13-r4.ebuild ChangeLog
@ 2013-08-10 19:33 Sven Vermeulen (swift)
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Vermeulen (swift) @ 2013-08-10 19:33 UTC (permalink / raw
  To: gentoo-commits

swift       13/08/10 19:33:32

  Modified:             libselinux-2.1.13-r4.ebuild ChangeLog
  Log:
  Create (parent) directories for file_contexts.local (bug #473502)
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0xCDBA2FDB)

Revision  Changes    Path
1.2                  sys-libs/libselinux/libselinux-2.1.13-r4.ebuild

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

Index: libselinux-2.1.13-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libselinux-2.1.13-r4.ebuild	28 Jul 2013 11:23:18 -0000	1.1
+++ libselinux-2.1.13-r4.ebuild	10 Aug 2013 19:33:32 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.1 2013/07/28 11:23:18 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.2 2013/08/10 19:33:32 swift Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_7 python3_1 python3_2 )
@@ -118,6 +118,7 @@
 	# Fix bug 473502
 	for POLTYPE in ${POLICY_TYPES};
 	do
+		mkdir -p /etc/selinux/${POLTYPE}/contexts/files
 		touch /etc/selinux/${POLTYPE}/contexts/files/file_contexts.local
 	done
 }



1.101                sys-libs/libselinux/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	28 Jul 2013 11:23:18 -0000	1.100
+++ ChangeLog	10 Aug 2013 19:33:32 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libselinux
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.100 2013/07/28 11:23:18 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.101 2013/08/10 19:33:32 swift Exp $
+
+  10 Aug 2013; Sven Vermeulen <swift@gentoo.org> libselinux-2.1.13-r4.ebuild:
+  Create (parent) directories for local file
 
 *libselinux-2.1.13-r4 (28 Jul 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: libselinux-2.1.13-r4.ebuild ChangeLog
@ 2013-08-20 20:04 Sven Vermeulen (swift)
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Vermeulen (swift) @ 2013-08-20 20:04 UTC (permalink / raw
  To: gentoo-commits

swift       13/08/20 20:04:31

  Modified:             libselinux-2.1.13-r4.ebuild ChangeLog
  Log:
  Stabilize, the issue with file_contexts.local is important to get in stable
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0xCDBA2FDB)

Revision  Changes    Path
1.3                  sys-libs/libselinux/libselinux-2.1.13-r4.ebuild

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

Index: libselinux-2.1.13-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libselinux-2.1.13-r4.ebuild	10 Aug 2013 19:33:32 -0000	1.2
+++ libselinux-2.1.13-r4.ebuild	20 Aug 2013 20:04:31 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.2 2013/08/10 19:33:32 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.3 2013/08/20 20:04:31 swift Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_7 python3_1 python3_2 )
@@ -18,7 +18,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="python ruby static-libs"
 
 RDEPEND=">=sys-libs/libsepol-${SEPOL_VER}



1.102                sys-libs/libselinux/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	10 Aug 2013 19:33:32 -0000	1.101
+++ ChangeLog	20 Aug 2013 20:04:31 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libselinux
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.101 2013/08/10 19:33:32 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.102 2013/08/20 20:04:31 swift Exp $
+
+  20 Aug 2013; Sven Vermeulen <swift@gentoo.org> libselinux-2.1.13-r4.ebuild:
+  Stabilize, the issue with file_contexts.local is important to get in stable
 
   10 Aug 2013; Sven Vermeulen <swift@gentoo.org> libselinux-2.1.13-r4.ebuild:
   Create (parent) directories for local file





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: libselinux-2.1.13-r4.ebuild ChangeLog
@ 2013-09-05 19:44 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 19:44 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/09/05 19:44:50

  Modified:             libselinux-2.1.13-r4.ebuild ChangeLog
  Log:
  Clean up PYTHON_COMPAT from old implementations.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.4                  sys-libs/libselinux/libselinux-2.1.13-r4.ebuild

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

Index: libselinux-2.1.13-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libselinux-2.1.13-r4.ebuild	20 Aug 2013 20:04:31 -0000	1.3
+++ libselinux-2.1.13-r4.ebuild	5 Sep 2013 19:44:50 -0000	1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.3 2013/08/20 20:04:31 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.4 2013/09/05 19:44:50 mgorny Exp $
 
 EAPI="5"
-PYTHON_COMPAT=( python2_7 python3_1 python3_2 )
+PYTHON_COMPAT=( python2_7 python3_2 )
 USE_RUBY="ruby18 ruby19"
 RUBY_OPTIONAL="yes"
 



1.103                sys-libs/libselinux/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?r1=1.102&r2=1.103

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	20 Aug 2013 20:04:31 -0000	1.102
+++ ChangeLog	5 Sep 2013 19:44:50 -0000	1.103
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libselinux
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.102 2013/08/20 20:04:31 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.103 2013/09/05 19:44:50 mgorny Exp $
+
+  05 Sep 2013; Michał Górny <mgorny@gentoo.org> libselinux-2.1.13-r4.ebuild:
+  Clean up PYTHON_COMPAT from old implementations.
 
   20 Aug 2013; Sven Vermeulen <swift@gentoo.org> libselinux-2.1.13-r4.ebuild:
   Stabilize, the issue with file_contexts.local is important to get in stable





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: libselinux-2.1.13-r4.ebuild ChangeLog
@ 2013-10-27 18:18 Sven Vermeulen (swift)
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Vermeulen (swift) @ 2013-10-27 18:18 UTC (permalink / raw
  To: gentoo-commits

swift       13/10/27 18:18:51

  Modified:             libselinux-2.1.13-r4.ebuild ChangeLog
  Log:
  Fix bug 488102 - Only call ruby-ng pkg_setup if USE=ruby is set
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)

Revision  Changes    Path
1.5                  sys-libs/libselinux/libselinux-2.1.13-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?r1=1.4&r2=1.5

Index: libselinux-2.1.13-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libselinux-2.1.13-r4.ebuild	5 Sep 2013 19:44:50 -0000	1.4
+++ libselinux-2.1.13-r4.ebuild	27 Oct 2013 18:18:51 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.4 2013/09/05 19:44:50 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.5 2013/10/27 18:18:51 swift Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_7 python3_2 )
@@ -32,6 +32,13 @@
 
 S="${WORKDIR}/${P}"
 
+pkg_setup() {
+	# prevent ruby-ng to mess if ruby is not asked for
+	if use ruby; then
+		ruby-ng_pkg_setup
+	fi
+}
+
 src_unpack() {
 	default
 }



1.104                sys-libs/libselinux/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	5 Sep 2013 19:44:50 -0000	1.103
+++ ChangeLog	27 Oct 2013 18:18:51 -0000	1.104
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libselinux
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.103 2013/09/05 19:44:50 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.104 2013/10/27 18:18:51 swift Exp $
+
+  27 Oct 2013; Sven Vermeulen <swift@gentoo.org> libselinux-2.1.13-r4.ebuild:
+  Fix bug 488102 - Only call ruby-ng pkg_setup if USE=ruby is set
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> libselinux-2.1.13-r4.ebuild:
   Clean up PYTHON_COMPAT from old implementations.





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

end of thread, other threads:[~2013-10-27 18:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-20 20:04 [gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: libselinux-2.1.13-r4.ebuild ChangeLog Sven Vermeulen (swift)
  -- strict thread matches above, loose matches on Subject: below --
2013-10-27 18:18 Sven Vermeulen (swift)
2013-09-05 19:44 Michal Gorny (mgorny)
2013-08-10 19:33 Sven Vermeulen (swift)
2013-07-28 11:23 Sven Vermeulen (swift)

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