From 2c8c0c9ad668d3a37b87943269e83f2181cb21e6 Mon Sep 17 00:00:00 2001 From: GONG Jie Date: Mon, 4 Jan 2016 20:08:41 +0800 Subject: [PATCH] Build perl-Net-IP ver 1.26 for AIX 7.2 --- AIX/perl-Net-IP/7.2/Build-notes | 12 +++ AIX/perl-Net-IP/7.2/Net-IP.spec | 131 ++++++++++++++++++++++++++++++++ 2 files changed, 143 insertions(+) create mode 100644 AIX/perl-Net-IP/7.2/Build-notes create mode 100644 AIX/perl-Net-IP/7.2/Net-IP.spec diff --git a/AIX/perl-Net-IP/7.2/Build-notes b/AIX/perl-Net-IP/7.2/Build-notes new file mode 100644 index 0000000..6a748c0 --- /dev/null +++ b/AIX/perl-Net-IP/7.2/Build-notes @@ -0,0 +1,12 @@ +Build Notes + +Need cc_r compiler installed on AIX build system. + +Use the Net-IP.spec in this directory +( it was created by running a modified cpan2rpm to support AIX) +Get Net-IP-1.26.tar.gz from CPAN +cp Net-IP-1.26.tar.gz /opt/freeware/src/packages/SOURCES +cp Net-IP.spec /opt/freeware/src/packages/SPECS + +Run "rpm -bb Net-IP.spec". + - which creates: /opt/freeware/src/packages/RPMS/ppc/perl-Net-IP-1.26-1.aix7.2.ppc.rpm diff --git a/AIX/perl-Net-IP/7.2/Net-IP.spec b/AIX/perl-Net-IP/7.2/Net-IP.spec new file mode 100644 index 0000000..979e060 --- /dev/null +++ b/AIX/perl-Net-IP/7.2/Net-IP.spec @@ -0,0 +1,131 @@ +# +# - Net::IP - +# This spec file was automatically generated by cpan2rpm [ver: 2.028] +# The following arguments were used: +# Net-IP-1.26.tar.gz -U --tempdir=/tmp/test +# For more information on cpan2rpm please visit: http://perl.arix.com/ +# + +%define pkgname Net-IP +%define filelist %{pkgname}-%{version}-filelist +%define NVR %{pkgname}-%{version}-%{release} +%define maketest 1 + +name: perl-Net-IP +summary: Net-IP - Perl extension for manipulating IPv4/IPv6 addresses +version: 1.26 +release: 1 +vendor: Manuel Valente +packager: Arix International +license: Artistic +group: Applications/CPAN +url: http://www.cpan.org +buildroot: %{_tmppath}/%{name}-%{version}-%(id -u -n) +buildarch: ppc +prefix: %(echo %{_prefix}) +source: Net-IP-1.26.tar.gz + +%description +This module provides functions to deal with IPv4/IPv6 addresses. The module +can be used as a class, allowing the user to instantiate IP objects, which can +be single IP addresses, prefixes, or ranges of addresses. There is also a +procedural way of accessing most of the functions. Most subroutines can take +either IPv4 or IPv6 addresses transparently. + +# +# This package was generated automatically with the cpan2rpm +# utility. To get this software or for more information +# please visit: http://perl.arix.com/ +# + +%prep +%setup -q -n %{pkgname}-%{version} +chmod -R u+w %{_builddir}/%{pkgname}-%{version} + +%build +grep -rsl '^#!.*perl' . | +# grep -v '.bak$' |xargs --no-run-if-empty \ +grep -v '.bak$' |xargs \ +%__perl -MExtUtils::MakeMaker -e 'MY->fixin(@ARGV)' +CFLAGS="$RPM_OPT_FLAGS" +%{__perl} Makefile.PL `%{__perl} -MExtUtils::MakeMaker -e ' print qq|PREFIX=%{buildroot}%{_prefix}| if \$ExtUtils::MakeMaker::VERSION =~ /5\.9[1-6]|6\.0[0-5]/ '` +%{__make} +%if %maketest +%{__make} test +%endif + +%install +[ "%{buildroot}" != "/" ] && rm -rf %{buildroot} + +%{makeinstall} `%{__perl} -MExtUtils::MakeMaker -e ' print \$ExtUtils::MakeMaker::VERSION <= 6.05 ? qq|PREFIX=%{buildroot}%{_prefix}| : qq|DESTDIR=%{buildroot}| '` + +cmd=/usr/share/spec-helper/compress_files +[ -x $cmd ] || cmd=/usr/lib/rpm/brp-compress +[ -x $cmd ] && $cmd + +# SuSE Linux +# if [ -e /etc/SuSE-release -o -e /etc/UnitedLinux-release ] +# then +# %{__mkdir_p} %{buildroot}/var/adm/perl-modules +# %{__cat} `find %{buildroot} -name "perllocal.pod"` \ +# | %{__sed} -e s+%{buildroot}++g \ +# > %{buildroot}/var/adm/perl-modules/%{name} +# fi + +# remove special files +find %{buildroot} -name "perllocal.pod" \ + -o -name ".packlist" \ + -o -name "*.bs" \ + |xargs -i rm -f {} + +# no empty directories +# find %{buildroot}%{_prefix} \ +# -type d -depth \ +# -exec rmdir {} \; 2>/dev/null + +%{__perl} -MFile::Find -le ' + find({ wanted => \&wanted, no_chdir => 1}, "%{buildroot}"); + print "%doc Changes README"; + for my $x (sort @dirs, @files) { + push @ret, $x unless indirs($x); + } + print join "\n", sort @ret; + + sub wanted { + return if /auto$/; + + local $_ = $File::Find::name; + my $f = $_; s|^\Q%{buildroot}\E||; + return unless length; + return $files[@files] = $_ if -f $f; + + $d = $_; + /\Q$d\E/ && return for reverse sort @INC; + $d =~ /\Q$_\E/ && return + for qw|/etc %_prefix/man %_prefix/bin %_prefix/share|; + + $dirs[@dirs] = $_; + } + + sub indirs { + my $x = shift; + $x =~ /^\Q$_\E\// && $x ne $_ && return 1 for @dirs; + } + ' > %filelist + +[ -z %filelist ] && { + echo "ERROR: empty %files listing" + exit -1 + } + +%clean +[ "%{buildroot}" != "/" ] && rm -rf %{buildroot} + +%files -f %filelist +%defattr(-,root,root) + +%changelog +* Mon, 04 Jan 2016 gongjie@linux.vnet.ibm.com +- Rebuild on AIX 7.2 +* Mon Jun 21 2010 root@c114m4h1p04.ppd.pok.ibm.com +- Initial build.