Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding botan #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions desktop/gtk/gtk2/pspec.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,7 @@
<Summary>The GTK+ 2 package contains the libraries used for creating graphical user interfaces for applications.</Summary>
<Description>The GTK+ 2 package contains the libraries used for creating graphical user interfaces for applications. </Description>
<License>GPLv3+</License>
<Archive sha1sum="1c539a1564fbcb0a9b60b03188dc808f7b678531" type="tarxz">http://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/gtk+-2.24.17.tar.xz</Archive>

<Patches>
<!-- Prevent bugs in GTK+ documentation rebuilding. Fix man pages for the binary tools //-->
<Patch level="1">fix_docs_and_manpages.patch</Patch>
</Patches>
<Archive sha1sum="2175e25041244dc321e35dbdcf9cb5c371b455da" type="tarxz">http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.24/gtk+-2.24.22.tar.xz</Archive>

<BuildDependencies>
<Dependency type="pkgconfig">gdk-pixbuf-2.0</Dependency>
Expand Down Expand Up @@ -95,6 +90,14 @@
</Package>

<History>
<Update release="8">
<Date>10-15-2014</Date>
<Version>2.24.22</Version>
<Comment>Updating GTK</Comment>
<Name>Greg Ryman</Name>
<Email>[email protected]</Email>
</Update>

<Update release="7">
<Date>06-08-2014</Date>
<Version>2.24.17</Version>
Expand Down
14 changes: 14 additions & 0 deletions programming/library/botan/actions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/python

# Created For Evolve OS

from pisi.actionsapi import pisitools, shelltools, autotools, get

def setup():
shelltools.system("python configure.py")

def build():
autotools.make()

def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
41 changes: 41 additions & 0 deletions programming/library/botan/pspec.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://evolve-os.com/standard/pisi-spec.dtd">
<PISI>
<Source>
<Name>botan</Name>
<Homepage>http://botan.randombit.net/</Homepage>
<Packager>
<Name>Greg Ryman</Name>
<Email>[email protected]</Email>
</Packager>
<Summary>Botan is a crypto library for C++</Summary>
<Description>It provides useful things like SSL/TLS, X.509 certificates, ECDSA, AES, GCM, and bcrypt, plus a kitchen sink of crypto algorithms of various utility. A third party open source implementation of SSHv2 that uses botan is also available. In addition to C++ you can use (parts of) botan from Python or Perl (both included in tree), or with Node.js.</Description>
<License>BSD2</License>
<Archive sha1sum="a7ba0be11629143043da078a4c044eac3369b4ec" type="tarbz2">http://files.randombit.net/botan/Botan-1.10.8.tbz</Archive>

<BuildDependencies>

</BuildDependencies>
</Source>

<Package>
<Name>botan</Name>
<Files>
<Path fileType="executable">/bin</Path>
<Path fileType="header">/include/botan-1.10/botan</Path>
<Path fileType="library">/lib</Path>
<Path fileType="data">/lib/pkgconfig</Path>
<Path fileType="docs">/share/doc/botan-1.10.8</Path>
</Files>
</Package>

<History>
<Update release="1">
<Date>10-16-2014</Date>
<Version>1.10</Version>
<Comment>Add Botan to repositories</Comment>
<Name>Greg Ryman</Name>
<Email>[email protected]</Email>
</Update>
</History>
</PISI>