@ryanbarillos I would like to be co-maintainer. Thanks!
Search Criteria
Package Details: mssql-tools 18.4.1.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/mssql-tools.git (read-only, click to copy) |
---|---|
Package Base: | mssql-tools |
Description: | Microsoft SQL Server Tools for Linux |
Upstream URL: | https://learn.microsoft.com/en-us/sql/linux/sql-server-linux-overview?view=sql-server-ver16 |
Licenses: | custom |
Submitter: | karuna_murti |
Maintainer: | ryanbarillos |
Last Packager: | ryanbarillos |
Votes: | 27 |
Popularity: | 0.000760 |
First Submitted: | 2016-11-18 14:29 (UTC) |
Last Updated: | 2024-08-28 08:46 (UTC) |
Dependencies (2)
- msodbcsqlAUR (msodbcsql17AUR)
- mssql-serverAUR (optional) – Enter T-SQL statements to an SQL Server database
Required by (0)
Sources (1)
mkurz commented on 2025-05-17 13:34 (UTC)
mkurz commented on 2025-04-27 22:46 (UTC) (edited on 2025-04-27 22:47 (UTC) by mkurz)
You use the ${arch}
variable in the source
url. But that does not work. ${arch}
will always be x86_64
- no matter on which actual cpu architecture you run makepkg.
You want to use ${CARCH}
which will correctly substitute the architecure. I am running on aarch64 and can confirm that for me aarch64
will be used.
It would be great if you could modify the PKGBUILD
so that aarch64 is really supported. Here is the necessary diff (you can test that with CARCH=aarch64 makepkg -scAL -f
):
diff --git a/PKGBUILD b/PKGBUILD
index 8f855b5..ff2f15f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,9 +13,12 @@ depends=('msodbcsql')
optdepends=('mssql-server: Enter T-SQL statements to an SQL Server database')
options=('!strip')
install="${pkgname}.install"
-source=("https://packages.microsoft.com/rhel/${_rhelver}/prod/Packages/m/${pkgname}18-${pkgver}-${pkgrel}.${arch}.rpm")
-sha256sums=('1e1d77a80e9abb7d98cf9e8b25cdf052302ec5163ae94ab9cd586dbfefb78194')
-sha512sums=('5663b0b360941fdcfba50972ac2e01f629a0acaf32343de5ab468d06a2a3c11e3c44194454608f2240d698585cdb12300b932115a29942ad5d42d7932b260736')
+source_x86_64=("https://packages.microsoft.com/rhel/${_rhelver}/prod/Packages/m/${pkgname}18-${pkgver}-${pkgrel}.${CARCH}.rpm")
+source_aarch64=($source_x86_64)
+sha256sums_x86_64=('1e1d77a80e9abb7d98cf9e8b25cdf052302ec5163ae94ab9cd586dbfefb78194')
+sha512sums_x86_64=('5663b0b360941fdcfba50972ac2e01f629a0acaf32343de5ab468d06a2a3c11e3c44194454608f2240d698585cdb12300b932115a29942ad5d42d7932b260736')
+sha256sums_aarch64=('8bfbd58fefc9d4550fa478b712ce8528f49a18255584045b04228b3907ce4f26')
+sha512sums_aarch64=('7489ff2603b68bcdb8d6e4850d209759c6c251da4e944aaf26db3447a7e90a571d28b8ebc0200a477a476caee96a35cc3849e53b82b8f41edefae63d6ebb8bce')
package() {
cd "$srcdir"
ryanbarillos commented on 2024-08-28 08:47 (UTC)
Package has now been updated to the most latest version of 18.4.1.1
Yay!
ryanbarillos commented on 2024-04-15 06:05 (UTC)
Been busy, but I was able to repair my Linux PC.
I can continue maintaining this package.
ryanbarillos commented on 2024-02-15 19:11 (UTC)
Alright. mssql-server has now been moved to optdepends.
ryanbarillos commented on 2024-02-13 23:21 (UTC) (edited on 2024-02-13 23:23 (UTC) by ryanbarillos)
My apologies for that added dependency. Just added it without testing it as soon as I updated the package. I'll get that mended in a few weeks time and include that suggestion of yours, bodhizafa. Thanks for understanding.
bodhizafa commented on 2024-02-06 23:22 (UTC)
I was able to install and use this to connect to a remote server without the mssql-server dependency (by manually deleting it from the PKGBUILD). I haven't tried every feature, but it seems like it should at least be optional, it is a pretty heavy dep.
seyfahni commented on 2024-01-25 16:49 (UTC)
Why does this package suddenly require the SQLServer as a dependency? I really would prefer to not have that one installed if possible, as I really only want the client to communicate with remote SQLServer instances.
Can you please provide some context to why that was changed?
ryanbarillos commented on 2024-01-18 09:25 (UTC)
NOTES:
- If you're interested in co-maintaining this package, I'll be glad to add you in
- If the package is outdated, please click "Flag package out-of-date", and it'll be quickly resolved.
Pinned Comments
ryanbarillos commented on 2024-08-28 08:47 (UTC)
Package has now been updated to the most latest version of 18.4.1.1
Yay!
ryanbarillos commented on 2024-01-18 09:25 (UTC)
NOTES: