summaryrefslogtreecommitdiff
path: root/community/python2-pmw
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-02 03:29:07 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-02 03:29:07 +0000
commit171120794a952c6e0e75aef6ecdf46cd6d5154c8 (patch)
tree963098bd54ea43d811307fd081a8d08380723e30 /community/python2-pmw
parent2d8813df5b3f8a63835a228496f998914755d820 (diff)
Sun Feb 2 03:26:29 UTC 2014
Diffstat (limited to 'community/python2-pmw')
-rw-r--r--community/python2-pmw/LICENSE.txt21
-rw-r--r--community/python2-pmw/PKGBUILD37
2 files changed, 58 insertions, 0 deletions
diff --git a/community/python2-pmw/LICENSE.txt b/community/python2-pmw/LICENSE.txt
new file mode 100644
index 000000000..de9a58260
--- /dev/null
+++ b/community/python2-pmw/LICENSE.txt
@@ -0,0 +1,21 @@
+Copyright (c) 2007,2008 David M. Cooke <david.m.cooke@gmail.com>
+Copyright (c) 2009,2010 Francesc Alted <faltet@pytables.org>
+Copyright (c) 2011- See AUTHORS.txt
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/community/python2-pmw/PKGBUILD b/community/python2-pmw/PKGBUILD
new file mode 100644
index 000000000..739d1cfd3
--- /dev/null
+++ b/community/python2-pmw/PKGBUILD
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 105149 2014-02-01 19:59:28Z arcanis $
+# Maintainer: Evgeniy Alekseev <arcanis.arch at gmail dot com>
+# Contributor: kfgz <kfgz at interia dot pl>
+# Contributor: Michael Krauss <hippodriver at gmx dot net>
+# Contributor: dsa
+
+pkgname=python2-pmw
+pkgver=1.3.3b
+pkgrel=1
+pkgdesc="A toolkit for high-level compound widgets in Python using the Tkinter module"
+arch=('i686' 'x86_64')
+url="http://pmw.sourceforge.net/doc/index.html"
+license=('MIT')
+depends=('python2' 'tk')
+source=(${pkgname}-${pkgver}.tar.gz::http://sourceforge.net/projects/pmw/files/Pmw/Pmw.1.3.3/Pmw_1_3_3b.tar.gz/download
+ "LICENSE.txt")
+md5sums=('d8b998b921584db32a5eeeddc6bc606c'
+ '28b047a148c1780eddcf4bed6b150123')
+
+prepare() {
+ # change python to python2
+ sed -i "s|python|python2|g" "${srcdir}/Pmw/Pmw/Pmw_1_3_3/tests/ManualTests.py"
+ sed -i "s|python|python2|g" "${srcdir}/Pmw/Pmw/Pmw_1_3_3/demos/All.py"
+ sed -i "s|python|python2|g" "${srcdir}/Pmw/Pmw/Pmw_1_3_3/tests/All.py"
+ sed -i "s|python|python2|g" "${srcdir}/Pmw/Pmw/Pmw_1_3_3/bin/bundlepmw.py"
+}
+
+build() {
+ cd "Pmw"
+ python2 setup.py build
+}
+
+package() {
+ cd "Pmw"
+ python2 setup.py install --prefix=/usr --root="${pkgdir}"
+ install -D -m644 "${srcdir}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}