public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luasocket/
Date: Tue, 30 Aug 2022 08:09:02 +0000 (UTC)	[thread overview]
Message-ID: <1661846923.71e6e18c8a84c6aa24c62329a771da6dc6bfd1ca.conikost@gentoo> (raw)

commit:     71e6e18c8a84c6aa24c62329a771da6dc6bfd1ca
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 08:02:56 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 08:08:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71e6e18c

dev-lua/luasocket: drop 3.0.0-r1

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

 dev-lua/luasocket/Manifest                  |  1 -
 dev-lua/luasocket/luasocket-3.0.0-r1.ebuild | 93 -----------------------------
 2 files changed, 94 deletions(-)

diff --git a/dev-lua/luasocket/Manifest b/dev-lua/luasocket/Manifest
index 072cf68d52db..224c295616e1 100644
--- a/dev-lua/luasocket/Manifest
+++ b/dev-lua/luasocket/Manifest
@@ -1,2 +1 @@
-DIST luasocket-3.0.0.tar.gz 336231 BLAKE2B 71b87041a1edb2616ba269160382ac5cea6ba9b623281e8069e8adf97b6898d7836add7eff949010a1bc890bff8d2e4797a2ff5c619b45f8ee3adee5d6633843 SHA512 4f93d6c0b602333df50ee4f939cd0419243f6de333472ffebf99334e301143e8cdee3bc1655c29f81608622d6e7850a9bcf6929a6d4748210a70cdb8218a1ec6
 DIST luasocket-3.1.0.tar.gz 336542 BLAKE2B 64d3ab7028050a93a93db444a4d1757f579f111e79c2f84629d0eb9558fc594918614a48cd1cb522d573b84bb4096537fb7950834adeacfffb3e060721402f71 SHA512 1e9e98484740ec6538fe3d2b0dab74d31f052956ecf9ee3b60e229f2d0b13fcc6d4aaf74cd2a3e2ee330333dabb316fe6a43c60baaea26f0cc01069b6aa4519b

diff --git a/dev-lua/luasocket/luasocket-3.0.0-r1.ebuild b/dev-lua/luasocket/luasocket-3.0.0-r1.ebuild
deleted file mode 100644
index f89c5c8c85b8..000000000000
--- a/dev-lua/luasocket/luasocket-3.0.0-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-MY_P="${PN}-${EGIT_COMMIT}"
-
-inherit lua toolchain-funcs
-
-DESCRIPTION="Networking support for the Lua language"
-HOMEPAGE="
-	http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/
-	https://github.com/lunarmodules/luasocket
-"
-SRC_URI="https://github.com/lunarmodules/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="test"
-
-RDEPEND="${LUA_DEPS}"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-HTML_DOCS="docs/."
-
-PATCHES=(
-	"${FILESDIR}/${PN}-3.0_rc1_p20200328_publish_API.patch"
-	"${FILESDIR}/${PN}-3.0.0_makefile.patch"
-)
-
-src_prepare() {
-	default
-
-	# Set correct version, as upstream shows wrongly '-rc1'.
-	# This has been already changed by upstream, but no new release.
-        sed -e 's/-rc1/.0/g' -i src/luasocket.h || die
-
-	lua_copy_sources
-}
-
-lua_src_compile() {
-	pushd "${BUILD_DIR}" || die
-
-	local myemakeargs=(
-		"CC=$(tc-getCC)"
-		"LD=$(tc-getCC)"
-		"LUAINC_linux=$(lua_get_include_dir)"
-		"LUAV=${ELUA}"
-		"MIME_V=1.0.3-${ELUA}"
-		"MYCFLAGS=${CFLAGS}"
-		"MYLDFLAGS=${LDFLAGS}"
-		"SOCKET_V=3.0.0-${ELUA}"
-	)
-
-	emake "${myemakeargs[@]}" all
-
-	popd
-}
-
-src_compile() {
-	lua_foreach_impl lua_src_compile
-}
-
-lua_src_install() {
-	pushd "${BUILD_DIR}" || die
-
-	local myemakeargs=(
-		"CDIR=$(lua_get_cmod_dir)"
-		"DESTDIR=${ED}"
-		"LDIR=$(lua_get_lmod_dir)"
-		"LUAPREFIX_linux="
-		"MIME_V=1.0.3-${ELUA}"
-		"SOCKET_V=3.0.0-${ELUA}"
-	)
-
-	emake "${myemakeargs[@]}" install
-	emake "${myemakeargs[@]}" install-unix
-
-	insinto "$(lua_get_include_dir)"/luasocket
-	doins src/*.h
-
-	popd
-}
-
-src_install() {
-	lua_foreach_impl lua_src_install
-
-	einstalldocs
-}


             reply	other threads:[~2022-08-30  8:09 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-30  8:09 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-30  5:42 [gentoo-commits] repo/gentoo:master commit in: dev-lua/luasocket/ Joonas Niilola
2022-08-30  5:42 Joonas Niilola
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-07-27 18:55 Conrad Kostecki
2022-05-14 14:46 Conrad Kostecki
2022-05-03 18:09 Arthur Zamarin
2022-04-30 19:09 Sam James
2022-04-29 21:39 Sam James
2022-04-29 21:36 Sam James
2022-04-29 21:36 Sam James
2021-11-20  1:08 Conrad Kostecki
2021-11-19 17:50 Jakov Smolić
2021-11-19  8:10 Agostino Sarubbo
2021-11-19  7:59 Arthur Zamarin
2021-11-19  6:18 Arthur Zamarin
2021-11-19  2:43 Sam James
2021-11-19  2:43 Sam James
2021-11-19  2:09 Sam James
2021-04-20 21:20 Sergei Trofimovich
2021-02-21 21:22 Conrad Kostecki
2021-01-23 22:51 Sam James
2021-01-23 22:50 Sam James
2021-01-23 22:42 Sam James
2020-12-14 17:59 Conrad Kostecki
2020-12-14 17:59 Conrad Kostecki
2020-11-29 15:37 Conrad Kostecki
2020-11-29 15:37 Conrad Kostecki
2020-11-22 17:44 Conrad Kostecki
2020-11-22 17:44 Conrad Kostecki
2020-11-14 15:19 Conrad Kostecki
2020-08-12  6:01 Agostino Sarubbo
2020-08-11 11:00 Agostino Sarubbo
2020-08-09 16:51 Sergei Trofimovich
2020-08-08 10:31 Sergei Trofimovich
2020-08-07 18:05 Sam James
2020-08-07 11:48 Agostino Sarubbo
2020-08-07 11:47 Agostino Sarubbo
2020-08-06 19:05 Sam James
2020-08-05 12:19 Joonas Niilola
2020-07-09  7:54 Joonas Niilola
2020-07-09  7:54 Joonas Niilola
2019-02-19 21:15 Markus Meier
2019-02-09 18:36 Thomas Deutschmann
2019-02-07 10:52 Mikle Kolyada
2019-02-02 21:17 Sergei Trofimovich
2019-02-02 19:09 Sergei Trofimovich
2019-01-28 19:38 Sergei Trofimovich
2017-07-29 12:34 Alexis Ballier
2017-07-23 12:12 Manuel Rüger
2017-01-22  1:27 Manuel Rüger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1661846923.71e6e18c8a84c6aa24c62329a771da6dc6bfd1ca.conikost@gentoo \
    --to=conikost@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox