diff options
author | Virgil Dupras <vdupras@gentoo.org> | 2018-10-06 22:13:03 -0400 |
---|---|---|
committer | Virgil Dupras <vdupras@gentoo.org> | 2018-10-06 22:13:03 -0400 |
commit | 63926daea9a8a9b4e5e6f49b5159b5cdd6dd39b7 (patch) | |
tree | a5c18b95c2ab2ce4fee018db6c38a68f3ca5c48e /dev-lang | |
parent | profiles: remove stale mask entry for dev-util/meson (diff) | |
download | gentoo-63926daea9a8a9b4e5e6f49b5159b5cdd6dd39b7.tar.gz gentoo-63926daea9a8a9b4e5e6f49b5159b5cdd6dd39b7.tar.bz2 gentoo-63926daea9a8a9b4e5e6f49b5159b5cdd6dd39b7.zip |
dev-lang/mujs: bump to 1.0.4
Bug: https://bugs.gentoo.org/605554
Bug: https://bugs.gentoo.org/646784
Signed-off-by: Virgil Dupras <vdupras@gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/mujs/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/mujs/files/mujs-1.0.4-gentoo.patch | 23 | ||||
-rw-r--r-- | dev-lang/mujs/mujs-1.0.4.ebuild | 42 |
3 files changed, 66 insertions, 0 deletions
diff --git a/dev-lang/mujs/Manifest b/dev-lang/mujs/Manifest index 33f28245f890..55458109be0e 100644 --- a/dev-lang/mujs/Manifest +++ b/dev-lang/mujs/Manifest @@ -1,2 +1,3 @@ DIST mujs-0_p20161202.tar.gz 105413 BLAKE2B a65a343d6f60975c88001cdd8eae881559eaf8ba94cf26c8aa9a9a3837cd47ee798c784ed9e90380a76ef328e56d63d1dccd8a85a4a7496d31046d221cf8d7b9 SHA512 90dd1bce44740715a6f642bdb376be230c4a03c7970c2026479cf014a080b98b56a2131ca7ef8bf9c05b91285fe7dcc21dd4ca83879750351d57088408a62cbc DIST mujs-1.0.1.tar.gz 116948 BLAKE2B 54d898eff95e65688a51d9df9175964609a55ad3243ffaa4da10f27a6262a207777dd500cb76aefc22aa52799fed577864d15dfec9ed4aea24f0a4f1ff8dfa0a SHA512 46cbc45735dbf173d7fa5839e3b511730e4d42933c2286d170767659649ea88c2a3dcc74fb986d1eedb1d4fec8fcaaba146805cc9d0ef7da98bb5a9ce0c80a96 +DIST mujs-1.0.4.tar.xz 91520 BLAKE2B 6ffe62b19b140e2ae63ebe59a3b3bd352936ccba53dda3b0fcf575440dc790a0767c7de8c0a1441d26c11c65074520a80050cc0efa1113be0df51a802e719574 SHA512 a32498fee20ab6ddc8bbf79b4fdd82f3560d4e4b28bbe57c4e8f1df4a8a5367a689b6c9a391761abe47a8f15d2832fede4a508330eb181744b9563ae9954c102 diff --git a/dev-lang/mujs/files/mujs-1.0.4-gentoo.patch b/dev-lang/mujs/files/mujs-1.0.4-gentoo.patch new file mode 100644 index 000000000000..c05b8787466c --- /dev/null +++ b/dev-lang/mujs/files/mujs-1.0.4-gentoo.patch @@ -0,0 +1,23 @@ +1. Add to user-defined CFLAGS instead of being overwritten by them +2. Don't strip binaries: it leads to QA warnings +diff --git a/Makefile b/Makefile +index 7284f51..7615158 100644 +--- a/Makefile ++++ b/Makefile +@@ -15,7 +15,7 @@ endif + + # Compiler flags for various configurations: + +-CFLAGS := -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter ++CFLAGS += -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter + + ifeq "$(CC)" "clang" + CFLAGS += -Wunreachable-code +@@ -32,7 +32,6 @@ else ifeq "$(build)" "sanitize" + LDFLAGS += -fsanitize=address + else + CFLAGS += -Os +- LDFLAGS += -Wl,-s + endif + + ifeq "$(HAVE_READLINE)" "yes" diff --git a/dev-lang/mujs/mujs-1.0.4.ebuild b/dev-lang/mujs/mujs-1.0.4.ebuild new file mode 100644 index 000000000000..91ee7c0085a7 --- /dev/null +++ b/dev-lang/mujs/mujs-1.0.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit flag-o-matic multilib toolchain-funcs + +DESCRIPTION="lightweight Javascript interpreter" +HOMEPAGE="http://mujs.com/" +SRC_URI="https://mujs.com/downloads/${P}.tar.xz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="static-libs" + +PATCHES=( + "${FILESDIR}"/${PN}-1.0.4-gentoo.patch +) + +src_prepare() { + default + append-cflags -fPIC -Wl,-soname=lib${PN}.so.${PV} + tc-export CC +} + +src_compile() { + emake VERSION=${PV} prefix=/usr shared +} + +src_install() { + emake \ + DESTDIR="${ED}" \ + VERSION=${PV} \ + prefix=/usr \ + libdir="/usr/$(get_libdir)" \ + install-shared \ + $(usex static-libs install-static '') + + mv -v "${D}"/usr/$(get_libdir)/lib${PN}.so{,.${PV}} || die + dosym lib${PN}.so.${PV} /usr/$(get_libdir)/lib${PN}.so || die + dosym lib${PN}.so.${PV} /usr/$(get_libdir)/lib${PN}.so.${PV:0:1} || die +} |