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 55E5F138330 for ; Mon, 28 May 2018 17:46:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 139EBE0801; Mon, 28 May 2018 17:46:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DCE6CE0801 for ; Mon, 28 May 2018 17:46:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 045E9335C43 for ; Mon, 28 May 2018 17:46:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55A4D29B for ; Mon, 28 May 2018 17:46:34 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1527529592.08f0883bb996cc0e3a95a4c27ff99d3789f5b500.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/osicat/files/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/osicat/files/0.5.0-gentoo.patch X-VCS-Directories: dev-lisp/osicat/files/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 08f0883bb996cc0e3a95a4c27ff99d3789f5b500 X-VCS-Branch: master Date: Mon, 28 May 2018 17:46:34 +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: 439f4546-f7af-4c2d-99f8-7e8c810ab5b2 X-Archives-Hash: 7de90cc0be634a6950da2c7fabecd54d commit: 08f0883bb996cc0e3a95a4c27ff99d3789f5b500 Author: Chema Alonso Josa gentoo org> AuthorDate: Mon May 28 17:46:32 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon May 28 17:46:32 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=08f0883b dev-lisp/osicat: Drop uneeded patch dev-lisp/osicat/files/0.5.0-gentoo.patch | 48 -------------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-lisp/osicat/files/0.5.0-gentoo.patch b/dev-lisp/osicat/files/0.5.0-gentoo.patch deleted file mode 100644 index 42ef24e4..00000000 --- a/dev-lisp/osicat/files/0.5.0-gentoo.patch +++ /dev/null @@ -1,48 +0,0 @@ -diff -uw osicat_0.5.0.orig/osicat.asd osicat_0.5.0/osicat.asd ---- osicat_0.5.0.orig/osicat.asd 2005-10-07 00:25:31.000000000 +0200 -+++ osicat_0.5.0/osicat.asd 2008-07-10 01:36:06.000000000 +0200 -@@ -31,17 +31,21 @@ - #+darwin "-dynamiclib" - "-fPIC")) - --(defmethod output-files ((o compile-op) (c c-source-file)) -+(defclass osicat-c-source-file (cl-source-file) ()) -+ -+(defmethod source-file-type ((c osicat-c-source-file) (s module)) "c") -+ -+(defmethod output-files ((o compile-op) (c osicat-c-source-file)) - (list (make-pathname :name (component-name c) - :type "so" - :defaults (component-pathname c)))) - --(defmethod perform ((o load-op) (c c-source-file)) -+(defmethod perform ((o load-op) (c osicat-c-source-file)) - (let ((loader (intern "LOAD-FOREIGN-LIBRARY" :uffi))) - (dolist (file (asdf::input-files o c)) - (funcall loader file :module "osicat" :force-load t)))) - --(defmethod perform ((o compile-op) (c c-source-file)) -+(defmethod perform ((o compile-op) (c osicat-c-source-file)) - (unless (zerop (run-shell-command "~A ~A ~{~A ~}-o ~A" - *gcc* - (namestring (component-pathname c)) -@@ -72,7 +76,7 @@ - :version "0.5.0" - :depends-on (:uffi) - :components -- ((:c-source-file "osicat-glue") -+ ((:osicat-c-source-file "osicat-glue") - (:file "packages") - (:grovel-file "grovel-constants" :depends-on ("packages")) - (:file "early-util" :depends-on ("packages")) -diff -uw osicat_0.5.0.orig/osicat-glue.c osicat_0.5.0/osicat-glue.c ---- osicat_0.5.0.orig/osicat-glue.c 2005-10-07 00:25:31.000000000 +0200 -+++ osicat_0.5.0/osicat-glue.c 2008-07-10 01:36:29.000000000 +0200 -@@ -26,6 +26,7 @@ - #include - #include - #include -+#include - - extern int - osicat_mode (char * name, int follow_p)