Merge pull request #1135 from groni/master
add xfat-utils, fsarchiver, fuse-exfat, sshfs, Unoconv, ccd2iso all packages version bump
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#!/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 get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
#pisitools.dobin("mkfs/mkexfatfs")
|
||||
#pisitools.dobin("dump/dumpexfat")
|
||||
#pisitools.dobin("fsck/exfatfsck")
|
||||
#pisitools.dobin("label/exfatlabel")
|
||||
|
||||
#pisitools.doman("mkfs/mkexfatfs.8")
|
||||
#pisitools.doman("dump/dumpexfat.8")
|
||||
#pisitools.doman("fsck/exfatfsck.8")
|
||||
#pisitools.doman("label/exfatlabel.8")
|
||||
|
||||
pisitools.dodoc("ChangeLog", "COPYING", "README")
|
||||
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>exfat-utils</Name>
|
||||
<Homepage>http://code.google.com/p/exfat</Homepage>
|
||||
<Packager>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Utilities for exFAT file system</Summary>
|
||||
<Description>This project aims to provide a full-featured exFAT file system implementation for GNU/Linux and other Unix-like systems as a FUSE module and a set of utilities.</Description>
|
||||
<Archive sha1sum="d329bcca81b72cfabea9ce40628458524ed063e1" type="targz">https://github.com/relan/exfat/releases/download/v1.2.3/exfat-utils-1.2.3.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>exfat-utils</Name>
|
||||
<Files>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2016-01-27</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-09-10</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-23</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-12-15</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>exfat-utils</Name>
|
||||
<Summary xml:lang="en">Utilities for exFAT file system</Summary>
|
||||
<Description xml:lang="en">This project aims to provide a full-featured exFAT file system implementation for GNU/Linux and other Unix-like systems as a FUSE module and a set of utilities.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/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 get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "THANKS")
|
||||
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fsarchiver</Name>
|
||||
<Homepage>http://www.fsarchiver.org/Main_Page</Homepage>
|
||||
<Packager>
|
||||
<Name>marcin bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Safe and flexible file-system backup/deployment tool.</Summary>
|
||||
<Description>FSArchiver is a system tool that allows you to save the contents of a file-system to a compressed archive file.</Description>
|
||||
<Archive sha1sum="99a1c4375e01af4047c4e9778ada146ad6a23aab" type="targz">https://github.com/fdupoux/fsarchiver/releases/download/0.6.21/fsarchiver-0.6.21.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>lzo-devel</Dependency>
|
||||
<Dependency>xz-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>e2fsprogs-devel</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>libutil-linux-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fsarchiver</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lzo</Dependency>
|
||||
<Dependency>xz</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>e2fsprogs</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>libutil-linux</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2016-01-27</Date>
|
||||
<Version>0.6.21</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-04-07</Date>
|
||||
<Version>0.6.19</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-02-22</Date>
|
||||
<Version>0.6.18</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-02-28</Date>
|
||||
<Version>0.6.17</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-13</Date>
|
||||
<Version>0.6.15</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fsarchiver</Name>
|
||||
<Summary xml:lang="de">Sicherung und Wiederherstellung von Dateisystemen</Summary>
|
||||
<Description xml:lang="de">fsarchiver ist ein Konsolenprogramm zum Sichern und Wiederherstellen von Partitionen und Verzeichnissen.</Description>
|
||||
<Summary xml:lang="pl">Bezpieczne i elastyczne narzędzie do tworzenia kopii zapasowej systemu plików.</Summary>
|
||||
<Description xml:lang="pl">FSArchiver jest narzędziem systemowym, które pozwala na zapisanie zawartości systemu plików w skompresowanym pliku.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/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 pisitools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
#pisitools.dobin("fuse/mount.exfat-fuse")
|
||||
# pisitools.doman("fuse/mount.exfat-fuse.8")
|
||||
|
||||
pisitools.dodoc("ChangeLog", "COPYING")
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fuse-exfat</Name>
|
||||
<Homepage>http://code.google.com/p/exfat/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>exFAT filesystem fuse module</Summary>
|
||||
<Description>exFAT filesystem fuse module</Description>
|
||||
<Archive sha1sum="a557cc1b6df9834322111b4a19f7fb9f3e2824bc" type="targz">https://github.com/relan/exfat/releases/download/v1.2.3/fuse-exfat-1.2.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>exfat-utils</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fuse-exfat</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fuse</Dependency>
|
||||
<Dependency>exfat-utils</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2016-01-27</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-09-10</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fuse-exfat</Name>
|
||||
<Summary xml:lang="tr">exFAT dosya sistemi bağlamak için araçlar</Summary>
|
||||
<Description xml:lang="tr">exFAT dosya sistemi bağlamak için araçlar</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/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 get
|
||||
|
||||
WorkDir = "sshfs-fuse-%s" % get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-sshnodelay")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("NEWS","README","ChangeLog")
|
||||
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>sshfs</Name>
|
||||
<Homepage>http://fuse.sourceforge.net/sshfs.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A filesystem client based on the SSH FTP</Summary>
|
||||
<Description>sshfs allows mounting remote SSH accounts as a filesystem.</Description>
|
||||
<Archive sha1sum="a28ed6c04847611816452441b14ad9a0bb6df842" type="targz">https://github.com/libfuse/sshfs/releases/download/sshfs_2_5/sshfs-fuse-2.5.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>fuse-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>sshfs</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fuse</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2016-01-27</Date>
|
||||
<Version>2.5</Version>
|
||||
<Comment>Rebuild and check.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-12-13</Date>
|
||||
<Version>2.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-03-09</Date>
|
||||
<Version>2.4</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Varol Maksutoğlu</Name>
|
||||
<Email>waroi@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-14</Date>
|
||||
<Version>2.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>sshfs</Name>
|
||||
<Summary xml:lang="tr">SSH FTP alanı dosyasistemi</Summary>
|
||||
<Description xml:lang="tr">sshfs, SSH dosya aktarım protokülünü kullanarak bir dosyasistemi oluşturmanıza olanak verir. Böylece, uzak sistemdeki SSH FTP alanınızı diskinizin bir parçasıymış gibi kullanabilirsiniz.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -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 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;">
|
||||
© 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 KB</TD>
|
||||
<TD align="right">19-02-2012 16:46</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY>
|
||||
</TABLE></CENTER></BODY>
|
||||
</HTML>
|
||||
@@ -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>
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/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
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc('COPYING', 'ChangeLog', 'TODO', 'README', 'AUTHORS')
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ccd2iso</Name>
|
||||
<Homepage>http://sourceforge.net/projects/ccd2iso</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>CloneCD image files to ISO converter</Summary>
|
||||
<Description>ccd2iso converts CloneCD image files to ISO image files.</Description>
|
||||
<Archive sha1sum="cbefdc086adf45138d921a4a7c0ff012dd7c9ca7" type="targz">mirrors://sourceforge/ccd2iso/ccd2iso-0.3.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ccd2iso</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc/ccd2iso</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-06-18</Date>
|
||||
<Version>0.3</Version>
|
||||
<Comment>Rebuild for gcc</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-20</Date>
|
||||
<Version>0.3</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-01-17</Date>
|
||||
<Version>0.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ccd2iso</Name>
|
||||
<Summary xml:lang="tr">CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir uygulama</Summary>
|
||||
<Description xml:lang="tr">CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir komut satırı uygulaması.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+103434
-102833
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
46420a73f41585923bf0da73dd0d1cdf9603bd6a
|
||||
c759e8124560ff94a554de937be0d813209117fc
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
7e0202ac5dd687ac8f94a7c040103b978bfa0959
|
||||
c9ed354cedf2855c80a00bdd4fda93295435241a
|
||||
Reference in New Issue
Block a user