blueness 14/07/21 21:29:32 Modified: ChangeLog Added: install-xattr-0.3.ebuild Removed: install-xattr-0.2.ebuild install-xattr-0.1.ebuild Log: Version bump, fixes dst path if src is in a dir (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path 1.14 sys-apps/install-xattr/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 15 Jun 2014 22:28:42 -0000 1.13 +++ ChangeLog 21 Jul 2014 21:29:32 -0000 1.14 @@ -1,6 +1,13 @@ # ChangeLog for sys-apps/install-xattr # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v 1.13 2014/06/15 22:28:42 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v 1.14 2014/07/21 21:29:32 blueness Exp $ + +*install-xattr-0.3 (21 Jul 2014) + + 21 Jul 2014; Anthony G. Basile <bluen...@gentoo.org> + +install-xattr-0.3.ebuild, -install-xattr-0.1.ebuild, + -install-xattr-0.2.ebuild: + Version bump, fixes dst path if src is in a dir *install-xattr-0.2 (15 Jun 2014) 1.1 sys-apps/install-xattr/install-xattr-0.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild?rev=1.1&content-type=text/plain Index: install-xattr-0.3.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild,v 1.1 2014/07/21 21:29:32 blueness Exp $ EAPI=5 DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes." HOMEPAGE="http://dev.gentoo.org/~blueness/install-xattr/" inherit toolchain-funcs if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/elfix.git" KEYWORDS="" inherit git-2 else SRC_URI="http://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" S=${WORKDIR}/${PN} fi LICENSE="GPL-3" SLOT="0" src_prepare() { tc-export CC } src_compile() { if [[ ${PV} == "9999" ]] ; then cd "${WORKDIR}/${P}/misc/${PN}" fi default } src_install() { if [[ ${PV} == "9999" ]] ; then cd "${WORKDIR}/${P}/misc/${PN}" fi default } # We need to fix how tests are done src_test() { true }