Community Packages

Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines

Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.

REPEAT: Do NOT report bugs for outdated packages!
Tasklist

FS#29682 - zeromq package fails to build

Attached to Project: Community Packages
Opened by ezzetabi (ezzetabi) - Monday, 30 April 2012, 18:38 GMT
Last edited by Kyle Keen (keenerd) - Monday, 30 April 2012, 19:50 GMT
Task Type Bug Report
Category Packages
Status Closed
Assigned To Kyle Keen (keenerd)
Architecture All
Severity Very Low
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

Description:
zeromq package fails to build for integrity check failure. Beside the default package lacks the pgm support.

Steps to reproduce:
Download the package, makepkg.

Fixed PKGBUILD:

# $Id: PKGBUILD 69288 2012-04-12 13:09:04Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
pkgname=zeromq
pkgver=2.2.0
pkgrel=1
pkgdesc="Fast messaging system built on sockets, C and C++ bindings. aka 0MQ, ZMQ."
arch=('i686' 'x86_64')
url="http://www.zeromq.org"
license=('LGPL')
depends=('gcc-libs' 'util-linux')
makedepends=()
source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz)
md5sums=('1b11aae09b19d18276d0717b2ea288f6')

build() {
cd "$srcdir/$pkgname-$pkgver"
./configure prefix=/usr --with-pgm
sed -i ./foreign/openpgm/build-staging/openpgm/pgm/Makefile -e '/^PYTHON=/ s_.*_PYTHON=/usr/bin/python2_'
make
}

package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
This task depends upon

Closed by  Kyle Keen (keenerd)
Monday, 30 April 2012, 19:50 GMT
Reason for closing:  Fixed
Additional comments about closing:  Fixed in 2.2.0-2
Comment by Kyle Keen (keenerd) - Monday, 30 April 2012, 19:49 GMT
Turns out the upload was corrupt.
http://lists.zeromq.org/pipermail/zeromq-dev/2012-April/016872.html

Fixed, and added the pgm feature request.

Loading...