Balló György pushed to branch main at Arch Linux / Packaging / Packages / binary
Commits:
1e137bd5 by Balló György at 2024-12-15T19:21:13+01:00
upgpkg: 5.2-1: Update to new release
- - - - -
4 changed files:
- .SRCINFO
- PKGBUILD
- − binary-install-mode.patch
- − binary-window-icon.patch
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = binary
pkgdesc = Simple app to convert between different hexadecimal and
binary numbers
- pkgver = 5.1
- pkgrel = 2
+ pkgver = 5.2
+ pkgrel = 1
url = https://apps.gnome.org/Binary/
arch = any
license = GPL-3.0-or-later
@@ -16,11 +16,7 @@ pkgbase = binary
depends = libadwaita
depends = python
depends = python-gobject
- source = git+https://github.com/fizzyizzy05/binary.git#tag=5.1
- source = binary-install-mode.patch
- source = binary-window-icon.patch
- b2sums =
da6a6fc3cdfc075937228d635b71ca796bd5fdfded60fefdf2e897badb226aee6960817523262061e8911536ba42b68abf8c42b60dbdc378ed66c9c543ee69e8
- b2sums =
f45c1e20d327cfae625eb98dec9e91e9facf55cc2b8b556d562f4d868b25371ecfcce135fca0ab23675f0a537f7189e174cd248ffc138d8a300c15f82572842b
- b2sums =
80c6bccbdb7b0c18fae8ea1f1a35d5fcd9caecbf7e93dce36d2e88fd28ac5759350a634334ce3c0142321a57384ef1ef9c5c0c54e203f000b380c81807099275
+ source = git+https://github.com/fizzyizzy05/binary.git#tag=5.2
+ b2sums =
2e4c8611e51d8634eac953183328a65bc689f5111fc158672417df585eb54b267dbf5bb6c13e912ef46f769dd3d70995cffac76e046fea7f6e55c88f70938893
pkgname = binary
=====================================
PKGBUILD
=====================================
@@ -1,8 +1,8 @@
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=binary
-pkgver=5.1
-pkgrel=2
+pkgver=5.2
+pkgrel=1
pkgdesc='Simple app to convert between different hexadecimal and binary
numbers'
arch=(any)
url='https://apps.gnome.org/Binary/'
@@ -22,26 +22,8 @@ makedepends=(
git
meson
)
-source=(
- "git+https://github.com/fizzyizzy05/binary.git#tag=$pkgver"
- binary-install-mode.patch
- binary-window-icon.patch
-)
-b2sums=(
-
da6a6fc3cdfc075937228d635b71ca796bd5fdfded60fefdf2e897badb226aee6960817523262061e8911536ba42b68abf8c42b60dbdc378ed66c9c543ee69e8
-
f45c1e20d327cfae625eb98dec9e91e9facf55cc2b8b556d562f4d868b25371ecfcce135fca0ab23675f0a537f7189e174cd248ffc138d8a300c15f82572842b
-
80c6bccbdb7b0c18fae8ea1f1a35d5fcd9caecbf7e93dce36d2e88fd28ac5759350a634334ce3c0142321a57384ef1ef9c5c0c54e203f000b380c81807099275
-)
-
-prepare() {
- cd $pkgname
-
- # https://github.com/fizzyizzy05/binary/pull/30
- git apply -3 ../binary-install-mode.patch
-
- # https://github.com/fizzyizzy05/binary/pull/31
- git apply -3 ../binary-window-icon.patch
-}
+source=("git+https://github.com/fizzyizzy05/binary.git#tag=$pkgver")
+b2sums=(2e4c8611e51d8634eac953183328a65bc689f5111fc158672417df585eb54b267dbf5bb6c13e912ef46f769dd3d70995cffac76e046fea7f6e55c88f70938893)
build() {
arch-meson $pkgname build
=====================================
binary-install-mode.patch deleted
=====================================
@@ -1,22 +0,0 @@
-From 203b0a64f979ab03e8b009767938b61d45236ec0 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <[email protected]>
-Date: Thu, 17 Oct 2024 14:04:24 +0200
-Subject: [PATCH] build: Don't override install mode for the binary
-
-Files in bindir need the marked as executable, otherwise they cannot be
executed.
----
- src/meson.build | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/src/meson.build b/src/meson.build
-index 815e5dd..3f9913b 100644
---- a/src/meson.build
-+++ b/src/meson.build
-@@ -35,7 +35,6 @@ configure_file(
- configuration: conf,
- install: true,
- install_dir: get_option('bindir'),
-- install_mode: 'r-xr--r--'
- )
-
- binary_sources = [
=====================================
binary-window-icon.patch deleted
=====================================
@@ -1,22 +0,0 @@
-From 9a0b2d2d3c20d510e79bd05abea4f6f218e27212 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <[email protected]>
-Date: Thu, 17 Oct 2024 14:09:07 +0200
-Subject: [PATCH] main: Set default window icon
-
-This is commonly used by desktop environments on Xorg.
----
- src/main.py | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/main.py b/src/main.py
-index 161a12e..48dead1 100644
---- a/src/main.py
-+++ b/src/main.py
-@@ -39,6 +39,7 @@ def __init__(self):
- self.create_action('close-window', self.on_close_window_action,
['<primary>w'])
- self.create_action('new-window', self.on_new_window_action,
['<primary>n'])
- self.settings = Gio.Settings(schema_id="io.github.fizzyizzy05.binary")
-+ Gtk.Window.set_default_icon_name('io.github.fizzyizzy05.binary')
-
- def do_activate(self):
- """Called when the application is activated.
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/binary/-/commit/1e137bd57c3e523302dbc465c80ca2e40723c9a6
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/binary/-/commit/1e137bd57c3e523302dbc465c80ca2e40723c9a6
You're receiving this email because of your account on gitlab.archlinux.org.