Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/sunflower: metadata.xml ChangeLog sunflower-0.1_alpha52.ebuild Manifest
Date: Thu, 31 Jan 2013 17:09:08
Message-Id: 20130131170904.8F9792171D@flycatcher.gentoo.org
1 hasufell 13/01/31 17:09:04
2
3 Added: metadata.xml ChangeLog sunflower-0.1_alpha52.ebuild
4 Manifest
5 Log:
6 initial import with Henrique Dias wrt #454600
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.1 x11-misc/sunflower/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <maintainer>
22 <email>hasufell@g.o</email>
23 <name>Julian Ospald</name>
24 <description>Maintainer. Assign bugs to him</description>
25 </maintainer>
26 <maintainer>
27 <email>henrique.ribeiro.dias@×××××.com</email>
28 <name>Henrique Dias</name>
29 <description>Proxy maintainer. CC him on bugs</description>
30 </maintainer>
31 </pkgmetadata>
32
33
34
35
36 1.1 x11-misc/sunflower/ChangeLog
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/ChangeLog?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/ChangeLog?rev=1.1&content-type=text/plain
40
41 Index: ChangeLog
42 ===================================================================
43 # ChangeLog for x11-misc/sunflower
44 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
45 # $Header: /var/cvsroot/gentoo-x86/x11-misc/sunflower/ChangeLog,v 1.1 2013/01/31 17:09:04 hasufell Exp $
46
47 *sunflower-0.1_alpha52 (31 Jan 2013)
48
49 31 Jan 2013; Julian Ospald <hasufell@g.o>
50 +sunflower-0.1_alpha52.ebuild, +files/sunflower, +metadata.xml:
51 initial import with Henrique Dias wrt #454600
52
53
54
55
56 1.1 x11-misc/sunflower/sunflower-0.1_alpha52.ebuild
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/sunflower-0.1_alpha52.ebuild?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/sunflower-0.1_alpha52.ebuild?rev=1.1&content-type=text/plain
60
61 Index: sunflower-0.1_alpha52.ebuild
62 ===================================================================
63 # Copyright 1999-2013 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 # $Header: /var/cvsroot/gentoo-x86/x11-misc/sunflower/sunflower-0.1_alpha52.ebuild,v 1.1 2013/01/31 17:09:04 hasufell Exp $
66
67 EAPI=5
68
69 PYTHON_COMPAT=( python{2_6,2_7} )
70 inherit eutils fdo-mime gnome2-utils python-r1
71
72 MY_PV="${PV%_alpha*}a-${PV#*_alpha}"
73 MY_PN="Sunflower"
74 DESCRIPTION="Small and highly customizable twin-panel file manager with plugin-support"
75 HOMEPAGE="http://code.google.com/p/sunflower-fm"
76 SRC_URI="http://sunflower-fm.googlecode.com/files/${MY_PN}-${MY_PV}.tgz"
77
78 LICENSE="GPL-3"
79 SLOT="0"
80 KEYWORDS="~amd64 ~x86"
81 IUSE=""
82
83 DEPEND="${PYTHON_DEPS}"
84 RDEPEND="${DEPEND}
85 >=dev-python/pygtk-2.15.0
86 >=dev-python/notify-python-0.1
87 virtual/python-argparse[${PYTHON_USEDEP}]"
88
89 S=${WORKDIR}/${MY_PN}
90
91 src_prepare() {
92 find "${S}" -name "*.py[co]" -delete
93
94 sed -i \
95 -e '/^application_file/s/os.path.dirname(sys.argv\[0\])/os.getcwd()/' \
96 ${MY_PN}.py || die
97 }
98
99 src_install() {
100 installme() {
101 # install modules
102 python_moduleinto ${PN}
103 python_domodule images translations application ${MY_PN}.py \
104 AUTHORS CHANGES COPYING DEPENDS TODO
105
106 touch "${D}/$(python_get_sitedir)/${PN}/__init__.py" || die
107
108 # generate and install startup scripts
109 sed \
110 -e "s#@SITEDIR@#$(python_get_sitedir)/${PN}#" \
111 "${FILESDIR}"/${PN} > "${T}"/${PN} || die
112 python_doscript "${T}"/${PN}
113 }
114
115 # install for all enabled implementations
116 python_foreach_impl installme
117
118 doicon images/${PN}.png
119 doicon -s scalable images/${PN}.svg
120 newmenu ${MY_PN}.desktop ${PN}.desktop
121 }
122
123 pkg_preinst() {
124 gnome2_icon_savelist
125 }
126
127 pkg_postinst() {
128 fdo-mime_desktop_database_update
129 gnome2_icon_cache_update
130
131 # TODO: better description
132 elog "optional dependencies:"
133 elog " dev-python/libgnome-python"
134 elog " media-libs/mutagen"
135 elog " x11-libs/vte:0[python] (terminal support)"
136 }
137
138 pkg_postrm() {
139 fdo-mime_desktop_database_update
140 gnome2_icon_cache_update
141 }
142
143
144
145 1.1 x11-misc/sunflower/Manifest
146
147 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/Manifest?rev=1.1&view=markup
148 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/Manifest?rev=1.1&content-type=text/plain
149
150 Index: Manifest
151 ===================================================================
152 AUX sunflower 82 SHA256 ec4ccbe91715cffc2974056a5bb02aa11016821aede4074ec22e5d7ee8c31023 SHA512 5e9685e8e2d8933e9b3bb2f3dc92ad677f38b63766bdb407cef7373590ed8d0e73aebd1ed6e489b39c8b1477c50657df499a7b5e50c09df1e675448dcad7f62c WHIRLPOOL 1db306f95c84d3b23878aa93d205b484da1272d39c7ded5860aabb90d7ebbf3739a5c62e68aa87c713380287cfefbffe831353fd073152b91d58cc5b32157e9b
153 DIST Sunflower-0.1a-52.tgz 670495 SHA256 30977e55dfa13ba82a14ca1507174b8689f88a365a262c599744b1366493cd39 SHA512 6864223705d54cc956533f55cb20e0d863662c0fd804e0a14cd4a1cafa55891d9f57d7b22023925c193aaf787d1146a1df289e967f80e3f9e49c9584d7d40d1c WHIRLPOOL 70ae14c719a2a806098ef401cbb22ab238738c2ea23e137917711a807442b05b4b8649ad8934aa030cc5a7e35f4256aa83a8c441e632fd68626a7dbefec28c23
154 EBUILD sunflower-0.1_alpha52.ebuild 1848 SHA256 ec25b406fe86780c3f3a652f5ed19fffd58a28fc67ada76c1a9b816a1cdf3a24 SHA512 7b175f47b105dd9ad882ccb50cb0e9f28eaf77679f14a0bf5514addcb7c65e28903de5fe040148f97b1538790491f27751017b3729bfdf8e7af9af354203af9d WHIRLPOOL 306cdbf21ba9f622fcd361ea8e26ecdbd3a05204e1696157d52960a14aa3e70ee8aec8791cee4600fb7dfe77c4df664cf747c1db41a7e81b1301eabc4e595f29
155 MISC ChangeLog 323 SHA256 94a38499c228b99e8ca1814de456c0276413ad915eeb736e62d75f1ca795dbc2 SHA512 33a08d90c6e8cbe02af77f45ddc789a614677d9d493f4866e569958505bb364967ad177f652477d5cb2d3f85235a9892f7ddee88c9b9434035a05c0d27ad888b WHIRLPOOL 960365862d0585663119ccac11e2315d2155f107fe085d431a47ee8f7dacc7e1b8b990dc9ba13c3edc9caaac56a7c41410b3d67d13850c124dd741b9a309690d
156 MISC metadata.xml 464 SHA256 cd2e89da7375471da49592dbfe8ca461b9fa4188101adce0f3e7bf9669c7cc81 SHA512 4b9b0e786ec573dd2fbd4a5d53794ab756ab8227ae48536e179a6a442311da79051a0a0b44c8a932006c3a2cc5d25bfa37377734dccebfb900b5838d4e82e02d WHIRLPOOL 0cc8ab6191429a30fe252ea031a446db274644448ce7b851d6924665669a267e04d397e660743c51343626fe6b40d0260ba01c9cd2c626caee3a9a39b11b88b0