Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: rpi-usbboot-20220815.145439
@ 2022-08-24 22:09 jcgruenhage
  2022-08-25  7:00 ` jcgruenhage
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: jcgruenhage @ 2022-08-24 22:09 UTC (permalink / raw)
  To: ml

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

There is a new 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: **briefly**

#### 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: 3851 bytes --]

From 87a2745efa7cf691fdb9d1378c216efd3fccfe21 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-20220815.145439

---
 ...1-Use-PREFIX-and-DESTDIR-in-Makefile.patch | 51 +++++++++++++++++++
 srcpkgs/rpi-usbboot/template                  | 19 +++++++
 2 files changed, 70 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..09174a027b61
--- /dev/null
+++ b/srcpkgs/rpi-usbboot/template
@@ -0,0 +1,19 @@
+# Template file for 'rpi-usbboot'
+_commit=1e651a88f0313a5ca50b12a9992dbce8930fe200
+pkgname=rpi-usbboot
+version=20220815.145439
+revision=1
+wrksrc="${pkgname/rpi-/}-${_commit}"
+build_style=gnu-makefile
+#make_dirs="/var/log/dir 0755 root root"
+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/${_commit}.tar.gz"
+checksum=692c6404efea6d5f7ca6db505c2a39a7ecbad0de1042796c462c55a50ccffd93
+nostrip_files="/usr/share/rpiboot/start.elf /usr/share/rpiboot/start4.elf"
+ignore_elf_files="${nostrip_files}"

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2023-03-14  1:51 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-24 22:09 [PR PATCH] New package: rpi-usbboot-20220815.145439 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 ` [PR PATCH] [Updated] " jcgruenhage
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

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).