[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/, dev-lang/nasm/files/

2024-11-03 Thread Andreas K. Hüttel
commit: adce089682ed34d831d5fa693e22d6b857719df6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Nov  4 00:24:16 2024 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Nov  4 00:31:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adce0896

dev-lang/nasm: drop 2.16.01-r1, 2.16.02

Bug: https://bugs.gentoo.org/916478
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-lang/nasm/Manifest |   2 -
 .../files/nasm-2.16-autoconf-macro-fixes.patch | 241 -
 dev-lang/nasm/files/nasm-2.16.02-unconfig.patch|  11 -
 dev-lang/nasm/nasm-2.16.01-r1.ebuild   |  72 --
 dev-lang/nasm/nasm-2.16.02.ebuild  |  86 
 5 files changed, 412 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 3c759667d311..0f491497c9ce 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,3 +1 @@
-DIST nasm-2.16.01.tar.xz 1017732 BLAKE2B 
0f7e96648e3db6fa4a8e10a89885f61cab7d79af25adbcc9d4706b3af61206c3cae024b7f873d636f5c1b2cb34ce5e7fbecc16af9b59086e9a1f49fb37c59670
 SHA512 
51fccb5639ce019d9c423c0f279750ffbd74c64cd41dd3b185d1aa1a1aaed79c5d3cd8d4bebbc13ee249a375ed27457ea2abde1a4dbb24d354598fffd1254833
-DIST nasm-2.16.02.tar.xz 1044824 BLAKE2B 
daa3585e9aef3c388e3b577a52453b31aaa7f13942e621c21bbe6ec744ff30bf2692e853dda193b30006989cb10e40dcc1cf0107176e31fd5ee096baad28c7a1
 SHA512 
9ccafb4cd9064fb21f6551309d35ba7461de8da138b1239d76c2ea0c070a1a767f1019d5d705088375d625cfb73eebbfd9dfa3588107793b95354d89dcfd22c3
 DIST nasm-2.16.03.tar.xz 1032388 BLAKE2B 
742cbf330341fde9f778d8ca13e8c06199f48796d47028ac973d39e3d9e434450cdfebe89f6ab248d372bdaeb0c88a25eb7153a39b66fc05e770523d4c9e11e9
 SHA512 
0c706e41a9c33e1ac3bad5056e8bf8cbcd51785b551a6e34ce7d0d723df8eaab8603a033e89b3dcda1004b558f9e9ef3196691500f10d8201bf47a323a516f84

diff --git a/dev-lang/nasm/files/nasm-2.16-autoconf-macro-fixes.patch 
b/dev-lang/nasm/files/nasm-2.16-autoconf-macro-fixes.patch
deleted file mode 100644
index c2efc5b2e2f6..
--- a/dev-lang/nasm/files/nasm-2.16-autoconf-macro-fixes.patch
+++ /dev/null
@@ -1,241 +0,0 @@
-From 5a2d629501d57301fe1d85fe6b2576e318f523d1 Mon Sep 17 00:00:00 2001
-From: "H. Peter Anvin" 
-Date: Sun, 19 Feb 2023 21:26:15 -0800
-Subject: [PATCH] autoconf: a much of macro fixes... not sure how this ever
- worked?
-
-Exposed a bunch of problems with the autoconf m4 macro
-library. Hopefulyy fix it, and tidy it up in the process.
-
-Signed-off-by: H. Peter Anvin 
 /dev/null
-+++ b/autoconf/m4/pa_add_cppflags.m4
-@@ -0,0 +1,9 @@
-+dnl --
-+dnl PA_ADD_CPPFLAGS(variable, flag [,actual_flag [,success [,failure)
-+dnl
-+dnl Attempt to add the given option to xFLAGS, if it doesn't break
-+dnl compilation.  If the option to be tested is different than the
-+dnl option that should actually be added, add the option to be
-+dnl actually added as a second argument.
-+dnl --
-+AC_DEFUN([PA_ADD_CPPFLAGS], [PA_ADD_FLAGS(CPPFLAGS, [$1], [$2], [$3], [$4])])
 a/autoconf/m4/pa_add_flags.m4
-+++ b/autoconf/m4/pa_add_flags.m4
-@@ -1,23 +1,39 @@
- dnl --
--dnl PA_ADD_FLAGS(variable, flag [,actual_flag [,success [,failure]]])
-+dnl PA_ADD_FLAGS(flagvar, flags)
- dnl
--dnl Attempt to add the given option to CPPFLAGS, if it doesn't break
--dnl compilation.  If the option to be tested is different than the
--dnl option that should actually be added, add the option to be
--dnl actually added as a second argument.
-+dnl  Add [flags] to the variable [flagvar] if and only if it is accepted
-+dnl  by all languages affected by [flagvar], if those languages have
-+dnl  been previously seen in the script.
- dnl --
- AC_DEFUN([PA_ADD_FLAGS],
--[AC_MSG_CHECKING([if $CC accepts $2])
-- pa_add_flags__old_flags="$$1"
-- $1="$$1 $2"
-- AC_LINK_IFELSE(
--  [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
--   [printf("Hello, World!\n");])],
--  [AC_MSG_RESULT([yes])
--   $1="$pa_add_flags__old_flags ifelse([$3],[],[$2],[$3])"
--   AC_DEFINE(PA_SYM([$1_],[$2]), 1,
--[Define to 1 if compiled with the `$2' compiler flag])
-+[
-+  AS_VAR_PUSHDEF([old], [_$0_$1_orig])
-+  AS_VAR_PUSHDEF([ok], [_$0_$1_ok])
-+  AS_VAR_PUSHDEF([flags], [$1])
-+
-+  AS_VAR_COPY([old], [flags])
-+  AS_VAR_SET([flags], ["$flags $2"])
-+  AS_VAR_SET([ok], [yes])
-+
-+  PA_LANG_FOREACH(PA_FLAGS_LANGLIST($1),
-+[AS_VAR_IF([ok], [yes],
-+ [AC_MSG_CHECKING([if $]_AC_CC[ accepts $2])
-+  PA_BUILD_IFELSE([],
-+  [AC_MSG_RESULT([yes])],
-+  [AC_MSG_RESULT([no])
-+   AS_VAR_SET([ok], [no])])])
-+ ])
-+
-+ AS_VAR_IF([ok], [yes],
-+  [m4_ifnblank([$3],[AS_VAR_SET([flags], ["$old $3"])])
-+   m4_foreach_w([_pa_add_flags_fl

[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-08-04 Thread Arthur Zamarin
commit: 5bcc0634bfd39f947f076c045d4d250f8ec3b513
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Aug  4 17:27:22 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Aug  4 17:30:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bcc0634

dev-lang/nasm: drop IUSE="lto"

This useflag controls only "--enable-lto", which just appends
`-flto` to *FLAGS, which is useless for a USE flag, since LTO users
are expected to add those flags to *FLAGS.

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-lang/nasm/nasm-2.16.03.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-lang/nasm/nasm-2.16.03.ebuild 
b/dev-lang/nasm/nasm-2.16.03.ebuild
index e25dd3447c0e..472488d3e511 100644
--- a/dev-lang/nasm/nasm-2.16.03.ebuild
+++ b/dev-lang/nasm/nasm-2.16.03.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/${P/_}
 LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="doc lto"
+IUSE="doc"
 
 QA_CONFIG_IMPL_DECL_SKIP=(
# Windows.
@@ -75,10 +75,9 @@ src_prepare() {
 }
 
 src_configure() {
-   local myconfargs=(
-   $(use_enable lto)
-   )
-   econf "${myconfargs[@]}"
+   # --enable-lto just appends -flto to *FLAGS
+   # so let users just use lto through normal make.conf *FLAGS
+   econf
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-08-03 Thread Sam James
commit: e63ea192bdef57ae4f42e2623236a7d79c750cdf
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  4 03:15:14 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  4 03:15:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63ea192

dev-lang/nasm: Stabilize 2.16.03 arm64, #937230

Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.16.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.03.ebuild 
b/dev-lang/nasm/nasm-2.16.03.ebuild
index 403cddcb4c11..e25dd3447c0e 100644
--- a/dev-lang/nasm/nasm-2.16.03.ebuild
+++ b/dev-lang/nasm/nasm-2.16.03.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="doc lto"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-08-03 Thread Sam James
commit: 36d82b47a9f9f2905b23a5bc8244872a14afa76e
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug  3 22:50:48 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug  3 22:50:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d82b47

dev-lang/nasm: Stabilize 2.16.03 ppc64, #937230

Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.16.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.03.ebuild 
b/dev-lang/nasm/nasm-2.16.03.ebuild
index 93737a125948..403cddcb4c11 100644
--- a/dev-lang/nasm/nasm-2.16.03.ebuild
+++ b/dev-lang/nasm/nasm-2.16.03.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="doc lto"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-08-03 Thread Jakov Smolić
commit: c014a2e40a81b15a2501abc759b9af27c13ac91c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Aug  3 16:48:18 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Aug  3 16:48:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c014a2e4

dev-lang/nasm: Stabilize 2.16.03 x86, #937230

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-lang/nasm/nasm-2.16.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.03.ebuild 
b/dev-lang/nasm/nasm-2.16.03.ebuild
index cde9b67ca717..93737a125948 100644
--- a/dev-lang/nasm/nasm-2.16.03.ebuild
+++ b/dev-lang/nasm/nasm-2.16.03.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="doc lto"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-08-03 Thread Jakov Smolić
commit: 02a3e59b771774f7d6ef1bae4bc233af967ff208
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Aug  3 16:48:17 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Aug  3 16:48:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a3e59b

dev-lang/nasm: Stabilize 2.16.03 amd64, #937230

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-lang/nasm/nasm-2.16.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.03.ebuild 
b/dev-lang/nasm/nasm-2.16.03.ebuild
index 4c03189e21b1..cde9b67ca717 100644
--- a/dev-lang/nasm/nasm-2.16.03.ebuild
+++ b/dev-lang/nasm/nasm-2.16.03.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc lto"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-08-03 Thread Arthur Zamarin
commit: a49398c5b44f647591826fa583a36f75b36bc420
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Aug  3 11:05:41 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Aug  3 11:06:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49398c5

dev-lang/nasm: add myself as a maintainer

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-lang/nasm/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-lang/nasm/metadata.xml b/dev-lang/nasm/metadata.xml
index af1d91b0e9fc..4c45454f107f 100644
--- a/dev-lang/nasm/metadata.xml
+++ b/dev-lang/nasm/metadata.xml
@@ -1,7 +1,10 @@
 
 https://www.gentoo.org/dtd/metadata.dtd";>
 
-  
+  
+arthur...@gentoo.org
+Arthur Zamarin
+  
   
 The Netwide Assembler, NASM, is an 80x86 assembler designed for portability
 and modularity. It supports a range of object file formats, including Linux



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-07-31 Thread Matthew Smith
commit: ceaa2e2b7c1057910f3f3f8aae903c3627898006
Author: Matthew Smith  gentoo  org>
AuthorDate: Wed Jul 31 16:53:57 2024 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Wed Jul 31 17:50:40 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceaa2e2b

dev-lang/nasm: drop myself as a maintainer

Signed-off-by: Matthew Smith  gentoo.org>

 dev-lang/nasm/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-lang/nasm/metadata.xml b/dev-lang/nasm/metadata.xml
index af856ea306f0..af1d91b0e9fc 100644
--- a/dev-lang/nasm/metadata.xml
+++ b/dev-lang/nasm/metadata.xml
@@ -1,10 +1,7 @@
 
 https://www.gentoo.org/dtd/metadata.dtd";>
 
-  
-matt...@gentoo.org
-Matthew Smith
-  
+  
   
 The Netwide Assembler, NASM, is an 80x86 assembler designed for portability
 and modularity. It supports a range of object file formats, including Linux



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2024-04-07 Thread Matthew Smith
commit: 84372036b2a637165ec9f7c21245c0374ca314c4
Author: Matthew Smith  gentoo  org>
AuthorDate: Sun Apr  7 09:47:14 2024 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Sun Apr  7 10:40:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84372036

dev-lang/nasm: skip implicit decl warning for musl

Closes: https://bugs.gentoo.org/928848
Signed-off-by: Matthew Smith  gentoo.org>

 dev-lang/nasm/nasm-2.16.02.ebuild | 13 +
 1 file changed, 13 insertions(+)

diff --git a/dev-lang/nasm/nasm-2.16.02.ebuild 
b/dev-lang/nasm/nasm-2.16.02.ebuild
index f1f5ac53b3bd..bd26dd550266 100644
--- a/dev-lang/nasm/nasm-2.16.02.ebuild
+++ b/dev-lang/nasm/nasm-2.16.02.ebuild
@@ -16,8 +16,11 @@ KEYWORDS="~amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 QA_CONFIG_IMPL_DECL_SKIP=(
+   # Windows.
_BitScanReverse
_BitScanReverse64
+
+   # Linux headers that are not included.
__cpu_to_le16
__cpu_to_le32
__cpu_to_le64
@@ -27,7 +30,17 @@ QA_CONFIG_IMPL_DECL_SKIP=(
cpu_to_le16
cpu_to_le32
cpu_to_le64
+
+   # __typeof as gnu extensions are not enabled
typeof
+
+   # musl doesn't define __bswap_N in endian.h (it's named _bswapN
+   # instead). could be fixed to call this instead, or to include
+   # musl's byteswap.h instead, but it is much easier to fall back on
+   # __builtin_bswapN. Bug #928848
+   __bswap_16
+   __bswap_32
+   __bswap_64
 )
 
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/files/, dev-lang/nasm/

2024-04-05 Thread Matthew Smith
commit: 4e89a4edbc73f13fd6c82aa0be01765579ddafd2
Author: Matthew Smith  gentoo  org>
AuthorDate: Fri Apr  5 08:02:22 2024 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Fri Apr  5 08:21:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e89a4ed

dev-lang/nasm: add 2.16.02

Closes: https://bugs.gentoo.org/916478
Signed-off-by: Matthew Smith  gentoo.org>

 dev-lang/nasm/Manifest  |  1 +
 dev-lang/nasm/files/nasm-2.16.02-unconfig.patch | 11 
 dev-lang/nasm/nasm-2.16.02.ebuild   | 73 +
 3 files changed, 85 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index ddee0b50c4c7..48b66ce7fc14 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1 +1,2 @@
 DIST nasm-2.16.01.tar.xz 1017732 BLAKE2B 
0f7e96648e3db6fa4a8e10a89885f61cab7d79af25adbcc9d4706b3af61206c3cae024b7f873d636f5c1b2cb34ce5e7fbecc16af9b59086e9a1f49fb37c59670
 SHA512 
51fccb5639ce019d9c423c0f279750ffbd74c64cd41dd3b185d1aa1a1aaed79c5d3cd8d4bebbc13ee249a375ed27457ea2abde1a4dbb24d354598fffd1254833
+DIST nasm-2.16.02.tar.xz 1044824 BLAKE2B 
daa3585e9aef3c388e3b577a52453b31aaa7f13942e621c21bbe6ec744ff30bf2692e853dda193b30006989cb10e40dcc1cf0107176e31fd5ee096baad28c7a1
 SHA512 
9ccafb4cd9064fb21f6551309d35ba7461de8da138b1239d76c2ea0c070a1a767f1019d5d705088375d625cfb73eebbfd9dfa3588107793b95354d89dcfd22c3

diff --git a/dev-lang/nasm/files/nasm-2.16.02-unconfig.patch 
b/dev-lang/nasm/files/nasm-2.16.02-unconfig.patch
new file mode 100644
index ..77478b7e68cc
--- /dev/null
+++ b/dev-lang/nasm/files/nasm-2.16.02-unconfig.patch
@@ -0,0 +1,11 @@
+--- a/Makefile.in  2024-04-05 07:51:48.394437050 -
 b/Makefile.in  2024-04-05 07:52:38.731388961 -
+@@ -214,7 +214,7 @@
+ INSDEP = x86/insns.dat x86/insns.pl x86/insns-iflags.ph x86/iflags.ph
+ 
+ config/unconfig.h: config/config.h.in
+-  $(RUNPERL) $(tools)/unconfig.pl \
++  $(RUNPERL) $(top_srcdir)/autoconf/unconfig.pl \
+   '$(srcdir)' config/config.h.in config/unconfig.h
+ 
+ x86/iflag.c: $(INSDEP)

diff --git a/dev-lang/nasm/nasm-2.16.02.ebuild 
b/dev-lang/nasm/nasm-2.16.02.ebuild
new file mode 100644
index ..f1f5ac53b3bd
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.16.02.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+S="${WORKDIR}"/${P/_}
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
+IUSE="doc"
+
+QA_CONFIG_IMPL_DECL_SKIP=(
+   _BitScanReverse
+   _BitScanReverse64
+   __cpu_to_le16
+   __cpu_to_le32
+   __cpu_to_le64
+   _byteswap_uint64
+   _byteswap_ulong
+   _byteswap_ushort
+   cpu_to_le16
+   cpu_to_le32
+   cpu_to_le64
+   typeof
+)
+
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-code-pro
+   media-fonts/source-sans:3
+   virtual/perl-File-Spec
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+   "${FILESDIR}"/${PN}-2.16.02-unconfig.patch
+)
+
+src_prepare() {
+   default
+
+   # https://bugs.gentoo.org/870214
+   # During the split of media-fonts/source-pro, the source-sans files
+   # were renamed. Currently depend on media-fonts/source-sans:3 which 
works
+   # with this sed.
+   sed -i 's/SourceSansPro/SourceSans3/g' doc/psfonts.ph || die
+
+   AT_M4DIR="${S}/autoconf/m4" eautoreconf
+}
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2023-10-22 Thread Joonas Niilola
commit: 9d1d1dd861423b9661e29d048de111f7d5034738
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Oct 22 14:33:38 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Oct 22 14:34:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d1d1dd8

dev-lang/nasm: drop 2.15.05

Bug: https://bugs.gentoo.org/686720
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lang/nasm/Manifest|  1 -
 dev-lang/nasm/nasm-2.15.05.ebuild | 53 ---
 2 files changed, 54 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 3dbd070aabb3..ddee0b50c4c7 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,2 +1 @@
-DIST nasm-2.15.05.tar.xz 995732 BLAKE2B 
a41434965c2125577b762d907a0a3c251c75d9f9beac230fba4099182c7f7beb08c6d2c05c2432b0dc8ba829f24077f44c3096faea9bd0a533250e6dbbfaef35
 SHA512 
512f90a2584f1c5811429274b97c64a2cedf37b9fdeffb1bcd0ea64afd9ecc19a2d7877ca8f1e05393aa324153fc9f39ea51dacbf8d25a7d5a2d7728c925dba7
 DIST nasm-2.16.01.tar.xz 1017732 BLAKE2B 
0f7e96648e3db6fa4a8e10a89885f61cab7d79af25adbcc9d4706b3af61206c3cae024b7f873d636f5c1b2cb34ce5e7fbecc16af9b59086e9a1f49fb37c59670
 SHA512 
51fccb5639ce019d9c423c0f279750ffbd74c64cd41dd3b185d1aa1a1aaed79c5d3cd8d4bebbc13ee249a375ed27457ea2abde1a4dbb24d354598fffd1254833

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
deleted file mode 100644
index de15471193c1..
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-S="${WORKDIR}"/${P/_}
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-# [fonts note] doc/psfonts.ph defines ordered list of font preference.
-# Currently 'media-fonts/source-pro' is most preferred and is able to
-# satisfy all 6 font flavours: tilt, chapter, head, etc.
-BDEPEND="
-   dev-lang/perl
-   doc? (
-   app-text/ghostscript-gpl
-   dev-perl/Font-TTF
-   dev-perl/Sort-Versions
-   media-fonts/source-code-pro
-   media-fonts/source-sans:3
-   virtual/perl-File-Spec
-   )
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
-)
-
-src_prepare() {
-   default
-
-   # https://bugs.gentoo.org/870214
-   # During the split of media-fonts/source-pro, the source-sans files
-   # were renamed. Currently depend on media-fonts/source-sans:3 which 
works
-   # with this sed.
-   sed -i 's/SourceSansPro/SourceSans3/g' doc/psfonts.ph || die
-}
-
-src_compile() {
-   default
-   use doc && emake doc
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2023-10-03 Thread Sam James
commit: 05cf971a5cadfb04ed5a7b6e2a6420a3de91dcff
Author: Sam James  gentoo  org>
AuthorDate: Tue Oct  3 14:14:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct  3 14:14:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05cf971a

dev-lang/nasm: Stabilize 2.16.01-r1 amd64, #915106

Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.16.01-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.01-r1.ebuild 
b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
index a70aa0b349d7..ee599043c45c 100644
--- a/dev-lang/nasm/nasm-2.16.01-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 arm64 ~ia64 ~loong ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2023-10-03 Thread Sam James
commit: 05ef784bb7030f8b2343987aa7cd3c43b037f34c
Author: Sam James  gentoo  org>
AuthorDate: Tue Oct  3 14:14:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct  3 14:14:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ef784b

dev-lang/nasm: Stabilize 2.16.01-r1 x86, #915106

Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.16.01-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.01-r1.ebuild 
b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
index ee599043c45c..0f855d0d70ea 100644
--- a/dev-lang/nasm/nasm-2.16.01-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2023-10-03 Thread Sam James
commit: 3a68cbe4dcb7ceb0022ddefdf0019549dc38555c
Author: Sam James  gentoo  org>
AuthorDate: Tue Oct  3 12:06:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct  3 12:06:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a68cbe4

dev-lang/nasm: Stabilize 2.16.01-r1 arm64, #915106

Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.16.01-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.01-r1.ebuild 
b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
index 499e7181c397..7f79553bc542 100644
--- a/dev-lang/nasm/nasm-2.16.01-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~amd64 arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2023-10-03 Thread Sam James
commit: 520e6389f27958ec3e3fe7b3373c8ae1ee563078
Author: Sam James  gentoo  org>
AuthorDate: Tue Oct  3 12:06:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct  3 12:06:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=520e6389

dev-lang/nasm: Stabilize 2.16.01-r1 ppc64, #915106

Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.16.01-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.16.01-r1.ebuild 
b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
index 7f79553bc542..a70aa0b349d7 100644
--- a/dev-lang/nasm/nasm-2.16.01-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.16.01-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm64 ~ia64 ~loong ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 QA_CONFIG_IMPL_DECL_SKIP=(



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/, dev-lang/nasm/files/

2023-10-03 Thread Matthew Smith
commit: ebf663ea9fba020321c0cbfb4e713a11fa8c0e43
Author: Matthew Smith  gentoo  org>
AuthorDate: Tue Oct  3 08:18:24 2023 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Tue Oct  3 08:23:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf663ea

dev-lang/nasm: EAPI-8

- Bump to EAPI-8.
- Suppress implicit function declaration in configure QA notice.
- Apply autoconf fixes from 2.16.02 (not yet released).

Closes: https://bugs.gentoo.org/898306
Signed-off-by: Matthew Smith  gentoo.org>

 .../files/nasm-2.16-autoconf-macro-fixes.patch | 241 +
 ...{nasm-2.16.01.ebuild => nasm-2.16.01-r1.ebuild} |  23 +-
 2 files changed, 262 insertions(+), 2 deletions(-)

diff --git a/dev-lang/nasm/files/nasm-2.16-autoconf-macro-fixes.patch 
b/dev-lang/nasm/files/nasm-2.16-autoconf-macro-fixes.patch
new file mode 100644
index ..c2efc5b2e2f6
--- /dev/null
+++ b/dev-lang/nasm/files/nasm-2.16-autoconf-macro-fixes.patch
@@ -0,0 +1,241 @@
+From 5a2d629501d57301fe1d85fe6b2576e318f523d1 Mon Sep 17 00:00:00 2001
+From: "H. Peter Anvin" 
+Date: Sun, 19 Feb 2023 21:26:15 -0800
+Subject: [PATCH] autoconf: a much of macro fixes... not sure how this ever
+ worked?
+
+Exposed a bunch of problems with the autoconf m4 macro
+library. Hopefulyy fix it, and tidy it up in the process.
+
+Signed-off-by: H. Peter Anvin 
+--- /dev/null
 b/autoconf/m4/pa_add_cppflags.m4
+@@ -0,0 +1,9 @@
++dnl --
++dnl PA_ADD_CPPFLAGS(variable, flag [,actual_flag [,success [,failure)
++dnl
++dnl Attempt to add the given option to xFLAGS, if it doesn't break
++dnl compilation.  If the option to be tested is different than the
++dnl option that should actually be added, add the option to be
++dnl actually added as a second argument.
++dnl --
++AC_DEFUN([PA_ADD_CPPFLAGS], [PA_ADD_FLAGS(CPPFLAGS, [$1], [$2], [$3], [$4])])
+--- a/autoconf/m4/pa_add_flags.m4
 b/autoconf/m4/pa_add_flags.m4
+@@ -1,23 +1,39 @@
+ dnl --
+-dnl PA_ADD_FLAGS(variable, flag [,actual_flag [,success [,failure]]])
++dnl PA_ADD_FLAGS(flagvar, flags)
+ dnl
+-dnl Attempt to add the given option to CPPFLAGS, if it doesn't break
+-dnl compilation.  If the option to be tested is different than the
+-dnl option that should actually be added, add the option to be
+-dnl actually added as a second argument.
++dnl  Add [flags] to the variable [flagvar] if and only if it is accepted
++dnl  by all languages affected by [flagvar], if those languages have
++dnl  been previously seen in the script.
+ dnl --
+ AC_DEFUN([PA_ADD_FLAGS],
+-[AC_MSG_CHECKING([if $CC accepts $2])
+- pa_add_flags__old_flags="$$1"
+- $1="$$1 $2"
+- AC_LINK_IFELSE(
+-  [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
+-   [printf("Hello, World!\n");])],
+-  [AC_MSG_RESULT([yes])
+-   $1="$pa_add_flags__old_flags ifelse([$3],[],[$2],[$3])"
+-   AC_DEFINE(PA_SYM([$1_],[$2]), 1,
+-[Define to 1 if compiled with the `$2' compiler flag])
++[
++  AS_VAR_PUSHDEF([old], [_$0_$1_orig])
++  AS_VAR_PUSHDEF([ok], [_$0_$1_ok])
++  AS_VAR_PUSHDEF([flags], [$1])
++
++  AS_VAR_COPY([old], [flags])
++  AS_VAR_SET([flags], ["$flags $2"])
++  AS_VAR_SET([ok], [yes])
++
++  PA_LANG_FOREACH(PA_FLAGS_LANGLIST($1),
++[AS_VAR_IF([ok], [yes],
++ [AC_MSG_CHECKING([if $]_AC_CC[ accepts $2])
++  PA_BUILD_IFELSE([],
++  [AC_MSG_RESULT([yes])],
++  [AC_MSG_RESULT([no])
++   AS_VAR_SET([ok], [no])])])
++ ])
++
++ AS_VAR_IF([ok], [yes],
++  [m4_ifnblank([$3],[AS_VAR_SET([flags], ["$old $3"])])
++   m4_foreach_w([_pa_add_flags_flag], [m4_ifblank([$3],[$2],[$3])],
++   [AC_DEFINE(PA_SYM([$1_]_pa_add_flags_flag), 1,
++[Define to 1 if compiled with the ]_pa_add_flags_flag[ compiler flag])])
+$4],
+-  [AC_MSG_RESULT([no])
+-   $1="$pa_add_flags__old_flags"
+-   $5])])
++  [AS_VAR_SET([flags], ["$old"])
++   $5])
++
++  AS_VAR_POPDEF([flags])
++  AS_VAR_POPDEF([ok])
++  AS_VAR_POPDEF([old])
++])
+--- /dev/null
 b/autoconf/m4/pa_build_ifelse.m4
+@@ -0,0 +1,16 @@
++dnl --
++dnl PA_BUILD_IFELSE(input [,success [,failure]])
++dnl
++dnl  Same as AC_LINK_IFELSE for languages where linking is applicable,
++dnl  otherwise AC_COMPILE_IFELSE.
++dnl
++dnl If the first argument is empty, use _AC_LANG_IO_PROGRAM.
++dnl --
++m4_defun([_PA_BUILD_IFELSE],
++[m4_case(_AC_LANG,
++ [Erlang], [AC_COMPILE_IFELSE($@)],
++ [AC_LINK_IFELSE($@)])])
++
++AC_DEFUN([PA_BUILD_IFELSE],
++[_PA_BUILD_IFELSE([m4_ifblank([$1],[AC_LANG_SOURCE(_AC_LANG_IO_PROGRAM)],
++ [$1])],[$2],[$3])])
+--- /dev/null
 b/autoconf/m4/pa_flags_langlist.m4
+@@ -0,0 +1,19 @@
++

[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2022-12-23 Thread Matthew Smith
commit: f28cdfba36771d2f8d6e417f43ad06e089625af9
Author: Matthew Smith  gentoo  org>
AuthorDate: Fri Dec 23 10:02:59 2022 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Fri Dec 23 10:04:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f28cdfba

dev-lang/nasm: add 2.16.01

Signed-off-by: Matthew Smith  gentoo.org>

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.16.01.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 43b1e8d6ceac..3dbd070aabb3 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1 +1,2 @@
 DIST nasm-2.15.05.tar.xz 995732 BLAKE2B 
a41434965c2125577b762d907a0a3c251c75d9f9beac230fba4099182c7f7beb08c6d2c05c2432b0dc8ba829f24077f44c3096faea9bd0a533250e6dbbfaef35
 SHA512 
512f90a2584f1c5811429274b97c64a2cedf37b9fdeffb1bcd0ea64afd9ecc19a2d7877ca8f1e05393aa324153fc9f39ea51dacbf8d25a7d5a2d7728c925dba7
+DIST nasm-2.16.01.tar.xz 1017732 BLAKE2B 
0f7e96648e3db6fa4a8e10a89885f61cab7d79af25adbcc9d4706b3af61206c3cae024b7f873d636f5c1b2cb34ce5e7fbecc16af9b59086e9a1f49fb37c59670
 SHA512 
51fccb5639ce019d9c423c0f279750ffbd74c64cd41dd3b185d1aa1a1aaed79c5d3cd8d4bebbc13ee249a375ed27457ea2abde1a4dbb24d354598fffd1254833

diff --git a/dev-lang/nasm/nasm-2.16.01.ebuild 
b/dev-lang/nasm/nasm-2.16.01.ebuild
new file mode 100644
index ..0516affa1974
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.16.01.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+S="${WORKDIR}"/${P/_}
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
+IUSE="doc"
+
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-code-pro
+   media-fonts/source-sans:3
+   virtual/perl-File-Spec
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+)
+
+src_prepare() {
+   default
+
+   # https://bugs.gentoo.org/870214
+   # During the split of media-fonts/source-pro, the source-sans files
+   # were renamed. Currently depend on media-fonts/source-sans:3 which 
works
+   # with this sed.
+   sed -i 's/SourceSansPro/SourceSans3/g' doc/psfonts.ph || die
+}
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2022-12-02 Thread Arthur Zamarin
commit: 0016f8c5548529a895a2b89b50c845cca460eb65
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  2 19:26:57 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  2 19:26:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0016f8c5

dev-lang/nasm: Stabilize 2.15.05 ppc64, #883695

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-lang/nasm/nasm-2.15.05.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index 1356eb766b11..de15471193c1 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 arm64 ~ia64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2022-12-02 Thread Arthur Zamarin
commit: 985961f67e3b4aa50c163e5b92e4fe521be8f42c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  2 18:50:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  2 18:50:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=985961f6

dev-lang/nasm: Stabilize 2.15.05 arm64, #883695

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-lang/nasm/nasm-2.15.05.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index c927820ea403..1356eb766b11 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 ~ia64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2022-12-02 Thread WANG Xuerui
commit: b7c602a1710f329ee4a815c7c4191fedff7ee7af
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Dec  2 18:31:03 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Dec  2 18:44:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c602a1

dev-lang/nasm: keyword 2.15.05 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-lang/nasm/nasm-2.15.05.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index bf36d619de60..c927820ea403 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ia64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2022-09-16 Thread Joonas Niilola
commit: 9d2b07e9e990cc8bba02952f51e3a879530b1c94
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Sep 16 05:47:26 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Sep 16 09:34:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d2b07e9

dev-lang/nasm: depend on media-fonts/source-sans:3 for completeness

Bug: https://bugs.gentoo.org/870214
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lang/nasm/nasm-2.15.05.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index 95e1d21fe3f0..bf36d619de60 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -23,7 +23,7 @@ BDEPEND="
dev-perl/Font-TTF
dev-perl/Sort-Versions
media-fonts/source-code-pro
-   media-fonts/source-sans
+   media-fonts/source-sans:3
virtual/perl-File-Spec
)
 "
@@ -37,7 +37,8 @@ src_prepare() {
 
# https://bugs.gentoo.org/870214
# During the split of media-fonts/source-pro, the source-sans files
-   # were renamed.
+   # were renamed. Currently depend on media-fonts/source-sans:3 which 
works
+   # with this sed.
sed -i 's/SourceSansPro/SourceSans3/g' doc/psfonts.ph || die
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2022-09-15 Thread Matthew Smith
commit: 12a06d251b46508008b2c82c02a37f16a7cb9331
Author: Matthew Smith  gentoo  org>
AuthorDate: Thu Sep 15 14:48:43 2022 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Thu Sep 15 14:49:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a06d25

dev-lang/nasm: replace obsolete font name when building docs

Closes: https://bugs.gentoo.org/870214
Signed-off-by: Matthew Smith  gentoo.org>

 dev-lang/nasm/nasm-2.15.05.ebuild | 9 +
 1 file changed, 9 insertions(+)

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index 1982975e49b1..95e1d21fe3f0 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -32,6 +32,15 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
 )
 
+src_prepare() {
+   default
+
+   # https://bugs.gentoo.org/870214
+   # During the split of media-fonts/source-pro, the source-sans files
+   # were renamed.
+   sed -i 's/SourceSansPro/SourceSans3/g' doc/psfonts.ph || die
+}
+
 src_compile() {
default
use doc && emake doc



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2022-09-15 Thread Joonas Niilola
commit: b496dad016248de210b798e570c73c2c96c1524c
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Sep 15 06:51:53 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep 15 07:05:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b496dad0

dev-lang/nasm: update the newly split media-fonts/source-pro dep

Bug: https://bugs.gentoo.org/865103
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lang/nasm/nasm-2.15.05.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index 0e5a4eeeb377..1982975e49b1 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -22,7 +22,8 @@ BDEPEND="
app-text/ghostscript-gpl
dev-perl/Font-TTF
dev-perl/Sort-Versions
-   media-fonts/source-pro
+   media-fonts/source-code-pro
+   media-fonts/source-sans
virtual/perl-File-Spec
)
 "



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2021-08-31 Thread Sam James
commit: 95a58b97e69183ce0bff8897451f61776968d7eb
Author: Matt Smith  offtopica  uk>
AuthorDate: Tue Aug 31 19:50:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug 31 23:12:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a58b97

dev-lang/nasm: Fix install on Gentoo Prefix

DESTDIR should not be ${ED}.

Closes: https://bugs.gentoo.org/811243
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Matt Smith  offtopica.uk>
Closes: https://github.com/gentoo/gentoo/pull/22174
Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.15.05.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index 297cea8bba3..399a50a8a0f 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -38,5 +38,5 @@ src_compile() {
 
 src_install() {
default
-   emake DESTDIR="${ED}" install_rdf $(usex doc install_doc '')
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
 }



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2021-08-13 Thread Joonas Niilola
commit: 935933cffaa5bf0f621138c23701e82982b1d541
Author: Matt Smith  offtopica  uk>
AuthorDate: Fri Jul 30 11:26:51 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:35:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=935933cf

dev-lang/nasm: Adopt package

Also update upstream remote, bump to EAPI 8, and drop unused eclass.

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Matt Smith  offtopica.uk>
Closes: https://github.com/gentoo/gentoo/pull/21836
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lang/nasm/metadata.xml| 11 +--
 dev-lang/nasm/nasm-2.15.05.ebuild | 11 +++
 2 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/dev-lang/nasm/metadata.xml b/dev-lang/nasm/metadata.xml
index 9d9747cb876..86d32bc3da0 100644
--- a/dev-lang/nasm/metadata.xml
+++ b/dev-lang/nasm/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  
+  
+m...@offtopica.uk
+Matt Smith
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
+  
   
 The Netwide Assembler, NASM, is an 80x86 assembler designed for portability
 and modularity. It supports a range of object file formats, including Linux
@@ -11,7 +18,7 @@ and easy to understand, similar to Intel's but less complex. 
It supports
 Pentium, P6, MMX, 3DNow!, SSE and SSE2 opcodes, and has macro capability.
   
   
-nasm
+netwide-assembler/nasm
 https://bugzilla.nasm.us/
   
 

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index c8a16b87337..297cea8bba3 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -1,21 +1,18 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit flag-o-matic
-
 DESCRIPTION="groovy little assembler"
 HOMEPAGE="https://www.nasm.us/";
 SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
-RDEPEND=""
-DEPEND=""
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.
 # Currently 'media-fonts/source-pro' is most preferred and is able to
 # satisfy all 6 font flavours: tilt, chapter, head, etc.
@@ -30,8 +27,6 @@ BDEPEND="
)
 "
 
-S=${WORKDIR}/${P/_}
-
 PATCHES=(
"${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
 )
@@ -43,5 +38,5 @@ src_compile() {
 
 src_install() {
default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+   emake DESTDIR="${ED}" install_rdf $(usex doc install_doc '')
 }



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2021-07-30 Thread Sergei Trofimovich
commit: 31b6ccfbb82d19fe8fa95e1a743318f4896b2fda
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jul 30 08:53:00 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jul 30 08:55:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31b6ccfb

dev-lang/nasm: drop slyfox@ from maintainers, m-n now

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-lang/nasm/metadata.xml b/dev-lang/nasm/metadata.xml
index f7462a193d8..9d9747cb876 100644
--- a/dev-lang/nasm/metadata.xml
+++ b/dev-lang/nasm/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  
-sly...@gentoo.org
-Sergei Trofimovich
-  
+  
   
 The Netwide Assembler, NASM, is an 80x86 assembler designed for portability
 and modularity. It supports a range of object file formats, including Linux



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-10-08 Thread Sergei Trofimovich
commit: 9ef8bf96b08191a13096c7cdde7b718b7ce453fe
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct  8 08:00:01 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct  8 08:00:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ef8bf96

dev-lang/nasm: drop old

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 -
 dev-lang/nasm/nasm-2.15.03.ebuild | 47 ---
 2 files changed, 48 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 5fd39c22ef4..43b1e8d6cea 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,2 +1 @@
-DIST nasm-2.15.03.tar.xz 984060 BLAKE2B 
f6d6e7618e23d1b6ab89620ed37b3539e18dc5d4c800796afea0242250e9148eb7a59cbc9a9633a971fe4d000373b9f362c2be2bd7b08fc69a61dd7e31368298
 SHA512 
be98e8e0a3b5f5296bc941a7bbcbf44c4084c65d11aed60d17a803b9647d59bd14ec06e780ac22c4bbe8869625eb8e6139d18a88e25310edfce0fe0fc0172950
 DIST nasm-2.15.05.tar.xz 995732 BLAKE2B 
a41434965c2125577b762d907a0a3c251c75d9f9beac230fba4099182c7f7beb08c6d2c05c2432b0dc8ba829f24077f44c3096faea9bd0a533250e6dbbfaef35
 SHA512 
512f90a2584f1c5811429274b97c64a2cedf37b9fdeffb1bcd0ea64afd9ecc19a2d7877ca8f1e05393aa324153fc9f39ea51dacbf8d25a7d5a2d7728c925dba7

diff --git a/dev-lang/nasm/nasm-2.15.03.ebuild 
b/dev-lang/nasm/nasm-2.15.03.ebuild
deleted file mode 100644
index c8a16b87337..000
--- a/dev-lang/nasm/nasm-2.15.03.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND=""
-# [fonts note] doc/psfonts.ph defines ordered list of font preference.
-# Currently 'media-fonts/source-pro' is most preferred and is able to
-# satisfy all 6 font flavours: tilt, chapter, head, etc.
-BDEPEND="
-   dev-lang/perl
-   doc? (
-   app-text/ghostscript-gpl
-   dev-perl/Font-TTF
-   dev-perl/Sort-Versions
-   media-fonts/source-pro
-   virtual/perl-File-Spec
-   )
-"
-
-S=${WORKDIR}/${P/_}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
-)
-
-src_compile() {
-   default
-   use doc && emake doc
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/files/

2020-09-07 Thread Sergei Trofimovich
commit: b1d035cdcadb8e9c825198c32193b7ebe9914aae
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep  7 19:12:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep  7 22:00:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d035cd

dev-lang/nasm: remove unused patch

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/17456
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch 
b/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch
deleted file mode 100644
index 76c1790da20..000
--- a/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Avoid 'cp -u' as it's not portable.
-
-In this case we can unconditionally copy files.
-
-Reported-by: Michał Górny
-Bug: https://bugs.gentoo.org/655444
-diff --git a/doc/Makefile.in b/doc/Makefile.in
-index 261a791..bc9da1e 100644
 a/doc/Makefile.in
-+++ b/doc/Makefile.in
-@@ -28,3 +28,3 @@ RM_RF= rm -rf
- CP_F  = cp -f
--CP_UF = cp -ufv
-+CP_UF = cp -fv
- 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-09-06 Thread Sergei Trofimovich
commit: 354d9e423e4351b954742bf9975badb3194cabd0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep  6 08:32:28 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep  6 08:34:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354d9e42

dev-lang/nasm: drop old

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  2 --
 dev-lang/nasm/nasm-2.14.02.ebuild | 52 ---
 dev-lang/nasm/nasm-2.15.04.ebuild | 47 ---
 3 files changed, 101 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 4187477b36b..5fd39c22ef4 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,4 +1,2 @@
-DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
 DIST nasm-2.15.03.tar.xz 984060 BLAKE2B 
f6d6e7618e23d1b6ab89620ed37b3539e18dc5d4c800796afea0242250e9148eb7a59cbc9a9633a971fe4d000373b9f362c2be2bd7b08fc69a61dd7e31368298
 SHA512 
be98e8e0a3b5f5296bc941a7bbcbf44c4084c65d11aed60d17a803b9647d59bd14ec06e780ac22c4bbe8869625eb8e6139d18a88e25310edfce0fe0fc0172950
-DIST nasm-2.15.04.tar.xz 988252 BLAKE2B 
57d619e1374cb76b1112b40d9a5bb97eb38a0d233d4ebdd9dab50ae38bc9bf7c2d254df0f48dace7ad418e38e50b621626e5374d06ce71dad23fdcb8934adef7
 SHA512 
96d3131a422282f78e5326314570826d312bbab3c4ce3fdbad36578daf5963cc9a41672b4596d37ecdc002877b720bff44e2ce5b83f34b7a797f0b9ca5ca7c3c
 DIST nasm-2.15.05.tar.xz 995732 BLAKE2B 
a41434965c2125577b762d907a0a3c251c75d9f9beac230fba4099182c7f7beb08c6d2c05c2432b0dc8ba829f24077f44c3096faea9bd0a533250e6dbbfaef35
 SHA512 
512f90a2584f1c5811429274b97c64a2cedf37b9fdeffb1bcd0ea64afd9ecc19a2d7877ca8f1e05393aa324153fc9f39ea51dacbf8d25a7d5a2d7728c925dba7

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
deleted file mode 100644
index a4d6f15fc79..000
--- a/dev-lang/nasm/nasm-2.14.02.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND=""
-# [fonts note] doc/psfonts.ph defines ordered list of font preference.
-# Currently 'media-fonts/source-pro' is most preferred and is able to
-# satisfy all 6 font flavours: tilt, chapter, head, etc.
-BDEPEND="
-   dev-lang/perl
-   doc? (
-   app-text/ghostscript-gpl
-   dev-perl/Font-TTF
-   dev-perl/Sort-Versions
-   media-fonts/source-pro
-   virtual/perl-File-Spec
-   )
-"
-
-S=${WORKDIR}/${P/_}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.13.03-bsd-cp-doc.patch
-)
-
-src_configure() {
-   strip-flags
-   default
-}
-
-src_compile() {
-   default
-   use doc && emake doc
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
-}

diff --git a/dev-lang/nasm/nasm-2.15.04.ebuild 
b/dev-lang/nasm/nasm-2.15.04.ebuild
deleted file mode 100644
index 50972bc3e57..000
--- a/dev-lang/nasm/nasm-2.15.04.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND=""
-# [fonts note] doc/psfonts.ph defines ordered list of font preference.
-# Currently 'media-fonts/source-pro' is most preferred and is able to
-# satisfy all 6 font flavours: tilt, chapter, head, etc.
-BDEPEND="
-   dev-lang/perl
-   doc? (
-   app-text/ghostscript-gpl
-   dev-perl/Font-TTF
-   dev-perl/Sort-Versions
-   media-fonts/source-pro
-   virtual/perl-File-Spec
-   )
-"
-
-S=${WORKDIR}/${P/_}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
-)
-
-src_compile() {
-   default
-   use doc && emake doc
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-09-01 Thread Sam James
commit: d9e5252241a1e6df4b28a128846d62ca8add1e05
Author: Sam James  gentoo  org>
AuthorDate: Tue Sep  1 20:12:02 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Sep  1 20:12:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9e52522

dev-lang/nasm: Stabilize 2.15.03 amd64, #738670

Signed-off-by: Sam James  gentoo.org>

 dev-lang/nasm/nasm-2.15.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.15.03.ebuild 
b/dev-lang/nasm/nasm-2.15.03.ebuild
index 3b6355fec01..c8a16b87337 100644
--- a/dev-lang/nasm/nasm-2.15.03.ebuild
+++ b/dev-lang/nasm/nasm-2.15.03.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-08-29 Thread Thomas Deutschmann
commit: 58a0d4921985710ba6c93160e771a8f6403d9aa8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Aug 29 14:44:56 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Aug 29 14:44:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a0d492

dev-lang/nasm: x86 stable (bug #738670)

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-lang/nasm/nasm-2.15.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.15.03.ebuild 
b/dev-lang/nasm/nasm-2.15.03.ebuild
index 50972bc3e57..3b6355fec01 100644
--- a/dev-lang/nasm/nasm-2.15.03.ebuild
+++ b/dev-lang/nasm/nasm-2.15.03.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-08-28 Thread Sergei Trofimovich
commit: ced0d3814de31f76c0d8a56bded0f1ab28bceb1c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Aug 28 18:56:53 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Aug 28 18:57:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ced0d381

dev-lang/nasm: bump up to 2.15.05

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.15.05.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index e5adc77b764..4187477b36b 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,3 +1,4 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
 DIST nasm-2.15.03.tar.xz 984060 BLAKE2B 
f6d6e7618e23d1b6ab89620ed37b3539e18dc5d4c800796afea0242250e9148eb7a59cbc9a9633a971fe4d000373b9f362c2be2bd7b08fc69a61dd7e31368298
 SHA512 
be98e8e0a3b5f5296bc941a7bbcbf44c4084c65d11aed60d17a803b9647d59bd14ec06e780ac22c4bbe8869625eb8e6139d18a88e25310edfce0fe0fc0172950
 DIST nasm-2.15.04.tar.xz 988252 BLAKE2B 
57d619e1374cb76b1112b40d9a5bb97eb38a0d233d4ebdd9dab50ae38bc9bf7c2d254df0f48dace7ad418e38e50b621626e5374d06ce71dad23fdcb8934adef7
 SHA512 
96d3131a422282f78e5326314570826d312bbab3c4ce3fdbad36578daf5963cc9a41672b4596d37ecdc002877b720bff44e2ce5b83f34b7a797f0b9ca5ca7c3c
+DIST nasm-2.15.05.tar.xz 995732 BLAKE2B 
a41434965c2125577b762d907a0a3c251c75d9f9beac230fba4099182c7f7beb08c6d2c05c2432b0dc8ba829f24077f44c3096faea9bd0a533250e6dbbfaef35
 SHA512 
512f90a2584f1c5811429274b97c64a2cedf37b9fdeffb1bcd0ea64afd9ecc19a2d7877ca8f1e05393aa324153fc9f39ea51dacbf8d25a7d5a2d7728c925dba7

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
new file mode 100644
index 000..50972bc3e57
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+)
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-08-21 Thread Sergei Trofimovich
commit: 5863b946a372f1fbffceb82ba080736f780ec861
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Aug 21 08:02:48 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Aug 21 08:02:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5863b946

dev-lang/nasm: bump up to 2.15.04

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.15.04.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 07ae71da6de..e5adc77b764 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,2 +1,3 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
 DIST nasm-2.15.03.tar.xz 984060 BLAKE2B 
f6d6e7618e23d1b6ab89620ed37b3539e18dc5d4c800796afea0242250e9148eb7a59cbc9a9633a971fe4d000373b9f362c2be2bd7b08fc69a61dd7e31368298
 SHA512 
be98e8e0a3b5f5296bc941a7bbcbf44c4084c65d11aed60d17a803b9647d59bd14ec06e780ac22c4bbe8869625eb8e6139d18a88e25310edfce0fe0fc0172950
+DIST nasm-2.15.04.tar.xz 988252 BLAKE2B 
57d619e1374cb76b1112b40d9a5bb97eb38a0d233d4ebdd9dab50ae38bc9bf7c2d254df0f48dace7ad418e38e50b621626e5374d06ce71dad23fdcb8934adef7
 SHA512 
96d3131a422282f78e5326314570826d312bbab3c4ce3fdbad36578daf5963cc9a41672b4596d37ecdc002877b720bff44e2ce5b83f34b7a797f0b9ca5ca7c3c

diff --git a/dev-lang/nasm/nasm-2.15.04.ebuild 
b/dev-lang/nasm/nasm-2.15.04.ebuild
new file mode 100644
index 000..50972bc3e57
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.15.04.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+)
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-07-25 Thread Sergei Trofimovich
commit: 01749c0d8d4ba064c5a1990206c0bfbfb7f8fab3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 25 09:13:31 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 25 09:18:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01749c0d

dev-lang/nasm: drop old

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 -
 dev-lang/nasm/nasm-2.15.02.ebuild | 47 ---
 2 files changed, 48 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 25c1b7e3950..07ae71da6de 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,3 +1,2 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
-DIST nasm-2.15.02.tar.xz 978012 BLAKE2B 
e325ef3b59582b1e3bd6503ec8c5b8a7abf92c98a0234451a3695ecd3102674a34d7cd260a50278b8d98f4663651de058e858e58e6dfda8ae33d1cdb8bb2fe3f
 SHA512 
7375f970ca0c6c31fe2cb5c8c2b5a0f854eaff374b1e7bc9e09546246a84fe73a2ba6073e63d9287444cf17c9e2d342c3ff73ca961c2c0e3e2a9c3aba77114c7
 DIST nasm-2.15.03.tar.xz 984060 BLAKE2B 
f6d6e7618e23d1b6ab89620ed37b3539e18dc5d4c800796afea0242250e9148eb7a59cbc9a9633a971fe4d000373b9f362c2be2bd7b08fc69a61dd7e31368298
 SHA512 
be98e8e0a3b5f5296bc941a7bbcbf44c4084c65d11aed60d17a803b9647d59bd14ec06e780ac22c4bbe8869625eb8e6139d18a88e25310edfce0fe0fc0172950

diff --git a/dev-lang/nasm/nasm-2.15.02.ebuild 
b/dev-lang/nasm/nasm-2.15.02.ebuild
deleted file mode 100644
index 50972bc3e57..000
--- a/dev-lang/nasm/nasm-2.15.02.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND=""
-# [fonts note] doc/psfonts.ph defines ordered list of font preference.
-# Currently 'media-fonts/source-pro' is most preferred and is able to
-# satisfy all 6 font flavours: tilt, chapter, head, etc.
-BDEPEND="
-   dev-lang/perl
-   doc? (
-   app-text/ghostscript-gpl
-   dev-perl/Font-TTF
-   dev-perl/Sort-Versions
-   media-fonts/source-pro
-   virtual/perl-File-Spec
-   )
-"
-
-S=${WORKDIR}/${P/_}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
-)
-
-src_compile() {
-   default
-   use doc && emake doc
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-07-21 Thread Kent Fredric
commit: 8f78634fbf76aecda0d2c67ab97aef7a9915f5f5
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Jul 21 22:58:51 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Jul 21 23:14:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f78634f

dev-lang/nasm: Drop x64-cygwin & x64-macos re bug #690140

Depends:
- dev-perl/Font-TTF

Bug: https://bugs.gentoo.org/690140
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-lang/nasm/nasm-2.14.02.ebuild | 4 ++--
 dev-lang/nasm/nasm-2.15.02.ebuild | 2 +-
 dev-lang/nasm/nasm-2.15.03.ebuild | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
index 77adc700099..a4d6f15fc79 100644
--- a/dev-lang/nasm/nasm-2.14.02.ebuild
+++ b/dev-lang/nasm/nasm-2.14.02.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND=""

diff --git a/dev-lang/nasm/nasm-2.15.02.ebuild 
b/dev-lang/nasm/nasm-2.15.02.ebuild
index 1451280eeac..50972bc3e57 100644
--- a/dev-lang/nasm/nasm-2.15.02.ebuild
+++ b/dev-lang/nasm/nasm-2.15.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND=""

diff --git a/dev-lang/nasm/nasm-2.15.03.ebuild 
b/dev-lang/nasm/nasm-2.15.03.ebuild
index 1451280eeac..50972bc3e57 100644
--- a/dev-lang/nasm/nasm-2.15.03.ebuild
+++ b/dev-lang/nasm/nasm-2.15.03.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-07-18 Thread Sergei Trofimovich
commit: 99faebb906349901f9a3c30b43476ed7d63b78cb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 18 07:47:49 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 18 07:48:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99faebb9

dev-lang/nasm: bump up to 2.15.03

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.15.03.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 1d1bd44201a..25c1b7e3950 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,2 +1,3 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
 DIST nasm-2.15.02.tar.xz 978012 BLAKE2B 
e325ef3b59582b1e3bd6503ec8c5b8a7abf92c98a0234451a3695ecd3102674a34d7cd260a50278b8d98f4663651de058e858e58e6dfda8ae33d1cdb8bb2fe3f
 SHA512 
7375f970ca0c6c31fe2cb5c8c2b5a0f854eaff374b1e7bc9e09546246a84fe73a2ba6073e63d9287444cf17c9e2d342c3ff73ca961c2c0e3e2a9c3aba77114c7
+DIST nasm-2.15.03.tar.xz 984060 BLAKE2B 
f6d6e7618e23d1b6ab89620ed37b3539e18dc5d4c800796afea0242250e9148eb7a59cbc9a9633a971fe4d000373b9f362c2be2bd7b08fc69a61dd7e31368298
 SHA512 
be98e8e0a3b5f5296bc941a7bbcbf44c4084c65d11aed60d17a803b9647d59bd14ec06e780ac22c4bbe8869625eb8e6139d18a88e25310edfce0fe0fc0172950

diff --git a/dev-lang/nasm/nasm-2.15.03.ebuild 
b/dev-lang/nasm/nasm-2.15.03.ebuild
new file mode 100644
index 000..1451280eeac
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.15.03.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+)
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-07-05 Thread Sergei Trofimovich
commit: d8fe64eff11fb81cb4e8ddcacf438a2f20f04e54
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jul  5 10:47:36 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jul  5 10:56:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8fe64ef

dev-lang/nasm: drop old

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  2 --
 dev-lang/nasm/nasm-2.15.01.ebuild | 47 ---
 dev-lang/nasm/nasm-2.15.ebuild| 47 ---
 3 files changed, 96 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index f3003f687c1..1d1bd44201a 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,4 +1,2 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
-DIST nasm-2.15.01.tar.xz 975376 BLAKE2B 
86cd93c4b9c8f96e0d82d525f558e5240c2152c523d610078918eff176327736084718655cc97fb84cb762f21e6d0598b459243f22d76e006a8f0f58e02699ed
 SHA512 
0eaac219d33243e0f35daea5222432226a27cb119e44e5c666773cd472fd032a1b1deb0b5eb950e5470ebf604ce7d31482d2dcb44ce5627465d006b7071a6153
 DIST nasm-2.15.02.tar.xz 978012 BLAKE2B 
e325ef3b59582b1e3bd6503ec8c5b8a7abf92c98a0234451a3695ecd3102674a34d7cd260a50278b8d98f4663651de058e858e58e6dfda8ae33d1cdb8bb2fe3f
 SHA512 
7375f970ca0c6c31fe2cb5c8c2b5a0f854eaff374b1e7bc9e09546246a84fe73a2ba6073e63d9287444cf17c9e2d342c3ff73ca961c2c0e3e2a9c3aba77114c7
-DIST nasm-2.15.tar.xz 975180 BLAKE2B 
86fe345ddcc1817471e07fe17ba9009afa02fda152301e3d1cedff624cbd6ebb0e016a2fda339bd53f30fb3d60ae19f806d21c9dbe433ebb7d0e9a74d9db1576
 SHA512 
c88ff62d08aac86c4ce994bb83e80f1644e0433b01c40cebf183281d31bb4c79471f78e3beab6e7cafb28b3e92298aef89d75672444ea5e8d65c3b019e219583

diff --git a/dev-lang/nasm/nasm-2.15.01.ebuild 
b/dev-lang/nasm/nasm-2.15.01.ebuild
deleted file mode 100644
index 1451280eeac..000
--- a/dev-lang/nasm/nasm-2.15.01.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND=""
-# [fonts note] doc/psfonts.ph defines ordered list of font preference.
-# Currently 'media-fonts/source-pro' is most preferred and is able to
-# satisfy all 6 font flavours: tilt, chapter, head, etc.
-BDEPEND="
-   dev-lang/perl
-   doc? (
-   app-text/ghostscript-gpl
-   dev-perl/Font-TTF
-   dev-perl/Sort-Versions
-   media-fonts/source-pro
-   virtual/perl-File-Spec
-   )
-"
-
-S=${WORKDIR}/${P/_}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
-)
-
-src_compile() {
-   default
-   use doc && emake doc
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
-}

diff --git a/dev-lang/nasm/nasm-2.15.ebuild b/dev-lang/nasm/nasm-2.15.ebuild
deleted file mode 100644
index 1451280eeac..000
--- a/dev-lang/nasm/nasm-2.15.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND=""
-# [fonts note] doc/psfonts.ph defines ordered list of font preference.
-# Currently 'media-fonts/source-pro' is most preferred and is able to
-# satisfy all 6 font flavours: tilt, chapter, head, etc.
-BDEPEND="
-   dev-lang/perl
-   doc? (
-   app-text/ghostscript-gpl
-   dev-perl/Font-TTF
-   dev-perl/Sort-Versions
-   media-fonts/source-pro
-   virtual/perl-File-Spec
-   )
-"
-
-S=${WORKDIR}/${P/_}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
-)
-
-src_compile() {
-   default
-   use doc && emake doc
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-07-02 Thread Sergei Trofimovich
commit: d262e0a4e665091c629c0cea692c5f8728cbd1d7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jul  2 20:23:39 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul  2 20:23:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d262e0a4

dev-lang/nasm: bump up to 2.15.02

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.15.02.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 226424cf617..f3003f687c1 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,3 +1,4 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
 DIST nasm-2.15.01.tar.xz 975376 BLAKE2B 
86cd93c4b9c8f96e0d82d525f558e5240c2152c523d610078918eff176327736084718655cc97fb84cb762f21e6d0598b459243f22d76e006a8f0f58e02699ed
 SHA512 
0eaac219d33243e0f35daea5222432226a27cb119e44e5c666773cd472fd032a1b1deb0b5eb950e5470ebf604ce7d31482d2dcb44ce5627465d006b7071a6153
+DIST nasm-2.15.02.tar.xz 978012 BLAKE2B 
e325ef3b59582b1e3bd6503ec8c5b8a7abf92c98a0234451a3695ecd3102674a34d7cd260a50278b8d98f4663651de058e858e58e6dfda8ae33d1cdb8bb2fe3f
 SHA512 
7375f970ca0c6c31fe2cb5c8c2b5a0f854eaff374b1e7bc9e09546246a84fe73a2ba6073e63d9287444cf17c9e2d342c3ff73ca961c2c0e3e2a9c3aba77114c7
 DIST nasm-2.15.tar.xz 975180 BLAKE2B 
86fe345ddcc1817471e07fe17ba9009afa02fda152301e3d1cedff624cbd6ebb0e016a2fda339bd53f30fb3d60ae19f806d21c9dbe433ebb7d0e9a74d9db1576
 SHA512 
c88ff62d08aac86c4ce994bb83e80f1644e0433b01c40cebf183281d31bb4c79471f78e3beab6e7cafb28b3e92298aef89d75672444ea5e8d65c3b019e219583

diff --git a/dev-lang/nasm/nasm-2.15.02.ebuild 
b/dev-lang/nasm/nasm-2.15.02.ebuild
new file mode 100644
index 000..1451280eeac
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.15.02.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+)
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2020-06-28 Thread Sergei Trofimovich
commit: c5afa5720a6e14410d4a4995a842909d09632e18
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun 29 06:34:37 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 29 06:34:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5afa572

dev-lang/nasm: bump up to 2.15.01

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.15.01.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 1c6c01a0571..226424cf617 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,2 +1,3 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
+DIST nasm-2.15.01.tar.xz 975376 BLAKE2B 
86cd93c4b9c8f96e0d82d525f558e5240c2152c523d610078918eff176327736084718655cc97fb84cb762f21e6d0598b459243f22d76e006a8f0f58e02699ed
 SHA512 
0eaac219d33243e0f35daea5222432226a27cb119e44e5c666773cd472fd032a1b1deb0b5eb950e5470ebf604ce7d31482d2dcb44ce5627465d006b7071a6153
 DIST nasm-2.15.tar.xz 975180 BLAKE2B 
86fe345ddcc1817471e07fe17ba9009afa02fda152301e3d1cedff624cbd6ebb0e016a2fda339bd53f30fb3d60ae19f806d21c9dbe433ebb7d0e9a74d9db1576
 SHA512 
c88ff62d08aac86c4ce994bb83e80f1644e0433b01c40cebf183281d31bb4c79471f78e3beab6e7cafb28b3e92298aef89d75672444ea5e8d65c3b019e219583

diff --git a/dev-lang/nasm/nasm-2.15.01.ebuild 
b/dev-lang/nasm/nasm-2.15.01.ebuild
new file mode 100644
index 000..1451280eeac
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.15.01.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+)
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/, dev-lang/nasm/files/

2020-06-28 Thread Sergei Trofimovich
commit: 3e6dd877f8a1b5a52da35813ba9518f698d26560
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 16:12:31 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 16:15:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e6dd877

dev-lang/nasm: bump up to 2.15

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest |  1 +
 dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch | 13 +++
 dev-lang/nasm/nasm-2.15.ebuild | 47 ++
 3 files changed, 61 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 6f0a396d5bf..1c6c01a0571 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1 +1,2 @@
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
+DIST nasm-2.15.tar.xz 975180 BLAKE2B 
86fe345ddcc1817471e07fe17ba9009afa02fda152301e3d1cedff624cbd6ebb0e016a2fda339bd53f30fb3d60ae19f806d21c9dbe433ebb7d0e9a74d9db1576
 SHA512 
c88ff62d08aac86c4ce994bb83e80f1644e0433b01c40cebf183281d31bb4c79471f78e3beab6e7cafb28b3e92298aef89d75672444ea5e8d65c3b019e219583

diff --git a/dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch 
b/dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch
new file mode 100644
index 000..5c7f6cfafea
--- /dev/null
+++ b/dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch
@@ -0,0 +1,13 @@
+Avoid 'cp -u' as it's not portable.
+
+In this case we can unconditionally copy files.
+
+Reported-by: Michał Górny
+Bug: https://bugs.gentoo.org/655444
+--- a/doc/Makefile.in
 b/doc/Makefile.in
+@@ -28,3 +28,3 @@ RM_RF= rm -rf
+ CP_F  = cp -f
+-CP_UF = cp -uf
++CP_UF = cp -f
+ 

diff --git a/dev-lang/nasm/nasm-2.15.ebuild b/dev-lang/nasm/nasm-2.15.ebuild
new file mode 100644
index 000..1451280eeac
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.15.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~x64-macos"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
+)
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2019-08-10 Thread Aaron Bauman
commit: 6b539fe2834763a66f61df0c2fcb3b2b701c25ac
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Aug 10 18:21:15 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Aug 10 18:21:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b539fe2

dev-lang/nasm: arm64 keyworded

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.71, Repoman-2.3.17

 dev-lang/nasm/nasm-2.14.02.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
index a5f9a0b969e..fa854775879 100644
--- a/dev-lang/nasm/nasm-2.14.02.ebuild
+++ b/dev-lang/nasm/nasm-2.14.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux 
~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux 
~x86-linux ~x64-macos"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2019-07-24 Thread Thomas Deutschmann
commit: 133372f0e39344774d351a2197f3235695a1e25a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jul 24 20:47:12 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jul 24 20:48:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133372f0

dev-lang/nasm: keyworded for ppc64 (#689716)

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-lang/nasm/nasm-2.14.02.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
index ebe185b58e1..a5f9a0b969e 100644
--- a/dev-lang/nasm/nasm-2.14.02.ebuild
+++ b/dev-lang/nasm/nasm-2.14.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="amd64 ~ia64 ~ppc64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux 
~x86-linux ~x64-macos"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/files/, dev-lang/nasm/

2019-02-23 Thread Sergei Trofimovich
commit: 267893ecb08ac52f35cdc8c7aa21a5f9643e4fca
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Feb 23 11:14:22 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb 23 11:16:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=267893ec

dev-lang/nasm: drop old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest |   3 -
 dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch  | 177 -
 dev-lang/nasm/files/nasm-2.13.01-gcc-8.patch   |  25 ---
 .../files/nasm-2.14-default-path-BR-3392529.patch  |  41 -
 dev-lang/nasm/nasm-2.13.01.ebuild  |  47 --
 dev-lang/nasm/nasm-2.13.03-r1.ebuild   |  51 --
 dev-lang/nasm/nasm-2.14-r1.ebuild  |  53 --
 7 files changed, 397 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 4c0e6b73812..6f0a396d5bf 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,4 +1 @@
-DIST nasm-2.13.01.tar.xz 800244 BLAKE2B 
23a42d9e6c66577cee0e3b6cdff8da7b7b49286011f2d9e2319bd229ca0a1ab5b89a27d71a591777430e577175c935ba2a34b7ba0ca6086853f84fa5f0f648ab
 SHA512 
6561a2efb3ffea77a1a8cd364edf1ecedb2c14e1902469d7c59d743f25ca612529113d1099818abbe0a9f2592f12604f1810855bbdf8dc9de3648094a83529ae
-DIST nasm-2.13.03.tar.xz 806636 BLAKE2B 
36187dac080dac17efbc1a2319d989bcb0f883fee80668656a6a87bdd83ee4115ffa2f8519f6d267815590f4809aa293aac500f3a5505a391154cb460cbe94ad
 SHA512 
24e6c72b80a878453baf3b525c1bad607431ff672a927f73e742379fa833b3f5d3fa4479addfcec6d96f354aa90a45905ff9c76ab5217c3bcb7091107b32e2b5
 DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
-DIST nasm-2.14.tar.xz 824780 BLAKE2B 
c246a357896414aa370ded6e42d076d4d56db62e6519cb421000696d65c6e7581f8e0c3c5d55fb27c876139c368bb739863bb5fc0f9bd76610b054f31ec83b5f
 SHA512 
0f7f1b8b0cd4ac62df1dc203789b74670ebe10f3be10af9984331b1c348745ed31a43aca77c5c771016a718fa2c7c8805c1c9edfdd6b0fe83ee0937cb0dd3d23

diff --git a/dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch 
b/dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch
deleted file mode 100644
index aaedc404a20..000
--- a/dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch
+++ /dev/null
@@ -1,177 +0,0 @@
-From 1c369c46fd2cceeb6abe46b89fc539960a6c0c88 Mon Sep 17 00:00:00 2001
-From: David Seifert 
-Date: Sat, 1 Jul 2017 19:42:50 -0700
-Subject: [PATCH] Make buildsystem respect GNU conventions
-
-* CPPFLAGS is a user variable and should be respected
-  when compiling .c files. Think of -D_FORTIFY_SOURCE=2.
-* Pass ALL_CFLAGS when linking too. This is recommended
-  for certain edge cases (-flto)
-* Use DESTDIR instead of INSTALLROOT for staging dir
-  Every other build system (Automake, CMake, Meson) uses
-  DESTDIR. This integrates better into distro and other
-  build systems that have standard hooks for DESTDIR.
-* $(MAKE) -C  is better than cd'ing into a 
-* Use Autoconf's ${docdir} and ${htmldir} for installing
-  the documentation. This makes handling documentation
-  easier and respects user choice.

- Makefile.in | 41 +
- doc/Makefile.in | 13 -
- 2 files changed, 29 insertions(+), 25 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index a48d980..e7f01e4 100644
 a/Makefile.in
-+++ b/Makefile.in
-@@ -20,6 +20,7 @@ datarootdir  = @datarootdir@
- 
- CC= @CC@
- CFLAGS= @CFLAGS@
-+CPPFLAGS  = @CPPFLAGS@
- BUILD_CFLAGS  = $(CFLAGS) @DEFS@
- INTERNAL_CFLAGS = -I$(srcdir) -I$(objdir) \
- -I$(srcdir)/include -I$(objdir)/include \
-@@ -72,13 +73,13 @@ endif
- .PHONY: manpages nsis
- 
- .c.$(O):
--  $(CC) -c $(ALL_CFLAGS) -o $@ $<
-+  $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
- 
- .c.s:
--  $(CC) -S $(ALL_CFLAGS) -o $@ $<
-+  $(CC) -S $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
- 
- .c.i:
--  $(CC) -E $(ALL_CFLAGS) -o $@ $<
-+  $(CC) -E $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
- 
- .txt.xml:
-   $(ASCIIDOC) -b docbook -d manpage -o $@ $<
-@@ -88,7 +89,7 @@ endif
- 
- # This rule is only used for rdoff, to allow common rules
- .$(O)$(X):
--  $(CC) $(LDFLAGS) -o $@ $< $(RDFLIB) $(NASMLIB) $(LIBS)
-+  $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $< $(RDFLIB) $(NASMLIB) $(LIBS)
- 
- #-- Begin File Lists --#
- NASM =asm/nasm.$(O)
-@@ -152,10 +153,10 @@ $(NASMLIB): $(LIBOBJ)
-   $(RANLIB) $(NASMLIB)
- 
- nasm$(X): $(NASM) $(NASMLIB)
--  $(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(NASMLIB) $(LIBS)
-+  $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o nasm$(X) $(NASM) $(NASMLIB) $(LIBS)
- 
- ndisasm$(X): $(NDISASM) $(NASMLIB)
--  $(CC) $(LDFLAGS) -

[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2019-01-24 Thread Thomas Deutschmann
commit: 292e01ef3a988f2dc77f82edf25e112c7cf64c46
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:48:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=292e01ef

dev-lang/nasm: x86 stable (bug #670884)

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-lang/nasm/nasm-2.14.02.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
index 6b8de70a92c..ebe185b58e1 100644
--- a/dev-lang/nasm/nasm-2.14.02.ebuild
+++ b/dev-lang/nasm/nasm-2.14.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="amd64 ~ia64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2019-01-23 Thread Mikle Kolyada
commit: bd4b5db2a69c6a988f633d99662d7349333d3255
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jan 23 18:34:06 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jan 23 18:34:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd4b5db2

dev-lang/nasm: amd64 stable wrt bug #670884

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-lang/nasm/nasm-2.14.02.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
index 2df6236496d..6b8de70a92c 100644
--- a/dev-lang/nasm/nasm-2.14.02.ebuild
+++ b/dev-lang/nasm/nasm-2.14.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2019-01-15 Thread Sergei Trofimovich
commit: b4a6514336c311a206526a03ca6b5433e7a33455
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jan 15 09:24:04 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 15 09:28:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a65143

dev-lang/nasm: bump up to 2.14.02

Reported-by: Arfrever Frehtes Taifersar Arahesis
Fixes: https://bugs.gentoo.org/675472
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.14.02.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 4b8905205d7..4c0e6b73812 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,3 +1,4 @@
 DIST nasm-2.13.01.tar.xz 800244 BLAKE2B 
23a42d9e6c66577cee0e3b6cdff8da7b7b49286011f2d9e2319bd229ca0a1ab5b89a27d71a591777430e577175c935ba2a34b7ba0ca6086853f84fa5f0f648ab
 SHA512 
6561a2efb3ffea77a1a8cd364edf1ecedb2c14e1902469d7c59d743f25ca612529113d1099818abbe0a9f2592f12604f1810855bbdf8dc9de3648094a83529ae
 DIST nasm-2.13.03.tar.xz 806636 BLAKE2B 
36187dac080dac17efbc1a2319d989bcb0f883fee80668656a6a87bdd83ee4115ffa2f8519f6d267815590f4809aa293aac500f3a5505a391154cb460cbe94ad
 SHA512 
24e6c72b80a878453baf3b525c1bad607431ff672a927f73e742379fa833b3f5d3fa4479addfcec6d96f354aa90a45905ff9c76ab5217c3bcb7091107b32e2b5
+DIST nasm-2.14.02.tar.xz 827620 BLAKE2B 
deb1f3c806ffbe48eefe4163271c68f02a782f75f21980331cb03e64de20da61c118621536c1c869c1629e558cab45ce98fed8443d29c1126fb4255cd6a36ce4
 SHA512 
c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81
 DIST nasm-2.14.tar.xz 824780 BLAKE2B 
c246a357896414aa370ded6e42d076d4d56db62e6519cb421000696d65c6e7581f8e0c3c5d55fb27c876139c368bb739863bb5fc0f9bd76610b054f31ec83b5f
 SHA512 
0f7f1b8b0cd4ac62df1dc203789b74670ebe10f3be10af9984331b1c348745ed31a43aca77c5c771016a718fa2c7c8805c1c9edfdd6b0fe83ee0937cb0dd3d23

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
new file mode 100644
index 000..2df6236496d
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.14.02.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.13.03-bsd-cp-doc.patch
+)
+
+src_configure() {
+   strip-flags
+   default
+}
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/, dev-lang/nasm/files/

2018-12-08 Thread Sergei Trofimovich
commit: 416dae40d938b83ecdc44de5e76f04721d5cf066
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Dec  8 18:50:01 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Dec  8 18:54:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=416dae40

dev-lang/nasm: backport default filename fix, bug #670944

Pulled upstream fix for input==output for single-argument
invocation from https://bugzilla.nasm.us/show_bug.cgi?id=3392529

Reported-by: Toralf Förster
Bug: https://bugs.gentoo.org/670944
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 .../files/nasm-2.14-default-path-BR-3392529.patch  | 41 ++
 .../nasm/{nasm-2.14.ebuild => nasm-2.14-r1.ebuild} |  1 +
 2 files changed, 42 insertions(+)

diff --git a/dev-lang/nasm/files/nasm-2.14-default-path-BR-3392529.patch 
b/dev-lang/nasm/files/nasm-2.14-default-path-BR-3392529.patch
new file mode 100644
index 000..57cbb741505
--- /dev/null
+++ b/dev-lang/nasm/files/nasm-2.14-default-path-BR-3392529.patch
@@ -0,0 +1,41 @@
+https://bugzilla.nasm.us/show_bug.cgi?id=3392529
+https://bugs.gentoo.org/670944
+
+From 7b6371b9d35705ee3800082ca245f8dd289bb216 Mon Sep 17 00:00:00 2001
+From: "H. Peter Anvin (Intel)" 
+Date: Tue, 20 Nov 2018 10:56:57 -0800
+Subject: [PATCH] BR 3392529: if the default output name is the same as input
+ -> nasm.out
+
+If no output filename is specified, then a default filename is used
+based on the input filename. If that ends up the *same* as the input
+filename, change the output filename to "nasm.out".
+
+Signed-off-by: H. Peter Anvin (Intel) 
+---
+ asm/nasm.c | 11 ---
+ 1 file changed, 8 insertions(+), 3 deletions(-)
+
+--- a/asm/nasm.c
 b/asm/nasm.c
+@@ -514,9 +514,14 @@ int main(int argc, char **argv)
+  * is a preprocess mode, we're perfectly
+  * fine to output into stdout.
+  */
+-if (!outname) {
+-if (!(operating_mode & OP_PREPROCESS))
+-outname = filename_set_extension(inname, ofmt->extension);
++if (!outname && !(operating_mode & OP_PREPROCESS)) {
++outname = filename_set_extension(inname, ofmt->extension);
++if (!strcmp(outname, inname)) {
++outname = "nasm.out";
++nasm_error(ERR_WARNING,
++   "default output file same as input, using `%s' for 
output\n",
++   inname, outname);
++}
+ }
+ 
+ depend_ptr = (depend_file || (operating_mode & OP_DEPEND))
+-- 
+2.19.2
+

diff --git a/dev-lang/nasm/nasm-2.14.ebuild b/dev-lang/nasm/nasm-2.14-r1.ebuild
similarity index 95%
rename from dev-lang/nasm/nasm-2.14.ebuild
rename to dev-lang/nasm/nasm-2.14-r1.ebuild
index 46c8d440a40..7a17a31be97 100644
--- a/dev-lang/nasm/nasm-2.14.ebuild
+++ b/dev-lang/nasm/nasm-2.14-r1.ebuild
@@ -34,6 +34,7 @@ S=${WORKDIR}/${P/_}
 
 PATCHES=(
"${FILESDIR}"/${PN}-2.13.03-bsd-cp-doc.patch
+   "${FILESDIR}"/${P}-default-path-BR-3392529.patch
 )
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-11-11 Thread Sergei Trofimovich
commit: 34254ece665e78e521a75eb086967fb4d5a8f056
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Nov 11 10:53:50 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Nov 11 10:54:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34254ece

dev-lang/nasm: drop old

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest|  2 --
 dev-lang/nasm/nasm-2.11.08.ebuild | 41 --
 dev-lang/nasm/nasm-2.12.01.ebuild | 41 --
 dev-lang/nasm/nasm-2.13.03.ebuild | 47 ---
 4 files changed, 131 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index db9e3e5ca2f..4b8905205d7 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,5 +1,3 @@
-DIST nasm-2.11.08.tar.xz 764872 BLAKE2B 
2120a95065152b85d938811a1aa7c79eee9d3b9094f8bd2ed40eee7027de8b128a12552573bebcad6098e01b490ee21cffef3e04faf43263086b7e5ba81e4f6a
 SHA512 
f7caf42d0fe1b850de13180a1f363e34a6d44a02696312dd8f12f4116ad1c1f3d01e6606c3a79fb881e76fc70d20894d85b333c84a75d60265ff9551f7b8cde4
-DIST nasm-2.12.01.tar.xz 780112 BLAKE2B 
2464c40016072b82db1f3895e22cca27ad6052c22d7671e1bf36508335a140f728f36876205ca6ae01396f396ff03dc51cb5fd0f628cc7936ed461ff1f90b1d8
 SHA512 
c016b2b26f2ef00fe8de673dc7b2effa55ddd23d1f15145380c2767a2cd4a5c60c77732faebcd5868b325f780c0bf76a5e0c49eb6189609b21e2493d2af9347c
 DIST nasm-2.13.01.tar.xz 800244 BLAKE2B 
23a42d9e6c66577cee0e3b6cdff8da7b7b49286011f2d9e2319bd229ca0a1ab5b89a27d71a591777430e577175c935ba2a34b7ba0ca6086853f84fa5f0f648ab
 SHA512 
6561a2efb3ffea77a1a8cd364edf1ecedb2c14e1902469d7c59d743f25ca612529113d1099818abbe0a9f2592f12604f1810855bbdf8dc9de3648094a83529ae
 DIST nasm-2.13.03.tar.xz 806636 BLAKE2B 
36187dac080dac17efbc1a2319d989bcb0f883fee80668656a6a87bdd83ee4115ffa2f8519f6d267815590f4809aa293aac500f3a5505a391154cb460cbe94ad
 SHA512 
24e6c72b80a878453baf3b525c1bad607431ff672a927f73e742379fa833b3f5d3fa4479addfcec6d96f354aa90a45905ff9c76ab5217c3bcb7091107b32e2b5
 DIST nasm-2.14.tar.xz 824780 BLAKE2B 
c246a357896414aa370ded6e42d076d4d56db62e6519cb421000696d65c6e7581f8e0c3c5d55fb27c876139c368bb739863bb5fc0f9bd76610b054f31ec83b5f
 SHA512 
0f7f1b8b0cd4ac62df1dc203789b74670ebe10f3be10af9984331b1c348745ed31a43aca77c5c771016a718fa2c7c8805c1c9edfdd6b0fe83ee0937cb0dd3d23

diff --git a/dev-lang/nasm/nasm-2.11.08.ebuild 
b/dev-lang/nasm/nasm-2.11.08.ebuild
deleted file mode 100644
index adae162fc9d..000
--- a/dev-lang/nasm/nasm-2.11.08.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
-IUSE="doc"
-
-DEPEND="dev-lang/perl
-   doc? ( app-text/ghostscript-gpl sys-apps/texinfo )"
-RDEPEND=""
-
-S=${WORKDIR}/${P/_}
-
-src_configure() {
-   strip-flags
-   econf
-}
-
-src_compile() {
-   emake nasmlib.o
-   emake all
-   use doc && emake doc
-}
-
-src_install() {
-   emake INSTALLROOT="${D}" install install_rdf
-   dodoc AUTHORS CHANGES ChangeLog README TODO
-   if use doc ; then
-   doinfo doc/info/*
-   dohtml doc/html/*
-   dodoc doc/nasmdoc.*
-   fi
-}

diff --git a/dev-lang/nasm/nasm-2.12.01.ebuild 
b/dev-lang/nasm/nasm-2.12.01.ebuild
deleted file mode 100644
index 13ef00ee1fa..000
--- a/dev-lang/nasm/nasm-2.12.01.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="https://www.nasm.us/";
-SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~x64-macos"
-IUSE="doc"
-
-DEPEND="dev-lang/perl
-   doc? ( app-text/ghostscript-gpl sys-apps/texinfo )"
-RDEPEND=""
-
-S=${WORKDIR}/${P/_}
-
-src_configure() {
-   strip-flags
-   econf
-}
-
-src_compile() {
-   emake nasmlib.o
-   emake all
-   use doc && emake doc
-}
-
-src_install() {
-   emake INSTALLROOT="${D}" install install_rdf
-   dodoc AUTHORS CHANGES ChangeLog README TODO
-   if use doc ; then
-   doinfo doc/info/*
-   dohtml doc/html/*
-   dodoc doc/nasmdoc.*
-   fi
-}

diff --git a/dev-lang/nasm/nasm-2.13.03.ebuild 
b/dev-lang/nasm/nasm-2.13.03.ebuild
deleted file mode 100644
index 16f0c1f2a8a..000
--- a/dev-lang/nasm/nasm-2.13.03.ebuild
+++ /dev/null
@

[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-11-11 Thread Sergei Trofimovich
commit: 0d246ca10179861ff355daeb30662d07d44c8964
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Nov 11 10:52:50 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Nov 11 10:54:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d246ca1

dev-lang/nasm: bump up to 2.14, bug #670884

Reported-by: Arfrever Frehtes Taifersar Arahesis
Bug: https://bugs.gentoo.org/670884
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/Manifest |  1 +
 dev-lang/nasm/nasm-2.14.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 1003a065565..db9e3e5ca2f 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -2,3 +2,4 @@ DIST nasm-2.11.08.tar.xz 764872 BLAKE2B 
2120a95065152b85d938811a1aa7c79eee9d3b90
 DIST nasm-2.12.01.tar.xz 780112 BLAKE2B 
2464c40016072b82db1f3895e22cca27ad6052c22d7671e1bf36508335a140f728f36876205ca6ae01396f396ff03dc51cb5fd0f628cc7936ed461ff1f90b1d8
 SHA512 
c016b2b26f2ef00fe8de673dc7b2effa55ddd23d1f15145380c2767a2cd4a5c60c77732faebcd5868b325f780c0bf76a5e0c49eb6189609b21e2493d2af9347c
 DIST nasm-2.13.01.tar.xz 800244 BLAKE2B 
23a42d9e6c66577cee0e3b6cdff8da7b7b49286011f2d9e2319bd229ca0a1ab5b89a27d71a591777430e577175c935ba2a34b7ba0ca6086853f84fa5f0f648ab
 SHA512 
6561a2efb3ffea77a1a8cd364edf1ecedb2c14e1902469d7c59d743f25ca612529113d1099818abbe0a9f2592f12604f1810855bbdf8dc9de3648094a83529ae
 DIST nasm-2.13.03.tar.xz 806636 BLAKE2B 
36187dac080dac17efbc1a2319d989bcb0f883fee80668656a6a87bdd83ee4115ffa2f8519f6d267815590f4809aa293aac500f3a5505a391154cb460cbe94ad
 SHA512 
24e6c72b80a878453baf3b525c1bad607431ff672a927f73e742379fa833b3f5d3fa4479addfcec6d96f354aa90a45905ff9c76ab5217c3bcb7091107b32e2b5
+DIST nasm-2.14.tar.xz 824780 BLAKE2B 
c246a357896414aa370ded6e42d076d4d56db62e6519cb421000696d65c6e7581f8e0c3c5d55fb27c876139c368bb739863bb5fc0f9bd76610b054f31ec83b5f
 SHA512 
0f7f1b8b0cd4ac62df1dc203789b74670ebe10f3be10af9984331b1c348745ed31a43aca77c5c771016a718fa2c7c8805c1c9edfdd6b0fe83ee0937cb0dd3d23

diff --git a/dev-lang/nasm/nasm-2.14.ebuild b/dev-lang/nasm/nasm-2.14.ebuild
new file mode 100644
index 000..46c8d440a40
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.14.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND=""
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+BDEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.13.03-bsd-cp-doc.patch
+)
+
+src_configure() {
+   strip-flags
+   default
+}
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-06-10 Thread Sergei Trofimovich
commit: 582e8b103d5437897a5cb64a7a03b2cc65ea0d65
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Jun  9 19:44:30 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 10 16:26:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=582e8b10

dev-lang/nasm: use HTTPs

Closes: https://github.com/gentoo/gentoo/pull/8772

 dev-lang/nasm/nasm-2.11.08.ebuild| 6 +++---
 dev-lang/nasm/nasm-2.12.01.ebuild| 6 +++---
 dev-lang/nasm/nasm-2.13.01.ebuild| 4 ++--
 dev-lang/nasm/nasm-2.13.03-r1.ebuild | 4 ++--
 dev-lang/nasm/nasm-2.13.03.ebuild| 4 ++--
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/dev-lang/nasm/nasm-2.11.08.ebuild 
b/dev-lang/nasm/nasm-2.11.08.ebuild
index 8c9e4ab9d6f..adae162fc9d 100644
--- a/dev-lang/nasm/nasm-2.11.08.ebuild
+++ b/dev-lang/nasm/nasm-2.11.08.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit flag-o-matic
 
 DESCRIPTION="groovy little assembler"
-HOMEPAGE="http://nasm.sourceforge.net/";
-SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"

diff --git a/dev-lang/nasm/nasm-2.12.01.ebuild 
b/dev-lang/nasm/nasm-2.12.01.ebuild
index 5d34b024847..13ef00ee1fa 100644
--- a/dev-lang/nasm/nasm-2.12.01.ebuild
+++ b/dev-lang/nasm/nasm-2.12.01.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit flag-o-matic
 
 DESCRIPTION="groovy little assembler"
-HOMEPAGE="http://www.nasm.us/";
-SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"

diff --git a/dev-lang/nasm/nasm-2.13.01.ebuild 
b/dev-lang/nasm/nasm-2.13.01.ebuild
index 4d6f1059598..9a43fd2fc57 100644
--- a/dev-lang/nasm/nasm-2.13.01.ebuild
+++ b/dev-lang/nasm/nasm-2.13.01.ebuild
@@ -6,8 +6,8 @@ EAPI=6
 inherit flag-o-matic
 
 DESCRIPTION="groovy little assembler"
-HOMEPAGE="http://www.nasm.us/";
-SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"

diff --git a/dev-lang/nasm/nasm-2.13.03-r1.ebuild 
b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
index 91d5ea48006..6c15c675696 100644
--- a/dev-lang/nasm/nasm-2.13.03-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
@@ -6,8 +6,8 @@ EAPI=6
 inherit flag-o-matic
 
 DESCRIPTION="groovy little assembler"
-HOMEPAGE="http://www.nasm.us/";
-SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"

diff --git a/dev-lang/nasm/nasm-2.13.03.ebuild 
b/dev-lang/nasm/nasm-2.13.03.ebuild
index efff31a3e06..16f0c1f2a8a 100644
--- a/dev-lang/nasm/nasm-2.13.03.ebuild
+++ b/dev-lang/nasm/nasm-2.13.03.ebuild
@@ -6,8 +6,8 @@ EAPI=6
 inherit flag-o-matic
 
 DESCRIPTION="groovy little assembler"
-HOMEPAGE="http://www.nasm.us/";
-SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+HOMEPAGE="https://www.nasm.us/";
+SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/files/, dev-lang/nasm/

2018-05-13 Thread Sergei Trofimovich
commit: 49208b072ab8aaeb732a419460d4f751763dabe7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May 13 15:15:26 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May 13 15:15:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49208b07

dev-lang/nasm: avoid 'cp -u' as it's not portable, bug #655444

In this case we can unconditionally copy files.

Reported-by: Michał Górny
Bug: https://bugs.gentoo.org/655444
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch | 15 +++
 dev-lang/nasm/nasm-2.13.03-r1.ebuild  |  1 +
 2 files changed, 16 insertions(+)

diff --git a/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch 
b/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch
new file mode 100644
index 000..76c1790da20
--- /dev/null
+++ b/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch
@@ -0,0 +1,15 @@
+Avoid 'cp -u' as it's not portable.
+
+In this case we can unconditionally copy files.
+
+Reported-by: Michał Górny
+Bug: https://bugs.gentoo.org/655444
+diff --git a/doc/Makefile.in b/doc/Makefile.in
+index 261a791..bc9da1e 100644
+--- a/doc/Makefile.in
 b/doc/Makefile.in
+@@ -28,3 +28,3 @@ RM_RF= rm -rf
+ CP_F  = cp -f
+-CP_UF = cp -ufv
++CP_UF = cp -fv
+ 

diff --git a/dev-lang/nasm/nasm-2.13.03-r1.ebuild 
b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
index e050fffc1e9..91d5ea48006 100644
--- a/dev-lang/nasm/nasm-2.13.03-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
@@ -32,6 +32,7 @@ S=${WORKDIR}/${P/_}
 PATCHES=(
"${FILESDIR}"/${PN}-2.13.01-fix-docdir.patch
"${FILESDIR}"/${PN}-2.13.01-gcc-8.patch
+   "${FILESDIR}"/${PN}-2.13.03-bsd-cp-doc.patch
 )
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-05-11 Thread Michał Górny
commit: 5fc2386899880fafd146410d1cfa93b61b6ca71d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May 11 07:41:16 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May 11 07:41:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fc23868

dev-lang/nasm: Keyword ~amd64-fbsd, bug #655428

 dev-lang/nasm/nasm-2.13.03-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.13.03-r1.ebuild 
b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
index e2910cae6b5..e050fffc1e9 100644
--- a/dev-lang/nasm/nasm-2.13.03-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="doc"
 
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-05-10 Thread Sergei Trofimovich
commit: b0d040aded7e7d1ed5f2dd3380a3773bb6c85b29
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri May 11 06:35:28 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri May 11 06:35:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d040ad

dev-lang/nasm: keyworded 2.13.03-r1 for ia64, bug #655428

Bug: https://bugs.gentoo.org/655428
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 dev-lang/nasm/nasm-2.13.03-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.13.03-r1.ebuild 
b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
index c0c02a3bcd1..e2910cae6b5 100644
--- a/dev-lang/nasm/nasm-2.13.03-r1.ebuild
+++ b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc"
 
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-05-10 Thread Sergei Trofimovich
commit: aa35a17bd1114859c109384a81bf1b6c773a6253
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu May 10 22:09:13 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu May 10 22:09:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa35a17b

dev-lang/nasm: switch to media-fonts/source-pro fonts

nasm has an ordered list of font preference. media-fonts/clearsans
alone is not enough to satisfy all nasm needs (see doc/psfonts.ph).

Use media-fonts/source-pro instead. This also happens to fix font
width in final generated .pdf.

Reported-by: Juergen Rose
Closes: https://bugs.gentoo.org/639038
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-lang/nasm/nasm-2.13.03-r1.ebuild | 50 
 1 file changed, 50 insertions(+)

diff --git a/dev-lang/nasm/nasm-2.13.03-r1.ebuild 
b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
new file mode 100644
index 000..c0c02a3bcd1
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.13.03-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="http://www.nasm.us/";
+SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+# [fonts note] doc/psfonts.ph defines ordered list of font preference.
+# Currently 'media-fonts/source-pro' is most preferred and is able to
+# satisfy all 6 font flavours: tilt, chapter, head, etc.
+DEPEND="
+   dev-lang/perl
+   doc? (
+   app-text/ghostscript-gpl
+   dev-perl/Font-TTF
+   dev-perl/Sort-Versions
+   media-fonts/source-pro
+   virtual/perl-File-Spec
+   )
+"
+
+S=${WORKDIR}/${P/_}
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.13.01-fix-docdir.patch
+   "${FILESDIR}"/${PN}-2.13.01-gcc-8.patch
+)
+
+src_configure() {
+   strip-flags
+   default
+}
+
+src_compile() {
+   default
+   use doc && emake doc
+}
+
+src_install() {
+   default
+   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/files/, dev-lang/nasm/

2018-05-03 Thread Sergei Trofimovich
commit: 5b594e538e38230b85a5f0164d1d8b90d137f81b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu May  3 21:15:30 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu May  3 21:15:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b594e53

dev-lang/nasm: fix against gcc-8, bug #654716

While at it bump up to 2.13.03.

Reported-by: Mike Lothian
Closes: https://bugs.gentoo.org/654716
Package-Manager: Portage-2.3.33, Repoman-2.3.9

 dev-lang/nasm/Manifest |  1 +
 dev-lang/nasm/files/nasm-2.13.01-gcc-8.patch   | 25 ++
 dev-lang/nasm/nasm-2.13.01.ebuild  |  5 -
 .../{nasm-2.13.01.ebuild => nasm-2.13.03.ebuild}   |  7 --
 4 files changed, 35 insertions(+), 3 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index d5a351bdd73..1003a065565 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,3 +1,4 @@
 DIST nasm-2.11.08.tar.xz 764872 BLAKE2B 
2120a95065152b85d938811a1aa7c79eee9d3b9094f8bd2ed40eee7027de8b128a12552573bebcad6098e01b490ee21cffef3e04faf43263086b7e5ba81e4f6a
 SHA512 
f7caf42d0fe1b850de13180a1f363e34a6d44a02696312dd8f12f4116ad1c1f3d01e6606c3a79fb881e76fc70d20894d85b333c84a75d60265ff9551f7b8cde4
 DIST nasm-2.12.01.tar.xz 780112 BLAKE2B 
2464c40016072b82db1f3895e22cca27ad6052c22d7671e1bf36508335a140f728f36876205ca6ae01396f396ff03dc51cb5fd0f628cc7936ed461ff1f90b1d8
 SHA512 
c016b2b26f2ef00fe8de673dc7b2effa55ddd23d1f15145380c2767a2cd4a5c60c77732faebcd5868b325f780c0bf76a5e0c49eb6189609b21e2493d2af9347c
 DIST nasm-2.13.01.tar.xz 800244 BLAKE2B 
23a42d9e6c66577cee0e3b6cdff8da7b7b49286011f2d9e2319bd229ca0a1ab5b89a27d71a591777430e577175c935ba2a34b7ba0ca6086853f84fa5f0f648ab
 SHA512 
6561a2efb3ffea77a1a8cd364edf1ecedb2c14e1902469d7c59d743f25ca612529113d1099818abbe0a9f2592f12604f1810855bbdf8dc9de3648094a83529ae
+DIST nasm-2.13.03.tar.xz 806636 BLAKE2B 
36187dac080dac17efbc1a2319d989bcb0f883fee80668656a6a87bdd83ee4115ffa2f8519f6d267815590f4809aa293aac500f3a5505a391154cb460cbe94ad
 SHA512 
24e6c72b80a878453baf3b525c1bad607431ff672a927f73e742379fa833b3f5d3fa4479addfcec6d96f354aa90a45905ff9c76ab5217c3bcb7091107b32e2b5

diff --git a/dev-lang/nasm/files/nasm-2.13.01-gcc-8.patch 
b/dev-lang/nasm/files/nasm-2.13.01-gcc-8.patch
new file mode 100644
index 000..3b703ec6e46
--- /dev/null
+++ b/dev-lang/nasm/files/nasm-2.13.01-gcc-8.patch
@@ -0,0 +1,25 @@
+From 5eb1838b4d3752fd863d19442943983a2a5ee87c Mon Sep 17 00:00:00 2001
+From: Cyrill Gorcunov 
+Date: Sat, 10 Feb 2018 00:33:41 +0300
+Subject: [PATCH] nasmlib: Drop unused seg_init
+
+The helper has been eliminated in 2c4a4d5810d0a59b033a07876a2648ef5d4c2859
+
+https://bugzilla.nasm.us/show_bug.cgi?id=3392461
+
+Signed-off-by: Cyrill Gorcunov 
+---
+ include/nasmlib.h | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/include/nasmlib.h b/include/nasmlib.h
+index 79e866b5..fee1b5ea 100644
+--- a/include/nasmlib.h
 b/include/nasmlib.h
+@@ -191 +190,0 @@ int64_t readstrnum(char *str, int length, bool *warn);
+- * seg_init: Initialise the segment-number allocator.
+@@ -194 +192,0 @@ int64_t readstrnum(char *str, int length, bool *warn);
+-void pure_func seg_init(void);
+-- 
+2.17.0
+

diff --git a/dev-lang/nasm/nasm-2.13.01.ebuild 
b/dev-lang/nasm/nasm-2.13.01.ebuild
index d1adedf032d..4d6f1059598 100644
--- a/dev-lang/nasm/nasm-2.13.01.ebuild
+++ b/dev-lang/nasm/nasm-2.13.01.ebuild
@@ -26,7 +26,10 @@ DEPEND="
 "
 
 S=${WORKDIR}/${P/_}
-PATCHES=( "${FILESDIR}"/${PN}-2.13.01-fix-docdir.patch )
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.13.01-fix-docdir.patch
+   "${FILESDIR}"/${PN}-2.13.01-gcc-8.patch
+)
 
 src_configure() {
strip-flags

diff --git a/dev-lang/nasm/nasm-2.13.01.ebuild 
b/dev-lang/nasm/nasm-2.13.03.ebuild
similarity index 78%
copy from dev-lang/nasm/nasm-2.13.01.ebuild
copy to dev-lang/nasm/nasm-2.13.03.ebuild
index d1adedf032d..efff31a3e06 100644
--- a/dev-lang/nasm/nasm-2.13.01.ebuild
+++ b/dev-lang/nasm/nasm-2.13.03.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="doc"
 
 DEPEND="
@@ -26,7 +26,10 @@ DEPEND="
 "
 
 S=${WORKDIR}/${P/_}
-PATCHES=( "${FILESDIR}"/${PN}-2.13.01-fix-docdir.patch )
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.13.01-fix-docdir.patch
+   "${FILESDIR}"/${PN}-2.13.01-gcc-8.patch
+)
 
 src_configure() {
strip-flags



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-02-26 Thread Jason Zaman
commit: 8015ba3994709c44572a5c7509b98424cc8c1de4
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Feb 26 14:21:20 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Feb 26 14:21:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8015ba39

dev-lang/nasm: amd64 stable

Gentoo-bug: 648078
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-lang/nasm/nasm-2.13.01.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.13.01.ebuild 
b/dev-lang/nasm/nasm-2.13.01.ebuild
index 4cdaefe4d99..d1adedf032d 100644
--- a/dev-lang/nasm/nasm-2.13.01.ebuild
+++ b/dev-lang/nasm/nasm-2.13.01.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="amd64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-02-25 Thread Thomas Deutschmann
commit: 4c9a960c713ae9f8954a9b46a48ae3e554716efb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 25 20:15:39 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 25 20:16:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9a960c

dev-lang/nasm: x86 stable (bug #648078)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-lang/nasm/nasm-2.13.01.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/nasm/nasm-2.13.01.ebuild 
b/dev-lang/nasm/nasm-2.13.01.ebuild
index 36743145ca6..4cdaefe4d99 100644
--- a/dev-lang/nasm/nasm-2.13.01.ebuild
+++ b/dev-lang/nasm/nasm-2.13.01.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="~amd64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="doc"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2018-02-21 Thread Michał Górny
commit: 85e5dcef7e4ea5cb0119b25545ed168483acbd5f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 21 17:33:26 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 21 18:03:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85e5dcef

dev-lang/nasm: Tested on ~amd64-fbsd

 dev-lang/nasm/nasm-2.13.01.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.13.01.ebuild 
b/dev-lang/nasm/nasm-2.13.01.ebuild
index 6fc9f52cb0a..36743145ca6 100644
--- a/dev-lang/nasm/nasm-2.13.01.ebuild
+++ b/dev-lang/nasm/nasm-2.13.01.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="doc"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2017-11-20 Thread Sergei Trofimovich
commit: f15a353b02c3f9a95ccb222de245c804a5fea057
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Nov 20 19:29:57 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Nov 20 19:30:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f15a353b

dev-lang/nasm: adopt an orphan

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-lang/nasm/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-lang/nasm/metadata.xml b/dev-lang/nasm/metadata.xml
index 9d9747cb876..f7462a193d8 100644
--- a/dev-lang/nasm/metadata.xml
+++ b/dev-lang/nasm/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  
+  
+sly...@gentoo.org
+Sergei Trofimovich
+  
   
 The Netwide Assembler, NASM, is an 80x86 assembler designed for portability
 and modularity. It supports a range of object file formats, including Linux



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2017-07-01 Thread David Seifert
commit: e9416038a42fa19891c1e17f35ec841c14b7104f
Author: Louis Sautier  gmail  com>
AuthorDate: Thu Jun 15 18:48:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Jul  2 03:05:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9416038

dev-lang/nasm: add bugs-to to metadata

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-lang/nasm/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-lang/nasm/metadata.xml b/dev-lang/nasm/metadata.xml
index f82f7c42321..d1959dc35a8 100644
--- a/dev-lang/nasm/metadata.xml
+++ b/dev-lang/nasm/metadata.xml
@@ -15,5 +15,6 @@ Pentium, P6, MMX, 3DNow!, SSE and SSE2 opcodes, and has macro 
capability.
   
   
 nasm
+   https://bugzilla.nasm.us/
   
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/, dev-lang/nasm/files/

2017-07-01 Thread David Seifert
commit: b7a831e509fcfc0300fc6d026de2c65934667fe3
Author: Louis Sautier  gmail  com>
AuthorDate: Thu Jun 15 19:14:42 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Jul  2 03:05:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7a831e5

dev-lang/nasm: bump to 2.13.01, EAPI=6, fix doc dependencies

Bug: https://bugs.gentoo.org/show_bug.cgi?id=619360
Closes: https://github.com/gentoo/gentoo/pull/4938
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-lang/nasm/Manifest|   1 +
 dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch | 177 ++
 dev-lang/nasm/metadata.xml|   2 +-
 dev-lang/nasm/nasm-2.13.01.ebuild |  44 ++
 4 files changed, 223 insertions(+), 1 deletion(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index cee747eb470..84c99cdef65 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,2 +1,3 @@
 DIST nasm-2.11.08.tar.xz 764872 SHA256 
c99467c7072211c550d147640d8a1a0aa4d636d4d8cf849f3bf4317d900a1f7f SHA512 
f7caf42d0fe1b850de13180a1f363e34a6d44a02696312dd8f12f4116ad1c1f3d01e6606c3a79fb881e76fc70d20894d85b333c84a75d60265ff9551f7b8cde4
 WHIRLPOOL 
d13f342d59aedf2510347f847a2f5fb276a3bdb9e7b8c5cac6ac4e204a03ea31e477adc19facbf68f939245aae72971b232f1a0fc461ef554458f8956403c623
 DIST nasm-2.12.01.tar.xz 780112 SHA256 
9dbba1ce620512e435ba57e69e811fe8e07d04359e47e0a0b5e94a5dd8367489 SHA512 
c016b2b26f2ef00fe8de673dc7b2effa55ddd23d1f15145380c2767a2cd4a5c60c77732faebcd5868b325f780c0bf76a5e0c49eb6189609b21e2493d2af9347c
 WHIRLPOOL 
4659275043c947461a03450efe184a425019aa99b30607c33b1dd302dd02091a9f1dfaf80382c4466b7df295bc09add6ad9587e3050ea4567a4605f956e1bcdd
+DIST nasm-2.13.01.tar.xz 800244 SHA256 
aa0213008f0433ecbe07bb628506a5c4be8079be20fc3532a5031fd639db9a5e SHA512 
6561a2efb3ffea77a1a8cd364edf1ecedb2c14e1902469d7c59d743f25ca612529113d1099818abbe0a9f2592f12604f1810855bbdf8dc9de3648094a83529ae
 WHIRLPOOL 
dfc7018acfb51cdd3988da6abd157a29d72fdcd233862de4eb09debd65560280a0d7a7aa8f76f0e0c546861272d533f57d3dacd52add16a894dbc026a913d1c5

diff --git a/dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch 
b/dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch
new file mode 100644
index 000..aaedc404a20
--- /dev/null
+++ b/dev-lang/nasm/files/nasm-2.13.01-fix-docdir.patch
@@ -0,0 +1,177 @@
+From 1c369c46fd2cceeb6abe46b89fc539960a6c0c88 Mon Sep 17 00:00:00 2001
+From: David Seifert 
+Date: Sat, 1 Jul 2017 19:42:50 -0700
+Subject: [PATCH] Make buildsystem respect GNU conventions
+
+* CPPFLAGS is a user variable and should be respected
+  when compiling .c files. Think of -D_FORTIFY_SOURCE=2.
+* Pass ALL_CFLAGS when linking too. This is recommended
+  for certain edge cases (-flto)
+* Use DESTDIR instead of INSTALLROOT for staging dir
+  Every other build system (Automake, CMake, Meson) uses
+  DESTDIR. This integrates better into distro and other
+  build systems that have standard hooks for DESTDIR.
+* $(MAKE) -C  is better than cd'ing into a 
+* Use Autoconf's ${docdir} and ${htmldir} for installing
+  the documentation. This makes handling documentation
+  easier and respects user choice.
+---
+ Makefile.in | 41 +
+ doc/Makefile.in | 13 -
+ 2 files changed, 29 insertions(+), 25 deletions(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index a48d980..e7f01e4 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -20,6 +20,7 @@ datarootdir  = @datarootdir@
+ 
+ CC= @CC@
+ CFLAGS= @CFLAGS@
++CPPFLAGS  = @CPPFLAGS@
+ BUILD_CFLAGS  = $(CFLAGS) @DEFS@
+ INTERNAL_CFLAGS = -I$(srcdir) -I$(objdir) \
+ -I$(srcdir)/include -I$(objdir)/include \
+@@ -72,13 +73,13 @@ endif
+ .PHONY: manpages nsis
+ 
+ .c.$(O):
+-  $(CC) -c $(ALL_CFLAGS) -o $@ $<
++  $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
+ 
+ .c.s:
+-  $(CC) -S $(ALL_CFLAGS) -o $@ $<
++  $(CC) -S $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
+ 
+ .c.i:
+-  $(CC) -E $(ALL_CFLAGS) -o $@ $<
++  $(CC) -E $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
+ 
+ .txt.xml:
+   $(ASCIIDOC) -b docbook -d manpage -o $@ $<
+@@ -88,7 +89,7 @@ endif
+ 
+ # This rule is only used for rdoff, to allow common rules
+ .$(O)$(X):
+-  $(CC) $(LDFLAGS) -o $@ $< $(RDFLIB) $(NASMLIB) $(LIBS)
++  $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $< $(RDFLIB) $(NASMLIB) $(LIBS)
+ 
+ #-- Begin File Lists --#
+ NASM =asm/nasm.$(O)
+@@ -152,10 +153,10 @@ $(NASMLIB): $(LIBOBJ)
+   $(RANLIB) $(NASMLIB)
+ 
+ nasm$(X): $(NASM) $(NASMLIB)
+-  $(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(NASMLIB) $(LIBS)
++  $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o nasm$(X) $(NASM) $(NASMLIB) $(LIBS)
+ 
+ ndisasm$(X): $(NDISASM) $(NASMLIB)
+-  $(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(NASMLIB) $(LIBS)
++  $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(NASMLIB) 
$(LIBS)
+ 
+ #-- Begin Generated File Rules --#
+ 
+@@ -335,12 +

[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2016-05-13 Thread Agostino Sarubbo
commit: fe382479c7cc33b036ceca8b53cc10e46083974e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri May 13 14:50:25 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri May 13 14:50:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe382479

dev-lang/nasm: amd64 stable wrt bug #582184

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-lang/nasm/nasm-2.12.01.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.12.01.ebuild 
b/dev-lang/nasm/nasm-2.12.01.ebuild
index e69def9..df9d219 100644
--- a/dev-lang/nasm/nasm-2.12.01.ebuild
+++ b/dev-lang/nasm/nasm-2.12.01.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x64-macos"
 IUSE="doc"
 
 DEPEND="dev-lang/perl



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2016-04-19 Thread Michael Sterrett
commit: f5e6e56397a00eba1b18a9e9a2d756b77122aa07
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Apr 20 04:44:41 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Apr 20 04:44:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5e6e563

dev-lang/nasm: clean old

Package-Manager: portage-2.2.26

 dev-lang/nasm/Manifest |  1 -
 dev-lang/nasm/nasm-2.12.ebuild | 42 --
 2 files changed, 43 deletions(-)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index cb18596..cee747e 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,3 +1,2 @@
 DIST nasm-2.11.08.tar.xz 764872 SHA256 
c99467c7072211c550d147640d8a1a0aa4d636d4d8cf849f3bf4317d900a1f7f SHA512 
f7caf42d0fe1b850de13180a1f363e34a6d44a02696312dd8f12f4116ad1c1f3d01e6606c3a79fb881e76fc70d20894d85b333c84a75d60265ff9551f7b8cde4
 WHIRLPOOL 
d13f342d59aedf2510347f847a2f5fb276a3bdb9e7b8c5cac6ac4e204a03ea31e477adc19facbf68f939245aae72971b232f1a0fc461ef554458f8956403c623
 DIST nasm-2.12.01.tar.xz 780112 SHA256 
9dbba1ce620512e435ba57e69e811fe8e07d04359e47e0a0b5e94a5dd8367489 SHA512 
c016b2b26f2ef00fe8de673dc7b2effa55ddd23d1f15145380c2767a2cd4a5c60c77732faebcd5868b325f780c0bf76a5e0c49eb6189609b21e2493d2af9347c
 WHIRLPOOL 
4659275043c947461a03450efe184a425019aa99b30607c33b1dd302dd02091a9f1dfaf80382c4466b7df295bc09add6ad9587e3050ea4567a4605f956e1bcdd
-DIST nasm-2.12.tar.xz 774808 SHA256 
f34cc1e984ed619b8f9e96cea632e3c6fdea5e039069dbcb63397b7bd004f5a8 SHA512 
6aef9cdebf0e846e476bc57c42bfe6efcbeecf65a3b3fec3c4b5777e5d490e9a4d0cce2b551a8d7b995c1e36ea838526b55355f70d000a78cdd005ac83e41b56
 WHIRLPOOL 
7717077d80f613afc6d4812215fa8d9f552a7ec7e9c4af6b0965499d155c46c553a2be060c8c46fb252d23fd0432d32fbc878df9dec4832383f58661c7b01c91

diff --git a/dev-lang/nasm/nasm-2.12.ebuild b/dev-lang/nasm/nasm-2.12.ebuild
deleted file mode 100644
index e69def9..000
--- a/dev-lang/nasm/nasm-2.12.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit flag-o-matic
-
-DESCRIPTION="groovy little assembler"
-HOMEPAGE="http://www.nasm.us/";
-SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x64-macos"
-IUSE="doc"
-
-DEPEND="dev-lang/perl
-   doc? ( app-text/ghostscript-gpl sys-apps/texinfo )"
-RDEPEND=""
-
-S=${WORKDIR}/${P/_}
-
-src_configure() {
-   strip-flags
-   econf
-}
-
-src_compile() {
-   emake nasmlib.o
-   emake all
-   use doc && emake doc
-}
-
-src_install() {
-   emake INSTALLROOT="${D}" install install_rdf
-   dodoc AUTHORS CHANGES ChangeLog README TODO
-   if use doc ; then
-   doinfo doc/info/*
-   dohtml doc/html/*
-   dodoc doc/nasmdoc.*
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2016-04-04 Thread Michael Sterrett
commit: bbc32104e701c5a8c1686efd7a83adc54dfee777
Author: Michael Sterrett  gentoo  org>
AuthorDate: Mon Apr  4 15:17:56 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Mon Apr  4 15:17:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbc32104

dev-lang/nasm: version bump

Package-Manager: portage-2.2.26

 dev-lang/nasm/Manifest|  1 +
 dev-lang/nasm/nasm-2.12.01.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 9e89a67..cb18596 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1,2 +1,3 @@
 DIST nasm-2.11.08.tar.xz 764872 SHA256 
c99467c7072211c550d147640d8a1a0aa4d636d4d8cf849f3bf4317d900a1f7f SHA512 
f7caf42d0fe1b850de13180a1f363e34a6d44a02696312dd8f12f4116ad1c1f3d01e6606c3a79fb881e76fc70d20894d85b333c84a75d60265ff9551f7b8cde4
 WHIRLPOOL 
d13f342d59aedf2510347f847a2f5fb276a3bdb9e7b8c5cac6ac4e204a03ea31e477adc19facbf68f939245aae72971b232f1a0fc461ef554458f8956403c623
+DIST nasm-2.12.01.tar.xz 780112 SHA256 
9dbba1ce620512e435ba57e69e811fe8e07d04359e47e0a0b5e94a5dd8367489 SHA512 
c016b2b26f2ef00fe8de673dc7b2effa55ddd23d1f15145380c2767a2cd4a5c60c77732faebcd5868b325f780c0bf76a5e0c49eb6189609b21e2493d2af9347c
 WHIRLPOOL 
4659275043c947461a03450efe184a425019aa99b30607c33b1dd302dd02091a9f1dfaf80382c4466b7df295bc09add6ad9587e3050ea4567a4605f956e1bcdd
 DIST nasm-2.12.tar.xz 774808 SHA256 
f34cc1e984ed619b8f9e96cea632e3c6fdea5e039069dbcb63397b7bd004f5a8 SHA512 
6aef9cdebf0e846e476bc57c42bfe6efcbeecf65a3b3fec3c4b5777e5d490e9a4d0cce2b551a8d7b995c1e36ea838526b55355f70d000a78cdd005ac83e41b56
 WHIRLPOOL 
7717077d80f613afc6d4812215fa8d9f552a7ec7e9c4af6b0965499d155c46c553a2be060c8c46fb252d23fd0432d32fbc878df9dec4832383f58661c7b01c91

diff --git a/dev-lang/nasm/nasm-2.12.01.ebuild 
b/dev-lang/nasm/nasm-2.12.01.ebuild
new file mode 100644
index 000..e69def9
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.12.01.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="http://www.nasm.us/";
+SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x64-macos"
+IUSE="doc"
+
+DEPEND="dev-lang/perl
+   doc? ( app-text/ghostscript-gpl sys-apps/texinfo )"
+RDEPEND=""
+
+S=${WORKDIR}/${P/_}
+
+src_configure() {
+   strip-flags
+   econf
+}
+
+src_compile() {
+   emake nasmlib.o
+   emake all
+   use doc && emake doc
+}
+
+src_install() {
+   emake INSTALLROOT="${D}" install install_rdf
+   dodoc AUTHORS CHANGES ChangeLog README TODO
+   if use doc ; then
+   doinfo doc/info/*
+   dohtml doc/html/*
+   dodoc doc/nasmdoc.*
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/

2016-03-02 Thread Michael Sterrett
commit: 96e9baf9e38759ad7217ed710a7a90da6420a686
Author: Michael Sterrett  gentoo  org>
AuthorDate: Thu Mar  3 06:14:33 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Thu Mar  3 06:14:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96e9baf9

dev-lang/nasm: version bump

Package-Manager: portage-2.2.26

 dev-lang/nasm/Manifest |  1 +
 dev-lang/nasm/nasm-2.12.ebuild | 42 ++
 2 files changed, 43 insertions(+)

diff --git a/dev-lang/nasm/Manifest b/dev-lang/nasm/Manifest
index 5b50dc7..9e89a67 100644
--- a/dev-lang/nasm/Manifest
+++ b/dev-lang/nasm/Manifest
@@ -1 +1,2 @@
 DIST nasm-2.11.08.tar.xz 764872 SHA256 
c99467c7072211c550d147640d8a1a0aa4d636d4d8cf849f3bf4317d900a1f7f SHA512 
f7caf42d0fe1b850de13180a1f363e34a6d44a02696312dd8f12f4116ad1c1f3d01e6606c3a79fb881e76fc70d20894d85b333c84a75d60265ff9551f7b8cde4
 WHIRLPOOL 
d13f342d59aedf2510347f847a2f5fb276a3bdb9e7b8c5cac6ac4e204a03ea31e477adc19facbf68f939245aae72971b232f1a0fc461ef554458f8956403c623
+DIST nasm-2.12.tar.xz 774808 SHA256 
f34cc1e984ed619b8f9e96cea632e3c6fdea5e039069dbcb63397b7bd004f5a8 SHA512 
6aef9cdebf0e846e476bc57c42bfe6efcbeecf65a3b3fec3c4b5777e5d490e9a4d0cce2b551a8d7b995c1e36ea838526b55355f70d000a78cdd005ac83e41b56
 WHIRLPOOL 
7717077d80f613afc6d4812215fa8d9f552a7ec7e9c4af6b0965499d155c46c553a2be060c8c46fb252d23fd0432d32fbc878df9dec4832383f58661c7b01c91

diff --git a/dev-lang/nasm/nasm-2.12.ebuild b/dev-lang/nasm/nasm-2.12.ebuild
new file mode 100644
index 000..e69def9
--- /dev/null
+++ b/dev-lang/nasm/nasm-2.12.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit flag-o-matic
+
+DESCRIPTION="groovy little assembler"
+HOMEPAGE="http://www.nasm.us/";
+SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x64-macos"
+IUSE="doc"
+
+DEPEND="dev-lang/perl
+   doc? ( app-text/ghostscript-gpl sys-apps/texinfo )"
+RDEPEND=""
+
+S=${WORKDIR}/${P/_}
+
+src_configure() {
+   strip-flags
+   econf
+}
+
+src_compile() {
+   emake nasmlib.o
+   emake all
+   use doc && emake doc
+}
+
+src_install() {
+   emake INSTALLROOT="${D}" install install_rdf
+   dodoc AUTHORS CHANGES ChangeLog README TODO
+   if use doc ; then
+   doinfo doc/info/*
+   dohtml doc/html/*
+   dodoc doc/nasmdoc.*
+   fi
+}