public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/md5/
@ 2021-05-09 21:01 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2021-05-09 21:01 UTC (permalink / raw
  To: gentoo-commits

commit:     8105702f9bf4efb098c5f5623c6360259ec1621b
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun May  9 21:00:14 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun May  9 21:01:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8105702f

dev-lua/md5: new package

MD5 offers basic cryptographic facilities for Lua.

Closes: https://bugs.gentoo.org/665706
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/md5/Manifest       |  1 +
 dev-lua/md5/md5-1.3.ebuild | 85 ++++++++++++++++++++++++++++++++++++++++++++++
 dev-lua/md5/metadata.xml   | 17 ++++++++++
 3 files changed, 103 insertions(+)

diff --git a/dev-lua/md5/Manifest b/dev-lua/md5/Manifest
new file mode 100644
index 00000000000..6da3d677a38
--- /dev/null
+++ b/dev-lua/md5/Manifest
@@ -0,0 +1 @@
+DIST md5-1.3.tar.gz 31377 BLAKE2B b6080c1ef71b5dd1e2d1831b055f31c6a45dd530a24436440a2188500f2fe0ad45730b23627eed7135b01102797a290af65b7550960add10346ac9f7ce906a9a SHA512 eda222b89432228a03c603237a787d55b6d0251f53ee3da11aaf0369ff26e3497ed8479a295b659e02b3fee85c636cd5f8cc9fd68367bf4ed2d3edcbbc373903

diff --git a/dev-lua/md5/md5-1.3.ebuild b/dev-lua/md5/md5-1.3.ebuild
new file mode 100644
index 00000000000..95caf85b7d2
--- /dev/null
+++ b/dev-lua/md5/md5-1.3.ebuild
@@ -0,0 +1,85 @@
+# 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
+}

diff --git a/dev-lua/md5/metadata.xml b/dev-lua/md5/metadata.xml
new file mode 100644
index 00000000000..5907ba34a81
--- /dev/null
+++ b/dev-lua/md5/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>conikost@gentoo.org</email>
+		<name>Conrad Kostecki</name>
+	</maintainer>
+	<longdescription>
+		MD5 offers basic cryptographic facilities for Lua.
+		A hash (digest) function, a pair crypt/decrypt based on MD5 and CFB,
+		and a pair crypt/decrypt based on DES with 56-bit keys.
+	</longdescription>
+	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="github">keplerproject/md5</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-lua/md5/
@ 2021-06-21 20:30 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2021-06-21 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f3fffbbde9cd658e3e46b3481dc313a1973b5d9d
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 21 20:29:39 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Jun 21 20:30:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3fffbbd

dev-lua/md5: drop stabilize-allarches

Since this packages compiles for each arch natives lua modules,
stabilize-allarches can't be used.

Closes: https://bugs.gentoo.org/797352
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/md5/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-lua/md5/metadata.xml b/dev-lua/md5/metadata.xml
index 5907ba34a81..10a414363e4 100644
--- a/dev-lua/md5/metadata.xml
+++ b/dev-lua/md5/metadata.xml
@@ -10,7 +10,6 @@
 		A hash (digest) function, a pair crypt/decrypt based on MD5 and CFB,
 		and a pair crypt/decrypt based on DES with 56-bit keys.
 	</longdescription>
-	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="github">keplerproject/md5</remote-id>
 	</upstream>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-lua/md5/
@ 2022-02-09 13:34 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2022-02-09 13:34 UTC (permalink / raw
  To: gentoo-commits

commit:     9ee6aadee80f5198a98f29172e673cf6a050c215
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  9 13:32:41 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Feb  9 13:33:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ee6aade

dev-lua/md5: update EAPI 7 -> 8

Also fixed compilation with clang+lld

Closes: https://bugs.gentoo.org/829682
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/md5/md5-1.3-r1.ebuild | 85 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

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
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-lua/md5/
@ 2022-02-09 13:34 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2022-02-09 13:34 UTC (permalink / raw
  To: gentoo-commits

commit:     377e087aadffe4dc813f9e46128a0e915077ab29
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  9 13:34:25 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Feb  9 13:34:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=377e087a

dev-lua/md5: drop 1.3

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/md5/md5-1.3.ebuild | 85 ----------------------------------------------
 1 file changed, 85 deletions(-)

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
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-lua/md5/
@ 2023-08-05 22:41 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2023-08-05 22:41 UTC (permalink / raw
  To: gentoo-commits

commit:     648a418914d914251961a64839ea2fde13028fd7
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  5 22:21:12 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Aug  5 22:39:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648a4189

dev-lua/md5: add missing inherit

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/md5/md5-1.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lua/md5/md5-1.3-r1.ebuild b/dev-lua/md5/md5-1.3-r1.ebuild
index 436e64e6656a..2d38e4b5fca7 100644
--- a/dev-lua/md5/md5-1.3-r1.ebuild
+++ b/dev-lua/md5/md5-1.3-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 LUA_COMPAT=( lua5-{1..4} luajit )
 
-inherit lua
+inherit lua toolchain-funcs
 
 DESCRIPTION="Offers basic cryptographic facilities for Lua"
 HOMEPAGE="https://github.com/keplerproject/md5"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-08-05 22:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-09 21:01 [gentoo-commits] repo/gentoo:master commit in: dev-lua/md5/ Conrad Kostecki
  -- strict thread matches above, loose matches on Subject: below --
2021-06-21 20:30 Conrad Kostecki
2022-02-09 13:34 Conrad Kostecki
2022-02-09 13:34 Conrad Kostecki
2023-08-05 22:41 Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox