summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-09-21 08:12:01 +0200
committerMichał Górny <mgorny@gentoo.org>2020-09-21 08:12:14 +0200
commit97221f2c365baedcd1bfa0e41c918fb6fa673b8c (patch)
tree2ccaea9c645b5ddd83fd2676c67bcdf1fa15ebf7 /dev-util
parentmedia-gfx/displaycal: Remove last-rited pkg (diff)
downloadgentoo-97221f2c365baedcd1bfa0e41c918fb6fa673b8c.tar.gz
gentoo-97221f2c365baedcd1bfa0e41c918fb6fa673b8c.tar.bz2
gentoo-97221f2c365baedcd1bfa0e41c918fb6fa673b8c.zip
dev-util/bam: Remove last-rited pkg
Closes: https://bugs.gentoo.org/735316 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/bam/Manifest2
-rw-r--r--dev-util/bam/bam-0.4.0-r1.ebuild49
-rw-r--r--dev-util/bam/bam-0.5.1.ebuild53
-rw-r--r--dev-util/bam/files/0.4.0/Makefile22
-rw-r--r--dev-util/bam/files/0.4.0/bam-0.4.0-test.py.patch11
-rw-r--r--dev-util/bam/metadata.xml8
6 files changed, 0 insertions, 145 deletions
diff --git a/dev-util/bam/Manifest b/dev-util/bam/Manifest
deleted file mode 100644
index 0bb431c913a3..000000000000
--- 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 78b8924a8951..000000000000
--- 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 28b19976824f..000000000000
--- 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 d64f43abcd11..000000000000
--- 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 5ea2acd3e440..000000000000
--- 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 3d17928aa2c6..000000000000
--- 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>