[arch-commits] Commit in flint/repos/community-x86_64 (4 files)

Antonio Rojas arojas at archlinux.org
Wed Sep 25 10:03:35 UTC 2019


    Date: Wednesday, September 25, 2019 @ 10:03:35
  Author: arojas
Revision: 511733

archrelease: copy trunk to community-x86_64

Added:
  flint/repos/community-x86_64/PKGBUILD
    (from rev 511732, flint/trunk/PKGBUILD)
  flint/repos/community-x86_64/flint-pie-hardening-conflict.patch
    (from rev 511732, flint/trunk/flint-pie-hardening-conflict.patch)
Deleted:
  flint/repos/community-x86_64/PKGBUILD
  flint/repos/community-x86_64/flint-pie-hardening-conflict.patch

------------------------------------+
 PKGBUILD                           |   64 +++++++++++++++++------------------
 flint-pie-hardening-conflict.patch |   34 +++++++++---------
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-09-25 10:02:56 UTC (rev 511732)
+++ PKGBUILD	2019-09-25 10:03:35 UTC (rev 511733)
@@ -1,32 +0,0 @@
-# Maintainer: Antonio Rojas <arojas at archlinux.org>
-# Contributor: Rémy Oudompheng <oudomphe at clipper.ens.fr>
-# Contributor: Alessandro "jakedust" Andrioni <jakedust at gmail.com>
-
-pkgname=flint
-pkgver=2.5.2
-pkgrel=27
-pkgdesc="A C library for doing number theory"
-arch=(x86_64)
-url="http://www.flintlib.org"
-license=(GPL)
-depends=(mpfr ntl)
-source=("http://www.flintlib.org/flint-$pkgver.tar.gz" flint-pie-hardening-conflict.patch)
-sha256sums=('cbf1fe0034533c53c5c41761017065f85207a1b770483e98b2392315f6575e87'
-            '0e8ba7b48d70c703e511d71d4e59b6b359273c480b01f02879ca0aaaaa5395c3')
-
-prepare() {
-  cd $pkgname-$pkgver
-# Fix build with PIE
-  patch -p1 -i ../flint-pie-hardening-conflict.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: flint/repos/community-x86_64/PKGBUILD (from rev 511732, flint/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-09-25 10:03:35 UTC (rev 511733)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Rémy Oudompheng <oudomphe at clipper.ens.fr>
+# Contributor: Alessandro "jakedust" Andrioni <jakedust at gmail.com>
+
+pkgname=flint
+pkgver=2.5.2
+pkgrel=28
+pkgdesc="A C library for doing number theory"
+arch=(x86_64)
+url="http://www.flintlib.org"
+license=(GPL)
+depends=(mpfr ntl)
+source=("http://www.flintlib.org/flint-$pkgver.tar.gz" flint-pie-hardening-conflict.patch)
+sha256sums=('cbf1fe0034533c53c5c41761017065f85207a1b770483e98b2392315f6575e87'
+            '0e8ba7b48d70c703e511d71d4e59b6b359273c480b01f02879ca0aaaaa5395c3')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with PIE
+  patch -p1 -i ../flint-pie-hardening-conflict.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: flint-pie-hardening-conflict.patch
===================================================================
--- flint-pie-hardening-conflict.patch	2019-09-25 10:02:56 UTC (rev 511732)
+++ flint-pie-hardening-conflict.patch	2019-09-25 10:03:35 UTC (rev 511733)
@@ -1,17 +0,0 @@
-Description: invoke $(CC) with -r and not -Wl,-r to fix FTBFS with PIE enabled
-Author: Logan Rosen <logan at ubuntu.com>
-Forwarded: yes
-
-diff --git a/Makefile.subdirs b/Makefile.subdirs
-index ec05fb0..f2d8b37 100644
---- a/Makefile.subdirs
-+++ b/Makefile.subdirs
-@@ -59,7 +59,7 @@ $(BUILD_DIR)/$(MOD_DIR)_%.o: %.c
- 	$(QUIET_CC) $(CC) $(CFLAGS) $(INCS) -c $< -o $@ -MMD -MP -MF "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$@"
- 
- $(MOD_LOBJ): $(LOBJS)
--	$(QUIET_CC) $(CC) $(ABI_FLAG) -Wl,-r $^ -o $@ -nostdlib
-+	$(QUIET_CC) $(CC) $(ABI_FLAG) -r $^ -o $@ -nostdlib
- 
- -include $(LOBJS:.lo=.d)
- 

Copied: flint/repos/community-x86_64/flint-pie-hardening-conflict.patch (from rev 511732, flint/trunk/flint-pie-hardening-conflict.patch)
===================================================================
--- flint-pie-hardening-conflict.patch	                        (rev 0)
+++ flint-pie-hardening-conflict.patch	2019-09-25 10:03:35 UTC (rev 511733)
@@ -0,0 +1,17 @@
+Description: invoke $(CC) with -r and not -Wl,-r to fix FTBFS with PIE enabled
+Author: Logan Rosen <logan at ubuntu.com>
+Forwarded: yes
+
+diff --git a/Makefile.subdirs b/Makefile.subdirs
+index ec05fb0..f2d8b37 100644
+--- a/Makefile.subdirs
++++ b/Makefile.subdirs
+@@ -59,7 +59,7 @@ $(BUILD_DIR)/$(MOD_DIR)_%.o: %.c
+ 	$(QUIET_CC) $(CC) $(CFLAGS) $(INCS) -c $< -o $@ -MMD -MP -MF "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$@"
+ 
+ $(MOD_LOBJ): $(LOBJS)
+-	$(QUIET_CC) $(CC) $(ABI_FLAG) -Wl,-r $^ -o $@ -nostdlib
++	$(QUIET_CC) $(CC) $(ABI_FLAG) -r $^ -o $@ -nostdlib
+ 
+ -include $(LOBJS:.lo=.d)
+ 



More information about the arch-commits mailing list