From 4cbcc855382a06088e2f016f62cafdbcb7e40665 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 20 Mar 2022 00:40:44 +0000 Subject: gentoo resync : 20.03.2022 --- dev-lua/md5/Manifest | 2 +- dev-lua/md5/md5-1.3-r1.ebuild | 85 +++++++++++++++++++++++++++++++++++++++++++ dev-lua/md5/md5-1.3.ebuild | 85 ------------------------------------------- 3 files changed, 86 insertions(+), 86 deletions(-) create mode 100644 dev-lua/md5/md5-1.3-r1.ebuild delete mode 100644 dev-lua/md5/md5-1.3.ebuild (limited to 'dev-lua/md5') diff --git a/dev-lua/md5/Manifest b/dev-lua/md5/Manifest index 9b30a6d7fa36..ce458e847cc4 100644 --- a/dev-lua/md5/Manifest +++ b/dev-lua/md5/Manifest @@ -1,3 +1,3 @@ DIST md5-1.3.tar.gz 31377 BLAKE2B b6080c1ef71b5dd1e2d1831b055f31c6a45dd530a24436440a2188500f2fe0ad45730b23627eed7135b01102797a290af65b7550960add10346ac9f7ce906a9a SHA512 eda222b89432228a03c603237a787d55b6d0251f53ee3da11aaf0369ff26e3497ed8479a295b659e02b3fee85c636cd5f8cc9fd68367bf4ed2d3edcbbc373903 -EBUILD md5-1.3.ebuild 1438 BLAKE2B 06b5cd287df65ca1a858cd17a32bca4ff859ea89e6d1a59c07a86de95a4eee3fa8be243d53f47075878f9bb93ac4cb21a949eef0f414a3cd861366757626135f SHA512 012790412b94ea663d68cbee6402e0217f16e0adc02f59520555a9008d48ac43baefdc9c2b91e900dcccfe6645ab092ab2a7680aa63b8e554ac420cdf9968bc8 +EBUILD md5-1.3-r1.ebuild 1444 BLAKE2B 5bf3eb99b6669029fbd012b5c199c65efd8f05d9994b471864d4aa63dbad4661b32a93929b9a511a2561d50880c0dad2c2591574f5337693e92b51cff007d19e SHA512 5d8ef8c23d9673f4b6acbb37dd90cd52ed528fa3a02febba0a85f7fe8d98c32f49fdb325036fd200faa4e736f4d3c2ec6e17763420912785bcd6dc7b0241372b MISC metadata.xml 554 BLAKE2B d199425e23af9252f95eeb54d68a55e2c068e2c810e5e0d44f590bedcdf96663913c3fa6333cbe6bddb85d75ee2be3a49ec4b150a11d2ef30623f50874613905 SHA512 2f12577815665e25792d692ee9b20b19b8c886fb2538eaf8a5debaa67cc6936980b65a28621642f5c353f393372c6923738b455d77f3408c8e21345aafa3ad51 diff --git a/dev-lua/md5/md5-1.3-r1.ebuild b/dev-lua/md5/md5-1.3-r1.ebuild new file mode 100644 index 000000000000..436e64e6656a --- /dev/null +++ b/dev-lua/md5/md5-1.3-r1.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit lua + +DESCRIPTION="Offers basic cryptographic facilities for Lua" +HOMEPAGE="https://github.com/keplerproject/md5" +SRC_URI="https://github.com/keplerproject/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +REQUIRED_USE="${LUA_REQUIRED_USE}" + +RDEPEND="${LUA_DEPS}" +DEPEND="${RDEPEND}" + +src_prepare() { + default + + lua_copy_sources +} + +src_configure() { + # Provided 'configure' script is useless. + :; +} + +lua_src_compile() { + pushd "${BUILD_DIR}" || die + + local myemakeargs=( + "CC=$(tc-getCC)" + "CFLAGS=${CFLAGS} -fPIC $(lua_get_CFLAGS) ${LDFLAGS}" + ) + + emake "${myemakeargs[@]}" + + popd +} + +src_compile() { + lua_foreach_impl lua_src_compile +} + +lua_src_test() { + pushd "${BUILD_DIR}/src" || die + + # Workaround for tests. + ln -s core.so md5.so || die + + "${ELUA}" ../tests/test.lua + + popd +} + +src_test() { + lua_foreach_impl lua_src_test +} + +lua_src_install() { + pushd "${BUILD_DIR}" || die + + # Workaround, as 'Makefile' does not create this directory. + dodir "$(lua_get_cmod_dir)" + + local myemakeargs=( + "LUA_DIR=${ED}/$(lua_get_lmod_dir)" + "LUA_LIBDIR=${ED}/$(lua_get_cmod_dir)" + ) + + emake "${myemakeargs[@]}" install + + popd +} + +src_install() { + lua_foreach_impl lua_src_install + + einstalldocs +} diff --git a/dev-lua/md5/md5-1.3.ebuild b/dev-lua/md5/md5-1.3.ebuild deleted file mode 100644 index 95caf85b7d2f..000000000000 --- a/dev-lua/md5/md5-1.3.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -LUA_COMPAT=( lua5-{1..4} luajit ) - -inherit lua - -DESCRIPTION="Offers basic cryptographic facilities for Lua" -HOMEPAGE="https://github.com/keplerproject/md5" -SRC_URI="https://github.com/keplerproject/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -RDEPEND="${LUA_DEPS}" -DEPEND="${RDEPEND}" - -src_prepare() { - default - - lua_copy_sources -} - -src_configure() { - # Provided 'configure' script is useless. - :; -} - -lua_src_compile() { - pushd "${BUILD_DIR}" || die - - local myemakeargs=( - "CC=$(tc-getCC)" - "CFLAGS=${CFLAGS} $(lua_get_CFLAGS) ${LDFLAGS}" - ) - - emake "${myemakeargs[@]}" - - popd -} - -src_compile() { - lua_foreach_impl lua_src_compile -} - -lua_src_test() { - pushd "${BUILD_DIR}/src" || die - - # Workaround for tests. - ln -s core.so md5.so || die - - "${ELUA}" ../tests/test.lua - - popd -} - -src_test() { - lua_foreach_impl lua_src_test -} - -lua_src_install() { - pushd "${BUILD_DIR}" || die - - # Workaround, as 'Makefile' does not create this directory. - dodir "$(lua_get_cmod_dir)" - - local myemakeargs=( - "LUA_DIR=${ED}/$(lua_get_lmod_dir)" - "LUA_LIBDIR=${ED}/$(lua_get_cmod_dir)" - ) - - emake "${myemakeargs[@]}" install - - popd -} - -src_install() { - lua_foreach_impl lua_src_install - - einstalldocs -} -- cgit v1.2.3