Package Details: edmarketconnector 5.10.3-1

Git Clone URL: https://aur.archlinux.org/edmarketconnector.git (read-only, click to copy)
Package Base: edmarketconnector
Description: Downloads commodity market and other station data from the game Elite: Dangerous for use with all popular online and offline trading tools
Upstream URL: https://github.com/EDCD/EDMarketConnector
Keywords: ED EDMC EliteDangerous
Licenses: GPL2
Conflicts: edmarketconnector
Provides: edmarketconnector
Submitter: NeoTheFox
Maintainer: NeoTheFox (ciplc)
Last Packager: NeoTheFox
Votes: 11
Popularity: 0.33
First Submitted: 2020-11-15 19:30 (UTC)
Last Updated: 2024-04-07 12:57 (UTC)

Latest Comments

Alucard commented on 2024-02-21 00:35 (UTC)

Additionally, edmarketconnector.desktop has a Category that doesn't work; it should be "Game", not Games, see the spec

Alucard commented on 2024-02-19 17:00 (UTC)

5.10 is out for some time, and seems to include a change to the included FDevIDs files. To avoid a popup asking for manual intervention, we could switch the downloaded artifact to one that includes them. Proposed PKGBUILD diff for 5.10.1:

diff --git a/PKGBUILD b/PKGBUILD
index 71d8d5c..0e0c3cc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
 # Maintainer: Henry Graham <henry)dot(arch)at(hgrahamcs)dot(com(>

 pkgname=edmarketconnector
-pkgver=5.9.5
+pkgver=5.10.1
 pkgrel=1
 pkgdesc='Downloads commodity market and other station data from the game Elite: Dangerous for use with all popular online and offline trading tools'
 arch=('x86_64')
@@ -11,10 +11,10 @@ license=('GPL2')
 provides=('edmarketconnector')
 conflicts=('edmarketconnector')
 depends=('tk' 'python-certifi' 'python-requests' 'python-watchdog' 'python-semantic-version')
-source=("https://github.com/EDCD/EDMarketConnector/archive/Release/${pkgver}.tar.gz"
+source=("https://github.com/EDCD/EDMarketConnector/releases/download/Release%2F${pkgver}/EDMarketConnector-release-${pkgver}.tar.gz"
         "edmarketconnector.sh"
        "edmarketconnector.desktop")
-sha256sums=('f73d2466114ef6396b0edc06305e7b84d968f1f4688bcd854e89c2ca6d1af90a'
+sha256sums=('c52e1cc1f0ae3ac00ba3774cc901293ad09a0267c258f314b70f1d0266ef9fdd'
             '7be0528d56edfcb444c4a7ba7a18e85296571e7558906c90fe6520c03206242c'
             'fa797932630e7b5e7cc42b0f0f4b20126b5af67661c636885b5486008cb1b13a')

@@ -22,7 +22,7 @@ package() {
    mkdir -p ${pkgdir}/usr/lib/edmarketconnector
    mkdir -p ${pkgdir}/usr/bin/
    mkdir -p ${pkgdir}/usr/share/applications
-   cp ${srcdir}/EDMarketConnector-Release-${pkgver}/* ${pkgdir}/usr/lib/edmarketconnector -r
+   cp ${srcdir}/EDMarketConnector/* ${pkgdir}/usr/lib/edmarketconnector -r
    install -m755 edmarketconnector.sh ${pkgdir}/usr/bin/edmarketconnector.sh
    install -m644 edmarketconnector.desktop ${pkgdir}/usr/share/applications/edmarketconnector.desktop
 }

theangriestmouse commented on 2023-09-21 15:59 (UTC) (edited on 2023-09-21 16:00 (UTC) by theangriestmouse)

With these two changes you can build the latest version

pkgver=5.9.5

sha256sums=('f73d2466114ef6396b0edc06305e7b84d968f1f4688bcd854e89c2ca6d1af90a'
            '7be0528d56edfcb444c4a7ba7a18e85296571e7558906c90fe6520c03206242c'
            'fa797932630e7b5e7cc42b0f0f4b20126b5af67661c636885b5486008cb1b13a')

UnclePsymon commented on 2022-07-04 19:09 (UTC)

Works great, thank you!

zcorniere commented on 2022-03-20 16:50 (UTC) (edited on 2022-03-22 14:06 (UTC) by zcorniere)

EDMarketConnector as released a new update to handle Elite Dangerous : Update 11

--- old/PKGBUILD        2022-03-20 17:48:19.882849048 +0100
+++ new/PKGBUILD        2022-03-20 17:48:23.286185573 +0100
@@ -2,7 +2,7 @@
 # Maintainer: Henry Graham <henry)dot(arch)at(hgrahamcs)dot(com(>

 pkgname=edmarketconnector
-pkgver=5.3.1
+pkgver=5.3.4
 pkgrel=1
 pkgdesc='Downloads commodity market and other station data from the game Elite: Dangerous for use with all popular online and offline trading tools'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 source=("https://github.com/EDCD/EDMarketConnector/archive/Release/${pkgver}.tar.gz" 
         "edmarketconnector.sh"
        "edmarketconnector.desktop")
-sha256sums=('fa8d11cd7d6cb92ec9f6bb31f1ee709ac1e912439fc19276cabcb3bf92159460'
+sha256sums=('88f56559109fa78577ea502e5cc84c0fd29107e2e997f705e188565968e0dbdd'
             '7be0528d56edfcb444c4a7ba7a18e85296571e7558906c90fe6520c03206242c'
             'fa797932630e7b5e7cc42b0f0f4b20126b5af67661c636885b5486008cb1b13a')

Cervox commented on 2021-04-19 01:13 (UTC)

This has been working great! Thank you!

MrSelfDestruct commented on 2021-02-27 03:56 (UTC)

This package is missing the tk dependency, which is required for tkinter to work. My friend had a system without tk installed previously, and this package would not work until they installed it directly.