diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2006-06-28 06:50:35 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2006-06-28 06:50:35 +0000 |
commit | b440f3d55d28f08e33007e9d266294551ec1da8c (patch) | |
tree | bc2b8341adc2796dbf247b78ab8efebe94b08567 /app-portage | |
parent | version bump from upstream (bug #137929) (diff) | |
download | gentoo-2-b440f3d55d28f08e33007e9d266294551ec1da8c.tar.gz gentoo-2-b440f3d55d28f08e33007e9d266294551ec1da8c.tar.bz2 gentoo-2-b440f3d55d28f08e33007e9d266294551ec1da8c.zip |
Layman-1.0.4 fixes the relocation check.
(Portage version: 2.1)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/layman/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/layman/files/digest-layman-1.0.4 | 3 | ||||
-rw-r--r-- | app-portage/layman/layman-1.0.4.ebuild | 58 |
3 files changed, 68 insertions, 1 deletions
diff --git a/app-portage/layman/ChangeLog b/app-portage/layman/ChangeLog index b781755f3aa6..aee14c5ae5bb 100644 --- a/app-portage/layman/ChangeLog +++ b/app-portage/layman/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/layman # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/ChangeLog,v 1.16 2006/06/27 10:19:05 wrobel Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/ChangeLog,v 1.17 2006/06/28 06:50:35 wrobel Exp $ + +*layman-1.0.4 (28 Jun 2006) + + 28 Jun 2006; <wrobel@gentoo.org> -layman-1.0.3.ebuild, + +layman-1.0.4.ebuild: + Layman-1.0.4 fixes the relocation check. 27 Jun 2006; <wrobel@gentoo.org> files/digest-layman-1.0.3, Manifest: Weird. Digest needed fixing again. diff --git a/app-portage/layman/files/digest-layman-1.0.4 b/app-portage/layman/files/digest-layman-1.0.4 new file mode 100644 index 000000000000..24f041056e26 --- /dev/null +++ b/app-portage/layman/files/digest-layman-1.0.4 @@ -0,0 +1,3 @@ +MD5 1068b7956b84fa927aa756ad8a20b9c5 layman-1.0.4.tar.gz 28074 +RMD160 68f5ab8282658f7c4b69b7e5a94ad752c3c5cc8d layman-1.0.4.tar.gz 28074 +SHA256 2c0acd298abb8a0486fe535d513de086f5bb7c190eba37035d9fa6c2401cbad8 layman-1.0.4.tar.gz 28074 diff --git a/app-portage/layman/layman-1.0.4.ebuild b/app-portage/layman/layman-1.0.4.ebuild new file mode 100644 index 000000000000..c34683e51b85 --- /dev/null +++ b/app-portage/layman/layman-1.0.4.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-1.0.4.ebuild,v 1.1 2006/06/28 06:50:35 wrobel Exp $ + +inherit eutils distutils + +DESCRIPTION="A python script for retrieving gentoo overlays " +HOMEPAGE="http://projects.gunnarwrobel.de/scripts" +SRC_URI="http://build.pardus.de/downloads/${PF}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86" +IUSE="" +S=${WORKDIR}/${PF} + +DEPEND="dev-util/subversion" + +src_install() { + + distutils_src_install + + dodir /etc/layman + cp etc/* ${D}/etc/layman/ + + doman doc/layman.8 + dohtml doc/layman.8.html + +} + +src_test() { + cd ${S} + einfo "Running layman doctests..." + echo + if ! PYTHONPATH="." ${python} layman/tests/dtest.py; then + eerror "DocTests failed - please submit a bug report" + die "DocTesting failed!" + fi +} + +pkg_postinst() { + einfo "You are now ready to add overlays into your system." + einfo + einfo "layman -L" + einfo + einfo "will display a list of available overlays." + einfo + einfo "Select one and add it using" + einfo + einfo "layman -a overlay-name" + einfo + einfo "If this is the very first overlay you add with layman, you need to append" + einfo "the following statement to your /etc/make.conf file:" + einfo + einfo "source /usr/portage/local/layman/make.conf" + einfo + epause 5 +} |