diff options
author | 2024-12-13 06:09:00 +0100 | |
---|---|---|
committer | 2024-12-13 06:09:20 +0100 | |
commit | 2cf6aac54b28e4a6dc550f360e3ddf7b85071a1d (patch) | |
tree | 2fc717b6a99ba1bea5e4d6ae1f2c7a3d2291280d /dev-db | |
parent | dev-db/sqlcmd: add 1.8.2 (diff) | |
download | guru-2cf6aac54b28e4a6dc550f360e3ddf7b85071a1d.tar.gz guru-2cf6aac54b28e4a6dc550f360e3ddf7b85071a1d.tar.bz2 guru-2cf6aac54b28e4a6dc550f360e3ddf7b85071a1d.zip |
dev-db/sqlcmd: drop 1.8.0, 1.8.1
Signed-off-by: Jonas Frei <freijon@pm.me>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/sqlcmd/Manifest | 4 | ||||
-rw-r--r-- | dev-db/sqlcmd/sqlcmd-1.8.0.ebuild | 43 | ||||
-rw-r--r-- | dev-db/sqlcmd/sqlcmd-1.8.1.ebuild | 43 |
3 files changed, 0 insertions, 90 deletions
diff --git a/dev-db/sqlcmd/Manifest b/dev-db/sqlcmd/Manifest index 6a50b916e..3cf424b87 100644 --- a/dev-db/sqlcmd/Manifest +++ b/dev-db/sqlcmd/Manifest @@ -1,6 +1,2 @@ -DIST sqlcmd-1.8.0-deps.tar.xz 51224260 BLAKE2B 0f30c0ee118d1dbcf156fb0605d27d8c5163b80eb024437636ab5c13bb0990b1348f0cd41100f6ffeb6305bad58f44bea8c6b18aead518e4809fb4826219e4ec SHA512 15aa2d5123ac13d5b9a7cded3bc318973131b38cc33a017ffca2f4192641b393bbf2ad79657ca19c1a5c17214f2c06c3eaf3e6752f8fe82f5bd1136646a33c31 -DIST sqlcmd-1.8.0.tar.gz 1047131 BLAKE2B 9d2d472f1abc73ed373c1ca9ad4b1a53bda1d047e12e4ca2dc9eb86ed891a73f3bffe95e3d61f4d384b5f1e2d0791f77fa7911bf69fdf3e24c3b1926e0480e48 SHA512 56af33290561c297a3d7d19b0130747896676ca1f373468ade5760d3ae056f139f467bd72b75856a985cec949b009727c6bc0f188baee3a5d3307e92a9e04960 -DIST sqlcmd-1.8.1-deps.tar.xz 53599544 BLAKE2B 0c4b00283c2d9024fce323d4880bd0a15ce4d194ede55751b55eb8fe46372eb5d4060d47705121d1cf42ca7f5144c38de5c4871e7a9df512f582cdafe1e980d9 SHA512 9984e41c77d9f663d105b2f7ac89d5703b914e779587ccefd7a6d24afef73ae81202fd4449fadc70e5158bf11c9feb789dacceb477279e543926c5a4aeab3b83 -DIST sqlcmd-1.8.1.tar.gz 1050073 BLAKE2B 194a072f20b7944e91cecfcca67f6a2889e065aa441902acac9676e3ed8eb4f70f0e655bbb50529fd81b39d1fef048801383ae33d9ac1c826b98dac007d576d6 SHA512 c9afd037a3378edec2d2fb90ac6e0c3acb5ae3ebd52ecd613752b33773d047da11ccfc4d7f4fe3f0ea3c2f68b74bc6e9abae4ab34e98d2a891c5eb5c3a7cca9d DIST sqlcmd-1.8.2-deps.tar.xz 53593028 BLAKE2B a521a110d0f5ed20a60d7337bb6f28142b5810405847eded67cb01ff13d818038712cbcd5d233f44b1c863a1fb8a19dbaefb31932df96fdbb34f804b985a6d8f SHA512 e1938ee14514efc22d8d3c78f4f1781b9cd90265708812548b1b5622af2e7e9bd71e108ebe6d7d3739493c370631b84155e0f2b415d60826d3226ae6cea32dc2 DIST sqlcmd-1.8.2.tar.gz 1050371 BLAKE2B 6fb08f72accef33f3cc7edb4701371ce7305e6a52e9b69c258e0224b302ac5b5fc63d834f079567db2503ef6ad89d8d671f74d3c609766c5389224bb76e71a02 SHA512 b1e58c35ac7572e223c8186a36fcffe1e7d350a68876a88639d71a15a7a7130d33af97be0af599a848b5635319f345053b1ba0a7dcff21fa5c44d5bcdf913dec diff --git a/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild b/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild deleted file mode 100644 index af122c844..000000000 --- a/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild +++ /dev/null @@ -1,43 +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" - -# Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html -DEPS_URI="https://gitlab.com/freijon_gentoo/${CATEGORY}/${PN}/-/raw/main/${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 -} diff --git a/dev-db/sqlcmd/sqlcmd-1.8.1.ebuild b/dev-db/sqlcmd/sqlcmd-1.8.1.ebuild deleted file mode 100644 index af122c844..000000000 --- a/dev-db/sqlcmd/sqlcmd-1.8.1.ebuild +++ /dev/null @@ -1,43 +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" - -# Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html -DEPS_URI="https://gitlab.com/freijon_gentoo/${CATEGORY}/${PN}/-/raw/main/${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 -} |