public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/janet/
Date: Tue, 18 May 2021 10:40:50 +0000 (UTC)	[thread overview]
Message-ID: <1621333125.3ad020c47ef8770d01d46adc9cf9614ccd6e9779.juippis@gentoo> (raw)

commit:     3ad020c47ef8770d01d46adc9cf9614ccd6e9779
Author:     Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Thu Apr 29 21:54:32 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue May 18 10:18:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ad020c4

dev-lang/janet: drop 1.12.2

Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/20605
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-lang/janet/Manifest            |  1 -
 dev-lang/janet/janet-1.12.2.ebuild | 62 --------------------------------------
 2 files changed, 63 deletions(-)

diff --git a/dev-lang/janet/Manifest b/dev-lang/janet/Manifest
index e604595830d..035d97b34cd 100644
--- a/dev-lang/janet/Manifest
+++ b/dev-lang/janet/Manifest
@@ -1,3 +1,2 @@
-DIST janet-1.12.2.tar.gz 558788 BLAKE2B 0cdbc33d968b0b589cfc0ccd6dd5ffffe23932daa48e67c035d67d4bba0519083503693be470498c1f6d2811b164bfbb3d2fdb35967c6bd64808ec87f1fd9770 SHA512 bde3d516b0a1c55ad8edb2dc701a3afdb5e7c2bd028b132598d1a08796aca5f17f71dd2c760192a9703a07adb3450a7af6971611ae57005eafad1b741b0b69a6
 DIST janet-1.13.1.tar.gz 584998 BLAKE2B f1bfd9e62dde786127a1307d38f48fc7e75b9fb09f009f9d01eeefa593b67c2469e213fd366fac7c52e0372e61b1a9afdb558e8a1be1ab2f4f538b5fb39075f3 SHA512 8022ecbaf7680855611202a3c17b8e5f6dc61a9302508c9de5312dbd9e80d40c24786bb5e8ae653ab5a7b00191a2d7c44cc3e305d31245e3e8c53be0e1c80372
 DIST janet-1.15.5.tar.gz 601033 BLAKE2B dfc8c2a2d238f2554aae667f706e84905ba15c732fa2f06b3c537f08d064375dcb00043117dfc56328365627e2e8f4e2a8f171731d9d6bc0d48206cea58f127c SHA512 ebdc090de6fbea0c94f0618957a4b36776fa0009298df77b279b79064d4524e73f42723ba2c315167cb6f3a40f2a4dffbb2a865fa2d479ba196aa9f0aa24cbf6

diff --git a/dev-lang/janet/janet-1.12.2.ebuild b/dev-lang/janet/janet-1.12.2.ebuild
deleted file mode 100644
index 574832c0682..00000000000
--- a/dev-lang/janet/janet-1.12.2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="A dynamic Lisp dialect and bytecode vm"
-HOMEPAGE="https://janet-lang.org https://github.com/janet-lang/janet/"
-SRC_URI="https://github.com/janet-lang/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-MY_RELEASE="${PV::-2}"
-
-src_configure() {
-	append-ldflags -Wl,-soname,libjanet.so.1.${MY_RELEASE}
-	append-cflags -fPIC
-}
-
-src_compile() {
-	# janet_build is the git hash of the commit related to the
-	# current release - it defines a constant which is then shown
-	# when starting janet
-	local janet_build='\"1.12.2\"'
-	emake LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" JANET_BUILD="${janet_build}"
-	emake LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" build/janet.pc JANET_BUILD="${janet_build}"
-	emake LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" docs JANET_BUILD="${janet_build}"
-	emake LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" build/jpm JANET_BUILD="${janet_build}"
-}
-
-src_install() {
-	dobin "build/janet"
-	dobin "build/jpm"
-	insinto "usr/include/janet"
-	doheader "src/include/janet.h"
-	doheader "src/conf/janetconf.h"
-
-	dolib.so "build/libjanet.so"
-	dosym libjanet.so /usr/$(get_libdir)/libjanet.so.${MY_RELEASE}
-	dosym libjanet.so.${MY_RELEASE} /usr/$(get_libdir)/libjanet.so.${PV}
-
-	if use static-libs; then
-		dolib.a "build/libjanet.a"
-	fi
-	doman "janet.1"
-	doman "jpm.1"
-
-	insinto /usr/$(get_libdir)/pkgconfig/
-	doins "build/janet.pc"
-	dodoc -r examples
-	dodoc "build/doc.html"
-	# required for jpm
-	keepdir /usr/$(get_libdir)/janet/.cache
-}
-
-pkg_postinst() {
-	elog "Enable use flag \"static-libs\" for building stand-alone executables with jpm"
-}


             reply	other threads:[~2021-05-18 10:40 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-18 10:40 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-05 11:29 [gentoo-commits] repo/gentoo:master commit in: dev-lang/janet/ Viorel Munteanu
2024-01-05 11:29 Viorel Munteanu
2022-07-02 17:35 Joonas Niilola
2022-07-02 17:35 Joonas Niilola
2022-07-02 17:35 Joonas Niilola
2021-12-26  0:34 Sam James
2021-12-26  0:34 Sam James
2021-10-20  3:02 Sam James
2021-10-20  3:02 Sam James
2021-10-20  3:02 Sam James
2021-07-20 10:25 Joonas Niilola
2021-05-18 10:40 Joonas Niilola
2021-01-28  7:36 Joonas Niilola
2021-01-28  7:36 Joonas Niilola
2020-10-16  6:04 Joonas Niilola
2020-10-16  6:04 Joonas Niilola
2020-10-16  6:04 Joonas Niilola
2020-08-08  9:04 Joonas Niilola
2020-08-08  9:04 Joonas Niilola
2020-06-24 14:29 Joonas Niilola
2020-06-24 14:29 Joonas Niilola
2020-04-05  7:18 Joonas Niilola
2020-04-05  7:18 Joonas Niilola
2020-03-18  8:30 Joonas Niilola

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=1621333125.3ad020c47ef8770d01d46adc9cf9614ccd6e9779.juippis@gentoo \
    --to=juippis@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