Gentoo Archives: gentoo-commits

From: "Ali Polatel (hawking)" <hawking@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/optcomplete: metadata.xml Manifest ChangeLog optcomplete-1.2.ebuild
Date: Wed, 25 Jun 2008 11:41:02
Message-Id: E1KBTMu-0005NA-Co@stork.gentoo.org
1 hawking 08/06/25 11:40:56
2
3 Added: metadata.xml Manifest ChangeLog
4 optcomplete-1.2.ebuild
5 Log:
6 İnitial ebuild for optcomplete.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.1 dev-python/optcomplete/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/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>python</herd>
21 <maintainer>
22 <email>hawking@g.o</email>
23 <name>Ali Polatel</name>
24 </maintainer>
25 <longdescription lang="en">
26 This Python module aims at providing almost automatically shell completion
27 for any Python program that already uses the optparse module.
28
29 This module aims at placing the shell completion routine and the option
30 parsing code in a single location: in the program itself.
31
32 The logic is that since a program already knows about its options, and in
33 Python we have a standard module to specify them programmatically since
34 Python-2.3 (optparse), the program itself is in the best position to suggest
35 completions for an incomplete command-line to a shell that invokes it.
36 </longdescription>
37 </pkgmetadata>
38
39
40
41
42 1.1 dev-python/optcomplete/Manifest
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/Manifest?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/Manifest?rev=1.1&content-type=text/plain
46
47 Index: Manifest
48 ===================================================================
49 DIST optcomplete-1.2.tar.bz2 15358 RMD160 65f3dae4243ba1aa3959ed854b795941a5cc9e17 SHA1 e9845c3733c66c09fccbc9bee00dd200f3b63c35 SHA256 628481e3908d1f78faae34380b1873cecb3027ce40a18f94a98a2fe8de11e71a
50 EBUILD optcomplete-1.2.ebuild 545 RMD160 11e2f698c3e09de0b65f4259649c058ed8588e3c SHA1 786ef5a03e620503028cdb18ed921f38a913db17 SHA256 90cdb44730cd96dc550c01d250871e82b5e4df3e0deaf4ebdd10d3b6d99dcf2f
51 MISC ChangeLog 280 RMD160 93af7280c1b7185a13a593cd18c34de275e879f0 SHA1 cdc538b146013ebf497ee4cb77fc5213f3368f5e SHA256 8912062cc230f393bcb6837cde828baf328c03f94f18e512a97be3537250ccc3
52 MISC metadata.xml 873 RMD160 d1a931e0055b6a53bcd432cc8f885ff2b9e02c26 SHA1 0eca789ca6dcdf1c0c6e31599221689c3a3847f3 SHA256 14cc4c76f4203b10bb928948a28b97c0c1c2c3638c8936f3fcd7f72ebd6493f0
53
54
55
56 1.1 dev-python/optcomplete/ChangeLog
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/ChangeLog?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/ChangeLog?rev=1.1&content-type=text/plain
60
61 Index: ChangeLog
62 ===================================================================
63 # ChangeLog for dev-python/optcomplete
64 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
65 # $Header: /var/cvsroot/gentoo-x86/dev-python/optcomplete/ChangeLog,v 1.1 2008/06/25 11:40:55 hawking Exp $
66
67 *optcomplete-1.2 (25 Jun 2008)
68
69 25 Jun 2008; Ali Polatel <hawking@g.o> +metadata.xml,
70 +optcomplete-1.2.ebuild:
71 Initial ebuild for optcomplete.
72
73
74
75
76 1.1 dev-python/optcomplete/optcomplete-1.2.ebuild
77
78 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/optcomplete-1.2.ebuild?rev=1.1&view=markup
79 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/optcomplete/optcomplete-1.2.ebuild?rev=1.1&content-type=text/plain
80
81 Index: optcomplete-1.2.ebuild
82 ===================================================================
83 # Copyright 1999-2008 Gentoo Foundation
84 # Distributed under the terms of the GNU General Public License v2
85 # $Header: /var/cvsroot/gentoo-x86/dev-python/optcomplete/optcomplete-1.2.ebuild,v 1.1 2008/06/25 11:40:55 hawking Exp $
86
87 inherit distutils
88
89 DESCRIPTION="Shell completion self-generator for python"
90 HOMEPAGE="http://furius.ca/optcomplete/"
91 SRC_URI="http://furius.ca/downloads/${PN}/releases/${P}.tar.bz2"
92
93 LICENSE="BSD"
94 SLOT="0"
95 KEYWORDS="~amd64"
96 IUSE="examples"
97
98 DEPEND=""
99 RDEPEND=""
100
101 DOCS="CHANGES"
102
103 src_install() {
104 distutils_src_install
105
106 if use examples; then
107 insinto /usr/share/doc/${PF}/examples
108 doins bin/* || die "doins failed"
109 fi
110 }
111
112
113
114 --
115 gentoo-commits@l.g.o mailing list