commit:     97221f2c365baedcd1bfa0e41c918fb6fa673b8c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 21 06:12:01 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 06:12:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97221f2c

dev-util/bam: Remove last-rited pkg

Closes: https://bugs.gentoo.org/735316
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/bam/Manifest                            |  2 -
 dev-util/bam/bam-0.4.0-r1.ebuild                 | 49 ----------------------
 dev-util/bam/bam-0.5.1.ebuild                    | 53 ------------------------
 dev-util/bam/files/0.4.0/Makefile                | 22 ----------
 dev-util/bam/files/0.4.0/bam-0.4.0-test.py.patch | 11 -----
 dev-util/bam/metadata.xml                        |  8 ----
 profiles/package.mask                            |  5 ---
 7 files changed, 150 deletions(-)

diff --git a/dev-util/bam/Manifest b/dev-util/bam/Manifest
deleted file mode 100644
index 0bb431c913a..00000000000
--- a/dev-util/bam/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST bam-0.4.0.tar.bz2 164033 BLAKE2B 
75c3ccc2c0a22e793ebaf116257ad735db097870b84dd3cb7e9c12068e97b38ae2317c148f04b3d9b45e39a415e595d519d003c6c58af1230ab066538f93e2de
 SHA512 
10ba53b05ac1604a9e9a01f4c008a8cbdc4e4e9df2fc039c8ca59251461e4c5f95770b5b72945d07693db7abe7cd312bc38725686b4d509d5dc21a585fffc810
-DIST bam-0.5.1.tar.gz 258693 BLAKE2B 
145016bc9da49942c53d27d191f55d6118343dec725477b494a221fb40050ab165a301c743071bbda294720c481830c223b688d6f214ce8764fc6ad2daea9b68
 SHA512 
e6f1b3daad6073c58b0e3cbf836bb0a6b66f0c36532d6e6eca9949239ab8b584cc88f892cce6f74974e370a8a688f33a95dde86dd65cc1790e49e5f8aeab0fef

diff --git a/dev-util/bam/bam-0.4.0-r1.ebuild b/dev-util/bam/bam-0.4.0-r1.ebuild
deleted file mode 100644
index 78b8924a895..00000000000
--- a/dev-util/bam/bam-0.4.0-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-any-r1 toolchain-funcs
-
-DESCRIPTION="Fast and flexible Lua-based build system"
-HOMEPAGE="https://matricks.github.com/bam/";
-SRC_URI="https://github.com/downloads/matricks/${PN}/${P}.tar.bz2";
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-lang/lua:="
-DEPEND="${RDEPEND}
-       doc? ( ${PYTHON_DEPS} )
-       test? ( ${PYTHON_DEPS} )"
-
-pkg_setup() {
-       if use doc || use test; then
-               python-any-r1_pkg_setup
-       fi
-}
-
-src_prepare() {
-       cp "${FILESDIR}"/${PV}/Makefile "${S}"/Makefile || die "cp failed"
-       epatch "${FILESDIR}"/${PV}/${P}-test.py.patch
-       tc-export CC
-}
-
-src_compile() {
-       emake ${PN}
-       if use doc; then
-               "${PYTHON}" scripts/gendocs.py || die "doc generation failed"
-       fi
-}
-
-src_install() {
-       dobin ${PN}
-       if use doc; then
-               dohtml docs/${PN}{.html,_logo.png}
-       fi
-}

diff --git a/dev-util/bam/bam-0.5.1.ebuild b/dev-util/bam/bam-0.5.1.ebuild
deleted file mode 100644
index 28b19976824..00000000000
--- a/dev-util/bam/bam-0.5.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-any-r1 toolchain-funcs
-
-DESCRIPTION="Fast and flexible Lua-based build system"
-HOMEPAGE="https://matricks.github.com/bam/";
-SRC_URI="https://github.com/matricks/bam/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-lang/lua-5.3:="
-DEPEND="${RDEPEND}"
-BDEPEND="doc? (
-               ${PYTHON_DEPS}
-               media-gfx/graphviz
-       )
-       test? ( ${PYTHON_DEPS} )"
-
-pkg_setup() {
-       if use doc || use test; then
-               python-any-r1_pkg_setup
-       fi
-}
-
-src_prepare() {
-       default
-       # There is no such file licence.txt
-       sed -e '/license\.txt/d' -i scripts/gendocs.py || die
-       tc-export CC
-}
-
-src_compile() {
-       emake ${PN}
-       if use doc; then
-               "${EPYTHON}" scripts/gendocs.py || die "doc generation failed"
-       fi
-}
-
-src_install() {
-       dobin ${PN}
-       if use doc; then
-               dodoc docs/${PN}{.html,_logo.png}
-       fi
-}

diff --git a/dev-util/bam/files/0.4.0/Makefile 
b/dev-util/bam/files/0.4.0/Makefile
deleted file mode 100644
index d64f43abcd1..00000000000
--- a/dev-util/bam/files/0.4.0/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-LIBS           += -lm -lpthread -llua -ldl
-TARGETS        = txt2c internal_base bam
-BAM_OBJ        = $(patsubst %.c,%.o,$(wildcard src/*.c))
-TXT2C_LUA      = $(wildcard src/*.lua)
-
-all: $(TARGETS)
-
-txt2c: src/tools/txt2c
-
-internal_base: src/internal_base.h
-
-src/internal_base.h:
-       src/tools/txt2c $(TXT2C_LUA) > src/internal_base.h
-
-bam: txt2c internal_base $(BAM_OBJ)
-       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(BAM_OBJ) $(LIBS)
-
-test: $(TARGETS)
-       python scripts/test.py
-
-clean:
-       rm -f $(BAM_OBJ) $(TARGETS) src/internal_base.h src/tools/txt2c

diff --git a/dev-util/bam/files/0.4.0/bam-0.4.0-test.py.patch 
b/dev-util/bam/files/0.4.0/bam-0.4.0-test.py.patch
deleted file mode 100644
index 5ea2acd3e44..00000000000
--- a/dev-util/bam/files/0.4.0/bam-0.4.0-test.py.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- scripts/test.py.old        2010-03-22 19:23:23.000000000 +0100
-+++ scripts/test.py    2010-03-22 19:23:43.000000000 +0100
-@@ -178,6 +178,8 @@
-       print "FAILED TESTS:"
-       for t in failed_tests:
-               print "\t"+t
-+      sys.exit(1)
- else:
-       print "ALL TESTS PASSED!"
-+      sys.exit(0)
- 

diff --git a/dev-util/bam/metadata.xml b/dev-util/bam/metadata.xml
deleted file mode 100644
index 3d17928aa2c..00000000000
--- a/dev-util/bam/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <upstream>
-               <remote-id type="github">downloads/matricks</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index e38e1b4c9e2..a025f3eec71 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -667,7 +667,6 @@ app-misc/workrave
 app-portage/etc-proposals
 app-portage/gpytage
 dev-db/mysql-workbench
-dev-util/bam
 
 # Alfredo Tupone <[email protected]> (2020-08-16)
 # Ported to py3.8 but not yet released
@@ -880,10 +879,6 @@ dev-libs/OpenSRF
 dev-java/ant-eclipse-ecj:4.13
 dev-java/eclipse-ecj:4.13
 
-# Stefan Strogin <[email protected]> (2019-09-27)
-# Requires >=dev-lang/lua-5.3 which is masked
->=dev-util/bam-0.5.0
-
 # Matt Turner <[email protected]> (2019-09-01)
 # TeXmacs is the only remaining package in tree that requires guile-1.8, which
 # is unsupported upstream. A TeXmacs port to Guile-2 has been in progress for a

Reply via email to