summaryrefslogtreecommitdiff
path: root/dev-util/stepman
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-06-23 00:11:31 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-06-23 00:11:31 +0100
commitbff543bb632933380da922cbfc07c67157d72d42 (patch)
treedf2e5eebc3dbd8e29153ab3a869b3be8d9be9f19 /dev-util/stepman
parent491d0101c89d81dec507f28215b3cb094800d600 (diff)
gentoo auto-resync : 23:06:2024 - 00:11:30
Diffstat (limited to 'dev-util/stepman')
-rw-r--r--dev-util/stepman/Manifest3
-rw-r--r--dev-util/stepman/metadata.xml16
-rw-r--r--dev-util/stepman/stepman-0.10.5.ebuild42
3 files changed, 0 insertions, 61 deletions
diff --git a/dev-util/stepman/Manifest b/dev-util/stepman/Manifest
deleted file mode 100644
index d976e1c3f6a8..000000000000
--- a/dev-util/stepman/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST stepman-0.10.5.tar.gz 3197451 BLAKE2B f6a4fd2cc0396c5635d7d45a6d88166669dab0bdfed2d53cb8c809c122ee84039660704326c996436d62797db58d46f35bb73af2415e875cf748be9137304280 SHA512 6bd325e1d50d75bf2a38b89c1faf5275914a3a7f00de0d072450253121d9931c4e32ca85300319aaec90ca108223600d3ff1195276df87b11148d4771c642471
-EBUILD stepman-0.10.5.ebuild 1194 BLAKE2B 32375dcc3eb778941d56ae0192bd08591f1c59530ecc44dad190b0effcec01f12633921347038af8e896a0bc6d5608e77269dd78960a669384642532a7566ed0 SHA512 4b870133f37b727ad9cca83cf96677e3e383e1ffd90f86d27983cc70e3c793ec3806a2c6150f887fe87fcac8df4eaa07a4d085137dada8be86903bc6462d9b7d
-MISC metadata.xml 694 BLAKE2B 04af2fc2c361ead11e18fcd7544e811d56801145be1e85764fd6821b734d1a3eeb3afaddaec790fd80b886c53b662fb59bbdfd8596a1c342932dcab4de3099b2 SHA512 aec73e76b959abe75789fa3a59de5b5e36275da1b511baaa6c397cbecca54f3d345a21e9909e00a960e60e51ff3358f6826eb91039dc66d2866456f719e367ea
diff --git a/dev-util/stepman/metadata.xml b/dev-util/stepman/metadata.xml
deleted file mode 100644
index 3a9f651114d8..000000000000
--- a/dev-util/stepman/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
- Step collection manager for Bitrise CLI. Part of the Bitrise Continuous
- Integration, Delivery and Automations Stack, with <pkg>dev-util/envman</pkg>
- and <pkg>dev-util/bitrise</pkg>. For a nice &amp; quick intro you should check:
- https://app.bitrise.io/cli
- </longdescription>
- <upstream>
- <bugs-to>https://github.com/bitrise-io/stepman/issues</bugs-to>
- <doc>https://github.com/bitrise-io/stepman/blob/master/README.md</doc>
- <remote-id type="github">bitrise-io/stepman</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-util/stepman/stepman-0.10.5.ebuild b/dev-util/stepman/stepman-0.10.5.ebuild
deleted file mode 100644
index 6d86a2724c21..000000000000
--- a/dev-util/stepman/stepman-0.10.5.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit golang-build
-
-EGO_ON="github.com/bitrise-io"
-EGO_PN="${EGO_ON}/${PN}"
-
-DESCRIPTION="Step collection manager for Bitrise CLI"
-HOMEPAGE="https://app.bitrise.io/cli"
-SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-S="${WORKDIR}/src/${EGO_ON}/${PN}"
-
-src_unpack() {
- default
- mkdir -p "${WORKDIR}/src/${EGO_ON}" || die "Couldn't create project dir in GOPATH"
- mv "${WORKDIR}/${P}" "${WORKDIR}/src/${EGO_ON}/stepman" || die "Couldn't move sources to GOPATH"
-}
-
-src_compile() {
- GOPATH="${WORKDIR}" go build -v -o bin/stepman || die "Couldn't compile stepman"
-}
-
-src_test() {
- pushd _tests/integration > /dev/null || die "Couldn't find integration tests directory"
- rm update_test.go step_info_test.go setup_test.go || die "Couldn't remove network-dependent tests"
- popd || die "Couldn't return to ${S} directory"
- local -x INTEGRATION_TEST_BINARY_PATH="${S}/bin/stepman"
- GOPATH="${WORKDIR}" go test -v ./_tests/integration/... || die "Integration tests failed"
-}
-
-src_install() {
- dobin bin/stepman
- dodoc README.md
-}