[arch-commits] Commit in libfbclient/repos (3 files)

Felix Yan felixonmars at archlinux.org
Fri Feb 1 19:10:14 UTC 2019


    Date: Friday, February 1, 2019 @ 19:10:13
  Author: felixonmars
Revision: 345014

archrelease: copy trunk to testing-x86_64

Added:
  libfbclient/repos/testing-x86_64/
  libfbclient/repos/testing-x86_64/LICENSE
    (from rev 345013, libfbclient/trunk/LICENSE)
  libfbclient/repos/testing-x86_64/PKGBUILD
    (from rev 345013, libfbclient/trunk/PKGBUILD)

----------+
 LICENSE  |   44 ++++++++++++++++++++++++++++++++++++++++++++
 PKGBUILD |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 90 insertions(+)

Copied: libfbclient/repos/testing-x86_64/LICENSE (from rev 345013, libfbclient/trunk/LICENSE)
===================================================================
--- testing-x86_64/LICENSE	                        (rev 0)
+++ testing-x86_64/LICENSE	2019-02-01 19:10:13 UTC (rev 345014)
@@ -0,0 +1,44 @@
+
+LICENSES
+--------
+
+The applicable and approved licenses for the source files
+of the Firebird RDBMS project are:
+
+  1) InterBase Public License (IPL), version 1.0
+     http://bdn.borland.com/article/0,1410,30198,00.html
+
+  2) Initial Developer's Public License (IDPL), version 1.0
+     http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl
+
+The IPL is copyright of Borland Corp., the other licenses are copyright
+by the source code authors and contributors.
+
+
+USAGE RULES
+-----------
+
+1) The source code which was released under the IPL must keep this license.
+   All modifications / adaptations of this code are still subjects of the IPL.
+
+2) The files that are derived from the IPL covered code, must also keep
+   this license. It means that if any new file contains some code covered by
+   the IPL, then this file should be released under the IPL too.
+
+3) The new files developed by the members of the Firebird project should
+   be released under the IDPL.
+
+4) The new files contributed by people who are not members of the Firebird
+   project should follow the rule #3. If an author (initial developer) doesn't
+   specify the license to be used, the person who applies the contributed code
+   to the CVS tree (a committer) becomes responsible for the license assigned
+   to the contributed code.
+
+5) Every non-binary file that exists in the CVS tree, should have a header
+   section which describes the license this code is released under. If a file
+   contains no header, it means that this code is freeware and nobody owns the
+   appropriate copyrights.
+
+
+You may find the exhibits for the approved licenses in /doc/license directory
+of the CVS tree.

Copied: libfbclient/repos/testing-x86_64/PKGBUILD (from rev 345013, libfbclient/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2019-02-01 19:10:13 UTC (rev 345014)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Carlier Laurent <lordheavym at gmail.com>
+# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
+
+pkgname=libfbclient
+pkgver=3.0.4.33054
+pkgrel=1
+pkgdesc="Client library for Firebird"
+arch=('x86_64')
+url="http://www.firebirdsql.org/"
+license=('custom')
+depends=('gcc-libs' 'libtommath')
+source=(https://github.com/FirebirdSQL/firebird/releases/download/R3_0_4/Firebird-$pkgver-0.tar.bz2
+        LICENSE)
+sha512sums=('a346ebd53aeccf0b33eac5d35c3c3356624c1fbd0ad897173b3f68d940143062b28460a2822df807e8e8a1ea8792ebf98ed33e5b3ae273d86e6e36295a7fc8ad'
+            '1e4c24f60d2cdc1a89b52b45f778ed264ae14428a940b0509ca5c50182aed6149b7a6a546e7d08b0f264bafde81a210abe20db204c20db596f5fc2ec205ac37e')
+
+build() {
+  cd Firebird-$pkgver-0
+
+  ./configure --prefix=/usr --without-fbudf \
+    --without-fbsbin --without-fbconf --without-fbdoc --without-fbsample \
+    --without-fbsample-db --without-fbintl --without-fbmisc --without-fbhelp \
+    --without-fbsecure-db --with-fbmsg=/usr/share/firebird --without-fblog \
+    --without-fbglock --without-fbplugins
+
+  make
+}
+
+package() {
+  cd Firebird-$pkgver-0
+
+  mkdir -p "$pkgdir"/usr/{bin,share/{firebird,licenses/$pkgname}}
+
+  cp -R gen/Release/firebird/{lib,include} "$pkgdir"/usr
+  rm -f "$pkgdir"/usr/lib/libedit.a
+
+  install -m644 gen/Release/firebird/*.msg "$pkgdir"/usr/share/firebird
+  install -m755 gen/Release/firebird/bin/fb_config "$pkgdir"/usr/bin
+  install -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Add libgds support FS#30062 FS#30282
+  cd "$pkgdir"/usr/lib
+  ln -s libfbclient.so libgds.so.0
+  ln -s libfbclient.so libgds.so
+}



More information about the arch-commits mailing list