summaryrefslogtreecommitdiff
path: root/social
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-12 03:47:14 +0000
committerroot <root@rshg054.dnsready.net>2012-03-12 03:47:14 +0000
commit7e61bbcf6b3c8ffe6c076268044d83b446fceeab (patch)
tree360d89950fc40d239f428a8396bf849b06745d20 /social
parenta6cb3ddef295c5feb4e03ee198dbb31cdf62d518 (diff)
Mon Mar 12 03:47:14 UTC 2012
Diffstat (limited to 'social')
-rw-r--r--social/bitcoin-daemon/PKGBUILD10
-rw-r--r--social/python2-cheetah/Changelog6
-rw-r--r--social/python2-cheetah/PKGBUILD33
3 files changed, 44 insertions, 5 deletions
diff --git a/social/bitcoin-daemon/PKGBUILD b/social/bitcoin-daemon/PKGBUILD
index 29e68d0f3..ddc5ac0ab 100644
--- a/social/bitcoin-daemon/PKGBUILD
+++ b/social/bitcoin-daemon/PKGBUILD
@@ -6,7 +6,7 @@
pkgname=bitcoin-daemon
_pkgname=bitcoin
-pkgver=0.5.1
+pkgver=0.5.2
pkgrel=1
pkgdesc="Bitcoin is a peer-to-peer network based digital currency (daemon with JSON-RPC interface)."
arch=('i686' 'x86_64')
@@ -23,6 +23,9 @@ source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${
s1=$srcdir/${_pkgname}-${pkgver}-linux
src=$s1/src/src
makefile_unix=makefile.unix
+md5sums=('6d40f645ddc042de26d64e83656f38e0'
+ '0375ba4d6c3425eee350dc8b7575403d'
+ '7faa439885f3adbba5847ae75aac5484')
build() {
cd $src
@@ -42,7 +45,7 @@ build() {
package() {
# get compiled binaries
- install -d ${pkgdir}/{var/lib/${pkgname},usr/{share/licenses,bin},etc/rc.d}
+ mkdir -p ${pkgdir}/{var/lib/${pkgname},usr/{share/licenses/${pkgname},bin},etc/rc.d}
install -D -m755 ${src}/bitcoind ${pkgdir}/usr/bin/
@@ -51,6 +54,3 @@ package() {
install -D -m 644 ${s1}/COPYING \
${pkgdir}/usr/share/licenses/${pkgname}/
}
-md5sums=('1edeb3082d41741b8d0e5f850818328f'
- '0375ba4d6c3425eee350dc8b7575403d'
- '7faa439885f3adbba5847ae75aac5484')
diff --git a/social/python2-cheetah/Changelog b/social/python2-cheetah/Changelog
new file mode 100644
index 000000000..9acc7834a
--- /dev/null
+++ b/social/python2-cheetah/Changelog
@@ -0,0 +1,6 @@
+2012-01-31 Julien Nicoulaud <julien.nicoulaud@gmail.com>
+
+ * 2.4.4-4 :
+ Add changelog.
+ Remove unneeded shebang modification.
+
diff --git a/social/python2-cheetah/PKGBUILD b/social/python2-cheetah/PKGBUILD
new file mode 100644
index 000000000..34ce863a8
--- /dev/null
+++ b/social/python2-cheetah/PKGBUILD
@@ -0,0 +1,33 @@
+# Maintainer: Julien Nicoulaud <julien.nicoulaud@gmail.com>
+# Contributor: James Rayner <james@archlinux.org>
+# Contributor: Todd Maynard <arch@toddmaynard.com>
+# Source: https://github.com/nicoulaj/archlinux-packages
+pkgname=python2-cheetah
+pkgver=2.4.4
+pkgrel=4
+pkgdesc="A Python-powered template engine and code generator"
+arch=(i686 x86_64)
+url="http://www.cheetahtemplate.org"
+license=(custom)
+depends=(python2 python-markdown)
+makedepends=(python2-distribute)
+optdepends=('python2-pygments: for the CodeHighlighter filter')
+provides=(cheetah python-cheetah)
+conflicts=(cheetah python-cheetah)
+changelog=Changelog
+source=(http://pypi.python.org/packages/source/C/Cheetah/Cheetah-${pkgver}.tar.gz)
+md5sums=('853917116e731afbc8c8a43c37e6ddba')
+
+build() {
+ cd "${srcdir}/Cheetah-${pkgver}"
+ python2 setup.py build
+}
+
+package() {
+ msg "Install..."
+ cd "${srcdir}/Cheetah-${pkgver}"
+ python2 setup.py install --root="${pkgdir}" || return 1
+
+ msg2 "Install copyright resources in /usr/share/licenses/${pkgname}..."
+ install -Dm644 "${srcdir}/Cheetah-${pkgver}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}