sshpass-1.10

This commit is contained in:
uglyside
2025-02-07 00:02:41 +03:00
parent b9c5aa06d1
commit e280773c1e
2 changed files with 18 additions and 12 deletions
+4 -4
View File
@@ -1,15 +1,15 @@
#!/usr/bin/env python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.configure() autotools.configure("--prefix=/usr")
def build(): def build():
autotools.make() autotools.make()
@@ -17,4 +17,4 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") pisitools.dodoc("AUTHORS", "COPYING")
+13 -7
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>sshpass</Name> <Name>sshpass</Name>
@@ -8,16 +8,16 @@
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<License>GPLv3</License> <License>GPLv2</License>
<IsA>app:console</IsA> <IsA>app:console</IsA>
<Summary>Fool ssh into accepting an interactive password non-interactively</Summary> <Summary>Non-interactive ssh password auth.</Summary>
<Description>Fool ssh into accepting an interactive password non-interactively</Description> <Description>A tool for non-interactivly performing password authentication with SSH's so called "interactive keyboard password authentication".</Description>
<Archive sha1sum="633652e2160819ac7c7e1a351327027d2faa4fd6" type="targz">https://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz</Archive> <Archive sha1sum="40d6f209340c06a6abc9515ddf1000f967bea58e" type="targz">https://sourceforge.net/projects/sshpass/files/sshpass/1.10/sshpass-1.10.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>openssh</Dependency> <Dependency>openssh</Dependency>
</BuildDependencies> </BuildDependencies>
<Patches> <Patches>
<!-- <Patch>sshpass.patch</Patch> --> <!-- <Patch level="1"></Patch> -->
</Patches> </Patches>
</Source> </Source>
@@ -28,13 +28,19 @@
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="executable">/usr/bin</Path> <Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path> <Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="3">
<Date>2025-02-06</Date>
<Version>1.10</Version>
<Comment>Version bump.</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2"> <Update release="2">
<Date>2020-01-27</Date> <Date>2020-01-27</Date>
<Version>1.06</Version> <Version>1.06</Version>