aqbanking-vl.spec 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. Name: aqbanking
  2. Summary: A library for online banking functions and financial data import/export
  3. Version: 6.2.10
  4. Release: 1%{?_dist_release}
  5. Group: system
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: GPLv2 or GPLv3
  9. URL: https://www.aquamaniac.de/sites/aqbanking/index.php
  10. # https://www.aquamaniac.de/rdm/projects/aqbanking/files
  11. Source: %{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. # qbanking
  14. BuildRequires: gwenhywfar-devel >= 3.10.0
  15. BuildRequires: gmp-devel
  16. BuildRequires: xmlsec1-gnutls
  17. BuildRequires: xmlsec1-gnutls-devel
  18. BuildRequires: gettext
  19. BuildRequires: libtool
  20. BuildRequires: libtool-ltdl-devel
  21. Obsoletes: aqhbci <= 1.0.3
  22. Obsoletes: g2banking < 3.7.2-1
  23. Obsoletes: python-aqbanking
  24. Obsoletes: qbanking < 5.0.0
  25. Obsoletes: q4banking < 5.0.0
  26. %description
  27. The intention of AqBanking is to provide a middle layer between the
  28. program and the various Online Banking libraries (e.g. AqHBCI). The
  29. first backend which is already supported is AqHBCI, a library which
  30. implements a client for the German HBCI (Home Banking Computer
  31. Interface) protocol. Additionally, Aqbanking provides various plugins
  32. to simplify import and export of financial data. Currently there are
  33. import plugins for the following formats: DTAUS (German financial
  34. format), SWIFT (MT940 and MT942).
  35. %package devel
  36. Summary: Development headers for Aqbanking
  37. Group: programming
  38. Requires: %{name} = %{version}-%{release}
  39. Requires: pkgconfig
  40. # for %{_datadir}/aclocal
  41. Requires: automake
  42. Obsoletes: aqhbci-devel <= 1.0.3
  43. Obsoletes: g2banking-devel < %{version}
  44. Obsoletes: qbanking-devel < 5.0.0
  45. Obsoletes: q4banking-devel < 5.0.0
  46. %description devel
  47. This package contains aqbanking-config and header files for writing and
  48. compiling programs using Aqbanking.
  49. %debug_package
  50. %prep
  51. %setup -q
  52. # hack to nuke rpaths, slighly less ugly than using overriding LIBTOOL below
  53. %if "%{_libdir}" != "/usr/lib"
  54. sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure
  55. %endif
  56. %build
  57. LIBS="-lxmlsec1-gnutls -lxmlsec1-gcrypt -lltdl"
  58. %configure \
  59. --disable-static \
  60. --enable-gui-tests=no \
  61. --with-build-datetime=`date +\"%Y%m%d\"`
  62. # not smp_mflags safe
  63. make
  64. %install
  65. rm -rf $RPM_BUILD_ROOT
  66. make DESTDIR=$RPM_BUILD_ROOT install
  67. find $RPM_BUILD_ROOT -name *.la -exec rm -f {} \;
  68. find $RPM_BUILD_ROOT -name *.a -exec rm -f {} \;
  69. mkdir -p $RPM_BUILD_ROOT/%{_datadir}/doc/%{name}-%{version}
  70. mv $RPM_BUILD_ROOT/%{_datadir}/doc/aqbanking $RPM_BUILD_ROOT/%{_datadir}/doc/%{name}-%{version}
  71. cp AUTHORS README ChangeLog NEWS $RPM_BUILD_ROOT/%{_datadir}/doc/%{name}-%{version}
  72. pushd tutorials
  73. make clean
  74. rm -rf .deps
  75. rm -f Makefile*
  76. popd
  77. %find_lang %{name}
  78. %clean
  79. rm -rf $RPM_BUILD_ROOT
  80. %files -f %{name}.lang
  81. %defattr(-,root,root)
  82. %license COPYING
  83. %doc %{_docdir}/%{name}-%{version}
  84. %{_libdir}/libaq*.so.*
  85. %{_libdir}/aqbanking/plugins/*/bankinfo/
  86. %{_libdir}/aqbanking/plugins/*/imexporters/
  87. %{_libdir}/aqbanking/plugins/*/providers/
  88. %{_libdir}/aqbanking/plugins/*/dbio/*
  89. %{_datadir}/aqbanking/backends/
  90. %{_datadir}/aqbanking/bankinfo/
  91. %{_datadir}/aqbanking/dialogs/
  92. %{_datadir}/aqbanking/imexporters/
  93. %{_bindir}/aqbanking-cli
  94. %{_bindir}/aqebics-tool
  95. %{_bindir}/aqhbci-tool4
  96. %{_bindir}/aqpaypal-tool
  97. %files devel
  98. %defattr(-,root,root)
  99. %doc doc/0[12]* tutorials
  100. %{_bindir}/aqbanking-config
  101. %{_libdir}/libaq*.so
  102. %{_includedir}/aq*/
  103. %{_libdir}/pkgconfig/aqbanking.pc
  104. %{_libdir}/cmake/*
  105. %{_datadir}/aclocal/aqbanking.m4
  106. %{_datadir}/aqbanking/aqbanking/typemaker2/
  107. %{_datadir}/aqbanking/typemaker2/
  108. %changelog
  109. * Fri Apr 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2.10-1
  110. - new upstream release.
  111. - dropped ldconfig scriptlets.
  112. * Sat Feb 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2.8-1
  113. - new upstream release.
  114. * Wed Sep 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.7.8-1
  115. - new upstream release.
  116. - dropped Patch3.
  117. * Sat Jul 09 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.0.25-3
  118. - rebuild with gcc-5.4.0
  119. * Sat Dec 13 2014 Ryoichi INAGAKI <ryo1@toki.waseda.ac.jp> 5.0.25-2
  120. - rebuilt with gmp 5.1.3
  121. * Sun Sep 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.0.25-1
  122. - new upstream release
  123. - remove Patch2 (aqbanking-4.2.4-pkgconfig.patch)
  124. - remove Patch4 (aqbanking-4.2.4-q4banking_remove_qt3.patch)
  125. - remove qbanking, qbanking-devel q4banking, q4banking-devel subpackages (based on Fedora)
  126. * Mon Sep 27 2010 Shu KONNO <owa@bg.wakwak.com> 4.2.4-2
  127. - rebuilt with rpm-4.8.1 for pkg-config
  128. * Mon Sep 13 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.2.4-1
  129. - update to 4.2.4
  130. - added q4banking subpackage
  131. - obsoletes python-aqbanking subpackage
  132. * Sat Oct 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.7.1-1
  133. - update to 3.7.2
  134. - obsolete the no-longer-existing g2banking/kbanking packages
  135. * Mon Jan 21 2008 NAKAMURA Kenta <kenta@vinelinux.org> 2.3.3-0vl1
  136. - update to 2.3.3
  137. * Sat Dec 29 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.3.2-2vl1
  138. - modify and build for VineSeed
  139. * Wed Aug 29 2007 Bill Nottingham <notting@redhat.com> - 2.3.2-2
  140. - Rebuild for selinux ppc32 issue.
  141. - fix build with current glibc/headers
  142. * Fri Aug 3 2007 Bill Nottingham <notting@redhat.com>
  143. - tweak license tag
  144. * Wed Jul 11 2007 Bill Nottingham <notting@redhat.com> - 2.3.2-1
  145. - update to 2.3.2
  146. * Mon Jun 25 2007 Bill Nottingham <notting@redhat.com> - 2.2.9-3
  147. - fix some build bogosity
  148. * Wed Jun 20 2007 Bill Nottingham <notting@redhat.com> - 2.2.9-2
  149. - add a dist tag
  150. * Mon Mar 19 2007 Bill Nottingham <notting@redhat.com> - 2.2.9-1
  151. - update to 2.2.9
  152. * Wed Jan 17 2007 Bill Nottingham <notting@redhat.com> - 2.1.0-14
  153. - fix docdir, obsoletes for aqhbci-devel, and %%clean
  154. * Tue Jan 16 2007 Bill Nottingham <notting@redhat.com> - 2.1.0-13
  155. - fix docs
  156. - add PyXML buildreq
  157. * Mon Jan 15 2007 Bill Nottingham <notting@redhat.com> - 2.1.0-12
  158. - fix missing %%defattrs
  159. - fix %%excludes
  160. - other cleanups from review
  161. - use %%{_python_sitelib}
  162. - require automake
  163. - twiddle aqhbci obsoletes
  164. * Sat Jan 13 2007 Bill Nottingham <notting@redhat.com> - 2.1.0-11
  165. - split into a variety of packages
  166. * Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 2.1.0-10
  167. - rebuild for python 2.5
  168. * Thu Sep 7 2006 Bill Nottingham <notting@redhat.com> - 2.1.0-9
  169. - rebuild for fixed debuginfo (#205248)
  170. * Fri Sep 1 2006 Bill Nottingham <notting@redhat.com> - 2.1.0-8
  171. - fix multilib conficts (#205204)
  172. * Mon Aug 28 2006 Bill Nottingham <notting@redhat.com> - 2.1.0-4
  173. - rebuild against latest libofx
  174. * Tue Aug 1 2006 Bill Nottingham <notting@redhat.com> - 2.1.0-3
  175. - reenable visibility
  176. * Fri Jul 14 2006 Bill Nottingham <notting@redhat.com> - 2.1.0-2
  177. - port *-config to pkgconfig
  178. - don't use -fvisibility=hidden
  179. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.1.0-1.1
  180. - rebuild
  181. * Tue Jul 11 2006 Bill Nottingham <notting@redhat.com> - 2.1.0-1
  182. - update to 2.1.0
  183. * Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> - 1.8.1beta-5
  184. - buildreq autoconf, libtool
  185. * Tue May 30 2006 Bill Nottingham <notting@redhat.com> - 1.8.1beta-4
  186. - add gettext buildreq (#193348)
  187. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.8.1beta-3.1
  188. - bump again for double-long bug on ppc(64)
  189. * Tue Feb 07 2006 Karsten Hopp <karsten@redhat.de> 1.8.1beta-3
  190. - buildrequire libofx-devel instead of libofx (pulls in libofx)
  191. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.8.1beta-2.1
  192. - rebuilt for new gcc4.1 snapshot and glibc changes
  193. * Sun Jan 22 2006 Bill Nottingham <notting@redhat.com> 1.8.1beta-2
  194. - add an obsolete (#178554)
  195. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  196. - rebuilt
  197. * Mon Mar 7 2005 Bill Nottingham <notting@redhat.com> 1.0.4beta-2
  198. - rebuild
  199. * Wed Feb 9 2005 Bill Nottingham <notting@redhat.com> 1.0.4beta-1
  200. - initial packaging, adopt upstream specfile