-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-db/snowsql: new package, add 1.3.2
Signed-off-by: Andrew Udvare <[email protected]>
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST snowflake-snowsql-1.3.2-1.x86_64.rpm 27604157 BLAKE2B 3ae8fc4585ec0b2d0e986b580dff894ac0891063bef06f7b55a8de5c0b68f476c5716f8172dba6e39e5b1119366531ef4ecf525c7454abb0305156f86ce962dc SHA512 7d7802ce02bbab8ca967811370f82e05c6aa4ae2f297cd6f9d5237c30df94c820bae5d75de3ebe41e6ffbc2e660ddc10148e7957b9c4fe3c1114509f8b72e044 | ||
EBUILD snowsql-1.3.2.ebuild 535 BLAKE2B d9f028ad549b38dec44e33c9d3764e35b8d6bb08f56edc5b71ecf9a3f4d268191d89128142fb238af4abd77ac9f0f65d36ccaeb0d081cb825a57cfe3bc3711e5 SHA512 150a27565426132ac55c890708ebc4576addf0c06e8c9aee119cd91ee53c90009870fab748f9fd9ead364b6b4126e2aed35fa73a799df0bdae2d9bc2f8fd9776 | ||
MISC metadata.xml 246 BLAKE2B 719b651fc01707ec3d9e366f618d27c931b4c5f912fdfb5c2d85434a0e798b9ee0d0ea6925cb62e693c745953abaf666009d03696da5496fd93c9045bbe893d2 SHA512 f517e1837b4773afe57afb34d82308adc22f72aeeaabf5664c3caecf1c6d9204e783e32010cae416245213f5558d333edb8e60e05c7388824a2902473483af6f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Andrew Udvare</name> | ||
</maintainer> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 2025 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit rpm | ||
|
||
DESCRIPTION="Lame database tool." | ||
HOMEPAGE="https://docs.snowflake.com/en/user-guide/snowsql" | ||
SRC_URI="https://sfc-repo.snowflakecomputing.com/snowsql/bootstrap/1.3/linux_x86_64/snowflake-${P}-1.x86_64.rpm" | ||
|
||
LICENSE="EULA" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
DEPEND="virtual/libcrypt" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND="" | ||
|
||
RESTRICT="strip" | ||
|
||
S="${WORKDIR}/usr" | ||
|
||
src_install() { | ||
dobin "bin/${PN}" | ||
cp -R lib64 "${D}/usr/lib64" | ||
} |