osmo calendar.

This commit is contained in:
4fury-c3440d8
2020-12-20 08:56:48 +00:00
parent fa465071db
commit 57141c6cba
11 changed files with 354 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "COPYING", "NEWS", "README")
@@ -0,0 +1,12 @@
diff -up mhash-0.9.9.9/src/keygen_test.c.BAD mhash-0.9.9.9/src/keygen_test.c
--- mhash-0.9.9.9/src/keygen_test.c.BAD 2009-07-22 18:01:59.636042665 -0400
+++ mhash-0.9.9.9/src/keygen_test.c 2009-07-22 18:04:53.608292727 -0400
@@ -121,7 +121,7 @@ int main()
mhash_keygen_ext(KEYGEN_S2K_SALTED, data, key, keysize, password, passlen);
- mutils_memset(tmp, 0, keysize * 2);
+ // mutils_memset(tmp, 0, keysize * 2);
tmp = mutils_asciify(key, keysize);
+73
View File
@@ -0,0 +1,73 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>mhash</Name>
<Homepage>http://mhash.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<PartOf>programming.library</PartOf>
<Summary>A uniform interface to several hash algorithms.</Summary>
<Description>mhash is a free library which provides a uniform interface to a large number of hash algorithms.</Description>
<Archive sha1sum="d6f324e70a42a8bbf7a5458521257225afcf0caf" type="tarbz2">mirrors://sourceforge/mhash/mhash-0.9.9.9.tar.bz2</Archive>
<Patches>
<Patch level="1">mhash-0.9.9.9-keygen_test_fix.patch</Patch>
</Patches>
</Source>
<Package>
<Name>mhash</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>mhash-devel</Name>
<Summary>Development files for mhash</Summary>
<RuntimeDependencies>
<Dependency release="current">mhash</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="man">/usr/share/man/man3</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2020-12-20</Date>
<Version>0.9.9.9</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="3">
<Date>2014-05-20</Date>
<Version>0.9.9.9</Version>
<Comment>Rebuild, remove unneeded patches.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-31</Date>
<Version>0.9.9.9</Version>
<Comment>Rebuild</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="1">
<Date>2011-01-30</Date>
<Version>0.9.9.9</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>mhash</Name>
<Summary xml:lang="tr">Hash algoritmaları için ortak arayüz</Summary>
<Description xml:lang="tr">mhash, çeşitli hash algoritmalarını kolayca kullanabilmek için ortak arayüz sağlayan özgür bir kitaplıktır.</Description>
</Source>
<Package>
<Name>mhash-devel</Name>
<Summary xml:lang="tr">mhash paketine ait geliştirme dosyaları</Summary>
</Package>
</PISI>