libpq-vl.spec 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  1. #%define rel 0
  2. %define beta 0
  3. %{?beta:%define __os_install_post /usr/lib/rpm/brp-compress}
  4. %define ssl 1
  5. %define kerberos 0
  6. %define nls 1
  7. %define pam 1
  8. %define pgver 9.3
  9. %define pq_soname 5
  10. %define ecpg_soname 6
  11. Summary: The shared libraries required for any PostgreSQL clients.
  12. Summary(ja): PostgreSQL クライアントに必要な共有ライブラリ
  13. Name: libpq
  14. Group: System Environment/Libraries
  15. Version: %{pgver}.4
  16. Release: 2%{?_dist_release}
  17. License: BSD
  18. Source0: ftp://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
  19. Source3: postgresql.init
  20. Source5: ftp://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2.sha256
  21. Source6: README.rpm-dist
  22. Source15: postgresql-bashprofile
  23. Patch2: postgresql-8.3.3-nls.patch
  24. Patch3: postgresql-7.4-ecpg-patch
  25. Buildrequires: perl build-essential
  26. Buildrequires: readline-devel
  27. Buildrequires: zlib-devel >= 1.0.4
  28. BuildRequires: bison, flex, pam-devel
  29. %if %ssl
  30. Buildrequires: openssl-devel
  31. %endif
  32. %if %kerberos
  33. Buildrequires: krb5-devel
  34. %endif
  35. %if %nls
  36. Buildrequires: gettext >= 0.10.35
  37. %endif
  38. %if %pam
  39. Buildrequires: pam-devel
  40. %endif
  41. Url: http://www.postgresql.org/
  42. Buildroot: %{_tmppath}/%{name}-%{version}-root
  43. Vendor: Project Vine
  44. Distribution: Vine Linux
  45. %description
  46. The %{name} package provides the essential shared libraries for any
  47. PostgreSQL client program or interface. You will need to install this package
  48. to use any other PostgreSQL package or any clients that need to connect to a
  49. PostgreSQL server.
  50. %description -l ja
  51. %{name} パッケージは、すべての PostgreSQL クライアントプログラ
  52. ムやインターフェースのための中核的な共有ライブラリを提供します。
  53. PostgreSQL サーバに接続する必要のある、PostgreSQL パッケージやクライア
  54. ントを使う場合には、このパッケージをインストールする必要があります。
  55. %package -n libpq%{pq_soname}
  56. Summary: The shared libraries required for any PostgreSQL clients.
  57. Summary(ja): PostgreSQL クライアントに必要な共有ライブラリ
  58. Group: System Environment/Libraries
  59. Requires(post): /sbin/ldconfig
  60. Requires(postun): /sbin/ldconfig
  61. Obsoletes: postgresql7-libs
  62. Obsoletes: postgresql8-libs
  63. Obsoletes: postgresql-libs < 9.3.0
  64. Conflicts: postgresql-libs >= 9.3.0
  65. %description -n libpq%{pq_soname}
  66. The %{name} package provides the essential shared libraries for any
  67. PostgreSQL client program or interface. You will need to install this package
  68. to use any other PostgreSQL package or any clients that need to connect to a
  69. PostgreSQL server.
  70. %description -n libpq%{pq_soname} -l ja
  71. %{name} パッケージは、すべての PostgreSQL クライアントプログラ
  72. ムやインターフェースのための中核的な共有ライブラリを提供します。
  73. PostgreSQL サーバに接続する必要のある、PostgreSQL パッケージやクライア
  74. ントを使う場合には、このパッケージをインストールする必要があります。
  75. %package devel
  76. Summary: PostgreSQL development header files and libraries.
  77. Summary(ja): PostgreSQL の開発用ヘッダファイルとライブラリ群
  78. Group: Development/Libraries
  79. Requires: libpq%{pq_soname} = %{version}
  80. Obsoletes: postgresql7-devel
  81. Obsoletes: postgresql8-devel
  82. Obsoletes: postgresql-devel < 9.3.0
  83. %description devel
  84. The %{name}-devel package contains the header files and libraries
  85. needed to compile C or C++ applications which will directly interact
  86. with a PostgreSQL database management server and the ecpg Embedded C
  87. Postgres preprocessor. You need to install this package if you want to
  88. develop applications which will interact with a PostgreSQL server.
  89. %description -l ja devel
  90. %{name}-devel パッケージには、PostgreSQL データベースと直接に会話
  91. するための C / C++ アプリケーションをコンパイルするのに必要なヘッダフ
  92. ァイルとライブラリ、および C 言語埋め込み型の PostgreSQL プリプロセサ
  93. が含まれています。PostgreSQL サーバと会話するアプリケーションを開発
  94. したい場合にはこのパッケージをインストールしてください。
  95. %prep
  96. %setup -q -n postgresql-%{version}
  97. %build
  98. CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS
  99. CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS
  100. # Strip out -ffast-math from CFLAGS....
  101. CFLAGS=`echo $CFLAGS|xargs -n 1|grep -v ffast-math|xargs -n 100`
  102. ./configure \
  103. --prefix=%{_prefix} \
  104. --libdir=%{_libdir} \
  105. --disable-rpath \
  106. %if %beta
  107. --enable-debug \
  108. --enable-cassert \
  109. %endif
  110. %if %ssl
  111. --with-openssl \
  112. %endif
  113. %if %pam
  114. --with-pam \
  115. %endif
  116. %if %kerberos
  117. --with-krb5=/usr/kerberos \
  118. %endif
  119. %if %nls
  120. --enable-nls \
  121. %endif
  122. --sysconfdir=%{_sysconfdir}/sysconfig/pgsql \
  123. --mandir=%{_mandir} \
  124. --with-docdir=%{_docdir} \
  125. --includedir=%{_includedir}/pgsql \
  126. --datadir=%{_datadir}/pgsql
  127. make %{?_smp_mflags} -C ./src/interfaces all
  128. make %{?_smp_mflags} -C ./src/bin/pg_config all
  129. %install
  130. rm -rf $RPM_BUILD_ROOT
  131. make DESTDIR=$RPM_BUILD_ROOT -C ./src/interfaces install
  132. #make DESTDIR=$RPM_BUILD_ROOT -C ./src/bin/pg_config install
  133. # copy over Makefile.global to the include dir....
  134. install -m644 src/Makefile.global $RPM_BUILD_ROOT%{_includedir}/pgsql
  135. install -m644 src/Makefile.shlib $RPM_BUILD_ROOT%{_includedir}/pgsql
  136. # install missing header
  137. install -m644 src/include/postgres_ext.h $RPM_BUILD_ROOT%{_includedir}/pgsql
  138. install -m644 src/include/pg_config_ext.h $RPM_BUILD_ROOT%{_includedir}/pgsql
  139. # Fix some more documentation
  140. ##gzip doc/internals.ps
  141. cp %{SOURCE6} README.rpm-dist
  142. ##cp -pr $RPM_BUILD_ROOT%{_docdir}/postgresql/html doc
  143. ##rm -rf $RPM_BUILD_ROOT%{_docdir}/postgresql/html
  144. mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
  145. install -m 644 ./doc/src/sgml/man1/* $RPM_BUILD_ROOT/%{_mandir}/man1
  146. %find_lang libpq5-%{pgver}
  147. %find_lang ecpg-%{pgver}
  148. %find_lang ecpglib%{ecpg_soname}-%{pgver}
  149. #%find_lang pg_config-%{pgver}
  150. cat libpq5-%{pgver}.lang > libpq.lst
  151. cat ecpg-%{pgver}.lang >> libpq.lst
  152. cat ecpglib%{ecpg_soname}-%{pgver}.lang >> libpq.lst
  153. #cat pg_config-%{pgver}.lang > devel.lst
  154. rm -rf %{buildroot}%{_libdir}/lib*.a
  155. rm -rf %{buildroot}%{_datadir}/pgsql
  156. find %{buildroot}%{_mandir}/man1 -type f | grep -v ecpg.1 | xargs rm -f
  157. rm -f %{buildroot}%{_includedir}/pgsql/Makefile*
  158. find %{buildroot}%{_includedir}/pgsql -type f | perl -pi -e 's|^%{buildroot}||g'> devel.lst
  159. %post
  160. /sbin/ldconfig
  161. %postun
  162. /sbin/ldconfig
  163. %clean
  164. rm -rf $RPM_BUILD_ROOT
  165. %files -n libpq%{pq_soname} -f libpq.lst
  166. %defattr(-,root,root)
  167. %doc COPYRIGHT HISTORY INSTALL README*
  168. %{_libdir}/libecpg.so.*
  169. %{_libdir}/libecpg_compat.so.*
  170. %{_libdir}/libpgtypes.so.*
  171. %{_libdir}/libpq.so.*
  172. %files devel -f devel.lst
  173. %defattr(-,root,root)
  174. %{_bindir}/ecpg
  175. #%{_bindir}/pg_config
  176. #%{_includedir}/pgsql/libpq-events.h
  177. #%{_includedir}/pgsql/libpq-fe.h
  178. #%{_includedir}/pgsql/postgres_ext.h
  179. %{_libdir}/libecpg.so
  180. %{_libdir}/libecpg_compat.so
  181. %{_libdir}/libpgtypes.so
  182. %{_libdir}/libpq.so
  183. %{_libdir}/pkgconfig/*
  184. %{_mandir}/man1/ecpg.*
  185. #%{_mandir}/man1/pg_config.*
  186. %changelog
  187. * Sun Jun 15 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 9.3.4-2
  188. - add postgres_ext.h and pg_config_ext.h
  189. * Mon Mar 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.3.4-1
  190. - new upstream release
  191. * Sat Nov 30 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.3.1-1
  192. - made to build client libraries only.
  193. * Thu Feb 21 2013 IWAI, Masaharu <iwai@alib.jp> 9.0.12-1
  194. - new upstream release
  195. * Thu Feb 7 2013 IWAI, Masaharu <iwai@alib.jp> 9.0.11-1
  196. - new upstream release
  197. - add Vendor and Distribution tags
  198. * Mon Jan 7 2013 IWAI, Masaharu <iwai@alib.jp> 9.0.7-2vl7
  199. - build with Tcl/Tk 8.5.7-1
  200. - fix init script (Source3): fix su(1) paramaters.
  201. * Tue Mar 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.7-1
  202. - new upstream release
  203. - move euc2004_sjis2004.so from -contrib to -server (BTS:1266)
  204. - remove *_and_*.so from -contrib (included in -server)
  205. * Sat Apr 23 2011 Shu KONNO <owa@bg.wakwak.com> 9.0.4-1
  206. - updated postgresql to 9.0.4
  207. * Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 9.0.3-1
  208. - updated postgresql to 9.0.3
  209. - separated postgresql-jdbc package
  210. * Thu Feb 03 2011 Shu KONNO <owa@bg.wakwak.com> 8.4.7-1
  211. - updated postgresql to 8.4.7 (contains a variety of fixes)
  212. * Sat Jan 29 2011 Shu KONNO <owa@bg.wakwak.com> 8.4.6-1
  213. - updated postgresql to 8.4.6
  214. - updated JDBC2 driver to postgresql-8.3-606.{jdbc2,jdbc2ee}.jar
  215. - updated JDBC3 driver to postgresql-8.4-702.jdbc3.jar
  216. - updated JDBC4 driver to postgresql-8.4-702.jdbc4.jar
  217. * Thu Jan 13 2011 Shu KONNO <owa@bg.wakwak.com> 8.4.5-2
  218. - rebuilt with openssl-1.0.0c
  219. * Thu Oct 07 2010 Shu KONNO <owa@bg.wakwak.com> 8.4.5-1
  220. - updated postgresql to 8.4.5
  221. * Sun May 16 2010 Shu KONNO <owa@bg.wakwak.com> 8.4.4-1
  222. - updated postgresql to 8.4.4
  223. * Thu Apr 15 2010 Shu KONNO <owa@bg.wakwak.com> 8.4.3-1
  224. - updated postgresql to 8.4.3
  225. - s/BuildPrereq/Buildrequires/
  226. * Wed Feb 17 2010 Shu KONNO <owa@bg.wakwak.com> 8.4.2-1
  227. - updated postgresql to 8.4.2
  228. - rebuilt with new environment
  229. * Thu Sep 10 2009 Shu KONNO <owa@bg.wakwak.com> 8.4.1-1
  230. - updated postgresql to 8.4.1
  231. * Fri Aug 21 2009 Shu KONNO <owa@bg.wakwak.com> 8.4.0-2
  232. - moved dict_snowball.so from conrib to server
  233. * Tue Jul 07 2009 Shu KONNO <owa@bg.wakwak.com> 8.4.0-1
  234. - updated postgresql to 8.4.0
  235. - updated jdbc3,4 to 701
  236. - dropt postgresql-8.3.3-nls.patch (fixed)
  237. - dropt postgresql-7.4-ecpg-patch (no effect)
  238. * Sat Apr 18 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 8.3.7-2
  239. - changed libs Group to System Environment/Libraries
  240. * Sun Apr 12 2009 Shu KONNO <owa@bg.wakwak.com> 8.3.7-1
  241. - updated postgresql to 8.3.7
  242. * Sun Jan 25 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 8.3.5-2
  243. - remove "-E EUC_JP --no-locale" option from initdb in postgresql.init
  244. * Thu Jan 22 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 8.3.5-1
  245. - new upstream release (postgresql to 8.3.5, jdbc to 604)
  246. * Sat Jul 05 2008 Shu KONNO <owa@bg.wakwak.com> 8.3.3-1vl5
  247. - applied new versioning policy, and spec in utf-8
  248. - updated postgresql to 8.3.3
  249. - updated jdbcver to 603
  250. - added postgresql-8.3.3-nls.patch instead of postgresql-8.2.0-nls.patch.gz
  251. - added a script to replace PGVERSION in postgresql.init
  252. * Sun Feb 17 2008 Shu KONNO <owa@bg.wakwak.com> 8.2.6-0vl2
  253. - rebuild with tcl/tk-8.4.18
  254. * Tue Jan 08 2008 Shu KONNO <owa@bg.wakwak.com> 8.2.6-0vl1
  255. - updated postgresql to 8.2.6
  256. - included security fixes: CVE-{2007-6600, 2007-4772, 2007-6067, 2007-4769, 2007-6601}
  257. * Tue Oct 16 2007 Shu KONNO <owa@bg.wakwak.com> 8.2.5-0vl3
  258. - updated PGVERSION to 8.2 in postgresql.init (sorry;)
  259. * Tue Oct 09 2007 Shu KONNO <owa@bg.wakwak.com> 8.2.5-0vl2
  260. - rebuild with tcl/tk-8.4.16
  261. * Wed Sep 19 2007 Shu KONNO <owa@bg.wakwak.com> 8.2.5-0vl1
  262. - updated postgresql to 8.2.5
  263. - updated jdbc driver to 8.2-506, and added 8.2-506.jdbc4.jar
  264. - updated nls-patch to 8-2-0
  265. - dropt postgresql-8.1.4-Pg.patch.gz
  266. * Wed Sep 19 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 8.1.10-0vl1
  267. - for VineSeed
  268. - updated to 8.1.10 (8.1.9 and up has fixes for CVE-2007-2138)
  269. - JDBC driver updated to 410
  270. * Sun Jul 1 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 8.1.5-0vl1
  271. - rebuilt for VineSeed
  272. - fixed install script
  273. * Thu Nov 23 2006 HOTTA Michihide <hotta@net-newbie.com> 8.1.5-0vl0
  274. - upstream release
  275. - fix missing %defattr in %files server
  276. * Fri Sep 15 2006 HOTTA Michihide <hotta@net-newbie.com> 8.1.4-0vl2
  277. - fix version number in postgresql.init
  278. * Tue Sep 12 2006 HOTTA Michihide <hotta@net-newbie.com> 8.1.4-0vl1
  279. - upstream release
  280. - drop rpm-pgsql-8.0.0.patch
  281. - add Requires: perl-DBD-Pg for contrib
  282. - add postgresql-8.1.4-Pg.patch.gz
  283. - update nls patches
  284. - new JDBC driver
  285. * Sat Mar 18 2006 Shu KONNO <owa@bg.wakwak.com> 8.0.3-0vl4
  286. - added build options --without perl, --without python
  287. - rebuilt for x86_64 architecture support
  288. * Tue May 31 2005 HOTTA Michihide <hotta@net-newbie.com> 8.0.3-0vl3
  289. - drop Provides: on postgresql-libs
  290. - drop Requires: libpq.so on postgresql-server
  291. * Tue May 31 2005 HOTTA Michihide <hotta@net-newbie.com> 8.0.3-0vl2
  292. - change SONAME -- Provides: libpq.so.4 libpq.so.4.0 libpq.so
  293. * Thu May 26 2005 HOTTA Michihide <hotta@net-newbie.com> 8.0.3-0vl1
  294. - upstream release
  295. - update nls patches
  296. * Fri Apr 22 2005 HOTTA Michihide <hotta@net-newbie.com> 8.0.2-0vl1
  297. - upstream release
  298. - update nls patches
  299. * Sun Apr 03 2005 Shu KONNO <owa@bg.wakwak.com> 8.0.1-0vl3
  300. - rebuilded with python-2.4.1-0vl1
  301. * Sat Mar 26 2005 Shu KONNO <owa@bg.wakwak.com> 8.0.1-0vl2
  302. - Dropped PyGreSQL-3.4.tgz.
  303. - Dropped PyGreSQL-3.4-setup-2.patch.
  304. - Dropped plpython.so in postgresql-server, because it's exist in postgresql-pl.
  305. - Dropped pyver and pynextver macros.
  306. - Changed macro name "python" to "plpython" like plperl.
  307. - Added "Obsoletes: postgresql-python"
  308. * Fri Feb 18 2005 HOTTA Michihide <hotta@net-newbie.com> 8.0.1-0vl1
  309. - Major version up
  310. - Obsoletes: postgresql7
  311. - update nls patch(es)
  312. - modify %postun not to delete postgres account on upgrade
  313. * Thu Jan 27 2005 HOTTA Michihide <hotta@net-newbie.com> 8.0.0-0vl1
  314. - upstream release (release as a new package)
  315. - Conflicts: postgresql
  316. - update nls patch(es)
  317. - (this package revision was rejected by Vine Project)
  318. * Sat Dec 04 2004 HOTTA Michihide <hotta@net-newbie.com> 7.4.6-0vl2
  319. - upstream release
  320. - new JDBC driver
  321. - add BuildRequires: bison, flex, pam-devel
  322. - drop postgresql-7.4.5-tempfile.patch (repaired)
  323. * Thu Nov 18 2004 IKEDA Katsumi <ikeda@webmasters.gr.jp> 7.4.5-0vl2
  324. - Added a security fix patch postgresql-7.4.5-tempfile.patch
  325. from Gentoo Linux (CAN-2004-0977).
  326. - Changed Patch4:
  327. from PyGreSQL-3.4-setup-2.patch into PyGreSQL-3.4-setup-2.patch
  328. It is possible to compile this package without pre-installed postgresql.
  329. - Removed Patch5 because Patch4 was changed.
  330. * Tue Aug 24 2004 HOTTA Michihide <hotta@net-newbie.com> 7.4.5-0vl1
  331. - upstream release
  332. * Mon Jun 21 2004 HOTTA Michihide <hotta@net-newbie.com> 7.4.3-0vl1
  333. - upstream release
  334. - new jdbc driver
  335. * Sat Apr 17 2004 Shu KONNO <owa@bg.wakwak.com> 7.4.2-0vl3
  336. - rebuild with python-2.3.3-0vl1
  337. * Tue Apr 13 2004 Shu KONNO <owa@bg.wakwak.com> 7.4.2-0vl2.3
  338. - changed mode to 644 at Makefile.global, Makefile.shlib
  339. * Mon Apr 12 2004 Shu KONNO <owa@bg.wakwak.com> 7.4.2-0vl2.2
  340. - updated python install section
  341. * Sat Apr 10 2004 Shu KONNO <owa@bg.wakwak.com> 7.4.2-0vl2.1
  342. - added PyGreSQL-3.4.tgz and set python flag
  343. - added PyGreSQL-3.4-setup.patch
  344. - added PyGreSQL-3.4-pgmodule.patch
  345. - rebuilded with python-2.3.3-0vl0.3 (for TestPkg)
  346. * Sun Mar 28 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 7.4.2-0vl2
  347. - rebuild with new openssl
  348. * Wed Mar 17 2004 HOTTA Michihide <hotta@net-newbie.com> 7.4.2-0vl1
  349. - upstream release
  350. - change all of %{?foo:%define foo 0} -like descriptions to simple
  351. %define format for latest rpm to build.
  352. * Sat Feb 14 2004 HOTTA Michihide <hotta@net-newbie.com> 7.4.1-0vl3
  353. - rebuild on latest tcl package environment.
  354. * Wed Feb 11 2004 HOTTA Michihide <hotta@net-newbie.com> 7.4.1-0vl2
  355. - fixed lacking files at server's %files
  356. * Fri Dec 05 2003 HOTTA Michihide <hotta@net-newbie.com> 7.4-0vl2
  357. - include JDBC driver for 7.4
  358. - fix typo in postgresql-7.4-psql-patch
  359. * Thu Nov 20 2003 HOTTA Michihide <hotta@net-newbie.com> 7.4-0vl1
  360. - upstream release
  361. - change '--includedir=' option to avoid conflicting with unixODBC
  362. - add postgresql-7.4-ecpg-patch
  363. * Wed Sep 10 2003 HOTTA Michihide <hotta@net-newbie.com> 7.3.4-0vl1
  364. - upstream release
  365. * Wed Jul 23 2003 HOTTA Michihide <hotta@net-newbie.com> 7.3.3-0vl2
  366. - drop previous version of libpq's trash
  367. * Wed May 28 2003 HOTTA Michihide <hotta@net-newbie.com> 7.3.3-0vl1
  368. - upstream release with new nls patch
  369. - fix postgresql-bashprofile (value of PGDATA)
  370. - fix postgresql-init for Japanese-specific use (-E EUC_JP --no-locale)
  371. * Wed Apr 02 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 7.3.2-0vl2
  372. - rebuild with tcltk8.4 and readline-4.3
  373. * Fri Mar 07 2003 HOTTA Michihide <hotta@net-newbie.com> 7.3.2-0vl1
  374. - upstream release
  375. * Wed Dec 25 2002 HOTTA Michihide <hotta@net-newbie.com> 7.3.1-0vl1
  376. - upstream release
  377. - remove garbage changelog
  378. * Mon Dec 23 2002 HOTTA Michihide <hotta@net-newbie.com> 7.3-0vl1
  379. - upstream release based on 7.3-2PGDG
  380. - add nls patch
  381. * Thu Dec 05 2002 Lamar Owen <lamar.owen@ramifordistat.net>
  382. - 7.3-2PGDG
  383. - Fix typo in initscript. Argh!!
  384. * Wed Dec 04 2002 Lamar Owen <lamar.owen@ramifordistat.net>
  385. - 7.3-0.5PGDG
  386. - Jerk out all perl client stuff and kludgage
  387. - Rename plperl subpackage to a pl subpackage containing all but PL/Pgsql PL's
  388. - Eliminate locale and multibyte explicit enables -- they are both defaults now
  389. - Eliminate pgaccess code; it's not a part of the main tarball anymore
  390. - Eliminate ODBC stuff -- it's also separate now. Use unixODBC instead.
  391. - Eliminated separate tk client package -- rolled the tk client into the tcl client.
  392. - Moved pltcl into the pl subpackage.
  393. - Added plpython to the pl subpackage.
  394. - /etc/sysconfig/pgsql is sysconfdir for multiple postmaster startup.
  395. * Mon Dec 02 2002 Lamar Owen <lamar.owen@ramifordistat.net>
  396. - 7.3-0.1PGDG (not released)
  397. - Integrate 7.3 jar's courtesy Joe Conway
  398. - Integrate multi-postmaster initscript courtesy Karl DeBisschop
  399. - Some renames and restructures.
  400. - Stripped out the last dregs of the postgresql-dump migration script.
  401. - Conflicts with less than 7.3.
  402. - (See below for old changelogs from VineSeed)
  403. * Fri Oct 04 2002 HOTTA Michihide <hotta@net-newbie.com> 7.2.3-0vl1
  404. - updated to 7.2.3.
  405. * Tue Sep 10 2002 HOTTA Michihide <hotta@net-newbie.com> 7.2.2-0vl3
  406. - absorbed previous patch8 into original nlspatch
  407. - fixed configure options (--enable-nls and --enable-locale to be antinomy)
  408. * Fri Aug 30 2002 Shoji Matsumoto <shom@vinelinux.org> 7.2.2-0vl2
  409. - add patch8 (ja.po for psql was invalid)
  410. * Thu Aug 29 2002 HOTTA Michihide <hotta@net-newbie.com> 7.2.2-0vl1
  411. - updated to 7.2.2.
  412. - improved nlspatch to enable japanese SQL help in psql.
  413. * Sat Jul 06 2002 HOTTA Michihide <hotta@net-newbie.com> 7.2.1-5vl3
  414. - fixed garbage chars in description(ja).
  415. * Wed Jul 03 2002 HOTTA Michihide <hotta@net-newbie.com> 7.2.1-5vl2
  416. - imported & replaced changelog (following VineSeed's).
  417. add some stuff to '%%files'.
  418. * Wed Jul 03 2002 HOTTA Michihide <hotta@net-newbie.com> 7.2.1-5vl1
  419. - Modified for Vine Linux 2.5. Originaly from RHL 7.2.1-5, adding
  420. nls patch, pg_dump patch, date_part patch by Jun Kuwamura
  421. * Thu May 23 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  422. - replace nls patch.
  423. - add *.mo to '%%files'.
  424. * Mon Mar 04 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  425. - fix initscript
  426. * Sun Mar 03 2002 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net>
  427. - add /usr/bin/pg_id to the package (fix)
  428. * Fri Mar 01 2002 Satoshi MACHINO <machino@vinelinux.org> 7.2-0vl1
  429. - updated 7.2
  430. - added nls.patch
  431. - fixed spec file
  432. - added New JDBC
  433. -- pgjdbc1.jar(for JDK1.1.x), pgjdbc2(for Java2)
  434. * Sat Sep 22 2001 Satoshi MACHINO <machino@vinelinux.org> 7.1.3-4vl1
  435. - updated 7.1.3
  436. * Tue Aug 21 2001 Hisao SHIBUYA <shibuya@alpha.or.jp>
  437. - 7.1.2-7vl3
  438. - merge 7.1.2-7vl2 and 7.1.2-7
  439. * Sun Aug 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  440. - 7.1.2-7vl2
  441. - fixed spec typo (%%{_includesir} -> %%{_includedir})
  442. * Tue Aug 14 2001 Satoshi MACHINO <machino@vinelinux.org> 7.1.2-7vl1
  443. - updated 7.1.2 (used postgresql-7.1.2-7)
  444. - used psqlj patch for 7.1.2
  445. - used jumbo-20010801.patch.gz
  446. * Mon Aug 6 2001 Trond Eivind Glomsr <teg@redhat.com> 7.1.2-7
  447. - Add patches from 7.1-stable branch. This should fix #50799 and #50797
  448. - Enable kerberos authentication (#50644)
  449. - handle stop with stale pid file (#50499)
  450. - make the test subpackage (not built by default) own /usr/lib/pgsql/test
  451. * Mon Jul 9 2001 Trond Eivind Glomsr <teg@redhat.com>
  452. - Make the -devel subpackage depend on -libs, not the main package
  453. * Tue Jun 19 2001 Trond Eivind Glomsr <teg@redhat.com>
  454. - Make sure the python subpackage depends on mx - otherwise, you'd get an error when importing
  455. * Mon Jun 18 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  456. - add changes for s390x
  457. * Fri Jun 15 2001 Trond Eivind Glomsr <teg@redhat.com>
  458. - Many path fixes for contrib packages
  459. - Newer intarray
  460. - Don't use nested ifs for tkpkg/pgaccess
  461. - Turn off test package for Red Hat Linux - it makes most sense just to use
  462. this during development
  463. - One "pgacess" -> "pgaccess"
  464. * Wed Jun 13 2001 Lamar Owen <lamar.owen@wgcr.org> <lamar@postgresql.org>
  465. - -4PGDG
  466. - patchset update for pg_regress.sh
  467. - can the dot in the release -- confused too many people and some programs.
  468. - -3.PGDG
  469. - updated README.rpm-dist
  470. - updated patch to 7.1.2, fixing some places where /usr/share/pgsql
  471. was still being used where /usr/lib/pgsql was intended.
  472. - PGLIB now set to /usr/lib/pgsql -- initdb doesn't use it to find the bki's.
  473. * Tue Jun 12 2001 Trond Eivind Glomsr <teg@redhat.com>
  474. - sync
  475. - Run chkconfig --add on server install
  476. - Move the prereqs on useradd on chkconfig to the server package
  477. - don't disable the %%clean section
  478. * Sat Jun 09 2001 Lamar Owen <lamar.owen@wgcr.org>
  479. - Sync up with Trond Eivind's set.
  480. * Thu Jun 7 2001 Trond Eivind Glomsr <teg@redhat.com>
  481. - Don't create postgres' .bashrc from the server post script: include it instead
  482. - Move the test packages from /usr/share/pgsql to /usr/lib/pgsql
  483. - Move the symlinks libpq.so, libecpg.so, libpq++.so and libpgeasy.so to the devel subpackage from
  484. libs
  485. - Source the i18n data from the .bashrc instead of in the initscript
  486. * Mon May 28 2001 Trond Eivind Glomsr <teg@redhat.com>
  487. - Handle i18n for database startup - backend needs to have the same locale everytime,
  488. but this certainly can't be hardcoded to C either
  489. - Fix stop, restart in initscript (#42217)
  490. - Make database init _much_ less verbose
  491. - other minor fixes to the initscript
  492. * Fri May 25 2001 Trond Eivind Glomsr <teg@redhat.com>
  493. - 7.1.2
  494. * Thu May 24 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  495. - 7.1.2-0.1.1.PGDG PRERELEASE
  496. - Changed versioning and release numbering a little for better flexibility,
  497. -- particularly for distribution packagers.
  498. - Release numbering comment at top of spec, where it's more useful.
  499. - Trimmed changelog to 7.1.x. See the last 7.0.3's specfile for the 7.0
  500. changlog, and the last 6.5.3's specfile for the changelog prior to
  501. 7.0.
  502. * Sun May 20 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  503. - 7.1.1-4.PGDG
  504. - _really_ got Python version agnosticism working.
  505. * Sat May 19 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  506. - 7.1.1-3.PGDG Release
  507. - Python version agnosticism.....
  508. * Tue May 15 2001 Trond Eivind Glomsr <teg@redhat.com>
  509. - Use openssl
  510. - Make it obsolete subpackages if they aren't built
  511. * Mon May 14 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  512. - 7.1.1-2.PGDG Release.
  513. - Appended .PGDG to release string to differentiate our RPM set from the others.
  514. - /bin/sh fix in initscript
  515. - README.rpm-dist updates.
  516. * Mon May 14 2001 Bernhard Rosenkraenzer <bero@redhat.com> 7.1.1-0.7
  517. - Rebuild with new readline
  518. * Thu May 10 2001 Trond Eivind Glomsr <teg@redhat.com>
  519. - Initial 7.1.1
  520. * Mon May 7 2001 Trond Eivind Glomsr <teg@redhat.com>
  521. - Specify shell when running commands through su in the initscript, to avoid problems
  522. when people switch the postgres user to use tcsh
  523. * Thu Apr 19 2001 Trond Eivind Glomsr <teg@redhat.com>
  524. - JDBC driver for Postgresql 7.1
  525. * Sun Apr 15 2001 Trond Eivind Glomsr <teg@redhat.com>
  526. - slightly different versioning scheming, will go back to the official
  527. later when I'm sure the package is ready to use
  528. * Fri Apr 13 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  529. - 7.1 RELEASE
  530. - 7.1-1 RPM RELEASE
  531. - Change to COPTS -- strip out -ffastmath -- Considered Harmful.
  532. - Back to old versioning scheme, kept teg's other fixes.
  533. - README.rpm-dist updated.
  534. - PGVERSION updated all-around (hopefully!)
  535. - Couple of fixes from Peter E.
  536. - Rearrange dependencies -- only the -libs subpackage is required for most stuff
  537. - Removed broken and confusing logrotate script.
  538. * Mon Apr 9 2001 Trond Eivind Glomsr <teg@redhat.com>
  539. - chown considered harmful - removed
  540. - fix dangling symlimks (pg_crc.c)
  541. - libpq.so changes for maximum compatiblity
  542. - different versioning scheme, to avoid trouble later
  543. - remove temporary perl file from the file list
  544. - fix spelling error in tcl description
  545. - mark odbcinst.ini as a config file
  546. - use %%defattr on packages which didn't have it
  547. * Sat Apr 07 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  548. - Integrated the PL/Perl stuff from Karl DeBisschop --conditional.
  549. - Packaging reorg: added contrib and docs subpackages.
  550. - Removed sgml source docs from main package --> docs subpackage.
  551. - Removed contrib tree from main package --> contrib subpackage.
  552. - Contrib tree is now prebuilt -- HOWEVER, very little install work is
  553. currently done with this.
  554. * Fri Apr 06 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  555. - Quickie RC3. There will be a 7.1RC3-2 shortly with other stuff.
  556. * Tue Apr 03 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  557. - RC2
  558. - eliminate versioning information for ancilliary files in prep for CVS.
  559. - Fix docs mixup.
  560. * Tue Mar 27 2001 Lamar Owen <lamar@postgresql.org> <lamar.owen@wgcr.org>
  561. - RC1 quickie.
  562. * Tue Mar 20 2001 Lamar Owen <lamar@postgresql.org>
  563. - Beta 6 initial build.
  564. - Use make install-all-headers instead of cpio hack for devel headers.
  565. - Split out the libs into the libs subpackage.
  566. - Updated initscript to use pg_ctl to stop
  567. - Updated initscript to initdb and start postmaster with LC_ALL=C to
  568. prevent index corruption.
  569. * Sun Jan 28 2001 Lamar Owen <lamar@postgresql.org>
  570. - Beta4
  571. - Return to 'pgsql' directories instead of 'postgresql'
  572. - Better perl patches.
  573. * Mon Jan 15 2001 Lamar Owen <lamar@postgresql.org>
  574. - Edit patches to get rid of some cruft.
  575. - Eliminate some more pre-7.1 specfile baggage that is no longer necessary.
  576. - Moved pg_id to server
  577. - added Makefile.global and pg_config to devel
  578. - Corrected /usr/include/pgsql to /usr/include/postgresql
  579. - Fixed some configure options. Will be trying the configure macro next release
  580. - Since it is terminally ill in this version pg_upgrade is _gone_.
  581. - Thanks to Peter E for a good review.
  582. * Sun Jan 14 2001 Lamar Owen <lamar@postgresql.org>
  583. - Running regression. 1 on the release-o-meter.
  584. - Minor patches to get regression running right.
  585. - Initscript tweaking -- the old test for a database structure fails with 7.1's new structure.
  586. * Sat Jan 13 2001 Lamar Owen <lamar@postgresql.org>
  587. - Perl 5 needs to be built with PREFIX set on the Makefile, not GNUmakefile....
  588. - The 7.1 build is different from the 7.0 build -- see the configure line.
  589. - NOTE: many files that used to be in /usr/share/postgresql are now in /usr/share/postgresql!
  590. - by request, conditional packages are now supported. See the top of the spec.
  591. - Fixed the server postinstall problems.
  592. * Mon Jan 08 2001 Lamar Owen <lamar@postgresql.org>
  593. - First 7.1 beta test-build