add unoconf

This commit is contained in:
groni
2016-01-30 16:19:21 +01:00
parent f210d48d53
commit 3a32f130ec
8 changed files with 243 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog*", "COPYING", "README*")
@@ -0,0 +1,85 @@
<HTML>
<HEAD>
<meta charset="utf-8">
<TITLE>Dropbox :: Folder listing :: files</TITLE>
<link rel="shortcut icon" href="http://www.dropbox.com/static/1238803391/images/favicon.ico"/>
<link rel="stylesheet" href="http://www.dropbox.com/static/1241315492/css/sprites.css" type="text/css" media="screen"/>
<style type="text/css"><!--
* { font-family:lucida grande, lucida sans unicode, verdana; font-size:12px; border:none; }
table { border-spacing:0px; width:800px; }
td { padding:2px; }
hr { height:1px; color:#C0C0C0; background-color:#C0C0C0; }
.header { font-weight:bold; }
.datecol { width:160px; }
tbody td { padding-top:3px; }
.comment { font-size:10px; color:#404040; padding:0px 20px 2px; }
.sprite { float:left; padding-right:4px; }
tfoot { color:#808080; }
a { color:#1F75CC; text-decoration:none; }
a:hover { color:#1F75CC; text-decoration:underline; }
a:visited { color:#1F75CC; text-decoration:none; }
a:visited:hover { color:#1F75CC; text-decoration:underline; }
#dir:hover { background-color:#D7ECFF; }
#file:hover { background-color:#D7ECFF; }
#player { float:right; top:10px; }
--></style>
</HEAD>
<BODY><CENTER><TABLE>
<THEAD>
<TR><TD colspan="3">
<DIV id="player"><!--replaced by js--></DIV>
<A href="https://www.dropbox.com/referrals/NTEwMTI3MjM5">
<IMG alt="dropbox" src="http://www.dropbox.com/static/images/main_logo.png" title="Get a free Dropbox account">
</A>
<HR/>
</TD></TR>
<TR class="header">
<TD align="left" class="namecol">Contents of files:</TD>
<TD align="right" class="sizecol">Size</TD>
<TD align="right" class="datecol">Date Modified</TD>
</TR>
<TR id="dir"><TD colspan="3">
<A href="../index.html">
<IMG alt="up" src="http://www.dropbox.com/static/images/icons/icon_spacer.gif" class="sprite s_arrow_turn_up" />
Parent folder
</A>
</TD></TR>
</THEAD>
<TFOOT>
<TR><TD colspan="3"><HR/></TD></TR>
<TR>
<TD colspan="2">
<SPAN id="pyndexmodified">
Index file generated on 19-02-2012&nbsp;21:27 with
<A href="http://dl.dropbox.com/u/552/pyndexer/index.html">pyndexer</A>
v.0.7
</SPAN>
</TD>
<TD align="right">
<IMG alt="dropbox" src="http://www.dropbox.com/static/images/gray_logo.gif" style="vertical-align:middle;">
&copy; 2010 Dropbox
</TD>
</TR>
</TFOOT>
<TBODY id="maincontents" title="">
<TR id="file">
<TD><A href="python_ldpath_and_doc.patch"><IMG alt="file" src="http://www.dropbox.com/static/images/icons/icon_spacer.gif" class="sprite s_page_white" />python_ldpath_and_doc.patch</A></TD>
<TD align="right">9&nbsp;KB</TD>
<TD align="right">19-02-2012&nbsp;16:46</TD>
</TR>
</TBODY>
</TABLE></CENTER></BODY>
</HTML>
+66
View File
@@ -0,0 +1,66 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>unoconv</Name>
<Homepage>http://dag.wieers.com/home-made/unoconv</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<Summary>A document converter</Summary>
<Description>unoconv converts between any document format that OpenOffice / OpenOffice understands.</Description>
<Archive sha1sum="c4d764f9cd8461955ca1c3564a522449ed264c19" type="targz">http://dag.wieers.com/home-made/unoconv/unoconv-0.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>asciidoc</Dependency>
<Dependency>xmlto</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>unoconv</Name>
<RuntimeDependencies>
<Dependency>asciidoc</Dependency>
<Dependency>xmlto</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2016-01-28</Date>
<Version>0.7</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-06-18</Date>
<Version>0.6</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-11-20</Date>
<Version>0.6</Version>
<Comment>Update</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-01-01</Date>
<Version>0.4</Version>
<Comment>First release</Comment>
<Name>Anıl Özbek</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>unoconv</Name>
<Summary xml:lang="tr">Bir belge dönüştürücü</Summary>
<Description xml:lang="tr">unoconv, her belge biçimini OpenOffice ve OpenOffice'in anlayacağı biçime dönüştüren bir terminal uygulamasıdır.</Description>
</Source>
</PISI>
+65
View File
@@ -102875,6 +102875,71 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>unoconv</Name>
<Homepage>http://dag.wieers.com/home-made/unoconv</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<PartOf>multimedia.converter</PartOf>
<Summary xml:lang="en">A document converter</Summary>
<Summary xml:lang="tr">Bir belge dönüştürücü</Summary>
<Description xml:lang="en">unoconv converts between any document format that OpenOffice / OpenOffice understands.</Description>
<Description xml:lang="tr">unoconv, her belge biçimini OpenOffice ve OpenOffice&apos;in anlayacağı biçime dönüştüren bir terminal uygulamasıdır.</Description>
<Archive type="targz" sha1sum="c4d764f9cd8461955ca1c3564a522449ed264c19">http://dag.wieers.com/home-made/unoconv/unoconv-0.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>asciidoc</Dependency>
<Dependency>xmlto</Dependency>
</BuildDependencies>
<SourceURI>multimedia/converter/Unoconv/pspec.xml</SourceURI>
</Source>
<Package>
<Name>unoconv</Name>
<RuntimeDependencies>
<Dependency>asciidoc</Dependency>
<Dependency>xmlto</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2016-01-28</Date>
<Version>0.7</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-06-18</Date>
<Version>0.6</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-11-20</Date>
<Version>0.6</Version>
<Comment>Update</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-01-01</Date>
<Version>0.4</Version>
<Comment>First release</Comment>
<Name>Anıl Özbek</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libnut</Name>
+1 -1
View File
@@ -1 +1 @@
e7538dc5f4e0a9018c2677ebf010828bc9ffd537
b86b7a836cccfa584596c35f683c333371157ae8
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
6f11fbe361c0fe7d19bfa50bb9674dda1326d5b8
62819d0e790bbe85dbf5688c25515d78a1945061