Package Details: mssql-tools 18.4.1.1-1

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 (mkurz)
Last Packager: mkurz
Votes: 28
Popularity: 0.192197
First Submitted: 2016-11-18 14:29 (UTC)
Last Updated: 2025-09-27 20:40 (UTC)

Pinned Comments

ryanbarillos commented on 2024-01-18 09:25 (UTC)

NOTES:

  1. If you're interested in co-maintaining this package, I'll be glad to add you in
  2. If the package is outdated, please click "Flag package out-of-date", and it'll be quickly resolved.

Latest Comments

1 2 3 4 5 Next › Last »

ryanbarillos commented on 2025-09-27 12:57 (UTC)

@mkurz Congrats! You are now a co-maintainer :D

mkurz commented on 2025-09-19 19:38 (UTC)

I do not really use it as well, but I can help yes. If you make me co maintainer I would at least get the things fixed I posted below. Here are the packages I maintain currently: https://aur.archlinux.org/packages?K=mkurz&SeB=m and I am one of the founders and maintainers of https://asahi-alarm.org/, see my commits here: https://github.com/asahi-alarm/PKGBUILDs/commits/main/

ryanbarillos commented on 2025-09-19 19:32 (UTC) (edited on 2025-09-19 19:32 (UTC) by ryanbarillos)

@mkurz Just got back. You still interested in being co-maintainer? I currently don't use MSSQL at the moment, so I haven't got time to focus on this package.

mkurz commented on 2025-05-17 13:34 (UTC)

@ryanbarillos I would like to be co-maintainer. Thanks!

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-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.