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

Anatol Pomozov anatolik at archlinux.org
Sat Jun 27 17:17:42 UTC 2020


    Date: Saturday, June 27, 2020 @ 17:17:42
  Author: anatolik
Revision: 655009

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 655008, libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch)
  libopencm3/repos/community-testing-any/PKGBUILD
    (from rev 655008, libopencm3/trunk/PKGBUILD)

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

Copied: libopencm3/repos/community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch (from rev 655008, 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	2020-06-27 17:17:42 UTC (rev 655009)
@@ -0,0 +1,54 @@
+commit 368ee7b4fc58c3e537300b058d3440ba8d371ce0
+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 f8fff0b2..ae4af411 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 \
+@@ -76,6 +83,21 @@ 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)
++	$(Q)$(INSTALL) -m 0644 lib/efm32/*/*.ld $(LIBDIR)
++
++
+ html doc:
+ 	$(Q)$(MAKE) -C doc html TARGETS="$(TARGETS)"
+ 
+@@ -121,4 +143,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 655008, libopencm3/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2020-06-27 17:17:42 UTC (rev 655009)
@@ -0,0 +1,42 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+
+pkgname=libopencm3
+_commit=90753950bbe10e87b8caabfb0bd6e1d195bb24b8
+pkgver=r2639.90753950
+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'
+            '133e599bf8ea66e64225cf16873672ef86a66821ba3d735d7bae5cd356205d4b2f850121e93647c644be0a840764b71bfaa19b25ac8b59d678a45604b8a56540')
+
+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