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 7194E138334 for ; Tue, 11 Sep 2018 14:45:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B61DE0BF9; Tue, 11 Sep 2018 14:45:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2632CE0BF9 for ; Tue, 11 Sep 2018 14:45:45 +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 0BF50335D59 for ; Tue, 11 Sep 2018 14:45:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EEAE53D1 for ; Tue, 11 Sep 2018 14:45:41 +0000 (UTC) From: "Martin Mokrejs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Martin Mokrejs" Message-ID: <1536677121.5bd33921d60b0f5dbf2eef66a41bcd02cdc45a01.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-lua/lua-md5/, dev-lua/lua-md5/files/ X-VCS-Repository: proj/sci X-VCS-Files: dev-lua/lua-md5/files/lua-md5-1.2-respect-DESTDIR.patch dev-lua/lua-md5/lua-md5-1.2.ebuild dev-lua/lua-md5/metadata.xml X-VCS-Directories: dev-lua/lua-md5/ dev-lua/lua-md5/files/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: 5bd33921d60b0f5dbf2eef66a41bcd02cdc45a01 X-VCS-Branch: master Date: Tue, 11 Sep 2018 14:45:41 +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: d8c4616d-d501-4757-aac5-ca1a6e6577d4 X-Archives-Hash: a3e5408de8b958a31de1ded202da051c commit: 5bd33921d60b0f5dbf2eef66a41bcd02cdc45a01 Author: Martin Mokrejs fold natur cuni cz> AuthorDate: Tue Sep 11 14:41:35 2018 +0000 Commit: Martin Mokrejs fold natur cuni cz> CommitDate: Tue Sep 11 14:45:21 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5bd33921 dev-lua/lua-md5: new package needed by sci-biology/genometools I am not interested in maintaining this any further. Package-Manager: Portage-2.3.48, Repoman-2.3.10 .../files/lua-md5-1.2-respect-DESTDIR.patch | 19 ++++++++++++++++ dev-lua/lua-md5/lua-md5-1.2.ebuild | 25 ++++++++++++++++++++++ dev-lua/lua-md5/metadata.xml | 8 +++++++ 3 files changed, 52 insertions(+) diff --git a/dev-lua/lua-md5/files/lua-md5-1.2-respect-DESTDIR.patch b/dev-lua/lua-md5/files/lua-md5-1.2-respect-DESTDIR.patch new file mode 100644 index 000000000..9f7e71027 --- /dev/null +++ b/dev-lua/lua-md5/files/lua-md5-1.2-respect-DESTDIR.patch @@ -0,0 +1,19 @@ +--- Makefile.ori 2018-09-11 16:35:19.884248326 +0200 ++++ Makefile 2018-09-11 16:35:22.214321658 +0200 +@@ -22,11 +22,11 @@ + $(CC) $(CFLAGS) $(LIB_OPTION) -o src/$(DES56_LIBNAME) $(DES56_OBJS) $(COMPAT52_OBJS) + + install: src/$(MD5_LIBNAME) src/$(DES56_LIBNAME) +- mkdir -p $(LUA_LIBDIR)/md5 +- cp src/$(MD5_LIBNAME) $(LUA_LIBDIR)/md5/core.so +- mkdir -p $(LUA_DIR) +- cp $(MD5_LUAS) $(LUA_DIR) +- cp src/$(DES56_LIBNAME) $(LUA_LIBDIR) ++ mkdir -p $(DESTDIR)/$(LUA_LIBDIR)/md5 ++ cp src/$(MD5_LIBNAME) $(DESTDIR)/$(LUA_LIBDIR)/md5/core.so ++ mkdir -p $(DESTDIR)/$(LUA_DIR) ++ cp $(MD5_LUAS) $(DESTDIR)/$(LUA_DIR) ++ cp src/$(DES56_LIBNAME) $(DESTDIR)/$(LUA_LIBDIR) + + clean: + rm -f $(MD5_OBJS) src/$(MD5_LIBNAME) $(DES56_OBJS) src/$(DES56_LIBNAME) $(COMPAT52_OBJS) diff --git a/dev-lua/lua-md5/lua-md5-1.2.ebuild b/dev-lua/lua-md5/lua-md5-1.2.ebuild new file mode 100644 index 000000000..14a644702 --- /dev/null +++ b/dev-lua/lua-md5/lua-md5-1.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils + +DESCRIPTION="Basic cryptographic facilities for Lua 5.0, 5.1 or 5.2" +HOMEPAGE="http://keplerproject.github.io/md5" +SRC_URI="https://github.com/keplerproject/md5/archive/v1.2.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +S="${WORKDIR}"/md5-"${PV}" + +src_prepare(){ + epatch "${FILESDIR}"/lua-md5-1.2-respect-DESTDIR.patch + default +} diff --git a/dev-lua/lua-md5/metadata.xml b/dev-lua/lua-md5/metadata.xml new file mode 100644 index 000000000..4163b4b2a --- /dev/null +++ b/dev-lua/lua-md5/metadata.xml @@ -0,0 +1,8 @@ + + + + + mmokrejs@fold.natur.cuni.cz + Martin Mokrejs + +