]> Pileus Git - ~andy/sunrise/commitdiff
dev-cpp/stringencoders: New Ebuild for bug 321881 thanks to guys at gentoo-sunrise
authorDagg Stompler (daggs1) <stompdagger1@yahoo.com>
Sun, 6 Jun 2010 12:54:30 +0000 (12:54 +0000)
committerDagg Stompler (daggs1) <stompdagger1@yahoo.com>
Sun, 6 Jun 2010 12:54:30 +0000 (12:54 +0000)
svn path=/sunrise/; revision=10661

dev-cpp/stringencoders/ChangeLog [new file with mode: 0644]
dev-cpp/stringencoders/Manifest [new file with mode: 0644]
dev-cpp/stringencoders/metadata.xml [new file with mode: 0644]
dev-cpp/stringencoders/stringencoders-3.10.3.ebuild [new file with mode: 0644]

diff --git a/dev-cpp/stringencoders/ChangeLog b/dev-cpp/stringencoders/ChangeLog
new file mode 100644 (file)
index 0000000..accf8c0
--- /dev/null
@@ -0,0 +1,8 @@
+# ChangeLog for dev-cpp/stringencoders
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  05 Jun 2010; Dagg Stompler (daggs1) <stompdagger1@yahoo.com>
+  +stringencoders-3.10.3.ebuild, +metadata.xml:
+  New Ebuild for bug #321881 thanks to guys at #gentoo-sunrise
+
diff --git a/dev-cpp/stringencoders/Manifest b/dev-cpp/stringencoders/Manifest
new file mode 100644 (file)
index 0000000..49b129c
--- /dev/null
@@ -0,0 +1,4 @@
+DIST stringencoders-v3.10.3.tar.gz 428013 RMD160 fdc4ea11cd52e4005e1098816269448c3058ffdf SHA1 47128e536f43d614711129c6774251fd02c794c4 SHA256 b0bd9aa7a7c386fc47ad783986ace74704c950fa1cf458f70bbc1d79fcbc1d11
+EBUILD stringencoders-3.10.3.ebuild 520 RMD160 6d61dcd0fd1ae40dce11d2ee41c7350dc934289a SHA1 520f636977ee63213e57666d636d85df0bc234ba SHA256 ee4fdfae19f2a71d523e8f5083236f214883dbd71120ab4d6f97e81a86a94d29
+MISC ChangeLog 298 RMD160 c48a0a2e8c19083a710b783838bfd3495936866f SHA1 6619cf9f76a3e624fc42da2dd0e382a9d061e009 SHA256 ae09a3978978301b5a674213fd6e8cfd2135cbad533d7247daf88dc43677ab94
+MISC metadata.xml 838 RMD160 0d99beb545371bcb49f56ea288bd373938b265d8 SHA1 f14f547cceecd8aac77e433ecf1c0a6f815ba841 SHA256 c139171dff5440b99a83a0e02c59471f7643fc3f34a6a2dc0b1423ac48df8902
diff --git a/dev-cpp/stringencoders/metadata.xml b/dev-cpp/stringencoders/metadata.xml
new file mode 100644 (file)
index 0000000..a0672e1
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>no-herd</herd>
+  <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
+  <longdescription lang="en">A collection of high performance c-string transformations, frequently 2x faster than standard implementations (if they exist at all).
+    including
+        * base64, standard
+        * base64, web/url safe, with configurable alphabet
+        * base85 (good for http cookies)
+        * base16 (hex)
+        * base2 (ascii binary)
+        * url escaping
+        * javascript string escaping
+        * fast number to string conversion, 4-22x faster than sprintf!
+        * fast ascii upper/lower case conversion, 2-66x faster than stdlib! (yes, 66x faster) 
+  </longdescription>
+</pkgmetadata>
diff --git a/dev-cpp/stringencoders/stringencoders-3.10.3.ebuild b/dev-cpp/stringencoders/stringencoders-3.10.3.ebuild
new file mode 100644 (file)
index 0000000..9644b50
--- /dev/null
@@ -0,0 +1,23 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+inherit base
+
+MY_P="${PN}-v${PV}"
+DESCRIPTION="A collection of high performance c-string transformations"
+HOMEPAGE="http://code.google.com/p/stringencoders/"
+SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+S=${WORKDIR}/${MY_P}
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+# default `make check` doesn't work
+src_test() {
+       emake test || die
+}