From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9FD3A139085 for ; Sat, 4 Feb 2017 21:22:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D992E21C0CA; Sat, 4 Feb 2017 21:22:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA56F21C0CA for ; Sat, 4 Feb 2017 21:22:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D922334162D for ; Sat, 4 Feb 2017 21:22:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DC3B3DC9 for ; Sat, 4 Feb 2017 21:22:04 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1486243214.f70e54d6e6cd2e3780da0fe512a2e12f92ee516c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/gpart/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/gpart/files/gpart-0.1h-PIC.patch sys-block/gpart/files/gpart-0.1h-no-_syscall.patch X-VCS-Directories: sys-block/gpart/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f70e54d6e6cd2e3780da0fe512a2e12f92ee516c X-VCS-Branch: master Date: Sat, 4 Feb 2017 21:22:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a5c62755-6cb8-4fa3-9be1-e9c3b44677da X-Archives-Hash: d19a42dcd22dfbcf875be7f73815046c commit: f70e54d6e6cd2e3780da0fe512a2e12f92ee516c Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Fri Feb 3 15:17:38 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Feb 4 21:20:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f70e54d6 sys-block/gpart: remove unused patches Closes: https://github.com/gentoo/gentoo/pull/3791 sys-block/gpart/files/gpart-0.1h-PIC.patch | 20 -------------------- sys-block/gpart/files/gpart-0.1h-no-_syscall.patch | 15 --------------- 2 files changed, 35 deletions(-) diff --git a/sys-block/gpart/files/gpart-0.1h-PIC.patch b/sys-block/gpart/files/gpart-0.1h-PIC.patch deleted file mode 100644 index e810bd9..00000000 --- a/sys-block/gpart/files/gpart-0.1h-PIC.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- gpart-0.1h/src/l64seek.c -+++ gpart-0.1h/src/l64seek.c -@@ -26,7 +26,7 @@ - } ostck[OSTACKLEN]; - static int osptr = -1; - --#if defined(__linux__) && defined(__i386__) -+#if defined(__linux__) && defined(__i386__) && ! defined(__PIC__) - _syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh) - #endif - -@@ -36,7 +36,7 @@ - { - off64_t ret = (off64_t)-1; - --#if defined(__linux__) && defined(__i386__) -+#if defined(__linux__) && defined(__i386__) && ! defined(__PIC__) - int iret; - unsigned long ohi, olo; - diff --git a/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch b/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch deleted file mode 100644 index fe68d08..00000000 --- a/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch +++ /dev/null @@ -1,15 +0,0 @@ -use syscall() rather than _syscall#() - -http://bugs.gentoo.org/163800 - ---- src/l64seek.c -+++ src/l64seek.c -@@ -27,7 +27,7 @@ - static int osptr = -1; - - #if defined(__linux__) && defined(__i386__) && ! defined(__PIC__) --_syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh) -+#define _llseek(fd,hi,lo,res,wh) syscall(__NR__llseek,fd,hi,lo,res,wh) - #endif - -