- Use new version schema <YYYYMMDD>.<HHMMSS>

- Update to version 20240926.102326.3

OBS-URL: https://build.opensuse.org/package/show/hardware/raspberrypi-rpiboot?expand=0&rev=12
This commit is contained in:
Matthias Brugger 2024-10-30 14:22:15 +00:00 committed by Git OBS Bridge
commit ba0ea2c759
7 changed files with 138 additions and 0 deletions

26
.gitattributes vendored Normal file
View File

@ -0,0 +1,26 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
## Specific LFS patterns
raspberrypi-rpiboot-0~git0.e5e4994.tar filter=lfs diff=lfs merge=lfs -text
raspberrypi-rpiboot-20240926.102326.3.tar filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

14
_service Normal file
View File

@ -0,0 +1,14 @@
<!-- See https://en.opensuse.org/openSUSE:Build_Service_Concept_SourceService -->
<!-- for more details on the syntax -->
<services>
<service name="tar_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">https://github.com/raspberrypi/usbboot.git</param>
<param name="filename">raspberrypi-rpiboot</param>
<param name="versionrewrite-pattern">(.*)-(.*)</param>
<param name="versionrewrite-replacement">\1.\2</param>
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@</param>
</service>
<service mode="disabled" name="set_version" />
</services>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bd163d218bb586fca87c0810fdc483bd60fa305ae988cec0667a39e04d162ff2
size 36454400

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c0047501db9e24ebf54fafcc6ef2ec0cd14d7c654c7c4f8e29d39eea83a452a
size 372643840

View File

@ -0,0 +1,43 @@
-------------------------------------------------------------------
Fri Oct 25 14:57:26 UTC 2024 - Matthias Brugger <mbrugger@suse.com>
- Use new version schema <YYYYMMDD>.<HHMMSS>
- Update to version 20240926.102326.3
-------------------------------------------------------------------
Tue Dec 21 17:01:58 UTC 2021 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- Update to version e5e49940
-------------------------------------------------------------------
Sat Mar 13 09:51:25 UTC 2021 - Dirk Müller <dmueller@suse.com>
- remove libusb-compat - it only uses libusb-1.0
-------------------------------------------------------------------
Fri Jan 22 19:02:49 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
- Generate monotonically increasing Version numbers
-------------------------------------------------------------------
Fri Jan 22 07:32:07 UTC 2021 - Matthias Brugger <mbrugger@suse.com>
- add support for CM4 (jsc#SLE-16895)
-------------------------------------------------------------------
Tue Jun 9 16:12:22 UTC 2020 - Matthias Brugger <mbrugger@suse.com>
- delete update_git.sh
-------------------------------------------------------------------
Fri Jun 5 11:28:52 UTC 2020 - Matthias Brugger <mbrugger@suse.com>
- add source service
- add version c650cd7
* fix build warning
-------------------------------------------------------------------
Tue May 5 10:18:47 UTC 2020 - Matthias Brugger <mbrugger@suse.com>
- add version 78 (jsc#64380)

48
raspberrypi-rpiboot.spec Normal file
View File

@ -0,0 +1,48 @@
#
# spec file for package raspberrypi-rpiboot
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: raspberrypi-rpiboot
Version: 20240926.102326.3
Release: 0
Summary: Raspberry Pi rpiboot tool
License: Apache-2.0
Group: System/Management
URL: https://github.com/raspberrypi/usbboot.git
Source0: %{name}-%{version}.tar
BuildRequires: libusb-1_0-devel
%description
The raspberrypi-usbboot allows you to flash the eMMC through an USB cable.
%prep
%setup -q
%build
%make_build
%install
mkdir -p %{buildroot}%{_bindir}
install -c -m 0755 rpiboot %{buildroot}%{_bindir}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%{_bindir}/rpiboot
%changelog