summaryrefslogtreecommitdiff
path: root/dev-db/sqlcmd
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-db/sqlcmd
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-db/sqlcmd')
-rw-r--r--dev-db/sqlcmd/Manifest2
-rw-r--r--dev-db/sqlcmd/metadata.xml12
-rw-r--r--dev-db/sqlcmd/sqlcmd-1.8.3.ebuild41
3 files changed, 0 insertions, 55 deletions
diff --git a/dev-db/sqlcmd/Manifest b/dev-db/sqlcmd/Manifest
deleted file mode 100644
index 77d617cd91d2..000000000000
--- a/dev-db/sqlcmd/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST sqlcmd-1.8.3-deps.tar.xz 57174884 BLAKE2B 170b2babc29d43f405a4236694b33cd3789124ddcdda6147680e46bd4998d0dea45e91a287a718e5a5d18eca31a08f534ab0774854aebe3344385ffa25dddc8f SHA512 f7fb0e549e32ba47269741e11c898033ad3b7113575878838a6c042bf4dcd912f7b8c916802f225ccdba734c467a9dd7f48799deedd57e6ca8c6dec726b9a25a
-DIST sqlcmd-1.8.3.tar.gz 1050610 BLAKE2B f9dac12c7e5a8434995257250ae986ae2fd9875ea633641543a2efde97209849ed95e92a8881553f94b4d9d4e5c2e986e2f7de60faf4004f2e4d1b94f931c592 SHA512 ed0af421c050494a6f76151071ced8ab954ec73a5571f2677d495cf93147e64eedc82d679bd19145281de575c1e2d1a401c15538cea6af4555df177cbef5b5c8
diff --git a/dev-db/sqlcmd/metadata.xml b/dev-db/sqlcmd/metadata.xml
deleted file mode 100644
index afe7c9dc8705..000000000000
--- a/dev-db/sqlcmd/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <name>Jonas Frei</name>
- <email>freijon@pm.me</email>
- </maintainer>
- <upstream>
- <remote-id type="github">microsoft/go-sqlcmd</remote-id>
- <bugs-to>https://github.com/microsoft/go-sqlcmd/issues</bugs-to>
- </upstream>
-</pkgmetadata>
diff --git a/dev-db/sqlcmd/sqlcmd-1.8.3.ebuild b/dev-db/sqlcmd/sqlcmd-1.8.3.ebuild
deleted file mode 100644
index a4c470c82a0a..000000000000
--- a/dev-db/sqlcmd/sqlcmd-1.8.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module shell-completion
-
-DESCRIPTION="The MSSQL SQLCMD CLI tool"
-HOMEPAGE="https://learn.microsoft.com/sql/tools/sqlcmd/go-sqlcmd-utility"
-SRC_URI="https://github.com/microsoft/go-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-DEPS_URI="https://github.com/freijon/go-${PN}/releases/download/v${PV}/${P}-deps.tar.xz"
-SRC_URI+=" ${DEPS_URI}"
-
-S="${WORKDIR}/go-${P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-src_compile() {
- ego build -o "${PN}" -ldflags="-X main.version=${PV}" ./cmd/modern
-}
-
-src_install() {
- dobin "${PN}"
- mkdir "completions" || die
-
- ./sqlcmd completion bash > "completions/${PN}" || die
- ./sqlcmd completion fish > "completions/${PN}.fish" || die
- ./sqlcmd completion zsh > "completions/_${PN}" || die
- dobashcomp "completions/${PN}"
- dofishcomp "completions/${PN}.fish"
- dozshcomp "completions/_${PN}"
-
- local DOCS=(
- "README.md"
- "SECURITY.md"
- )
-
- einstalldocs
-}