[arch-commits] Commit in libfbclient/repos/extra-x86_64 (4 files)
Antonio Rojas
arojas at archlinux.org
Wed Feb 3 07:25:11 UTC 2021
Date: Wednesday, February 3, 2021 @ 07:25:11
Author: arojas
Revision: 407124
archrelease: copy trunk to extra-x86_64
Added:
libfbclient/repos/extra-x86_64/LICENSE
(from rev 407123, libfbclient/trunk/LICENSE)
libfbclient/repos/extra-x86_64/PKGBUILD
(from rev 407123, libfbclient/trunk/PKGBUILD)
Deleted:
libfbclient/repos/extra-x86_64/LICENSE
libfbclient/repos/extra-x86_64/PKGBUILD
----------+
LICENSE | 88 +++++++++++++++++++++++++++++-----------------------------
PKGBUILD | 92 ++++++++++++++++++++++++++++++-------------------------------
2 files changed, 90 insertions(+), 90 deletions(-)
Deleted: LICENSE
===================================================================
--- LICENSE 2021-02-03 07:25:01 UTC (rev 407123)
+++ LICENSE 2021-02-03 07:25:11 UTC (rev 407124)
@@ -1,44 +0,0 @@
-
-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/extra-x86_64/LICENSE (from rev 407123, libfbclient/trunk/LICENSE)
===================================================================
--- LICENSE (rev 0)
+++ LICENSE 2021-02-03 07:25:11 UTC (rev 407124)
@@ -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.
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2021-02-03 07:25:01 UTC (rev 407123)
+++ PKGBUILD 2021-02-03 07:25:11 UTC (rev 407124)
@@ -1,46 +0,0 @@
-# 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.6.33328
-pkgrel=1
-pkgdesc="Client library for Firebird"
-arch=('x86_64')
-url="https://www.firebirdsql.org/"
-license=('custom')
-depends=('gcc-libs' 'libtommath')
-source=(https://github.com/FirebirdSQL/firebird/releases/download/R3_0_6/Firebird-$pkgver-0.tar.bz2
- LICENSE)
-sha512sums=('e8fabb9b4e3e9c8f6a1ae5566f94b64d268cc3264b486650246ab6214baf3f073e8e77c009b92f8061dc3ad9c5d4da0dc5c5c1817b66b8bc7f41ac40cf82f62b'
- '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
-}
Copied: libfbclient/repos/extra-x86_64/PKGBUILD (from rev 407123, libfbclient/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2021-02-03 07:25:11 UTC (rev 407124)
@@ -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.7.33374
+pkgrel=1
+pkgdesc="Client library for Firebird"
+arch=('x86_64')
+url="https://www.firebirdsql.org/"
+license=('custom')
+depends=('gcc-libs' 'libtommath')
+source=(https://github.com/FirebirdSQL/firebird/releases/download/R3_0_7/Firebird-$pkgver-0.tar.bz2
+ LICENSE)
+sha512sums=('ee89cda6d9ace16419515689ed245fbd1bb0e2464bd2d50637e0f474a6aca2e5b86e874ce8bd9714431705a93c038d46de6be1806f0c37d236880a855e725943'
+ '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