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!
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!
FS#2510 - perl-net-ssleay failed to build
Attached to Project:
Arch Linux
Opened by Tomasz Bakiera (kog) - Wednesday, 06 April 2005, 09:57 GMT
Last edited by Dale Blount (dale) - Wednesday, 06 April 2005, 12:00 GMT
Opened by Tomasz Bakiera (kog) - Wednesday, 06 April 2005, 09:57 GMT
Last edited by Dale Blount (dale) - Wednesday, 06 April 2005, 12:00 GMT
|
Detailsin makepkg.conf flags are set:
export CFLAGS="-march=pentium3 -O2 -pipe" export CXXFLAGS="-march=pentium3 -O2 -pipe" I got LC_ALL=PL_pl "Nie ma takiego pliku ani katalogu" - means "No such file or folder" "nie można usunąć" - "can not delete" Writing /var/abs/extra/lib/perl-net-ssleay/pkg/usr/lib/perl5/site_perl/5.8.6/i686-linux-thread-multi/auto/Net/SSLeay/.packlist Appending installation info to /var/abs/extra/lib/perl-net-ssleay/pkg/usr/lib/perl5/5.8.6/i686-linux-thread-multi/perllocal.pod /bin/rm: nie można usunąć `/var/abs/extra/lib/perl-net-ssleay/pkg/usr/lib/perl5/current/pentium3-linux-thread-multi/perllocal.pod': Nie ma takiego pliku ani katalogu /bin/rm: nie można usunąć `/var/abs/extra/lib/perl-net-ssleay/pkg/usr/lib/perl5/site_perl/current/pentium3-linux-thread-multi/auto/Net/SSLeay/.packlist': Nie ma takiego pliku ani katalogu ==> ERROR: Build Failed. Aborting... Error: Failed to build "perl-net-ssleay" |
This task depends upon
Closed by Jan de Groot (JGC)
Sunday, 05 June 2005, 20:06 GMT
Reason for closing: Won't fix
Additional comments about closing: Your CARCH is set to pentium3, which will practically break all perl packages.
Sunday, 05 June 2005, 20:06 GMT
Reason for closing: Won't fix
Additional comments about closing: Your CARCH is set to pentium3, which will practically break all perl packages.
last lines:
/var/abs/extra/lib/perl-net-ssleay/pkg/usr/lib/perl5/current/i686-linux-thread-multi/perllocal.pod
/bin/rm: nie można usunąć `/var/abs/extra/lib/perl-net-ssleay/pkg/usr/lib/perl5/current/pentium3-linux-thread-multi/perllocal.pod': Nie ma takiego pliku ani katalogu
/bin/rm: nie można usunąć `/var/abs/extra/lib/perl-net-ssleay/pkg/usr/lib/perl5/site_perl/current/pentium3-linux-thread-multi/auto/Net/SSLeay/.packlist': Nie ma takiego pliku ani katalogu
==> ERROR: Build Failed. Aborting...
Error: Failed to build "perl-net-ssleay"
My PKGBUILD:
# $Id: PKGBUILD,v 1.2 2004/09/06 12:37:54 eric Exp $
# Maintainer: eric <eric@archlinux.org>
# Contributor: Manolis Tzanidakis
pkgname=perl-net-ssleay
pkgver=1.25
pkgrel=1
pkgdesc="Perl Module: Extension for using OpenSSL."
url="http://search.cpan.org/~sampo/Net-SSLeay.pm-$pkgver"
depends=('perl>=5.8.4-1' 'openssl')
source=(http://www.cpan.org/authors/id/S/SA/SAMPO/Net_SSLeay.pm-$pkgver.tar.gz)
md5sums=('87de8a06802fbb63c7c85e89eedbe139')
replaces=('net-ssleay')
provides=('net-ssleay')
build() {
cd $startdir/src/Net_SSLeay.pm-$pkgver
/usr/bin/perl Makefile.PL
# ugly hack to make install location
# compatible with newer versions of perl.
# NOTE: if perl version changes from 5.8.6, change sed line too
/bin/sed -i "s:5.8.6:current:g" Makefile
/usr/bin/make || return 1
/usr/bin/make install DESTDIR=$startdir/pkg
/bin/rm $startdir/pkg/usr/lib/perl5/current/${CARCH}-linux-thread-multi/perllocal.pod
/bin/rm $startdir/pkg/usr/lib/perl5/site_perl/current/${CARCH}-linux-thread-multi/auto/Net/SSLeay/.packlist
}
# vim: ts=2 sw=2 et ft=sh
[11:34][root@kog tomek]# locale
LANG=POSIX
LC_CTYPE="POSIX"
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=POSIX
and my makepkg.conf is here:
http://kog.homelinux.net/archlinux/makepkg.conf
Still no luck :-(