perl-vl.spec 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331
  1. %define _noVersionedDependencies 1
  2. %define threading 1
  3. %define largefiles 1
  4. %define multilib_64_archs x86_64 s390x ppc64 sparc64
  5. %ifarch %{ix86}
  6. #global arch_suffix -64int
  7. %global arch_suffix %{nil}
  8. %else
  9. %global arch_suffix %{nil}
  10. %endif
  11. %define perl_version 5.26.2
  12. %define perlrel 4
  13. %define perl_epoch 2
  14. %global perl_archname %{_arch}-%{_os}%{thread_arch}
  15. %global new_perl_lib %{buildroot}%{_libdir}/perl5/%{version}:%{buildroot}%{_prefix}/lib/perl5/%{version}
  16. %global comp_perl_lib %{buildroot}%{_prefix}/lib/perl5/%{version}:%{buildroot}%{_prefix}/lib/perl5/%{version}
  17. %global new_arch_lib %{buildroot}%{_libdir}/perl5/%{version}/%{perl_archname}
  18. %global comp_arch_lib %{buildroot}%{_prefix}/lib/perl5/%{version}/%{perl_archname}
  19. %global new_perl_flags LD_PRELOAD=/%{new_arch_lib}/CORE/libperl.so LD_LIBRARY_PATH=%{new_arch_lib}/CORE PERL5LIB=%{new_perl_lib}:%{comp_perl_lib}
  20. %global new_perl %{new_perl_flags} %{buildroot}/%{_bindir}/perl
  21. # Interpreter version to fulfil required genersted from "require 5.006;"
  22. Provides: perl(:VERSION) = %{perl_version}
  23. # Integeres are 64-bit on all platforms
  24. Provides: perl(:WITH_64BIT)
  25. # Threading provides
  26. %if %{threading}
  27. %define thread_arch -thread-multi%{arch_suffix}
  28. Provides: perl(:WITH_ITHREADS)
  29. Provides: perl(:WITH_THREADS)
  30. %else
  31. %define thread_arch %{nil}
  32. Provides: perl(:WITHOUT_ITHREADS)
  33. Provides: perl(:WITHOUT_THREADS)
  34. %endif
  35. # Largefile provides
  36. %if %{largefiles}
  37. Provides: perl(:WITH_LARGEFILES)
  38. %else
  39. Provides: perl(:WITHOUT_LARGEFILES)
  40. %endif
  41. # PerlIO provides
  42. Provides: perl(:WITH_PERLIO)
  43. Summary: The Perl programming language.
  44. Summary(ja): Perl プログラミング 言語
  45. Name: perl
  46. Epoch: %{perl_epoch}
  47. Version: %{perl_version}
  48. Release: %{perlrel}%{?_dist_release}
  49. Group: programming
  50. Vendor: Project Vine
  51. Distribution: Vine Linux
  52. License: Artistic or GPL
  53. URL: http://www.perl.org/
  54. Source0: http://www.cpan.org/src/5.0/perl-%{perl_version}.tar.bz2
  55. Source10: system-owned-directories
  56. Source11: filter-depends.sh
  57. Source12: perl-5.8.0-libnet.cfg
  58. Conflicts: perl-NDBM_File <= 1:1.75-34.99.6
  59. Obsoletes: perl-Digest-MD5
  60. Obsoletes: perl-MIME-Base64
  61. Obsoletes: perl-libnet
  62. Obsoletes: perl-Storable
  63. Obsoletes: perl-Filter
  64. Obsoletes: perl-Filter-Simple
  65. Obsoletes: perl-Time-HiRes
  66. Provides: perl-MIME-Base64
  67. Provides: perl-libnet
  68. ## perl-5.10.0
  69. Obsoletes: perl-Archive-Tar <= 1.38-0vl2
  70. Obsoletes: perl-IO-Compress-Base <= 2.008-0vl1
  71. Obsoletes: perl-Compress-Raw-Zlib <= 2.008-0vl1
  72. Obsoletes: perl-IO-Compress-Zlib <= 2.008-0vl1
  73. Obsoletes: perl-Compress-Zlib <= 2.008-0vl1
  74. Obsoletes: perl-IO-Zlib <= 1.09-0vl1
  75. Obsoletes: perl-version <= 0.42-0vl3
  76. Obsoletes: perl-Encode <= 2.98-1vl7
  77. Provides: perl-Archive-Tar
  78. Provides: perl-IO-Compress-Base
  79. Provides: perl-Compress-Raw-Zlib
  80. Provides: perl-IO-Compress-Zlib
  81. Provides: perl-Compress-Zlib
  82. Provides: perl-IO-Zlib
  83. Provides: perl-version
  84. Provides: perl-Encode
  85. # Vine: provide archlibdir itself since Vine's aptdata don't have filelists
  86. Provides: %{_libdir}/perl5/%{perl_version}/%{_arch}-%{_os}%{thread_arch}
  87. # Filter dependencies on private modules. Generator:
  88. # for F in $(find lib -type f); do perl -e '$/ = undef; $_ = <>; if (/^package #\R([\w:]*);/m) { print qq{|^perl\\\\($1\\\\)} }' "$F"; done
  89. # patches imported from Fedora/RHEL
  90. # Removes date check, Fedora/RHEL specific
  91. Patch1: perl-perlbug-tag.patch
  92. # Fedora/RHEL only (64bit only)
  93. Patch3: perl-5.8.0-libdir64.patch
  94. # Fedora/RHEL specific (use libresolv instead of libbind), bug #151127
  95. Patch4: perl-5.10.0-libresolv.patch
  96. # FIXME: May need the "Fedora" references removed before upstreaming
  97. # patches ExtUtils-MakeMaker
  98. Patch5: perl-USE_MM_LD_RUN_PATH.patch
  99. # Provide maybe_command independently, bug #1129443
  100. Patch6: perl-5.22.1-Provide-ExtUtils-MM-methods-as-standalone-ExtUtils-M.patch
  101. # The Fedora builders started randomly failing this futime test
  102. # only on x86_64, so we just don't run it. Works fine on normal
  103. # systems.
  104. Patch7: perl-5.10.0-x86_64-io-test-failure.patch
  105. # switch off test, which is failing only on koji (fork)
  106. Patch8: perl-5.14.1-offtest.patch
  107. # Define SONAME for libperl.so
  108. Patch15: perl-5.16.3-create_libperl_soname.patch
  109. # Install libperl.so to -Dshrpdir value
  110. Patch16: perl-5.22.0-Install-libperl.so-to-shrpdir-on-Linux.patch
  111. # Document Math::BigInt::CalcEmu requires Math::BigInt, rhbz#959096,
  112. # CPAN RT#85015
  113. Patch22: perl-5.18.1-Document-Math-BigInt-CalcEmu-requires-Math-BigInt.patch
  114. # Make *DBM_File desctructors thread-safe, bug #1107543, RT#61912
  115. Patch26: perl-5.18.2-Destroy-GDBM-NDBM-ODBM-SDBM-_File-objects-only-from-.patch
  116. # Replace ExtUtils::MakeMaker dependency with ExtUtils::MM::Utils.
  117. # This allows not to require perl-devel. Bug #1129443
  118. Patch30: perl-5.22.1-Replace-EU-MM-dependnecy-with-EU-MM-Utils-in-IPC-Cmd.patch
  119. # Make File::Glob more resistant against degenerative matching, RT#131211,
  120. # in upstream after 5.27.0
  121. Patch31: perl-5.27.0-perl-131211-fixup-File-Glob-degenerate-matching.patch
  122. # Fix glob UTF-8 flag on a glob reassignment, RT#131263,
  123. # in upstream after 5.27.0
  124. Patch36: perl-5.26.0-perl-131263-clear-the-UTF8-flag-on-a-glob-if-it-isn-.patch
  125. # Fix handling backslashes in PATH environment variable when executing
  126. # "perl -S", RT#129183, in upstream after 5.27.0
  127. Patch38: perl-5.27.0-perl-129183-don-t-treat-as-an-escape-in-PATH-for-S.patch
  128. # Fix reporting malformed UTF-8 character, RT#131646, in upstream after 5.27.1
  129. Patch43: perl-5.27.1-t-lib-warnings-utf8-Fix-test.patch
  130. # Fix File::Glob rt131211.t test random failures, in upstream after 5.27.1
  131. Patch45: perl-5.27.1-File-Glob-tweak-rt131211.t-to-be-less-sensitive-on-w.patch
  132. # Fix t/op/hash.t test random failures, in upstream after 5.27.1
  133. Patch46: perl-5.26.0-t-op-hash.t-fixup-intermittently-failing-test.patch
  134. # Parse caret variables with subscripts as normal variables inside ${...}
  135. # escaping, RT#131664, in upstream after 5.27.1
  136. Patch47: perl-5.26.2-RC1-Parse-caret-vars-with-subscripts-the-same-as-normal-.patch
  137. Patch48: perl-5.26.2-RC1-add-an-additional-test-for-whitespace-tolerance-in-c.patch
  138. # Do not display too many bytes when reporting malformed UTF-8 character,
  139. # in upstream after 5.27.1
  140. Patch49: perl-5.27.1-utf8n_to_uvchr-Don-t-display-too-many-bytes-in-msg.patch
  141. # Fix error message for "our sub foo::bar", RT#131679, in upstream after 5.27.1
  142. Patch51: perl-5.27.1-perl-131679-Fix-our-sub-foo-bar-message.patch
  143. # Fix executing arybase::_tie_it() in Safe compartement, RT#131588,
  144. # not yet accepted by upstream
  145. Patch52: perl-5.26.0-perl-131588-be-a-little-more-careful-in-arybase-_tie.patch
  146. # Fix splitting non-ASCII strings if unicode_strings feature is enabled,
  147. # RT#130907 in upstream after 5.27.1
  148. Patch54: perl-5.27.1-RT-130907-Fix-the-Unicode-Bug-in-split.patch
  149. # Fix compiler warnings in code generated by ExtUtils::Constant, CPAN RT#63832,
  150. # in upstream after 5.27.2
  151. Patch55: perl-5.27.2-Avoid-compiler-warnings-due-to-mismatched-types-in-p.patch
  152. # Fix compiler warnings in code generated by ExtUtils::Constant, CPAN RT#101487,
  153. # in upstream after 5.27.2
  154. Patch56: perl-5.27.2-EU-Constant-avoid-uninit-warning.patch
  155. # Fix unreliable Time-HiRes tests, CPAN RT#122819, in Time-HiRes-1.9746
  156. Patch58: perl-5.26.0-Time-HiRes-Fix-unreliable-t-usleep.t-and-t-utime.t.patch
  157. # Fix Term::ReadLine not to create spurious &STDERR files, RT#132008,
  158. # in upstream after 5.27.3
  159. Patch61: perl-5.27.3-perl-132008-try-to-prevent-the-similar-mistakes-in-t.patch
  160. # Fix an overflow when parsing a character range with no preceding character,
  161. # RT#132245, in upstream after 5.27.5
  162. Patch64: perl-5.26.1-perl-132245-don-t-try-to-process-a-char-range-with-n.patch
  163. # Fix walking symbol table for ISA in Carp, in upstream after 5.27.5
  164. Patch65: perl-5.27.5-Carp-Don-t-choke-on-ISA-constant.patch
  165. # Fix handling file names with null bytes in stat and lstat functions,
  166. # RT#131895, in upstream after 5.27.5
  167. Patch66: perl-5.26.1-perl-131895-fail-stat-on-names-with-0-embedded.patch
  168. # Fix a crash when untying an object witout a stash, in upstream after 5.27.5
  169. Patch67: perl-5.27.5-Avoid-a-segfault-when-untying-an-object.patch
  170. # Fix deparsing of transliterations with unprintable characters, RT#132405,
  171. # in upstream after 5.27.5
  172. Patch68: perl-5.26.1-Fix-deparsing-of-transliterations-with-unprintable-c.patch
  173. # Fix error reporting on do() on a directory, RT#125774,
  174. # in upstream after 5.27.5
  175. Patch69: perl-5.26.1-fix-do-dir-returning-no.patch
  176. # Fix stack manipulation when a lexical subroutine is defined in a do block in
  177. # a member of an iteration list, RT#132442, in upstream after 5.27.5
  178. Patch70: perl-5.27.5-perl-132442-Fix-stack-with-do-my-sub-l-1.patch
  179. # Fix setting $! when statting a closed filehandle, RT#108288,
  180. # in upstream after 5.27.5
  181. Patch71: perl-5.26.1-set-when-statting-a-closed-filehandle.patch
  182. # Fix tainting of s/// with overloaded replacement, RT#115266,
  183. # in upstream after 5.27.5
  184. Patch72: perl-5.27.5-fix-tainting-of-s-with-overloaded-replacement.patch
  185. # Expand system() arguments before a fork, RT#121105,
  186. # in upstream after 5.27.6
  187. Patch73: perl-5.26.2-RC1-perform-system-arg-processing-before-fork.patch
  188. # in upstream after 5.27.7
  189. Patch74: perl-5.27.7-preserve-numericness-of-system-args-on-Win32.patch
  190. Patch75: perl-5.27.7-Reenable-numeric-first-argument-of-system-on-VMS.patch
  191. # Avoid undefined behavior when copying memory in Glob and pp_caller,
  192. # RT#131746, in upstream after 5.27.3
  193. Patch76: perl-5.26.1-perl-131746-avoid-undefined-behaviour-in-Copy-etc.patch
  194. Patch77: perl-5.27.3-avoid-the-address-of-.-will-always-evaluate-as-.-war.patch
  195. # Conditionalize a fix for an old and long fixed bug
  196. # in libcrypt / glibc, rhbz#1536752, RT#133184, in upstream after 5.27.11
  197. Patch78: perl-5.26.1-guard_old_libcrypt_fix.patch
  198. # Link XS modules to pthread library to fix linking with -z defs,
  199. # <https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/3RHZEHLRUHJFF2XGHI5RB6YPDNLDR4HG/>
  200. Patch79: perl-5.27.8-hints-linux-Add-lphtread-to-lddlflags.patch
  201. # Fix parsing braced subscript after parentheses, RT#8045,
  202. # in upstream after 5.27.7
  203. Patch80: perl-5.26.1-fix-parsing-of-braced-subscript-after-parens.patch
  204. # Do not clobber file bytes in :encoding layer, RT#132833,
  205. # in upstream after 5.27.8
  206. Patch81: perl-5.27.8-don-t-clobber-file-bytes-in-encoding-layer.patch
  207. # Fix line numbers in multi-line s///, RT#131930, in upstream after 5.27.9
  208. Patch82: perl-5.27.9-fix-line-numbers-in-multi-line-s.patch
  209. # Fix parsing extended bracketed character classes, RT#132167,
  210. # in upstream after 5.27.10
  211. Patch83: perl-5.27.10-PATCH-perl-132167-Parse-error-in-regex_sets.patch
  212. # Fix a possibly unitialized memory read in the Perl parser, RT#133074,
  213. # in upstream after 5.27.10
  214. Patch84: perl-5.27.10-PATCH-perl-133074-5.26.1-some-coverity-fixes.patch
  215. # Fix an infinite loop in the regular expression compiler, RT#133185,
  216. # in upstream after 5.27.11
  217. Patch85: perl-5.26.2-PATCH-perl-133185-Infinite-loop-in-qr.patch
  218. # Adjust tests to gdbm-1.15, RT#133295
  219. Patch86: perl-5.29.0-Remove-ext-GDBM_File-t-fatal.t.patch
  220. # Fix an integer wrap when allocating memory for an environment variable,
  221. # RT#133204, in upstream after 5.29.0
  222. # CVE-2018-18311
  223. Patch87: perl-5.26.2-Perl_my_setenv-handle-integer-wrap.patch
  224. # Fix printing a warning about a wide character when matching a regular
  225. # expression while ISO-8859-1 locale is in effect, in upstream after 5.29.0
  226. Patch88: perl-5.29.0-regexec.c-Call-macro-with-correct-args.patch
  227. # Fix invoking a check for wide characters while ISO-8859-1 locale is in effect,
  228. # in upstream after 5.29.0
  229. Patch89: perl-5.26.2-perl.h-Add-parens-around-macro-arguments.patch
  230. # Pass the correct CFLAGS to dtrace
  231. Patch90: perl-5.26.2-Pass-CFLAGS-to-dtrace.patch
  232. # Link XS modules to libperl.so with EU::CBuilder on Linux, bug #960048
  233. Patch200: perl-5.16.3-Link-XS-modules-to-libperl.so-with-EU-CBuilder-on-Li.patch
  234. # Link XS modules to libperl.so with EU::MM on Linux, bug #960048
  235. Patch201: perl-5.16.3-Link-XS-modules-to-libperl.so-with-EU-MM-on-Linux.patch
  236. # patch from openSUSE
  237. Patch1000: perl-fix2020.patch
  238. # patch from upstream
  239. Patch1010: perl-5.26-gcc10.patch
  240. # Vine
  241. # (nothing)
  242. ## security
  243. Patch20000: perl-archive-tar-dirtrav.diff
  244. Patch20001: perl-extended-charclass-assert.diff
  245. Patch20002: perl-regcomp-strchr-memchr.diff
  246. Patch20003: perl-reg-node-overrun.diff
  247. Patch20004: 0001-CVE-2020-10543.patch
  248. Patch20005: 0002-CVE-2020-10878.patch
  249. Patch20006: 0003-CVE-2020-12723.patch
  250. Buildroot: %{_tmppath}/%{name}-%{version}-root
  251. BuildRequires: gawk, grep, tcsh, gdbm-devel, libdb-devel
  252. BuildRequires: rpm-devel, ncurses-devel, zlib-devel, netpbm-devel
  253. BuildRequires: libpng-devel, libtiff-devel, libelf, libjpeg-devel
  254. BuildRequires: netpbm-devel, e2fsprogs-devel
  255. BuildRequires: libxcrypt-devel, libnsl2-devel, bzip2-devel
  256. # without man installed, the variables installman[13]dir
  257. # in Config.pm will be undefined. This BuildPreReq will fix it.
  258. BuildRequires: man-db
  259. # The long line of Perl provides.
  260. # These provides are needed by the perl pkg itself with auto-generated perl.req
  261. Provides: perl(VMS::Filespec)
  262. Provides: perl(VMS::Stdio)
  263. # Compat provides
  264. Provides: perl(:MODULE_COMPAT_5.26.3)
  265. Provides: perl(:MODULE_COMPAT_5.26.2)
  266. Provides: perl(:MODULE_COMPAT_5.26.1)
  267. Provides: perl(:MODULE_COMPAT_5.26.0)
  268. # Threading provides
  269. Provides: perl(:WITH_ITHREADS)
  270. Provides: perl(:WITH_THREADS)
  271. # Largefile provides
  272. Provides: perl(:WITH_LARGEFILES)
  273. # PerlIO provides
  274. Provides: perl(:WITH_PERLIO)
  275. # File provides
  276. Provides: perl(abbrev.pl)
  277. Provides: perl(assert.pl)
  278. Provides: perl(bigfloat.pl)
  279. Provides: perl(bigint.pl)
  280. Provides: perl(bigrat.pl)
  281. Provides: perl(bytes_heavy.pl)
  282. Provides: perl(cacheout.pl)
  283. Provides: perl(complete.pl)
  284. Provides: perl(ctime.pl)
  285. Provides: perl(dotsh.pl)
  286. Provides: perl(dumpvar.pl)
  287. Provides: perl(exceptions.pl)
  288. Provides: perl(fastcwd.pl)
  289. Provides: perl(find.pl)
  290. Provides: perl(finddepth.pl)
  291. Provides: perl(flush.pl)
  292. Provides: perl(ftp.pl)
  293. Provides: perl(getcwd.pl)
  294. Provides: perl(getopt.pl)
  295. Provides: perl(getopts.pl)
  296. Provides: perl(hostname.pl)
  297. Provides: perl(importenv.pl)
  298. Provides: perl(look.pl)
  299. Provides: perl(newgetopt.pl)
  300. Provides: perl(open2.pl)
  301. Provides: perl(open3.pl)
  302. Provides: perl(perl5db.pl)
  303. Provides: perl(pwd.pl)
  304. Provides: perl(shellwords.pl)
  305. Provides: perl(stat.pl)
  306. Provides: perl(syslog.pl)
  307. Provides: perl(tainted.pl)
  308. Provides: perl(termcap.pl)
  309. Provides: perl(timelocal.pl)
  310. Provides: perl(utf8_heavy.pl)
  311. Provides: perl(validate.pl)
  312. Provides: perl(Carp::Heavy)
  313. Provides: perl(unicore::Name)
  314. ## Requires
  315. # fix <BTS:VineLinux:1008>
  316. Requires: nss
  317. # for perldoc(1)
  318. Requires: groff
  319. %description
  320. Perl is a high-level programming language with roots in C, sed, awk
  321. and shell scripting. Perl is good at handling processes and files,
  322. and is especially good at handling text. Perl's hallmarks are
  323. practicality and efficiency. While it is used to do a lot of
  324. different things, Perl's most common applications are system
  325. administration utilities and web programming. A large proportion of
  326. the CGI scripts on the web are written in Perl. You need the perl
  327. package installed on your system so that your system can handle Perl
  328. scripts.
  329. Install this package if you want to program in Perl or enable your
  330. system to handle Perl scripts.
  331. %description -l ja
  332. Perl は高レベルなプログラミング言語です.Perl では,プロセス処理や
  333. ファイル処理が容易に行え,特にテキスト処理においてその威力を発揮します.
  334. Perl が実用的かつ効率的であることは既に折紙付きです.Perl は様々な用途に
  335. 用いられていますが,最も一般的にはシステム管理ユーティリティやウェブ
  336. プログラミングに用いられています.実際 Web 上の CGI スクリプトの多くは
  337. Perl で書かれています.
  338. あなたのシステムで Perl スクリプトを扱える様にするには,このパッケージを
  339. インストールして下さい.
  340. %package localdirs
  341. Summary: Perl library directories in /usr/local
  342. Group: programming
  343. License: Artistic or GPL
  344. Requires: perl = %{perl_epoch}:%{perl_version}-%{release}
  345. Obsoletes: perl < 5.10.0
  346. %description localdirs
  347. Perl library directories in /usr/local
  348. %debug_package
  349. %prep
  350. %setup -q
  351. ## patch from Fedora/RHEL
  352. %patch1 -p1
  353. %ifarch %{multilib_64_archs}
  354. %patch3 -p1
  355. %endif
  356. %patch4 -p1
  357. %patch5 -p1
  358. %patch6 -p1
  359. %patch7 -p1
  360. %patch8 -p1
  361. %patch15 -p1
  362. %patch16 -p1
  363. %patch22 -p1
  364. %patch26 -p1
  365. %patch30 -p1
  366. %patch31 -p1
  367. %patch36 -p1
  368. %patch38 -p1
  369. %patch43 -p1
  370. %patch45 -p1
  371. %patch46 -p1
  372. %patch47 -p1
  373. %patch48 -p1
  374. %patch49 -p1
  375. %patch51 -p1
  376. %patch52 -p1
  377. %patch54 -p1
  378. %patch55 -p1
  379. %patch56 -p1
  380. %patch58 -p1
  381. %patch61 -p1
  382. %patch64 -p1
  383. %patch65 -p1
  384. %patch66 -p1
  385. %patch67 -p1
  386. %patch68 -p1
  387. %patch69 -p1
  388. %patch70 -p1
  389. %patch71 -p1
  390. %patch72 -p1
  391. %patch73 -p1
  392. %patch74 -p1
  393. %patch75 -p1
  394. %patch76 -p1
  395. %patch77 -p1
  396. %patch78 -p1
  397. %patch79 -p1
  398. %patch80 -p1
  399. %patch81 -p1
  400. %patch82 -p1
  401. %patch83 -p1
  402. %patch84 -p1
  403. %patch85 -p1
  404. %patch86 -p1
  405. %patch87 -p1
  406. %patch88 -p1
  407. %patch89 -p1
  408. %patch90 -p1 -b .dtrace
  409. %patch200 -p1
  410. %patch201 -p1
  411. ## patch from openSUSE
  412. %patch1000 -p1
  413. ## patch from upstream
  414. %patch1010 -p1
  415. ## security patch(es)
  416. %patch20000 -p1
  417. %patch20001 -p1
  418. %patch20002 -p1
  419. %patch20003 -p1
  420. %patch20004 -p1
  421. %patch20005 -p1
  422. %patch20006 -p1
  423. #
  424. # Candidates for doc recoding (need case by case review):
  425. # find . -name "*.pod" -o -name "README*" -o -name "*.pm" | xargs file -i | grep charset= | grep -v '\(us-ascii\|utf-8\)'
  426. recode()
  427. {
  428. iconv -f "${2:-iso-8859-1}" -t utf-8 < "$1" > "${1}_"
  429. touch -r "$1" "${1}_"
  430. mv -f "${1}_" "$1"
  431. }
  432. # TODO iconv fail on this one
  433. ## recode README.tw big5
  434. #recode pod/perlebcdic.pod
  435. #recode pod/perlhack.pod
  436. #recode pod/perlhist.pod
  437. #recode pod/perlthrtut.pod
  438. #recode AUTHORS
  439. find . -name \*.orig -exec rm -fv {} \;
  440. # Oh, the irony. Perl generates some non-versioned provides we don't need.
  441. # Each of these has a versioned provide, which we keep.
  442. %global __provides_exclude %{?__provides_exclude:__provides_exclude|}^perl\\(Carp\\)$
  443. %global __provides_exclude %__provides_exclude|^perl\\(DynaLoader\\)$
  444. %global __provides_exclude %__provides_exclude|^perl\\(Locale::Maketext\\)$
  445. %global __provides_exclude %__provides_exclude|^perl\\(Log::Message::Handlers\\)$
  446. %global __provides_exclude %__provides_exclude|^perl\\(Math::BigInt\\)$
  447. %global __provides_exclude %__provides_exclude|^perl\\(Net::Config\\)$
  448. %global __provides_exclude %__provides_exclude|^perl\\(Tie::Hash\\)$
  449. %global __provides_exclude %__provides_exclude|^perl\\(bigint\\)$
  450. %global __provides_exclude %__provides_exclude|^perl\\(bigrat\\)$
  451. %global __provides_exclude %__provides_exclude|^perl\\(bytes\\)$
  452. %global __provides_exclude %__provides_exclude|^perl\\(utf8\\)$
  453. %global __provides_exclude %__provides_exclude|^perl\\(DB\\)$
  454. #
  455. %global __requires_exclude %{?__requires_exclude:__requires_exclude|}^perl\\(DBIx::Simple\\)
  456. %global __requires_exclude %__requires_exclude|^perl\\(FCGI\\)
  457. %global __requires_exclude %__requires_exclude|^perl\\(Log::Message::Handlers\\)
  458. %global __requires_exclude %__requires_exclude|^perl\\(Mac::BuildTools\\)
  459. %global __requires_exclude %__requires_exclude|^perl\\(Mac::InternetConfig\\)
  460. %global __requires_exclude %__requires_exclude|^perl\\(Tk\\)
  461. %global __requires_exclude %__requires_exclude|^perl\\(Tk::Pod\\)
  462. %global __requires_exclude %__requires_exclude|^perl\\(Your::Module::Here\\)
  463. %global __requires_exclude %__requires_exclude|^perl\\(Locale::Codes\\)
  464. %global __requires_exclude %__requires_exclude|^perl\\(Locale::Codes::
  465. echo "__requires_exclude: %__requires_exclude"
  466. # Configure Compress::Zlib to use system zlib
  467. sed -i 's|BUILD_ZLIB = True|BUILD_ZLIB = False|
  468. s|INCLUDE = ./zlib-src|INCLUDE = %{_includedir}|
  469. s|LIB = ./zlib-src|LIB = %{_libdir}|' \
  470. cpan/Compress-Raw-Zlib/config.in
  471. # Ensure that we never accidentally bundle zlib or bzip2
  472. rm -rf cpan/Compress-Raw-Zlib/zlib-src
  473. rm -rf cpan/Compress-Raw-Bzip2/bzip2-src
  474. sed -i '/\(bzip2\|zlib\)-src/d' MANIFEST
  475. %build
  476. # for generating makefiles
  477. export LANG=C
  478. export LANGUAGE=C
  479. export LC_ALL=C
  480. echo "RPM Build arch: %{_arch}"
  481. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  482. # yes; don't use %_libdir so that noarch packages from other OSs
  483. # arches work correctly :\ the Configure lines below hardcode lib for
  484. # similar reasons.
  485. /bin/sh Configure -des \
  486. -Doptimize="none" \
  487. -Dccflags="$RPM_OPT_FLAGS" \
  488. -Dldflags="$RPM_LD_FLAGS" \
  489. -Dccdlflags="-Wl,--enable-new-dtags $RPM_LD_FLAGS" \
  490. -Dlddlflags="-shared $RPM_LD_FLAGS" \
  491. -Dshrpdir="%{_libdir}" \
  492. -Dversion=%{perl_version} \
  493. -Dmyhostname=localhost \
  494. -Dperladmin=root@localhost \
  495. -Dcc='%{__cc}' \
  496. -Dcf_by='Vine Linux' \
  497. -Dinstallprefix=%{_prefix} \
  498. -Dprefix=%{_prefix} \
  499. %ifarch %{multilib_64_archs}
  500. -Dlibpth="%{_prefix}/local/lib64 /lib64 %{_prefix}/lib64" \
  501. -Dprivlib="%{_prefix}/lib/perl5/%{perl_version}" \
  502. -Dsitelib="%{_prefix}/lib/perl5/site_perl/%{perl_version}" \
  503. -Dvendorlib="%{_prefix}/lib/perl5/vendor_perl/%{perl_version}" \
  504. -Darchlib="%{_libdir}/perl5/%{perl_version}/%{perl_archname}" \
  505. -Dsitearch="%{_libdir}/perl5/site_perl/%{perl_version}/%{perl_archname}" \
  506. -Dvendorarch="%{_libdir}/perl5/vendor_perl/%{perl_version}/%{perl_archname}" \
  507. %endif
  508. -Darchname=%{_arch}-%{_os} \
  509. %ifarch sparc sparcv9
  510. -Ud_longdbl \
  511. %endif
  512. -Dvendorprefix=%{_prefix} \
  513. -Dsiteprefix=%{_prefix} \
  514. -Duseshrplib \
  515. -Dusethreads \
  516. -Duseithreads \
  517. -Duselargefiles \
  518. -Dd_semctl_semun \
  519. -Di_db \
  520. -Ui_ndbm \
  521. -Di_gdbm \
  522. -Di_shadow \
  523. -Di_syslog \
  524. -Dman3ext=3pm \
  525. -Duseperlio \
  526. -Dinstallusrbinperl=n \
  527. -Ubincompat5005 \
  528. -Uversiononly \
  529. -Dpager='/usr/bin/less -isr' \
  530. -Dd_gethostent_r_proto -Ud_endhostent_r_proto -Ud_sethostent_r_proto \
  531. -Ud_endprotoent_r_proto -Ud_setprotoent_r_proto \
  532. -Ud_endservent_r_proto -Ud_setservent_r_proto \
  533. %ifarch %{multilib_64_archs}
  534. -Dotherlibdirs="%{_libdir}/perl5/%{perl_version}:%{_libdir}/perl5/vendor_perl/%{perl_version}:%{_libdir}/perl5/vendor_perl:%{_libdir}/perl5/site_perl/%{perl_version}:%{_libdir}/perl5/site_perl:%{_prefix}/local/lib/site_perl:%{_prefix}/local/lib64/site_perl" \
  535. %else
  536. -Dotherlibdirs="%{_prefix}/local/lib/site_perl" \
  537. %endif
  538. -Dscriptdir='%{_bindir}'
  539. BUILD_BZIP2=0
  540. BZIP2_LIB=%{_libdir}
  541. export BUILD_BZIP2 BZIP2_LIB
  542. # Prepapre a symlink from proper DSO name to libperl.so now so that new perl
  543. # can be executed from make.
  544. %global soname libperl.so.%(echo '%{perl_version}' | sed 's/^\\([^.]*\\.[^.]*\\).*/\\1/')
  545. test -L %soname || ln -s libperl.so %soname
  546. make %{?_smp_mflags}
  547. %install
  548. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  549. make install DESTDIR=$RPM_BUILD_ROOT
  550. # Make proper DSO names, move libperl to standard path.
  551. mv "%{new_arch_lib}/CORE/libperl.so" \
  552. "$RPM_BUILD_ROOT%{_libdir}/libperl.so.%{perl_version}"
  553. ln -s "libperl.so.%{perl_version}" "$RPM_BUILD_ROOT%{_libdir}/%{soname}"
  554. ln -s "libperl.so.%{perl_version}" "$RPM_BUILD_ROOT%{_libdir}/libperl.so"
  555. # XXX: Keep symlink from original location because various code glues
  556. # $archlib/CORE/$libperl to get the DSO.
  557. ln -s "../../../../libperl.so.%{perl_version}" "%{new_arch_lib}/CORE/libperl.so"
  558. rm -f "%{new_arch_lib}/CORE/%{soname}"
  559. ln -s "../../../../libperl.so.%{perl_version}" "%{new_arch_lib}/CORE/%{soname}"
  560. %ifarch %{multilib_64_archs}
  561. mkdir -p -m 755 $RPM_BUILD_ROOT%{_prefix}/lib/perl5/%{perl_version}
  562. mkdir -p -m 755 $RPM_BUILD_ROOT%{_prefix}/lib/perl5/vendor_perl/%{perl_version}/auto
  563. %ifarch x86_64
  564. mkdir -p -m 755 $RPM_BUILD_ROOT%{_prefix}/lib/perl5/vendor_perl/%{perl_version}/i386-linux-thread-multi/auto
  565. %endif
  566. %ifarch s390x
  567. mkdir -p -m 755 $RPM_BUILD_ROOT%{_prefix}/lib/perl5/vendor_perl/%{perl_version}/s390-linux-thread-multi/auto
  568. %endif
  569. %ifarch ppc64
  570. mkdir -p -m 755 $RPM_BUILD_ROOT%{_prefix}/lib/perl5/vendor_perl/%{perl_version}/ppc-linux-thread-multi/auto
  571. %endif
  572. %ifarch sparc64
  573. mkdir -p -m 755 $RPM_BUILD_ROOT%{_prefix}/lib/perl5/vendor_perl/%{perl_version}/sparc-linux-thread-multi/auto
  574. %endif
  575. %endif
  576. %ifarch %{multilib_64_archs}
  577. mkdir -p -m 755 ${RPM_BUILD_ROOT}%{_prefix}/lib64/perl5/vendor_perl/%{perl_version}/%{_arch}-%{_os}
  578. %endif
  579. # perl doesn't create this module, but modules put things in it, so we need to own it.
  580. mkdir -p -m 755 ${RPM_BUILD_ROOT}%{_libdir}/perl5/vendor_perl/%{perl_version}/%{perl_archname}/auto
  581. install -p -m 755 utils/pl2pm ${RPM_BUILD_ROOT}%{_bindir}/pl2pm
  582. for i in asm/termios.h syscall.h syslimits.h syslog.h sys/ioctl.h sys/socket.h sys/time.h wait.h
  583. do
  584. %{new_perl} $RPM_BUILD_ROOT/%{_bindir}/h2ph -a \
  585. -d $RPM_BUILD_ROOT%{_libdir}/perl5/%{perl_version}/%{perl_archname} $i || /bin/true
  586. done
  587. for dir in $(%{new_perl} -le 'print join("\n", @INC)' | grep '^%{_prefix}/lib')
  588. do
  589. mkdir -p $RPM_BUILD_ROOT/$dir
  590. done
  591. for dir in $(%{new_perl} -le 'print join("\n", @INC)' | grep '^%{_libdir}')
  592. do
  593. mkdir -p $RPM_BUILD_ROOT/$dir
  594. done
  595. #
  596. # libnet configuration file
  597. #
  598. mkdir -p -m 755 $RPM_BUILD_ROOT/%{_libdir}/perl5/%{perl_version}/Net
  599. install -p -m 644 %{SOURCE12} $RPM_BUILD_ROOT/%{_libdir}/perl5/%{perl_version}/Net/libnet.cfg
  600. #
  601. # Core modules removal
  602. #
  603. find $RPM_BUILD_ROOT -name '*NDBM*' | xargs rm -rfv
  604. find $RPM_BUILD_ROOT -type f -name '*.bs' -a -empty -exec rm -f {} ';'
  605. # miniperl? As an interpreter? How odd.
  606. sed -i 's|./miniperl|%{_bindir}/perl|' $RPM_BUILD_ROOT/%{_prefix}/lib/perl5/%{perl_version}/ExtUtils/xsubpp
  607. chmod +x $RPM_BUILD_ROOT/%{_prefix}/lib/perl5/%{perl_version}/ExtUtils/xsubpp
  608. # Don't need the .packlist
  609. rm -f $RPM_BUILD_ROOT%{_libdir}/perl5/%{perl_version}/%{perl_archname}/.packlist
  610. # Fix some manpages to be UTF-8
  611. pushd $RPM_BUILD_ROOT%{_mandir}/man1/
  612. for i in perl588delta.1 perldelta.1 ; do
  613. iconv -f MS-ANSI -t UTF-8 $i --output new-$i
  614. rm -rf $i
  615. mv new-$i $i
  616. done
  617. popd
  618. chmod -R u+w $RPM_BUILD_ROOT/*
  619. # for localdirs
  620. %{__mkdir_p} %{buildroot}%{_prefix}/local/lib/site_perl/%{perl_version}/%{_arch}-%{_os}%{thread_arch}
  621. # Local patch tracking
  622. # cd $RPM_BUILD_ROOT%{_libdir}/perl5/%{perl_version}/%{perl_archname}/CORE/
  623. # perl -x patchlevel.h 'Fedora Patch1: Permit suidperl to install as nonroot'
  624. # perl -x patchlevel.h 'Fedora Patch2: Removes date check, Fedora/RHEL specific'
  625. # perl -x patchlevel.h 'Fedora Patch3: Fedora/RHEL use links instead of lynx'
  626. # perl -x patchlevel.h 'Fedora Patch4: Work around annoying rpath issue'
  627. # %ifarch %{multilib_64_archs}
  628. # perl -x patchlevel.h 'Fedora Patch5: support for libdir64'
  629. # %endif
  630. # perl -x patchlevel.h 'Fedora Patch6: use libresolv instead of libbind'
  631. # perl -x patchlevel.h 'Fedora Patch7: USE_MM_LD_RUN_PATH'
  632. # perl -x patchlevel.h 'Fedora Patch8: Skip hostname tests, due to builders not being network capable'
  633. # perl -x patchlevel.h 'Fedora Patch9: Update Sys::Syslog to 0.24'
  634. # perl -x patchlevel.h 'Fedora Patch10: Dont run one io test due to random builder failures'
  635. # perl -x patchlevel.h '32891 fix big slowdown in 5.10 @_ parameter passing'
  636. # perl -x patchlevel.h 'Fedora Patch12: Update Module::Load::Conditional to 0.24'
  637. # perl -x patchlevel.h 'Fedora Patch13: Upgrade Module::CoreList to 2.14'
  638. %clean
  639. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  640. %check
  641. %{new_perl} -I./lib regen/lib_cleanup.pl
  642. pushd t
  643. %{new_perl} -I../lib porting/customized.t --regen
  644. popd
  645. LC_ALL=C make test
  646. %post -p /sbin/ldconfig
  647. %postun -p /sbin/ldconfig
  648. %files
  649. %defattr(-,root,root)
  650. %license Copying
  651. %doc Artistic AUTHORS Changes* README
  652. %{_mandir}/man1/*.1*
  653. %{_mandir}/man3/*.3*
  654. %{_bindir}/*
  655. %{_libdir}/perl5
  656. %{_libdir}/libperl.so*
  657. %ifarch %{multilib_64_archs}
  658. %{_prefix}/lib/perl5
  659. %endif
  660. %files localdirs
  661. %defattr(-,root,root)
  662. %dir %{_prefix}/local/lib/site_perl
  663. %dir %{_prefix}/local/lib/site_perl/%{perl_version}
  664. %dir %{_prefix}/local/lib/site_perl/%{perl_version}/%{_arch}-%{_os}%{thread_arch}
  665. %changelog
  666. * Mon Feb 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.26.2-4
  667. - rebuilt with current environment.
  668. * Wed Jun 10 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.26.2-3
  669. - added Patch20004-20006 to fix CVE-2020-{10543,10878,12723}.
  670. * Wed Jun 10 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.26.2-2
  671. - new upstream release.
  672. - imported Patch1000, 20000-20003 from openSUSE.
  673. - CVE-2018-12015 and CVE-2018-1831{2,3,4}
  674. * Thu May 16 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.26.2-1
  675. - new upstream release.
  676. - added BR:libxcrypt-devel,libnsl2-devel,bzip2-devel.
  677. - dropped all patches.
  678. - imported patches from RHEL8 beta.
  679. * Thu Feb 5 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 5.16.3-2
  680. - rebuilt with libdb 5.3.28
  681. * Fri Jun 27 2014 IWAI, Masaharu <iwai@alib.jp> 5.16.3-1
  682. - drop unnecessary patches
  683. - fix thread leak patch (Patch1011): upstream fixed
  684. - CVE-2011-1487 patch (Patch2001)
  685. - CVE-2011-3597 patch (Digest, Patch2010)
  686. - CVE-2013-1667 patch (rehashing, Patch2040)
  687. - update patches from perl-5.16.3-283.el7 (CentOS 7 Open QA – c7.00.04)
  688. - perlbug tag patch (Patch13)
  689. - Fix misparsing of maketext strings, CVE-2012-6329 patch (Patch2050)
  690. - stop coverting charactor encoding: README.tw (FIXME)
  691. - add patch from perl-5.16.3-283.el7 (CentOS 7 Open QA – c7.00.04)
  692. - porting podcheck regen patch (Patch7000)
  693. - update BuildRequires
  694. - s/man/man-db/
  695. - drop gpm-devel
  696. - stop gzipped Changes
  697. - drop Patch1
  698. - update Compat provides: 5.16.*
  699. - add Provides: perl(unicore::Name)
  700. * Wed Apr 3 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 5.12.3-9
  701. - add patch2050 for fix CVE-2012-6329 (Guts.pm)
  702. * Tue Mar 12 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 5.12.3-8
  703. - add Patch2040 for fix CVE-2013-1667 (rehashing)
  704. * Sun Jan 6 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 5.12.3-7
  705. - add patch2030 for fix CVE-2012-5526 (LF escape)
  706. * Tue Oct 16 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 5.12.3-6
  707. - add patch2010 for fix CVE-2012-3597 (Digest)
  708. - add patch2020 for fix CVE-2012-5195 ('x' string repeat operator)
  709. * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.12.3-5
  710. - fix vendorlib/sitelib paths (so that building noarch Perl module will
  711. always go into library paths whith starts with /usr/lib on x86_64 archs)
  712. * Sun Aug 7 2011 IWAI, Masaharu <iwai@alib.jp> 5.12.3-4
  713. - fix CVE-2011-1487 (Patch2001): based upstream patch
  714. * Sat Mar 26 2011 IWAI, Masaharu <iwai@alib.jp> 5.12.3-3
  715. - add Requires: groff: for perldoc(1)
  716. - drop Obsoletes: perl-MD5
  717. * Thu Mar 24 2011 IWAI, Masaharu <iwai@alib.jp> 5.12.3-2
  718. - fix thread leak patch (Patch1011): from Fedora 5.12.3-156.fc16
  719. * Fri Mar 18 2011 IWAI, Masaharu <iwai@alib.jp> 5.12.3-1
  720. - new upstream release
  721. - drop MANIFEST files:
  722. - clean-manifest.pl (Source1)
  723. - MANIFEST.CPAN (Source5)
  724. - MANIFEST.CGI (Source6)
  725. - MANIFEST.DB_File (Source7)
  726. - MANIFEST.suidperl (Source9)
  727. - suidperl isn't created by upstream since 5.12.0
  728. - update Configure option
  729. - update Compat provides
  730. - drop root patch (Patch5)
  731. - update patches: from Fedora 5.12.3-154.fc16
  732. - USE_MM_LD_RUN_PATH patch (Patch1007)
  733. - disable_test_hosts patch (Patch1008)
  734. - update recode script and recode target files: sync Fedora 5.12.3-154.fc16
  735. - update using system zlib configuration code for Compress::ZLib
  736. - execute gzip Changes in %%prep: moved in %%build
  737. - add MANIFEST patch (Patch1): for gziped Changes
  738. - update installing CGI example scripts routine
  739. * Tue Mar 8 2011 IWAI, Masaharu <iwai@alib.jp> 5.10.1-1
  740. - new upstream release
  741. - build with current db4: fix <BTS:VineLinux:1084>
  742. - replace deprecated tag: BuildPreReq to BuildRequires
  743. - update root patch (Patch5)
  744. - update USE_MM_LD_RUN_PATH patch (Patch1007)
  745. - drop unnecessary patches: upstrem fixed
  746. - Sys::Syslog upgrade patch (Patch1009)
  747. - Patch1011
  748. - Module::Load::Conditional upgrade patch (Patch1012)
  749. - Module::CoreList upgrade patch (Patch1013)
  750. - Archive::Extract upgrade patch (Patch1014)
  751. - Compress::Raw::Zlib upgrade patch (Patch1015)
  752. - update using system zlib configuration code for Compress::ZLib
  753. - using __perl_requires for rpm-4.8
  754. - update filter-depends.sh (Source11)
  755. - using __perl_requires
  756. * Sun Jun 27 2010 IWAI, Masaharu <iwai@alib.jp> 5.10.0-9
  757. - add Requires: nss: fix <BTS:VineLinux:1008>
  758. * Wed Feb 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 5.10.0-8
  759. - rebuild with db4-4.8
  760. * Sun Aug 16 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 5.10.0-7
  761. - fix installsitearch/installsitelib variables @ x86_64 env.
  762. - fix libdir location @ x86_64 env.
  763. * Sun Jun 14 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 5.10.0-6
  764. - add patch1015 to Update Module:Compress::Raw::Zlib (CVE-2009-1391)
  765. * Thu Apr 30 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.10.0-5
  766. - add Patch1014 fix Archive::Extract to fix test failure caused by tar >= 1.21
  767. - fix Patch1009 to fix select timeout bug (RHBZ #492422)
  768. * Wed Apr 29 2009 NAKAMURA Kenta <kenta@vinelinux.org> - 5.10.0-4
  769. - spec in UTF-8
  770. * Fri Jun 20 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.10.0-3
  771. - rebuilt with db4-4.6.21
  772. * Mon Apr 28 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.10.0-2
  773. - added more macros
  774. - fixed Provides
  775. * Wed Apr 23 2008 IWAI, Masaharu <iwaim@cc.mbn.or.jp> 5.10.0-1
  776. - new upstream release
  777. - sync Fedora perl-5.10.0-20.fc9
  778. - drop obsolete patches
  779. - perl-5.8.3-fullinc.patch (Patch11)
  780. - perl-5.8.5-incpush.patch (Patch12)
  781. - perl-5.8.5-dashI.patch (Patch14)
  782. - perl-5.8.3-findbin-selinux.patch (Patch23)
  783. - perl-5.8.3-empty-rpath.patch (Patch24)
  784. - perl-5.8.1-s390.patch (Patch100)
  785. - add some patches from Fedora perl-5.10.0-20.fc9
  786. - perl-5.8.6-libresolv.patch (Patch1006)
  787. - perl-5.10.0-USE_MM_LD_RUN_PATH.patch (Patch1007)
  788. - perl-5.10.0-disable_test_hosts.patch (Patch1008)
  789. - perl-5.10.0-SysSyslog-0.24.patch (Patch1009)
  790. - perl-5.10.0-x86_64-io-test-failure.patch (Patch1010)
  791. - 32891.patch (Patch1011)
  792. - perl-5.10.0-Module-Load-Conditional-0.24.patch (Patch1012)
  793. - perl-5.10.0-Module-CoreList2.14.patch (Patch1013)
  794. - update %%make, %%build and %%install, %%files sections (sync Fedora)
  795. - add %%check, %%post and %%postun sections (sync Fedora)
  796. - update Provides (sync Fedora)
  797. - create new package 'perl-localdirs': perl library directories in /usr/local
  798. - update filter-depends.sh (Source11)
  799. - update Obsoletes and Provides for old packages
  800. * Thu May 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.8.6-0vl5
  801. - BuildPreReq: man (without it, installman[13] will get undefined
  802. * Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.8.6-0vl4
  803. - rebuilt with new toolchain and db4-4.3.x
  804. * Wed Jun 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 5.8.6-0vl3
  805. - use filter to find-requires instead of perl-req (rpm's bug?)
  806. - don't remove core modules (FIlter::Util::Call, Filter::Simple, Time::HiRes)
  807. * Sun Jan 09 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.8.6-0vl2
  808. - force gcc optimization level to -O1 on ppc
  809. * Mon Nov 29 2004 IWAI, Masaharu <iwai@alib.jp> 5.8.6-0vl1
  810. - new upstream release
  811. - drop obsolete patches
  812. - drop errno patch ( Patch8 )
  813. - drop manext patch ( Patch18 )
  814. - drop suidperl security fix patch ( Patch501 )
  815. - add some patches from Fedora Core perl-5.8.5-9
  816. - add fullinc patch ( Patch11 )
  817. - add incpush patch ( Patch12 )
  818. - add perkbug tag patch ( Patch13 )
  819. - add dashI patch ( Patch14 )
  820. - add findbin selinux patch ( Patch23 )
  821. - add empty rpath patch ( Patch24 )
  822. - include lpthread link patch ( Patch22 )
  823. - drop unnecessary macros: cpanver, dbfilever and cgiver
  824. * Wed Oct 27 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.8.2-0vl4
  825. - provide archlibdir (for some applications such as xchat)
  826. * Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.8.2-0vl3
  827. - rebuilt with db4-4.2.52
  828. * Fri Jul 2 2004 IWAI, Masaharu <iwai@alib.jp> 5.8.2-0vl2
  829. - SECURITY: fix CAN-2003-0618: suidperl
  830. add 06_fix_suidperl patch (Patch501) from Debian Sarge perl 5.8.3-3
  831. * Fri Nov 7 2003 IWAI, Masaharu <iwai@alib.jp> 5.8.2-0vl1
  832. - new upstream release
  833. * Fri Sep 26 2003 IWAI, Masaharu <iwai@alib.jp> 5.8.1-0vl1
  834. - new upstream release
  835. - update some patches:
  836. - root patch (Patch5)
  837. - s390 patch (Patch100)
  838. - stop patching fhs patch (Patch6)
  839. - stop patching syslog patch (Patch9)
  840. - stop patching manext patch (Patch18)
  841. - stop patching links patch (Patch19): Vine doesn't have links package.
  842. - drop obsolete module update patches:
  843. - perl-5.8.0-Safe2.09.patch (Patch202)
  844. - perl-5.8.0-CGI2.89.patch (Patch203)
  845. - perl-5.8.0-CGI_XSS.patch (Patch20002)
  846. - drop obsolete patches:
  847. - protofix patch (Patch32000)
  848. - pagerfix patch (Patch32001)
  849. - upstream patches
  850. - Patch17649: perl-5.8.0-upstream-17649.patch
  851. - Patch18079: perl-5.8.0-upstream-18079.patch
  852. - Patch18080: perl-5.8.0-upstream-18080.patch
  853. - Patch18081: perl-5.8.0-upstream-18081.patch
  854. - Patch18082: perl-5.8.0-upstream-18082.patch
  855. - Patch18087: perl-5.8.0-upstream-18087.patch
  856. - Patch18089: perl-5.8.0-upstream-18089.patch
  857. - Patch18095: perl-5.8.0-upstream-18095.patch
  858. - Patch18096: perl-5.8.0-upstream-18096.patch
  859. - Patch18097: perl-5.8.0-upstream-18097.patch
  860. - Patch18098: perl-5.8.0-upstream-18098.patch
  861. - Patch18100: perl-5.8.0-upstream-18100.patch
  862. - Patch18101: perl-5.8.0-upstream-18101.patch
  863. - Patch18103: perl-5.8.0-upstream-18103.patch
  864. - Patch18104: perl-5.8.0-upstream-18104.patch
  865. - Patch18110: perl-5.8.0-upstream-18110.patch
  866. - Patch18111: perl-5.8.0-upstream-18111.patch
  867. - Patch18112: perl-5.8.0-upstream-18112.patch
  868. - Patch18126: perl-5.8.0-upstream-18126.patch
  869. - Patch18127: perl-5.8.0-upstream-18127.patch
  870. - Patch18128: perl-5.8.0-upstream-18128.patch
  871. - Patch18129: perl-5.8.0-upstream-18129.patch
  872. - Patch18130: perl-5.8.0-upstream-18130.patch
  873. - Patch18131: perl-5.8.0-upstream-18131.patch
  874. - Patch18132: perl-5.8.0-upstream-18132.patch
  875. - Patch18133: perl-5.8.0-upstream-18133.patch
  876. - Patch18134: perl-5.8.0-upstream-18134.patch
  877. - Patch18143: perl-5.8.0-upstream-18143.patch
  878. - Patch18144: perl-5.8.0-upstream-18144.patch
  879. - Patch18145: perl-5.8.0-upstream-18145.patch
  880. - Patch18146: perl-5.8.0-upstream-18146.patch
  881. - Patch18153: perl-5.8.0-upstream-18153.patch
  882. - Patch18155: perl-5.8.0-upstream-18155.patch
  883. - Patch18156: perl-5.8.0-upstream-18156.patch
  884. - Patch18173: perl-5.8.0-upstream-18173.patch
  885. - Patch18174: perl-5.8.0-upstream-18174.patch
  886. - Patch18187: perl-5.8.0-upstream-18187.patch
  887. - Patch18189: perl-5.8.0-upstream-18189.patch
  888. - Patch18190: perl-5.8.0-upstream-18190.patch
  889. - Patch18191: perl-5.8.0-upstream-18191.patch
  890. - Patch18192: perl-5.8.0-upstream-18192.patch
  891. - Patch18197: perl-5.8.0-upstream-18197.patch
  892. - Patch18202: perl-5.8.0-upstream-18202.patch
  893. - Patch18204: perl-5.8.0-upstream-18204.patch
  894. - Patch18205: perl-5.8.0-upstream-18205.patch
  895. - Patch18206: perl-5.8.0-upstream-18206.patch
  896. - Patch18207: perl-5.8.0-upstream-18207.patch
  897. - Patch18208: perl-5.8.0-upstream-18208.patch
  898. - Patch18209: perl-5.8.0-upstream-18209.patch
  899. - Patch18210: perl-5.8.0-upstream-18210.patch
  900. - Patch18211: perl-5.8.0-upstream-18211.patch
  901. - Patch18214: perl-5.8.0-upstream-18214.patch
  902. - Patch18215: perl-5.8.0-upstream-18215.patch
  903. - Patch18218: perl-5.8.0-upstream-18218.patch
  904. - Patch18219: perl-5.8.0-upstream-18219.patch
  905. - Patch18227: perl-5.8.0-upstream-18227.patch
  906. - Patch18234: perl-5.8.0-upstream-18234.patch
  907. - Patch18235: perl-5.8.0-upstream-18235.patch
  908. - Patch18236: perl-5.8.0-upstream-18236.patch
  909. - Patch18241: perl-5.8.0-upstream-18241.patch
  910. - Patch18242: perl-5.8.0-upstream-18242.patch
  911. - Patch18243: perl-5.8.0-upstream-18243.patch
  912. - Patch18247: perl-5.8.0-upstream-18247.patch
  913. - Patch18248: perl-5.8.0-upstream-18248.patch
  914. - Patch18252: perl-5.8.0-upstream-18252.patch
  915. - Patch18253: perl-5.8.0-upstream-18253.patch
  916. - Patch18254: perl-5.8.0-upstream-18254.patch
  917. - Patch18255: perl-5.8.0-upstream-18255.patch
  918. - Patch18256: perl-5.8.0-upstream-18256.patch
  919. - Patch18257: perl-5.8.0-upstream-18257.patch
  920. - Patch18258: perl-5.8.0-upstream-18258.patch
  921. - Patch18271: perl-5.8.0-upstream-18271.patch
  922. - Patch18273: perl-5.8.0-upstream-18273.patch
  923. - Patch18274: perl-5.8.0-upstream-18274.patch
  924. - Patch18275: perl-5.8.0-upstream-18275.patch
  925. - Patch18276: perl-5.8.0-upstream-18276.patch
  926. - Patch18286: perl-5.8.0-upstream-18286.patch
  927. - Patch18289: perl-5.8.0-upstream-18289.patch
  928. - Patch18290: perl-5.8.0-upstream-18290.patch
  929. - Patch18291: perl-5.8.0-upstream-18291.patch
  930. - Patch18293: perl-5.8.0-upstream-18293.patch
  931. - Patch18294: perl-5.8.0-upstream-18294.patch
  932. - Patch18295: perl-5.8.0-upstream-18295.patch
  933. - Patch18296: perl-5.8.0-upstream-18296.patch
  934. - Patch18297: perl-5.8.0-upstream-18297.patch
  935. - Patch18301: perl-5.8.0-upstream-18301.patch
  936. - Patch18322: perl-5.8.0-upstream-18322.patch
  937. - Patch18347: perl-5.8.0-upstream-18347.patch
  938. - Patch18348: perl-5.8.0-upstream-18348.patch
  939. - Patch18349: perl-5.8.0-upstream-18349.patch
  940. - Patch18352: perl-5.8.0-upstream-18352.patch
  941. - Patch18353: perl-5.8.0-upstream-18353.patch
  942. - Patch18359: perl-5.8.0-upstream-18359.patch
  943. - Patch18360: perl-5.8.0-upstream-18360.patch
  944. - Patch18361: perl-5.8.0-upstream-18361.patch
  945. - Patch18362: perl-5.8.0-upstream-18362.patch
  946. - Patch18363: perl-5.8.0-upstream-18363.patch
  947. - Patch18364: perl-5.8.0-upstream-18364.patch
  948. - Patch18365: perl-5.8.0-upstream-18365.patch
  949. - Patch18366: perl-5.8.0-upstream-18366.patch
  950. - Patch18367: perl-5.8.0-upstream-18367.patch
  951. - Patch18368: perl-5.8.0-upstream-18368.patch
  952. - Patch18369: perl-5.8.0-upstream-18369.patch
  953. - Patch18370: perl-5.8.0-upstream-18370.patch
  954. - Patch18375: perl-5.8.0-upstream-18375.patch
  955. - Patch18379: perl-5.8.0-upstream-18379.patch
  956. - Patch18380: perl-5.8.0-upstream-18380.patch
  957. - Patch20001: perl-5.8.0-upstream-20475.patch
  958. * Wed Jul 23 2003 IWAI Masaharu <iwai@alib.jp> 5.8.0-88vl4
  959. - SECURITY: fix CGI.pm XSS
  960. add CGI_XSS.patch (Patch20002)
  961. * Wed May 14 2003 IWAI Masaharu <iwai@alib.jp> 5.8.0-88vl3
  962. - add open.pm patch from perl5-porters #20475
  963. * Thu Apr 24 2003 IWAI Masaharu <iwai@alib.jp> 5.8.0-88vl2
  964. - added library search path ( otherlibdirs ) in /usr/local/lib
  965. - add Provides: perl-{MIME-Base64,libnet} ([VineSeed:07701])
  966. * Tue Apr 15 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.8.0-88vl1
  967. - synced with Rawhide 5.8.0-88
  968. * Fri Apr 12 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 5.6.1-0vl9
  969. - added library search path ( otherlibdirs ) in /usr/local/lib
  970. * Fri Mar 29 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.6.1-0vl8
  971. - changed Patch3 (now use gdbm-ndbm)
  972. * Sat Jan 19 2002 Yoshihiro Ota <ota@j.email.ne.jp>
  973. - 5.6.1-0vl7
  974. - added db3-devel BuildPreReq
  975. * Sat Jan 19 2002 Yoshihiro Ota <ota@j.email.ne.jp>
  976. - 5.6.1-0vl6
  977. - added BuildPreReq entires
  978. * Tue Jun 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  979. - 5.6.1-0vl4
  980. - removed NASTY Provides: perl <= %%{version} line :-P
  981. * Sun Jun 17 2001 Yasuhide OOMORI <dasen@icntv.ne.jp>
  982. - 5.6.1-0vl3
  983. - put %%install sentence back
  984. * Sun Jun 17 2001 Yasuhide OOMORI <dasen@icntv.ne.jp>
  985. - 5.6.1-0vl2
  986. - use %%config for perllocal.pod
  987. - removed MAINTAIN from %%doc
  988. * Sat Jun 16 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  989. - 5.6.1-0vl1
  990. - updated to 5.6.1 newest (at the moment) stable release
  991. (most of the works/tests done by Machino-san. Thanks)
  992. - fix Source[01] URLs
  993. - Copyright: GPL -> License: Artistic
  994. - Patch4 modified for 5.6.1, as well as removed Patch8 and Patch9
  995. * Fri Jun 15 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  996. - 5.6.0-10vl6
  997. - modified %%{SOURCE3} & %%{SOURCE4} to remove libsafe.so dependencies
  998. * Thu Jun 14 2001 <sagami@vinelinux.org>
  999. - 5.6.0-10vl5: I think define is still valid even if commented out
  1000. * Thu Jun 14 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  1001. - 5.6.0-10vl4
  1002. - added Japanese description
  1003. - all archs should use %%{SOURCE3} for find_requires at the moment
  1004. - %%define _noVersionedDependencies 1
  1005. - libgr-devel -> netpbm-devel in %%install section
  1006. * Wed Jun 13 2001 Jun Nishii <jun@vinelinux.org> perl-5.6.0-10vl3
  1007. - added %doc
  1008. * Mon Mar 12 2001 net_hal <net_hal@cwa.bai.ne.jp>
  1009. - Package name changed(perl -> perl56)
  1010. * Fri Mar 2 2001 net_hal <net_hal@cwa.bai.ne.jp>
  1011. - first build for Vine2.1
  1012. * Tue Sep 12 2000 Bill Nottingham <notting@redhat.com>
  1013. - fix dependencies on ia64/sparc64
  1014. * Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com>
  1015. - replace the deprecated MD5 with Digest::MD5 (has to be here for cleanfeed)
  1016. - obsolete: perl-Digest-MD5
  1017. - use syslog instead of mail to report possible attempts to break into suidperl
  1018. - force syslog on at build-time
  1019. * Mon Jul 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  1020. - add Owen's fix for #14779/#14863
  1021. - specify cc=%{__cc}; continue to let cpp sort itself out
  1022. - switch shadow support on (#8646)
  1023. - release 7
  1024. * Tue Jul 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  1025. - strip buildroot from perl pods (#14040)
  1026. - release 6
  1027. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  1028. - automatic rebuild (release 5)
  1029. * Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
  1030. - don't require tcsh to install, only to build
  1031. - release 4
  1032. * Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  1033. - rebuild against new db3 package
  1034. - release 3
  1035. * Sat Jun 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  1036. - disable 64-bit file support
  1037. - change name of package that Perl expects gcc to be in from "egcs" to "gcc"
  1038. - move man pages to /usr/share via hints/linux.sh and MM_Unix.pm
  1039. - fix problems prefixifying with empty prefixes
  1040. - disable long doubles on sparc (they're the same as doubles anyway)
  1041. - add an Epoch to make sure we can upgrade from perl-5.00503
  1042. - release 2
  1043. * Thu Mar 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1044. - 2.6.0
  1045. * Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
  1046. - fix description
  1047. * Fri Jan 14 2000 Jeff Johnson <jbj@redhat.com>
  1048. - add provides for perl modules (from kestes@staff.mail.com).
  1049. * Mon Oct 04 1999 Cristian Gafton <gafton@redhat.com>
  1050. - fix the %install so that the MD5 module gets actually installed correctly
  1051. * Mon Aug 30 1999 Cristian Gafton <gafton@redhat.com>
  1052. - make sure the package builds even when we don't have perl installed on the
  1053. system
  1054. * Fri Aug 06 1999 Cristian Gafton <gafton@redhat.com>
  1055. - merged with perl-MD5
  1056. - get rid of the annoying $RPM_BUILD_ROOT paths in the installed tree
  1057. * Mon Jul 26 1999 Cristian Gafton <gafton@redhat.com>
  1058. - do not link anymore against the system db library (and make each module
  1059. link against it separately, so that we can have Berkeley db1 and db2 mixed
  1060. up)
  1061. * Wed Jun 16 1999 Cristian Gafton <gafton@redhat.com>
  1062. - use wildcards for files in /usr/bin and /usr/man
  1063. * Tue Apr 06 1999 Cristian Gafton <gafton@redhat.com>
  1064. - version 5.00503
  1065. - make the default man3 install dir be release independent
  1066. - try to link against db1 to preserve compatibility with older databases;
  1067. abandoned idea because perl is too broken to allow such an easy change
  1068. (hardcoded names *everywhere* !!!)
  1069. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  1070. - auto rebuild in the new build environment (release 3)
  1071. * Thu Jan 07 1999 Cristian Gafton <gafton@redhat.com>
  1072. - guilty of the inlined Makefile in the spec file
  1073. - adapted for the arm build
  1074. * Wed Sep 09 1998 Preston Brown <pbrown@redhat.com>
  1075. - added newer CGI.pm to the build
  1076. - changed the version naming scheme around to work with RPM
  1077. * Sun Jul 19 1998 Jeff Johnson <jbj@redhat.com>
  1078. - attempt to generate *.ph files reproducibly
  1079. * Mon Jun 15 1998 Jeff Johnson <jbj@redhat.com>
  1080. - update to 5.004_04-m4 (pre-5.005 maintenance release)
  1081. * Fri Jun 12 1998 Christopher McCrory <chrismcc@netus.com
  1082. - need stdarg.h from gcc shadow to fix "use Sys::Syslog" (problem #635)
  1083. * Fri May 08 1998 Cristian Gafton <gafton@redhat.com>
  1084. - added a patch to correct the .ph constructs unless defined (foo) to read
  1085. unless(defined(foo))
  1086. * Thu May 07 1998 Prospector System <bugs@redhat.com>
  1087. - translations modified for de, fr, tr
  1088. * Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
  1089. - fixed strftime problem
  1090. * Sun Mar 08 1998 Cristian Gafton <gafton@redhat.com>
  1091. - added a patch to fix a security race
  1092. - do not use setres[ug]id - those are not implemented on 2.0.3x kernels
  1093. * Mon Mar 02 1998 Cristian Gafton <gafton@redhat.com>
  1094. - upgraded to 5.004_04 - 5.004_01 had some nasty memory leaks.
  1095. - fixed the spec file to be version-independent
  1096. * Fri Dec 05 1997 Erik Troan <ewt@redhat.com>
  1097. - Config.pm wasn't right do to the builtrooting
  1098. * Mon Oct 20 1997 Erik Troan <ewt@redhat.com>
  1099. - fixed arch-specfic part of spec file
  1100. * Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
  1101. - updated to perl 5.004_01
  1102. - users a build root
  1103. * Thu Jun 12 1997 Erik Troan <ewt@redhat.com>
  1104. - built against glibc
  1105. * Tue Apr 22 1997 Erik Troan <ewt@redhat.com>
  1106. - Incorporated security patch from Chip Salzenberg <salzench@nielsenmedia.com>
  1107. * Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
  1108. - Use -Darchname=i386-linux
  1109. - Require csh (for glob)
  1110. - Use RPM_ARCH during configuration and installation for arch independence