newt moved into main for pisi 2.0

This commit is contained in:
2015-07-04 15:10:25 +03:00
parent 7831a75ba3
commit 4b208b46d2
3 changed files with 131 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
# use python2.x
pisitools.dosed("configure", "(\/usr\/include\/)python\*", r"\1python2*")
# fix unused direct dependency
pisitools.dosed("Makefile.in", "(PLFLAGS=)`\$\$pyconfig --libs`", r"\1'-lpython2.7'")
pisitools.dosed("Makefile.in", "(PLDFLAGS=)`\$\$pyconfig --ldflags`", r"\1'-lpython2.7 -Xlinker -export-dynamic'")
shelltools.echo("config.h.in", "#define USE_INTERP_RESULT 1")
shelltools.export("PYTHON", "/usr/bin/python2.7")
autotools.configure("\
--with-gpm-support \
")
def build():
autotools.make()
def install():
autotools.install()
# remove static lib
pisitools.remove("/usr/lib/libnewt.a")
pisitools.dodoc("CHANGES", "COPYING")
+85
View File
@@ -0,0 +1,85 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>newt</Name>
<Homepage>https://fedorahosted.org/newt/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>A windowing toolkit for text mode</Summary>
<Description>newt is a windowing toolkit for text mode, which provides many widgets and stackable windows.</Description>
<Archive sha1sum="9204940f8cd80910a1d0e80c9bc1b946eb6e730d" type="targz">https://fedorahosted.org/releases/n/e/newt/newt-0.52.17.tar.gz</Archive>
<BuildDependencies>
<Dependency versionFrom="8.6.0">tcl-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>newt</Name>
<RuntimeDependencies>
<Dependency versionFrom="8.6.0">tcl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>newt-devel</Name>
<Summary>Development files for newt</Summary>
<RuntimeDependencies>
<Dependency release="current">newt</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2014-07-05</Date>
<Version>0.52.17</Version>
<Comment>Version bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-11-05</Date>
<Version>0.52.16</Version>
<Comment>Version bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-26</Date>
<Version>0.52.14</Version>
<Comment>Release bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-01-30</Date>
<Version>0.52.14</Version>
<Comment>Build with new relaese Tcl</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-09-17</Date>
<Version>0.52.14</Version>
<Comment>First release</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>newt</Name>
<Summary xml:lang="tr">Metin tabanlı bir pencere araç seti.</Summary>
<Description xml:lang="tr">Newt, metin tabanlı bir pencere araç setidir. Pek çok alet ve istiflenebilir pencere sağlar.</Description>
</Source>
<Package>
<Name>newt-devel</Name>
<Summary xml:lang="tr">newt için geliştirme dosyaları</Summary>
</Package>
</PISI>