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 77FAF13835A for ; Sat, 28 Nov 2020 23:59:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62653E087F; Sat, 28 Nov 2020 23:59:56 +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 49B53E087F for ; Sat, 28 Nov 2020 23:59:56 +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 019F43412C4 for ; Sat, 28 Nov 2020 23:59:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F89046B for ; Sat, 28 Nov 2020 23:59:53 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1606607957.79580bac1382aa10ef091c1b01f5da5b69c2aee2.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-utf8/, dev-lua/lua-utf8/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/lua-utf8/Manifest dev-lua/lua-utf8/files/lua-utf8.Makefile dev-lua/lua-utf8/lua-utf8-0.1.1.ebuild X-VCS-Directories: dev-lua/lua-utf8/files/ dev-lua/lua-utf8/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 79580bac1382aa10ef091c1b01f5da5b69c2aee2 X-VCS-Branch: master Date: Sat, 28 Nov 2020 23:59:53 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 574cccb7-9356-4fff-92ca-05e8b2f101d8 X-Archives-Hash: b0d1807c1e615cf50d5d5c044b539e1d commit: 79580bac1382aa10ef091c1b01f5da5b69c2aee2 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Nov 28 23:57:38 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Nov 28 23:59:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79580bac dev-lua/lua-utf8: drop old version Closes: https://bugs.gentoo.org/730464 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-lua/lua-utf8/Manifest | 1 - dev-lua/lua-utf8/files/lua-utf8.Makefile | 42 ------------------------------ dev-lua/lua-utf8/lua-utf8-0.1.1.ebuild | 44 -------------------------------- 3 files changed, 87 deletions(-) diff --git a/dev-lua/lua-utf8/Manifest b/dev-lua/lua-utf8/Manifest index b31cd98e6e8..922b0276858 100644 --- a/dev-lua/lua-utf8/Manifest +++ b/dev-lua/lua-utf8/Manifest @@ -1,2 +1 @@ -DIST lua-utf8-0.1.1.tar.gz 35475 BLAKE2B 99ffece901878fc966e0314886ca20255834c76b9266b1806acda7afb84d6a358c556b9a88c10497d2874d7902fac5905907ab25fefb4ba38544d46e3bae1471 SHA512 e0a8632b9391c7e7b35e371f4e95899ec58adb4988f1fe5a7101310f7c774c3a3e88073f156cf7799c57f69c0fc53aff4486beb1e7006bfaa96d86e248e38897 DIST lua-utf8-0.1.3.tar.gz 41830 BLAKE2B 72982c7ec8d8837e391fa6bfb689c1e9f4a7746d0cbc058556f06027b4af00c936036f87baf58f45e1169fd3ea7e6d8174629d5a7279205622cf0710971ca29c SHA512 d0abe73fecbfeba36083c135d77962d953ad9e431721a2557669c912a2703e31c46f84f2ee9ee4ac966a5bcc88d4daef930f8d2d8e72106fa61010509c183e29 diff --git a/dev-lua/lua-utf8/files/lua-utf8.Makefile b/dev-lua/lua-utf8/files/lua-utf8.Makefile deleted file mode 100644 index 456c52f4aaa..00000000000 --- a/dev-lua/lua-utf8/files/lua-utf8.Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# this file builds lua-utf8 - -MY_USE_LUA?=luajit -PKG_CONFIG?=pkg-config -PREFIX?=/usr/local -DESTDIR?=/ - -LUA_LIBDIR := $(shell $(PKG_CONFIG) --variable INSTALL_CMOD $(MY_USE_LUA)) -LUA_INC := $(shell $(PKG_CONFIG) --variable INSTALL_INC $(MY_USE_LUA)) -LUA_SHARE := $(shell $(PKG_CONFIG) --variable INSTALL_LMOD $(MY_USE_LUA)) -CWARNS := -Wall -pedantic -CFLAGS += -I$(LUA_INC) -fPIC $(CWARNS) -LIB_OPTION := -shared -LDFLAGS += $(LIB_OPTION) - -SONAME := lua-utf8.so -SONAMEV := $(SONAME).0 -LIBRARY := $(SONAMEV).1.1 -SRC := lutf8lib.c -OBJ := $(patsubst %.c, %.o, $(SRC)) - -FILES := parseucd.lua - -all: $(LIBRARY) $(SONAMEV) $(SONAME) - -$(SONAMEV): - ln -s $(LIBRARY) $@ - -$(SONAME): - ln -s $(SONAMEV) $@ - -$(LIBRARY): $(OBJ) - $(CC) $(CFLAGS) $(LDFLAGS) -o $(LIBRARY) $(OBJ) -lc - -install: - install -d $(DESTDIR)$(LUA_LIBDIR) - install $(SONAME) $(DESTDIR)$(LUA_LIBDIR) - install -d $(DESTDIR)$(LUA_SHARE) - install --mode=0444 $(FILES) $(DESTDIR)$(LUA_SHARE) - -clean: - rm -rf $(LIBRARY) $(SONAMEV) $(SONAME) *.o diff --git a/dev-lua/lua-utf8/lua-utf8-0.1.1.ebuild b/dev-lua/lua-utf8/lua-utf8-0.1.1.ebuild deleted file mode 100644 index d3dffeb9e9f..00000000000 --- a/dev-lua/lua-utf8/lua-utf8-0.1.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit toolchain-funcs - -DESCRIPTION="UTF-8 support for Lua" -HOMEPAGE="https://github.com/starwing/luautf8" -SRC_URI="https://github.com/starwing/luautf8/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc64" -IUSE="luajit test" - -RESTRICT="!test? ( test )" - -BDEPEND="virtual/pkgconfig" -RDEPEND=" - !luajit? ( >=dev-lang/lua-5.1:= ) - luajit? ( dev-lang/luajit:2 )" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${PN//-/}-${PV}" - -src_prepare() { - default - - cp -v "${FILESDIR}/${PN}".Makefile "${S}"/Makefile || die -} - -src_compile() { - tc-export CC - emake DESTDIR="${D}" PREFIX="${EPREFIX}" MY_USE_LUA="$(usex luajit 'luajit' 'lua')" PKG_CONFIG="$(tc-getPKG_CONFIG)" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}" MY_USE_LUA="$(usex luajit 'luajit' 'lua')" PKG_CONFIG="$(tc-getPKG_CONFIG)" install - einstalldocs -} - -src_test() { - LUA_CPATH=./?.so $(usex luajit 'luajit' 'lua') test.lua || die -}