Package Details: monetdb 11.45.7-1

Git Clone URL: https://aur.archlinux.org/monetdb.git (read-only, click to copy)
Package Base: monetdb
Description: MonetDB: an open source database system
Upstream URL: http://www.monetdb.org/Home
Keywords: databases
Licenses: MPL
Submitter: dome22xl
Maintainer: dome22xl (symen, fent)
Last Packager: fent
Votes: 2
Popularity: 0.000000
First Submitted: 2016-05-29 12:18 (UTC)
Last Updated: 2022-11-05 11:38 (UTC)

Latest Comments

1 2 3 4 Next › Last »

muesli4 commented on 2021-02-02 18:01 (UTC) (edited on 2021-02-02 18:01 (UTC) by muesli4)

Maybe someone could write a script to automate updating and testing this package. :)

TrentHawkins commented on 2021-02-02 14:30 (UTC)

PKGBUILD is outdated. Proper version is 11.39.11 now. sha25sums here: https://dev.monetdb.org/downloads/sources/Oct2020-SP2/SHA256SUM

dome22xl commented on 2020-10-28 18:26 (UTC)

I've added fent as a new Contributor

artemklevtsov commented on 2020-08-07 04:53 (UTC) (edited on 2020-08-07 05:42 (UTC) by artemklevtsov)

Updated PKGBUILD:

# Maintainer: Brian Hood <brianh6854@googlemail.com>
# Contributor: Benjamin van der Burgh <gringo@archlinux.info>
# Contributor: symen
# Contributor: Thiago Perrotta <perrotta dot thiago at poli dot ufrj dot br>
# Contributor: Artem Klevtsov <a.a.klevtsov@gmail.com>
# Contributor: Moritz Bruder <muesli4 at gmail dot com>

pkgname=monetdb
pkgver=11.37.11
pkgrel=1
pkgdesc="MonetDB: an open source database system"
arch=('i686' 'x86_64')
url="http://www.monetdb.org/Home"
license=('custom')
makedepends=('r' 'python' 'python-numpy' 'libatomic_ops' 'snappy' 'unixodbc' 'gdal')
depends=('r' 'python' 'python-numpy' 'libatomic_ops' 'snappy' 'unixodbc' 'gdal')
install=monetdb.install
source=("http://dev.monetdb.org/downloads/sources/Latest/MonetDB-$pkgver.tar.xz")
sha256sums=('3cadb3ea42aa6205678dd532756f5e9b6f47650f18463db83f16c8dc55a4325c')

build() {
    cd "$srcdir/MonetDB-$pkgver"
    ./bootstrap
    ./configure --libdir=/usr/lib \
                --prefix=/usr \
                --sysconfdir=/etc \
                --localstatedir=/var \
                --disable-assert \
                --disable-testing \
                --enable-optimize \
                --enable-rintegration
    make
}

package() {
    cd "$srcdir/MonetDB-$pkgver"
    make "DESTDIR=$pkgdir" install
    mkdir -p "$pkgdir/var/log/monetdb"
}

muesli4 commented on 2020-05-26 21:51 (UTC)

I tried updating the package but there's some issue with the r package. It probably requires another version.

serxxx commented on 2020-05-26 15:49 (UTC)

Seems like it's broken again:

==> ERROR: Failure while downloading http://dev.monetdb.org/downloads/sources/Latest/MonetDB-11.35.3.tar.xz

404 error.

muesli4 commented on 2018-11-21 08:32 (UTC) (edited on 2018-11-21 08:32 (UTC) by muesli4)

@Nintinugga They update what Latest points to. So we could change it to point to the fixed releases then the build won't break with a new release.

Let me know whether that's preferable.

As a side note: I updated it to the new release and built it for testing.

Nintinugga commented on 2018-05-24 12:28 (UTC)

the link to the source can not be found since the "Latest" version is "https://dev.monetdb.org/downloads/sources/Mar2018/MonetDB-11.29.3.tar.xz".

I guess you are refering to "https://dev.monetdb.org/downloads/sources/Jul2017-SP3/MonetDB-11.27.11.tar.xz".

I changed the link in the PKGBUILD file and the build is running just fine!

muesli4 commented on 2018-01-05 18:43 (UTC)

@thiagowfx Yes, I resolved all issues and everything should work properly. (Had to learn a bit more about PKGBUILD files first.)

I actually compiled monetdb a lot by myself as I wrote some custom functions in the past. I'm happy to help if there are any issues in the future.

thiagowfx commented on 2018-01-03 17:44 (UTC)

Did you manage to solve the user/group creation issue? Oh, and I apologize for my delay. Glad you decided to become a co-maintainer!