From: "Sergei Trofimovich" <slyfox@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/
Date: Sun, 11 Nov 2018 10:54:19 +0000 (UTC) [thread overview]
Message-ID: <1541933650.34254ece665e78e521a75eb086967fb4d5a8f056.slyfox@gentoo> (raw)
commit: 34254ece665e78e521a75eb086967fb4d5a8f056
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 11 10:53:50 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Nov 11 10:54:10 2018 +0000
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 <slyfox <AT> 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..00000000000
--- 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..00000000000
--- 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..00000000000
--- a/dev-lang/nasm/nasm-2.13.03.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# 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="https://www.nasm.us/"
-SRC_URI="https://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"
-IUSE="doc"
-
-DEPEND="
- dev-lang/perl
- doc? (
- app-text/ghostscript-gpl
- dev-perl/Font-TTF
- dev-perl/Sort-Versions
- media-fonts/clearsans
- 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 '')
-}
next reply other threads:[~2018-11-11 10:54 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-11 10:54 Sergei Trofimovich [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-08-04 17:31 [gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/ Arthur Zamarin
2024-08-04 3:16 Sam James
2024-08-03 22:51 Sam James
2024-08-03 16:48 Jakov Smolić
2024-08-03 16:48 Jakov Smolić
2024-08-03 11:06 Arthur Zamarin
2024-07-31 17:51 Matthew Smith
2024-04-21 10:25 Matthew Smith
2024-04-07 10:40 Matthew Smith
2023-10-22 14:34 Joonas Niilola
2023-10-03 14:15 Sam James
2023-10-03 14:15 Sam James
2023-10-03 12:06 Sam James
2023-10-03 12:06 Sam James
2022-12-23 10:04 Matthew Smith
2022-12-02 19:27 Arthur Zamarin
2022-12-02 18:50 Arthur Zamarin
2022-12-02 18:44 WANG Xuerui
2022-09-16 9:34 Joonas Niilola
2022-09-15 14:49 Matthew Smith
2022-09-15 7:05 Joonas Niilola
2021-08-31 23:55 Sam James
2021-08-14 5:59 Joonas Niilola
2021-07-30 8:55 Sergei Trofimovich
2020-10-08 8:00 Sergei Trofimovich
2020-09-06 8:34 Sergei Trofimovich
2020-09-01 20:12 Sam James
2020-08-29 14:48 Thomas Deutschmann
2020-08-28 19:04 Sergei Trofimovich
2020-08-21 8:03 Sergei Trofimovich
2020-07-25 9:18 Sergei Trofimovich
2020-07-21 23:15 Kent Fredric
2020-07-18 7:48 Sergei Trofimovich
2020-07-05 10:56 Sergei Trofimovich
2020-07-02 20:23 Sergei Trofimovich
2020-06-29 6:35 Sergei Trofimovich
2019-08-10 18:21 Aaron Bauman
2019-07-24 20:49 Thomas Deutschmann
2019-01-24 22:22 Thomas Deutschmann
2019-01-23 18:34 Mikle Kolyada
2019-01-15 9:28 Sergei Trofimovich
2018-11-11 10:54 Sergei Trofimovich
2018-06-10 16:26 Sergei Trofimovich
2018-05-11 7:41 Michał Górny
2018-05-11 6:35 Sergei Trofimovich
2018-05-10 22:09 Sergei Trofimovich
2018-02-26 14:25 Jason Zaman
2018-02-25 20:16 Thomas Deutschmann
2018-02-21 18:03 Michał Górny
2017-11-20 19:30 Sergei Trofimovich
2017-07-02 3:05 David Seifert
2016-05-13 14:51 Agostino Sarubbo
2016-04-20 4:45 Michael Sterrett
2016-04-04 15:18 Michael Sterrett
2016-03-03 6:15 Michael Sterrett
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1541933650.34254ece665e78e521a75eb086967fb4d5a8f056.slyfox@gentoo \
--to=slyfox@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox