Package Details: breitbandmessung 3.7.0-1

Git Clone URL: https://aur.archlinux.org/breitbandmessung.git (read-only, click to copy)
Package Base: breitbandmessung
Description: Die Breitbandmessung Desktop-App erlaubt es Ihnen, die tatsächliche Datenübertragungsrate Ihres Breitbandanschlusses zu messen. Weitere Informationen erhalten Sie unter https://breitbandmessung.de
Upstream URL: https://breitbandmessung.de/
Keywords: breitbandmessung
Licenses: unknown
Submitter: LinusDierheimer
Maintainer: Posi
Last Packager: Posi
Votes: 6
Popularity: 0.000537
First Submitted: 2020-04-21 10:21 (UTC)
Last Updated: 2024-10-05 12:16 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Pinned Comments

Latest Comments

1 2 3 Next › Last »

GscheadaHamme commented on 2024-10-02 17:32 (UTC) (edited on 2024-10-02 17:33 (UTC) by GscheadaHamme)

An diff for version 3.7.0 could look like this:

6c6
< pkgver=3.7.0
---
> pkgver=3.6.0
14c14
< sha256sums=("1a0473f87779580f3815ee0c310f7717f77f3892a62b30a5686a5d7df0907282")
---
> sha256sums=("8d4a7843db6247f58b913347cfdee3d1e13f5b071f145deeb744bd37833be4e7")

thomas66 commented on 2024-01-19 08:03 (UTC)

@Posi, first of all thank you for maintaining this package!

I just tried to install it, but it looks like there is a newer release available online: "Breitbandmessung Desktop-App Version 3.6.0 18.01.2024)"

So I kindly ask you to please update the PKGBUILD, maybe somehow like this:


--- PKGBUILD_3.5.0  2023-11-05 20:53:22.000000000 +0100
+++ PKGBUILD_3.6.0  2024-01-19 08:58:25.137469195 +0100
@@ -3,7 +3,7 @@
 # Contributorr: Linus Dierheimer <Linus@Dierheimer.de>

 pkgname=breitbandmessung
-pkgver=3.5.0
+pkgver=3.6.0
 pkgrel=1
 pkgdesc="Die Breitbandmessung Desktop-App erlaubt es Ihnen, die tatsächliche Datenübertragungsrate Ihres Breitbandanschlusses zu messen. Weitere Informationen erhalten Sie unter https://breitbandmessung.de"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 url="https://breitbandmessung.de/"
 options=('!strip')
 source=("breitbandmessung-${pkgver}.deb::https://download.breitbandmessung.de/bbm/Breitbandmessung-linux.deb")
-sha256sums=("6542a27114430d9bca994d7d3d8383035ed7cce9cfbc7f2a0218fe874e15d406")
+sha256sums=("8d4a7843db6247f58b913347cfdee3d1e13f5b071f145deeb744bd37833be4e7")
 depends=("net-tools")
 makedepends=("asar")

Thank you!

JeremyStarTM commented on 2023-08-06 15:43 (UTC) (edited on 2024-08-09 13:44 (UTC) by JeremyStarTM)

Here's a Diff for version 3.4.0:

$ diff PKGBUILD_alt PKGBUILD_neu
6c6
< pkgver=3.3.0
---
> pkgver=3.4.0
14c14
< sha256sums=("d7699b7719258def66b2746d364d5102d220dce0b26debffbd47abb03663da2e")
---
> sha256sums=("97abb8d6811d5f0bb3feb6697761f6ed9cebb6a5d484a1f17ce51cd4ac7f5f09")

Posi commented on 2022-08-13 10:21 (UTC)

@janchristoph Thank you so much.

janchristoph commented on 2022-08-12 11:20 (UTC) (edited on 2022-08-12 11:21 (UTC) by janchristoph)

Hi! I was able to patch the support check by applying these changes to the PKGBUILD in the current version 3.3.0:

diff --git a/PKGBUILD b/PKGBUILD
index eedb0f0..83167b9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 # Contributorr: Linus Dierheimer <Linus@Dierheimer.de>

 pkgname=breitbandmessung
-pkgver=3.0.0
+pkgver=3.3.0
 pkgrel=1
 pkgdesc="Die Breitbandmessung Desktop-App erlaubt es Ihnen, die tatsächliche Datenübertragungsrate Ihres Breitbandanschlusses zu messen. Weitere Informationen erhalten Sie unter https://breitbandmessung.de"
 arch=('x86_64')
@@ -11,7 +11,7 @@ license=('unknown')
 url="https://breitbandmessung.de/"
 options=('!strip')
 source=("breitbandmessung-${pkgver}.deb::https://download.breitbandmessung.de/bbm/Breitbandmessung-linux.deb")
-sha256sums=("05df727061449c3fbee47321a22b3477ed0487613bbb305318ea64f3a46460e9")
+sha256sums=("d7699b7719258def66b2746d364d5102d220dce0b26debffbd47abb03663da2e")
 depends=("net-tools")
 makedepends=("asar")

@@ -23,11 +23,11 @@ build() {

     cd "${_builddir}/opt/Breitbandmessung/resources/"

-    _unpatched="}return p.current={}"
-    _patched="}p.allowed=!0;return p.current={}"
+    _unpatched="lsbRelease()"
+    _patched='{ "distributorID": "Debian", "release": "8", "description": "Debian" }'

     asar e app.asar unpacked/
-    sed -i "s/${_unpatched}/${_patched}/g" unpacked/build/static/js/*.js
+    sed -i "s/${_unpatched}/${_patched}/g" unpacked/build/electron.js
     asar p unpacked/ app.asar
     rm -rf unpacked/
 }
--

LinusDierheimer commented on 2022-06-17 17:22 (UTC) (edited on 2022-06-17 17:24 (UTC) by LinusDierheimer)

It actually never was compatible with Arch, i just always went through the source code to find a patch which disables the support check. When i didn't found the time anymore, to do this for each release, the old patch didn't work on anymore, i orphaned this package. In my opinion, this package shouldn't be deleted, but given to somebody who is willing to create the patches, because i am sure breitbandmessung is usefull to a lot of people.

Posi commented on 2022-03-27 17:16 (UTC)

Hi, NEIN. Es ist zum aktuellen Zeitpunkt vom Entwickler der Software nicht geplant eine Unterstützung für Archlinux umzusetzen. https://twitter.com/bnetza/status/1471018943859019779

<deleted-account> commented on 2022-03-27 16:19 (UTC)

Hi, die Desktop App von breitbandmessung.de hat Mittlerweile Version 3.1.0. Wird es für das Paket eine Update geben?