[arch-commits] Commit in libopencm3/repos (3 files)

Anatol Pomozov anatolik at gemini.archlinux.org
Tue Aug 10 16:30:47 UTC 2021


    Date: Tuesday, August 10, 2021 @ 16:30:47
  Author: anatolik
Revision: 997382

archrelease: copy trunk to community-testing-any

Added:
  libopencm3/repos/community-testing-any/
  libopencm3/repos/community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch
    (from rev 997381, libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch)
  libopencm3/repos/community-testing-any/PKGBUILD
    (from rev 997381, libopencm3/trunk/PKGBUILD)

---------------------------------------------------------+
 0001-Revert-Drop-install-target-and-documentation.patch |   53 ++++++++++++++
 PKGBUILD                                                |   42 +++++++++++
 2 files changed, 95 insertions(+)

Copied: libopencm3/repos/community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch (from rev 997381, libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch)
===================================================================
--- community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch	                        (rev 0)
+++ community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch	2021-08-10 16:30:47 UTC (rev 997382)
@@ -0,0 +1,53 @@
+commit 33f456aad9313bfc42e5ae7ef47e7976b0572a71
+Author: Anatol Pomozov <anatol.pomozov at gmail.com>
+Date:   Sun Jan 10 18:58:44 2016 -0800
+
+    Revert "Drop "install" target and documentation."
+    
+    This reverts commit 7c1cd2e5cd3f3d1193ee375b46cfd8afaccb89f7.
+
+diff --git a/Makefile b/Makefile
+index 20f878fa..97f63933 100644
+--- a/Makefile
++++ b/Makefile
+@@ -22,6 +22,13 @@ PREFIX		?= arm-none-eabi-
+ STYLECHECK      := scripts/checkpatch.pl
+ STYLECHECKFLAGS := --no-tree -f --terse --mailback
+ 
++DESTDIR		?= /usr/local
++
++INCDIR		:= $(DESTDIR)/$(PREFIX)/include
++LIBDIR		:= $(DESTDIR)/$(PREFIX)/lib
++SHAREDIR	:= $(DESTDIR)/$(PREFIX)/share/libopencm3/scripts
++INSTALL		:= install
++
+ TARGETS ?=	stm32/f0 stm32/f1 stm32/f2 stm32/f3 stm32/f4 stm32/f7 \
+ 		stm32/l0 stm32/l1 stm32/l4 \
+ 		stm32/g0 stm32/g4 \
+@@ -80,6 +87,20 @@ lib: $(LIB_DIRS)
+ 	done;
+ 	$(Q)[ -f .stamp_failure_tld ] && cat .stamp_failure_tld && exit 1 || true;
+ 
++install: lib
++	@printf "  INSTALL headers\n"
++	$(Q)$(INSTALL) -d $(INCDIR)/libopencm3
++	$(Q)$(INSTALL) -d $(INCDIR)/libopencmsis
++	$(Q)$(INSTALL) -d $(LIBDIR)
++	$(Q)$(INSTALL) -d $(SHAREDIR)
++	$(Q)cp -r include/libopencm3/* $(INCDIR)/libopencm3
++	$(Q)cp -r include/libopencmsis/* $(INCDIR)/libopencmsis
++	@printf "  INSTALL libs\n"
++	$(Q)$(INSTALL) -m 0644 lib/*.a $(LIBDIR)
++	@printf "  INSTALL ldscripts\n"
++	$(Q)$(INSTALL) -m 0644 lib/*.ld $(LIBDIR)
++
++
+ html doc:
+ 	$(Q)$(MAKE) -C doc html TARGETS="$(TARGETS)"
+ 
+@@ -125,4 +146,4 @@ genlinktests.clean:
+ 	fi;
+ 
+ 
+-.PHONY: build lib $(LIB_DIRS) doc clean generatedheaders cleanheaders stylecheck genlinktests genlinktests.clean
++.PHONY: build lib $(LIB_DIRS) install doc clean generatedheaders cleanheaders stylecheck genlinktests genlinktests.clean

Copied: libopencm3/repos/community-testing-any/PKGBUILD (from rev 997381, libopencm3/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2021-08-10 16:30:47 UTC (rev 997382)
@@ -0,0 +1,42 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+
+pkgname=libopencm3
+_commit=470a1394a838fe308d886f6880b7054bab4aa5eb
+pkgver=r2768.470a1394
+pkgrel=1
+pkgdesc='Open Source firmware library for various ARM Cortex microcontrollers'
+arch=('any')
+url='http://www.libopencm3.org'
+license=('GPL')
+depends=('arm-none-eabi-newlib')
+makedepends=('git' 'arm-none-eabi-gcc' 'python-yaml')
+options=(!strip staticlibs !buildflags)
+source=("git://github.com/libopencm3/libopencm3.git#commit=$_commit"
+        '0001-Revert-Drop-install-target-and-documentation.patch')
+sha512sums=('SKIP'
+            '90454277085d38657730970f8cefbd0e9f166486313824e74a144b69917b952dcca5a949699402d90391e4ebeecc6593e644ef3f4088a87999ec2d60840a219e')
+
+pkgver() {
+  cd $pkgname
+
+  printf 'r%s.%s' $(git rev-list --count HEAD) $(git rev-parse --short HEAD)
+}
+
+prepare() {
+  cd $pkgname
+
+  patch -p1 < ../0001-Revert-Drop-install-target-and-documentation.patch
+}
+
+build() {
+  cd $pkgname
+
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" PREFIX=/usr/arm-none-eabi install
+}
+



More information about the arch-commits mailing list