Github messages for voidlinux
 help / color / mirror / Atom feed
From: jcgruenhage <jcgruenhage@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: rpi-usbboot-20220815.145439
Date: Sat, 10 Dec 2022 14:35:10 +0100	[thread overview]
Message-ID: <20221210133510.KLDWQP36uOrk70GrRBHAiTs0W_3PxGFVh3B25C7AKVk@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-38897@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1269 bytes --]

There is an updated pull request by jcgruenhage against master on the void-packages repository

https://github.com/jcgruenhage/void-packages rpi-usbboot-20220815.145439_1
https://github.com/void-linux/void-packages/pull/38897

New package: rpi-usbboot-20220815.145439
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/38897.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rpi-usbboot-20220815.145439_1-38897.patch --]
[-- Type: text/x-diff, Size: 3784 bytes --]

From 279a4a545138d8c8c86ecb9059839f6552e90972 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Wed, 24 Aug 2022 23:52:44 +0200
Subject: [PATCH] New package: rpi-usbboot-20221104.153421

---
 ...1-Use-PREFIX-and-DESTDIR-in-Makefile.patch | 51 +++++++++++++++++++
 srcpkgs/rpi-usbboot/template                  | 17 +++++++
 2 files changed, 68 insertions(+)
 create mode 100644 srcpkgs/rpi-usbboot/patches/0001-Use-PREFIX-and-DESTDIR-in-Makefile.patch
 create mode 100644 srcpkgs/rpi-usbboot/template

diff --git a/srcpkgs/rpi-usbboot/patches/0001-Use-PREFIX-and-DESTDIR-in-Makefile.patch b/srcpkgs/rpi-usbboot/patches/0001-Use-PREFIX-and-DESTDIR-in-Makefile.patch
new file mode 100644
index 000000000000..33b5ee3afd3f
--- /dev/null
+++ b/srcpkgs/rpi-usbboot/patches/0001-Use-PREFIX-and-DESTDIR-in-Makefile.patch
@@ -0,0 +1,51 @@
+From da26cd80362e939510fedd51c9486946a61dc159 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
+ <jan.christian@gruenhage.xyz>
+Date: Wed, 24 Aug 2022 23:48:08 +0200
+Subject: [PATCH] Use PREFIX and DESTDIR in Makefile
+
+---
+ Makefile | 25 +++++++++++++------------
+ 1 file changed, 13 insertions(+), 12 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index dc78cfe..845e23b 100755
+--- a/Makefile
++++ b/Makefile
+@@ -13,20 +13,21 @@ bin2c: bin2c.c
+ 	$(CC) -Wall -Wextra -g -o $@ $<
+ 
+ install: rpiboot
+-	install -m 755 rpiboot /usr/bin/
+-	install -d /usr/share/rpiboot
+-	install -m 644 msd/bootcode.bin  /usr/share/rpiboot/
+-	install -m 644 msd/bootcode4.bin /usr/share/rpiboot/
+-	install -m 644 msd/start.elf  /usr/share/rpiboot/
+-	install -m 644 msd/start4.elf /usr/share/rpiboot/
++	install -d $(DESTDIR)$(PREFIX)/bin
++	install -m 755 rpiboot $(DESTDIR)$(PREFIX)/bin/
++	install -d $(DESTDIR)$(PREFIX)/share/rpiboot
++	install -m 644 msd/bootcode.bin $(DESTDIR)$(PREFIX)/share/rpiboot/
++	install -m 644 msd/bootcode4.bin $(DESTDIR)$(PREFIX)/share/rpiboot/
++	install -m 644 msd/start.elf $(DESTDIR)$(PREFIX)/share/rpiboot/
++	install -m 644 msd/start4.elf $(DESTDIR)$(PREFIX)/share/rpiboot/
+ 
+ uninstall:
+-	rm -f /usr/bin/rpiboot
+-	rm -f /usr/share/rpiboot/bootcode.bin
+-	rm -f /usr/share/rpiboot/bootcode4.bin
+-	rm -f /usr/share/rpiboot/start.elf
+-	rm -f /usr/share/rpiboot/start4.elf
+-	rmdir --ignore-fail-on-non-empty /usr/share/rpiboot/
++	rm -f $(DESTDIR)$(PREFIX)/bin/rpiboot
++	rm -f $(DESTDIR)$(PREFIX)/share/rpiboot/bootcode.bin
++	rm -f $(DESTDIR)$(PREFIX)/share/rpiboot/bootcode4.bin
++	rm -f $(DESTDIR)$(PREFIX)/share/rpiboot/start.elf
++	rm -f $(DESTDIR)$(PREFIX)/share/rpiboot/start4.elf
++	rmdir --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/share/rpiboot/
+ 
+ clean:
+ 	rm -f rpiboot msd/*.h bin2c
+-- 
+2.37.2
+
diff --git a/srcpkgs/rpi-usbboot/template b/srcpkgs/rpi-usbboot/template
new file mode 100644
index 000000000000..86703935110e
--- /dev/null
+++ b/srcpkgs/rpi-usbboot/template
@@ -0,0 +1,17 @@
+# Template file for 'rpi-usbboot'
+pkgname=rpi-usbboot
+version=20221104.153421
+revision=1
+build_style=gnu-makefile
+hostmakedepends="pkg-config"
+makedepends="libusb-devel"
+short_desc="Raspberry Pi USB booting code, moved from tools repository"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="Apache-2.0"
+homepage="https://github.com/raspberrypi/usbboot"
+changelog="https://raw.githubusercontent.com/raspberrypi/usbboot/master/debian/changelog"
+distfiles="https://github.com/raspberrypi/usbboot/archive/refs/tags/${version/./-}.tar.gz"
+checksum=f19395f66e358c5bbd9088508df168321ad070fbc46132b36965b4a2f8142c64
+nostrip_files="/usr/share/rpiboot/start.elf /usr/share/rpiboot/start4.elf"
+ignore_elf_files="${nostrip_files}"
+nocross="Makefile requires more patching first"

  parent reply	other threads:[~2022-12-10 13:35 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-24 22:09 [PR PATCH] " jcgruenhage
2022-08-25  7:00 ` jcgruenhage
2022-08-28 10:04 ` [PR PATCH] [Updated] " jcgruenhage
2022-09-05  2:28 ` [PR REVIEW] " the-maldridge
2022-09-05  9:22 ` jcgruenhage
2022-09-05  9:24 ` [PR PATCH] [Updated] " jcgruenhage
2022-12-05  1:59 ` github-actions
2022-12-10 13:35 ` jcgruenhage [this message]
2022-12-10 13:35 ` jcgruenhage
2023-03-14  1:50 ` New package: rpi-usbboot-20221104.153421 github-actions
2023-03-14  1:51 ` [PR PATCH] [Merged]: " the-maldridge

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221210133510.KLDWQP36uOrk70GrRBHAiTs0W_3PxGFVh3B25C7AKVk@z \
    --to=jcgruenhage@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).