Gentoo Archives: gentoo-commits

From: "Lance Albertson (ramereth)" <ramereth@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/drush: metadata.xml ChangeLog drush-4.4.ebuild
Date: Thu, 26 May 2011 22:22:11
Message-Id: 20110526222201.7309820054@flycatcher.gentoo.org
1 ramereth 11/05/26 22:22:01
2
3 Added: metadata.xml ChangeLog drush-4.4.ebuild
4 Log:
5 Initial ebuild, resolves #313869
6
7 (Portage version: 2.1.9.42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-admin/drush/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/drush/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/drush/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>ramereth@g.o</email>
23 <name>Lance Albertson</name>
24 </maintainer>
25 <longdescription lang="en">
26 Drush is a command line shell and scripting interface for Drupal, a
27 veritable Swiss Army knife designed to make life easier for those of us who
28 spend some of our working hours hacking away at the command prompt.
29
30 See http://drush.ws, the homepage for the drush project. It contains many
31 important resources for drush users.
32 </longdescription>
33 </pkgmetadata>
34
35
36
37
38 1.1 app-admin/drush/ChangeLog
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/drush/ChangeLog?rev=1.1&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/drush/ChangeLog?rev=1.1&content-type=text/plain
42
43 Index: ChangeLog
44 ===================================================================
45 # ChangeLog for app-admin/drush
46 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
47 # $Header: /var/cvsroot/gentoo-x86/app-admin/drush/ChangeLog,v 1.1 2011/05/26 22:22:01 ramereth Exp $
48
49 *drush-4.4 (26 May 2011)
50
51 26 May 2011; Lance Albertson <ramereth@g.o> +drush-4.4.ebuild,
52 +metadata.xml:
53 Initial ebuild, resolves #313869
54
55 Thanks to Claes <letharion@×××××.com> and several others on the same ticket
56 for contributing to the original ebuild.
57
58
59
60
61 1.1 app-admin/drush/drush-4.4.ebuild
62
63 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/drush/drush-4.4.ebuild?rev=1.1&view=markup
64 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/drush/drush-4.4.ebuild?rev=1.1&content-type=text/plain
65
66 Index: drush-4.4.ebuild
67 ===================================================================
68 # Copyright 1999-2011 Gentoo Foundation
69 # Distributed under the terms of the GNU General Public License v2
70 # $Header: /var/cvsroot/gentoo-x86/app-admin/drush/drush-4.4.ebuild,v 1.1 2011/05/26 22:22:01 ramereth Exp $
71
72 EAPI="4"
73
74 DESCRIPTION="Drush is a command line shell and scripting interface for Drupal"
75 HOMEPAGE="http://drupal.org/project/drush"
76 SRC_URI="http://ftp.drupal.org/files/projects/${PN}-7.x-${PV}.tar.gz -> ${P}.tar.gz"
77
78 LICENSE="GPL-2"
79 SLOT="0"
80 KEYWORDS="~amd64 ~x86"
81 IUSE="examples"
82
83 DEPEND="dev-lang/php[cli,simplexml] dev-php/pear"
84 RDEPEND="${DEPEND}"
85 S="${WORKDIR}/${PN}"
86
87 src_install() {
88 local docs="README.txt docs"
89
90 insinto /usr/share/drush
91 doins -r .
92 exeinto /usr/share/drush
93 doexe drush
94 dosym /usr/share/drush/drush /usr/bin/drush
95 dodoc -r ${docs}
96 # cleanup
97 for i in ${docs} LICENSE.txt drush.bat examples includes/.gitignore ; do
98 rm -rf "${D}/usr/share/drush/${i}"
99 done
100
101 use examples && cp -R examples "${D}"/usr/share/doc/"${PF}"
102 }