Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by mail.roshless.com (Postfix) with ESMTPS id BF97456010E
	for <~roshless/public-inbox@lists.roshless.me>; Mon,  1 Feb 2021 16:00:36 +0100 (CET)
Authentication-Results: annihilation; dmarc=pass (p=none dis=none) header.from=posteo.net
Authentication-Results: annihilation; spf=pass smtp.mailfrom=aicaya@posteo.net
Authentication-Results: mail.roshless.com;
	dkim=pass (2048-bit key) header.d=posteo.net header.i=@posteo.net header.b=elHxNEiM
Received: from submission (posteo.de [89.146.220.130]) 
	by mout01.posteo.de (Postfix) with ESMTPS id DB15D16005F
	for <~roshless/public-inbox@lists.roshless.me>; Mon,  1 Feb 2021 15:55:31 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017;
	t=1612191331; bh=jQbLKFG9Ak1PGjyF3Kb7yHPc0X9Em8TPMQ427itZzt0=;
	h=From:To:Cc:Subject:Date:From;
	b=elHxNEiM16/6p3g1e5W2VPitwQYZfttYSbg/O6lSIpNXkLm215BuQlS6+q4Hjxl64
	 BDo2pg9mgL4YfegWYrKQhBQTE1SkAbpcMu/XMC0tmra6NQEukkxAMhVRiY/Zz1jk12
	 WkMEs2w7MajBKS3saUvRVeGuo3APeaAJAWtAO4hdTsLb0wH7IzajeBl3C+T6s/D3DS
	 x0CMZ4vzcU7c//U+I+BblXOafhGG+fZDz3cmpyirb7leS0UEjrMWobKlA2VqPWo9zi
	 7xSB8ZVvjW10SuY3ffCRyZ8aCR6uzMQjjJpQPAYw4/K7kh2Fm+BSCDcUucLaNrYht8
	 F4ex7pPO64JrA==
Received: from customer (localhost [127.0.0.1])
	by submission (posteo.de) with ESMTPSA id 4DTrbQ747Hz9rxW;
	Mon,  1 Feb 2021 15:55:30 +0100 (CET)
From: Luna Nieves <aicaya@posteo.net>
To: ~roshless/public-inbox@lists.roshless.me
Cc: Luna Nieves <aicaya@posteo.net>
Subject: [PATCH] Bump Lagrange to 1.1.0
Date: Mon,  1 Feb 2021 10:55:15 -0400
Message-Id: <20210201145515.43568-1-aicaya@posteo.net>
X-Mailer: git-send-email 2.30.0
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable

Changes done to package along with reasoning:

* Change "arch" to just the x86 ones: It's not architecture-independent,
and the instructions to compile on a Raspberry Pi are different enough
that adding ARM archs wouldn't work.
* Change build type to "Release": Building package with 'None' kept
giving warning about binary referencing `$srcdir`.
* Remove 'PREFIX' from package(): It was already set on build(), so it's
redundant.

---
I know there's already a patch in the inbox, but I wanted to clean up
the package a bit.  If the changes are fine but the other patch goes
through, I can send a patch with just those changes.

 lagrange/.SRCINFO | 11 ++++++-----
 lagrange/PKGBUILD | 12 ++++++------
 2 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/lagrange/.SRCINFO b/lagrange/.SRCINFO
index bbe62b7..b48e8da 100644
--- a/lagrange/.SRCINFO
+++ b/lagrange/.SRCINFO
@@ -1,9 +1,10 @@
 pkgbase =3D lagrange
 	pkgdesc =3D Beautiful Gemini Client
-	pkgver =3D 1.0.3
-	pkgrel =3D 2
+	pkgver =3D 1.1.0
+	pkgrel =3D 1
 	url =3D https://git.skyjake.fi/skyjake/lagrange
-	arch =3D any
+	arch =3D x86_64
+	arch =3D i686
 	license =3D BSD
 	makedepends =3D cmake
 	depends =3D openssl
@@ -11,8 +12,8 @@ pkgbase =3D lagrange
 	depends =3D libunistring
 	depends =3D pcre
 	optdepends =3D mpg123
-	source =3D https://git.skyjake.fi/skyjake/lagrange/releases/download/v1=
.0.3/lagrange-1.0.3.tar.gz
-	md5sums =3D 17fcd774f3b54c8275b1a1c0a3a850bf
+	source =3D https://git.skyjake.fi/skyjake/lagrange/releases/download/v1=
.1.0/lagrange-1.1.0.tar.gz
+	md5sums =3D 090a12a6d9350231c23d53ca3d928ad6
=20
 pkgname =3D lagrange
=20
diff --git a/lagrange/PKGBUILD b/lagrange/PKGBUILD
index 65c7d46..6091dcb 100644
--- a/lagrange/PKGBUILD
+++ b/lagrange/PKGBUILD
@@ -1,11 +1,11 @@
 # Maintainer: Roshless <pkg@roshless.com>
=20
 pkgname=3Dlagrange
-pkgrel=3D2
-pkgver=3D1.0.3
+pkgrel=3D1
+pkgver=3D1.1.0
 pkgdesc=3D"Beautiful Gemini Client"
 url=3D"https://git.skyjake.fi/skyjake/lagrange"
-arch=3D("any")
+arch=3D('x86_64' 'i686')
 license=3D("BSD")
 source=3D(
     "https://git.skyjake.fi/skyjake/$pkgname/releases/download/v$pkgver/=
lagrange-$pkgver.tar.gz"
@@ -22,7 +22,7 @@ makedepends=3D("cmake")
=20
 build() {
     cmake -B build -S "$pkgname-${pkgver}" \
-        -DCMAKE_BUILD_TYPE=3D'None' \
+        -DCMAKE_BUILD_TYPE=3D'Release' \
         -DCMAKE_INSTALL_PREFIX=3D'/usr' \
         -Wno-dev
     make -C build
@@ -32,7 +32,7 @@ package() {
     install -Dm644 $pkgname-$pkgver/LICENSE.md "$pkgdir/usr/share/licens=
es/$pkgname/LICENSE"
=20
     cd build
-    make PREFIX=3D"/usr" DESTDIR=3D"$pkgdir" install
+    make DESTDIR=3D"$pkgdir" install
 }
=20
-md5sums=3D('17fcd774f3b54c8275b1a1c0a3a850bf')
+md5sums=3D('090a12a6d9350231c23d53ca3d928ad6')
--=20
2.30.0

