subversion-vl.spec 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. %define neon_version 0.25.5
  2. %define swig_version 1.3.29
  3. %define apache_dir /usr
  4. %define db_version 4.3.29
  5. %define swigdirs swig_pydir=%{python_sitearch}/libsvn swig_pydir_extra=%{python_sitearch}/svn
  6. # set to zero to avoid running test suite
  7. %define make_check 0
  8. Summary: Modern Version Control System
  9. Summary(ja): モダンなバージョン管理システム
  10. Name: subversion
  11. Version: 1.8.8
  12. Release: 1%{?_dist_release}
  13. License: ASL 2.0
  14. Group: Development/Tools
  15. URL: http://subversion.apache.org/
  16. Packager: iwaim
  17. Vendor: Project Vine
  18. Distribution: Vine Linux
  19. SOURCE0: subversion-%{version}.tar.bz2
  20. SOURCE1: subversion.conf
  21. SOURCE2: httpd.davcheck.conf
  22. SOURCE3: filter-requires.sh
  23. Patch3: subversion-1.7.0-rpath.patch
  24. #Patch4: subversion-1.7.2-ruby19.patch
  25. Requires: db4 >= %{db_version}
  26. Requires: expat
  27. Requires: neon >= %{neon_version}
  28. BuildRequires: apache2-devel
  29. BuildRequires: apr-devel, apr-util-devel
  30. BuildRequires: autoconf >= 2.53
  31. BuildRequires: db4-devel >= %{db_version}
  32. BuildRequires: expat-devel
  33. BuildRequires: gdbm-devel
  34. BuildRequires: libtool >= 1.4.2
  35. BuildRequires: neon-devel >= %{neon_version}
  36. BuildRequires: openssl-devel
  37. BuildRequires: python
  38. BuildRequires: python-devel
  39. BuildRequires: swig >= %{swig_version}
  40. BuildRequires: texinfo
  41. BuildRequires: zlib-devel
  42. BuildRequires: openldap-devel
  43. BuildRequires: ruby >= 1.8.2
  44. BuildRequires: ruby-devel >= 1.8.2
  45. BuildRequires: perl >= 5.8.0
  46. BuildRequires: sqlite3-devel
  47. BuildRequires: krb5-devel
  48. BuildRequires: keyutils-libs-devel
  49. BuildRequires: dbus-devel
  50. BuildRequires: libgnome-keyring-devel
  51. BuildRequires: libserf-devel
  52. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  53. %define __perl_requires %{SOURCE3}
  54. %description
  55. Subversion is a concurrent version control system which enables one
  56. or more users to collaborate in developing and maintaining a
  57. hierarchy of files and directories while keeping a history of all
  58. changes. Subversion only stores the differences between versions,
  59. instead of every complete file. Subversion is intended to be a
  60. compelling replacement for CVS.
  61. %package devel
  62. Group: Development/Libraries
  63. Summary: Development package for Subversion developers.
  64. Requires: subversion = %{version}-%{release}
  65. Requires: apr-devel, apr-util-devel
  66. %description devel
  67. The subversion-devel package includes the static libraries and include files
  68. for developers interacting with the subversion package.
  69. %package mod_dav_svn
  70. Group: System Environment/Daemons
  71. Summary: Apache server module for Subversion server.
  72. Requires: httpd >= %{apache_version}
  73. Requires: subversion = %{version}-%{release}
  74. %description mod_dav_svn
  75. The subversion-mod_dav_svn package adds the Subversion server Apache module to
  76. the Apache directories and configuration.
  77. %package tools
  78. Group: Development/Tools
  79. Summary: Tools for Subversion
  80. BuildRequires: perl >= 5.8.0
  81. Requires: perl >= 5.8.0
  82. Requires: subversion = %{version}-%{release}
  83. %description tools
  84. Tools for Subversion.
  85. %package perl
  86. Group: Development/Libraries
  87. Summary: Perl bindings to the Subversion libraries
  88. Requires: subversion = %{version}-%{release}
  89. Requires: perl >= 5.8.0
  90. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  91. %description perl
  92. This package includes the Perl bindings to the Subversion libraries.
  93. %package ruby
  94. Group: Development/Libraries
  95. Summary: Ruby bindings to the Subversion libraries
  96. Requires: subversion = %{version}-%{release}
  97. Requires: ruby >= 1.9.3
  98. %description ruby
  99. This package includes the Ruby bindings to the Subversion libraries.
  100. %package python
  101. Group: Development/Libraries
  102. Summary: Python bindings to the Subversion libraries
  103. Requires: subversion = %{version}-%{release}, python
  104. %description python
  105. This package includes the Python bindings to the Subversion libraries.
  106. %prep
  107. %setup -q
  108. %patch3 -p1 -b .rpath
  109. %build
  110. PATH=/usr/bin:$PATH ./autogen.sh --release
  111. # fix shebang lines, #111498
  112. perl -pi -e 's|/usr/bin/env perl -w|/usr/bin/perl -w|' tools/hook-scripts/*.pl.in
  113. # override weird -shrext from ruby
  114. export svn_cv_ruby_link="%{__cc} -shared"
  115. export svn_cv_ruby_sitedir_libsuffix=""
  116. export svn_cv_ruby_sitedir_archsuffix=""
  117. export CC=gcc CXX=g++ JAVA_HOME=%{jdk_path} CFLAGS="$RPM_OPT_FLAGS"
  118. export LIBTOOL=/usr/bin/libtool
  119. %configure --with-apr=%{_prefix} --with-apr-util=%{_prefix} \
  120. --with-swig --with-serf=%{_prefix} \
  121. --with-ruby-sitedir=%{rarchdir} \
  122. --with-apxs=%{_bindir}/apxs \
  123. --disable-mod-activation \
  124. --with-apache-libexecdir=%{_libdir}/apache2/modules/ \
  125. --with-gnome-keyring \
  126. --with-berkeley-db \
  127. --disable-mod-activation \
  128. --disable-static
  129. make %{?_smp_mflags} all tools
  130. make swig-py swig-py-lib %{swigdirs}
  131. make swig-pl swig-pl-lib swig-rb swig-rb-lib
  132. %install
  133. echo %{rarchdir}
  134. rm -rf $RPM_BUILD_ROOT
  135. make install \
  136. install-swig-py \
  137. install-swig-pl-lib \
  138. install-swig-rb \
  139. DESTDIR=$RPM_BUILD_ROOT %{swigdirs}
  140. make pure_vendor_install -C subversion/bindings/swig/perl/native \
  141. PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
  142. install -m 755 -d $RPM_BUILD_ROOT%{_sysconfdir}/subversion
  143. install -m 755 -d $RPM_BUILD_ROOT%{_libdir}/apache2/modules
  144. # Add subversion.conf configuration file into httpd/conf.d directory.
  145. install -m 755 -d $RPM_BUILD_ROOT/etc/apache2/conf.d
  146. install -m 644 %{SOURCE1} $RPM_BUILD_ROOT/etc/apache2/conf.d
  147. # Remove unpackaged files
  148. rm -rf $RPM_BUILD_ROOT%{_includedir}/subversion-*/*.txt \
  149. $RPM_BUILD_ROOT%{python_sitearch}/*/*.{a,la} \
  150. $RPM_BUILD_ROOT%{_libdir}/*.la
  151. # The SVN build system is broken w.r.t. DSO support; it treats
  152. # normal libraries as DSOs and puts them in $libdir, whereas they
  153. # should go in some subdir somewhere, and be linked using -module,
  154. # etc. So, forcibly nuke the .so's for libsvn_auth_{gnome,kde},
  155. # since nothing should ever link against them directly.
  156. rm -f ${RPM_BUILD_ROOT}%{_libdir}/libsvn_auth_*.so
  157. # remove stuff produced with Perl modules
  158. find $RPM_BUILD_ROOT -type f \
  159. -a \( -name .packlist -o \( -name '*.bs' -a -empty \) \) \
  160. -print0 | xargs -0 rm -f
  161. # make Perl modules writable so they get stripped
  162. find $RPM_BUILD_ROOT%{_libdir}/perl5 -type f -perm 555 -print0 |
  163. xargs -0 chmod 755
  164. # unnecessary libraries for swig bindings
  165. rm -f $RPM_BUILD_ROOT%{_libdir}/libsvn_swig_*.{so,la,a}
  166. # Remove unnecessary ruby libraries
  167. rm -f $RPM_BUILD_ROOT%{rarchdir}/svn/ext/*.*a
  168. # Trim what goes in docdir
  169. rm -rf tools/*/*.in tools/test-scripts
  170. # Rename authz_svn INSTALL doc for docdir
  171. ln -f subversion/mod_authz_svn/INSTALL mod_authz_svn-INSTALL
  172. # Install bash completion
  173. install -Dpm 644 tools/client-side/bash_completion \
  174. $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/svn
  175. for comp in svnadmin svndumpfilter svnlook svnsync svnversion; do
  176. ln -s svn \
  177. $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/${comp}
  178. done
  179. # Install tools ex diff*
  180. make install-tools DESTDIR=$RPM_BUILD_ROOT toolsdir=%{_bindir}
  181. rm -f $RPM_BUILD_ROOT%{_bindir}/diff*
  182. for f in svn-populate-node-origins-index svn-rep-sharing-stats \
  183. svnauthz-validate svnmucc svnraisetreeconflict; do
  184. echo %{_bindir}/$f
  185. done | tee tools.files | sed 's/^/%%exclude /' > exclude.tools.files
  186. %find_lang %{name}
  187. cat %{name}.lang exclude.tools.files >> %{name}.files
  188. %clean
  189. rm -rf $RPM_BUILD_ROOT
  190. %post -p /sbin/ldconfig
  191. %postun -p /sbin/ldconfig
  192. %post perl -p /sbin/ldconfig
  193. %postun perl -p /sbin/ldconfig
  194. %post ruby -p /sbin/ldconfig
  195. %postun ruby -p /sbin/ldconfig
  196. %post python -p /sbin/ldconfig
  197. %postun python -p /sbin/ldconfig
  198. %post tools -p /sbin/ldconfig
  199. %postun tools -p /sbin/ldconfig
  200. %files
  201. %defattr(-,root,root)
  202. %doc BUGS CHANGES COMMITTERS LICENSE NOTICE INSTALL README
  203. %doc subversion/LICENSE
  204. %{_bindir}/*
  205. %{_libdir}/libsvn_*.so.*
  206. %{_localedir}/*/*/subversion.mo
  207. %{_mandir}/man*/*
  208. %{_datadir}/bash-completion/completions/*
  209. %dir %{_sysconfdir}/subversion
  210. %exclude %{_mandir}/man*/*::*
  211. %exclude %{_libdir}/libsvn_swig_perl*.so.*
  212. %exclude %{_libdir}/libsvn_swig_py*.so.*
  213. %exclude %{_libdir}/libsvn_swig_ruby*.so.*
  214. %files devel
  215. %defattr(-,root,root)
  216. %{_includedir}/subversion-1
  217. %{_libdir}/libsvn*.so
  218. %exclude %{_libdir}/libsvn_swig_perl*
  219. %exclude %{_libdir}/libsvn_swig_py*
  220. %exclude %{_libdir}/libsvn_swig_ruby*
  221. %files mod_dav_svn
  222. %defattr(-,root,root)
  223. %config(noreplace) /etc/apache2/conf.d/subversion.conf
  224. %{apache_dir}/%{_lib}/apache2/modules/mod_*.*
  225. %files tools -f tools.files
  226. %defattr(-,root,root)
  227. %files perl
  228. %defattr(-,root,root,-)
  229. %{perl_vendorarch}/auto/SVN
  230. %{perl_vendorarch}/SVN
  231. %{_libdir}/libsvn_swig_perl*
  232. %{_mandir}/man*/*::*
  233. %files ruby
  234. %defattr(-,root,root,-)
  235. %{_libdir}/libsvn_swig_ruby*
  236. %{rarchdir}/svn
  237. %files python
  238. %defattr(-,root,root,-)
  239. %{_libdir}/libsvn_swig_py*
  240. %{python_sitearch}/libsvn
  241. %{python_sitearch}/svn
  242. %changelog
  243. * Fri Apr 18 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.8-1
  244. - update to 1.8.8
  245. - add BR: libserf-devel to handle http* scheme
  246. * Thu Oct 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.7-1
  247. - update to 1.7.7
  248. - rebuild with ruby-1.9.3
  249. * Tue Sep 18 2012 IWAI, Masaharu <iwai@alib.jp> 1.7.6-1
  250. - new upstream release
  251. - update License
  252. - update rpath patch (Patch3) from Fedora 1.7.6-1.fc19
  253. - drop deplibs patch (Patch1)
  254. - drop obsolete patch files: Patch6, 10
  255. * Fri Jun 3 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  256. - new upstream release with security fix (CVE-2011-1752, 1783, 1921)
  257. - add configure option with-gnome-keyring
  258. - add BR: keyutils-libs-devel, dbus-devel, libgnome-keyring-devel
  259. - fix Packager name
  260. * Sat Mar 26 2011 IWAI, Masaharu <iwai@alib.jp> 1.6.16-2
  261. - build with perl 5.12.3
  262. - add Requires: perl(:MODULE_COMPAT_...)
  263. * Sat Mar 5 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.6.16-1
  264. - new upstream release with security fix
  265. - add Vendor/Distri tags
  266. * Mon Nov 29 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.15-1
  267. - new upstream release
  268. * Tue Mar 2 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.9-2
  269. - fix <BTS:VineLinux:941>
  270. - using rpm macro: rarchdir
  271. - export svn_cv_ruby_sitedir_libsuffix and svn_cv_ruby_sitedir_archsuffix
  272. - using rpm macros: perl_vendorarch and python_sitearch
  273. - add BuildRequires: sqlite3-devel krb5-devel
  274. * Thu Feb 18 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.9-1
  275. - new upstream release
  276. - update URL
  277. - update deplibs patch (Patch1) from Fedora 1.6.9-2.fc13
  278. - update rpath patch (Patch3) from Fedora 1.6.9-2.fc13
  279. - stop applying pia patch (Patch6): sync Fedora 1.6.9-2.fc13
  280. - stop applying update-neon-m4 patch (Patch10): sync Fedora 1.6.9-2.fc13
  281. * Thu Aug 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.7-1
  282. - new upstream release
  283. * Fri Sep 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.2-1
  284. - new upstream release
  285. * Sun Jul 20 2008 Shu KONNO <owa@bg.wakwak.com> 1.4.6-2vl5
  286. - rebuilt with python-2.5.2
  287. * Sat Apr 19 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.6-1vl5
  288. - new upstream release
  289. - rebuild with neon-0.28.2
  290. - dropped old-Patch10 by adding --disable-neon-version-check to %%configure
  291. - added Patch6, 8, 9, 10 from Fedora Core
  292. * Thu Feb 21 2008 Lubomir Kundrak <lkundrak@redhat.com> 1.4.6-5
  293. - Correct install location of java stuff (#433295)
  294. * Wed Aug 8 2007 Joe Orton <jorton@redhat.com> 1.4.4-3
  295. - fix build with new glibc open()-as-macro
  296. - build all swig code in %%build, not %%install
  297. * Fri May 21 2004 Joe Orton <jorton@redhat.com> 1.0.3-2
  298. - build /usr/bin/* as PIEs
  299. * Mon Feb 25 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.4.3-0vl2
  300. - rebuild with expat-2.0.1
  301. * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.3-0vl1
  302. - new upstream release
  303. - add Patch10 to build with neon.
  304. 1.3.2-0vl5 does not support neon..
  305. * Wed May 16 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.2-0vl4
  306. - rebuild with new neon
  307. * Thu May 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.3.2-0vl3
  308. - rebuilt with new toolchain and db4-4.3.x
  309. * Sat Mar 31 2007 NAKAMURA Kenta <kenta@vinelinux.org> 1.3.2-0vl2
  310. - modified %%files section for lib64 architecture
  311. * Tue Aug 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.2-0vl1
  312. - new upstream release
  313. - rebuild with new openldap-2.3.24
  314. * Sun May 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.1-0vl1
  315. - new upstream release
  316. - change Group to Develoment/Tools
  317. - build with apr-1.2.7/apr-util-1.2.7
  318. - require apr/apr-util instead of apache2-apr
  319. - build with swig-1.3.29
  320. - split {perl,python,ruby} related files to subpackage.
  321. * Tue Oct 18 2005 IWAI, Masaharu <iwai@alib.jp> 1.2.3-0vl1
  322. - new upstream release
  323. - add noreplace option for config file
  324. * Sun Jan 30 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 1.1.3-0vl3
  325. - fix Requires and BuildPreReq.
  326. * Sun Jan 23 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 1.1.3-0vl2
  327. - new upstream release.
  328. - add swig-runtime to 'BuildPreReq:'.
  329. - fix %%files.
  330. * Sun Oct 17 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.0.6-0vl1.1
  331. - require neon version 0.24.7 for ra_dav
  332. - add BuildPreReq: openldap-devel
  333. - replace BuildPreReq: httpd to BuildPreReq: apache2
  334. - replace tools Requires: perl(:MODULE_COMPAT_version) to perl >= 5.8.0
  335. * Wed Jul 21 2004 Kazuhisa TAKEI <takei@vinelinux.org> 1.0.6-0vl1
  336. - new upstream release
  337. * Tue Jun 22 2004 Kazuhisa TAKEI <takei@vinelinux.org> 1.0.5-0vl1
  338. - new upstream release
  339. * Fri Jun 4 2004 Kazuhisa TAKEI <takei@vinelinux.org> 1.0.4-0vl1
  340. - new upstream release
  341. - clean up specfile.
  342. * Tue Nov 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.32.1-0vl1
  343. - new upstream release
  344. - build with apache2-2.0.47
  345. * Sun Mar 30 2003 Kazuhisa TAKEI <takei@vinelinux.org> 0.20.0-0vl1
  346. - build Vine Linux
  347. * Sat Mar 01 2003 David Summers <david@summersoft.fay.ar.us> 0.18.1-5173
  348. - Enabled RA_DAV checking.
  349. Now requires httpd package to build because of RA_DAV tests.
  350. * Sat Jan 18 2003 David Summers <david@summersoft.fay.ar.us> 0.16.1-4433
  351. - Created tools package to hold the tools.
  352. * Thu Jan 16 2003 David Summers <david@summersoft.fay.ar.us> 0.16.1-4405
  353. - Now requires httpd >= 2.0.44-0.1 (APACHE_2_0_BRANCH) which contains the new
  354. version of APR/APR-UTILS as of 2003.01.15.
  355. - Added svnversion command.
  356. * Tue Dec 31 2002 David Summers <david@summersoft.fay.ar.us> 0.16.0-4218
  357. - Create a svnadmin.static which is copied to svnadmin-version-release
  358. when the package is erased, so users can still dump/load their repositories
  359. even after they have upgraded the RPM package.
  360. * Sat Dec 14 2002 David Summers <david@summersoft.fay.ar.us> 0.16.0-4128
  361. - SWIG now builds so we can use cvs2svn.
  362. * Fri Oct 04 2002 David Summers <david@summersoft.fay.ar.us> 0.14.3-3280
  363. - Made cvs2svn conditional (at least until we can get it to build consistently
  364. and work).
  365. * Sat Sep 21 2002 David Summers <david@summersoft.fay.ar.us> 0.14.3-3205
  366. - Added SWIG dependencies to add cvs2svn capabilities.
  367. * Fri Aug 16 2002 David Summers <david@summersoft.fay.ar.us> 0.14.1-2984
  368. - Now requires neon-0.22.0.
  369. * Thu Aug 15 2002 David Summers <david@summersoft.fay.ar.us> 0.14.1-2978
  370. - Took out loading mod_dav_svn from subversion.spec file and put it in
  371. subversion.conf file which goes into the apache conf directory.
  372. - Simplify what gets put into httpd.conf to only the include for the
  373. subversion.conf file.
  374. (Thanks to Scott Harrison <sharrison@users.sourceforge.net> for prompting
  375. me to do this).
  376. * Thu Aug 08 2002 David Summers <david@summersoft.fay.ar.us> 0.14.0-2919
  377. - Updated to APR/APR-UTIL 2002-08-08.
  378. * Tue Jun 25 2002 David Summers <david@summersoft.fay.ar.us> 0.13.0-2332
  379. - Updated to APACHE/APR/APR-UTIL 2002-06-25.
  380. - Previous version had a few problems because of missing apache error/ files.
  381. * Sun Jun 23 2002 David Summers <david@summersoft.fay.ar.us> 0.13.0-2318
  382. - Updated to apache-2.0.40-0.3.
  383. - Updated to subversion-0.13.1-2318.
  384. * Tue Jun 18 2002 David Summers <david@summersoft.fay.ar.us> 0.13.0-2277
  385. - Updated for RedHat 7.3 (autoconf253).
  386. - Added a bunch of pre-requisites I didn't know were needed because I built a
  387. new machine that didn't have them already installed.
  388. - Fixed installation of man and info documentation pages.
  389. * Wed Mar 06 2002 David Summers <david@summersoft.fay.ar.us> 0.9.0-1447
  390. - Back to apache-libapr* stuff, hopefully to stay.
  391. * Sun Feb 24 2002 David Summers <david@summersoft.fay.ar.us> 0.9.0-1373
  392. - Fixed expat.patch to not have to make so many changes by writing a small
  393. shell script that changes libexpat to -lexpat.
  394. * Fri Feb 22 2002 Blair Zajac <blair@orcaware.com> 0.9.0-1364
  395. - Updated to neon-0.19.2.
  396. * Mon Feb 11 2002 David Summers <david@summersoft.fay.ar.us> 0.8.0-1250
  397. - Back to using apr and apr-util separately from apache.
  398. * Mon Feb 11 2002 David Summers <david@summersoft.fay.ar.us> 0.8.0-1232
  399. - Updated to APR and APR-UTIL 2002.02.11.
  400. - Updated to apache-2.0.32-0.2. (Requires apache-libapr and apache-libapr-util).
  401. - Took out a (now non-existant) documentation file.
  402. - Moved SPEC file changelog to after all package definitions.
  403. * Sun Feb 03 2002 David Summers <david@summersoft.fay.ar.us> 0.8.0-1153
  404. - Updated to neon-0.18.5.
  405. - Broke up apache and apache-devel into apache-apr, apache-apr-devel,
  406. apache-apr-utils, and apache-apr-utils-devel.
  407. - Updated apache to APR and APR-UTILS to 2002.02.03 version.
  408. * Sat Feb 02 2002 David Summers <david@summersoft.fay.ar.us> 0.8.0-1147
  409. - Now builds without the separate APR package as it is built into and
  410. "exported" from apache-2.0.31-0.3.
  411. * Fri Feb 01 2002 David Summers <david@summersoft.fay.ar.us> 0.8.0-1132
  412. - Took out patches to install procedure now not required because of fixes
  413. in rev 1130.
  414. * Fri Feb 01 2002 David Summers <david@summersoft.fay.ar.us> 0.8.0-1129
  415. - Added requirement for APR 0.2002.01.19 rev 2 where the /usr/bin/apr-config
  416. program was added.
  417. * Sun Oct 28 2001 David Summers <david@summersoft.fay.ar.us>
  418. - Release M5-r340: Added the subversion-server package.
  419. * Fri Oct 26 2001 David Summers <david@summersoft.fay.ar.us>
  420. - Release M5-r327: No longer need expat-lite. We can use the normal expat.
  421. * Thu Sep 27 2001 David Summers <david@summersoft.fay.ar.us>
  422. - Release M3-r117: Initial Version.