[arch-commits] Commit in spdlog/repos/community-staging-any (3 files)

Brett Cornwall ainola at archlinux.org
Mon Jul 15 23:43:52 UTC 2019


    Date: Monday, July 15, 2019 @ 23:43:52
  Author: ainola
Revision: 489890

archrelease: copy trunk to community-staging-any

Added:
  spdlog/repos/community-staging-any/PKGBUILD
    (from rev 489889, spdlog/trunk/PKGBUILD)
Deleted:
  spdlog/repos/community-staging-any/PKGBUILD
  spdlog/repos/community-staging-any/rm_bundled_fmt.patch

----------------------+
 PKGBUILD             |   95 ++++++++++++++++++++++---------------------------
 rm_bundled_fmt.patch |   34 -----------------
 2 files changed, 43 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-07-15 23:43:45 UTC (rev 489889)
+++ PKGBUILD	2019-07-15 23:43:52 UTC (rev 489890)
@@ -1,52 +0,0 @@
-# Maintainer: Brett Cornwall <ainola at archlinux.org>
-# Contributor: Luca Weiss
-# Contributor: Michael Yang
-
-pkgname=spdlog
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='Very fast, header-only/compiled, C++ logging library'
-arch=('any')
-url='https://github.com/gabime/spdlog'
-license=('MIT')
-makedepends=('cmake' 'fmt')
-source=(
-    "$pkgname-$pkgver.tar.gz::https://github.com/gabime/spdlog/archive/v$pkgver.tar.gz"
-    rm_bundled_fmt.patch
-)
-sha256sums=('160845266e94db1d4922ef755637f6901266731c4cb3b30b45bf41efa0e6ab70'
-            '2eee548ad3b12f48c1e6175a0af4f94d942244d4b2eb8351fccac6f53523b80c')
-
-prepare() {
-    mkdir -p build
-
-    # Don't duplicate code from another project...
-    # https://github.com/gabime/spdlog/issues/1146
-    patch -d "$pkgname-$pkgver" -p1 < rm_bundled_fmt.patch
-}
-
-build() {
-    cd build
-    cmake ../"$pkgname-$pkgver" \
-        -DSPDLOG_BUILD_BENCH=OFF \
-        -DSPDLOG_BUILD_EXAMPLES=OFF \
-        -DSPDLOG_FMT_EXTERNAL=ON \
-        -DCMAKE_BUILD_TYPE=Release \
-        -DCMAKE_INSTALL_PREFIX=/usr \
-        -DCMAKE_INSTALL_LIBDIR=lib
-    make
-}
-
-check() {
-    cd build
-    make test
-}
-
-package() {
-    cd build
-    make DESTDIR="$pkgdir" install
-    install -Dm644 ../"$pkgname-$pkgver/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname/"
-
-    # Prevent usage of these bundled headers
-    rm -r "$pkgdir/usr/include/spdlog/fmt/bundled/"
-}

Copied: spdlog/repos/community-staging-any/PKGBUILD (from rev 489889, spdlog/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-07-15 23:43:52 UTC (rev 489890)
@@ -0,0 +1,43 @@
+# Maintainer: Brett Cornwall <ainola at archlinux.org>
+# Contributor: Luca Weiss
+# Contributor: Michael Yang
+
+pkgname=spdlog
+pkgver=1.3.1
+pkgrel=3
+pkgdesc='Very fast, header-only/compiled, C++ logging library'
+arch=('any')
+url='https://github.com/gabime/spdlog'
+license=('MIT')
+makedepends=('cmake' 'fmt')
+source=(
+    "$pkgname-$pkgver.tar.gz::https://github.com/gabime/spdlog/archive/v$pkgver.tar.gz"
+)
+sha256sums=('160845266e94db1d4922ef755637f6901266731c4cb3b30b45bf41efa0e6ab70')
+
+prepare() {
+    mkdir build
+}
+
+build() {
+    cd build
+    cmake ../"$pkgname-$pkgver" \
+        -DSPDLOG_BUILD_BENCH=OFF \
+        -DSPDLOG_BUILD_EXAMPLES=OFF \
+        -DSPDLOG_FMT_EXTERNAL=ON \
+        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DCMAKE_INSTALL_LIBDIR=lib
+    make
+}
+
+check() {
+    cd build
+    make test
+}
+
+package() {
+    cd build
+    make DESTDIR="$pkgdir" install
+    install -Dm644 ../"$pkgname-$pkgver/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname/"
+}

Deleted: rm_bundled_fmt.patch
===================================================================
--- rm_bundled_fmt.patch	2019-07-15 23:43:45 UTC (rev 489889)
+++ rm_bundled_fmt.patch	2019-07-15 23:43:52 UTC (rev 489890)
@@ -1,34 +0,0 @@
---- a/include/spdlog/fmt/fmt.h	2019-01-18 03:13:07.000000000 -0700
-+++ b/include/spdlog/fmt/fmt.h	2019-07-15 08:26:04.026378588 -0600
-@@ -10,16 +10,5 @@
- // By default spdlog include its own copy.
- //
- 
--#if !defined(SPDLOG_FMT_EXTERNAL)
--#ifndef FMT_HEADER_ONLY
--#define FMT_HEADER_ONLY
--#endif
--#ifndef FMT_USE_WINDOWS_H
--#define FMT_USE_WINDOWS_H 0
--#endif
--#include "bundled/core.h"
--#include "bundled/format.h"
--#else // external fmtlib
- #include <fmt/core.h>
- #include <fmt/format.h>
--#endif
---- a/include/spdlog/fmt/ostr.h	2019-01-18 03:13:07.000000000 -0700
-+++ b/include/spdlog/fmt/ostr.h	2019-07-15 08:26:48.034108854 -0600
-@@ -7,12 +7,4 @@
- //
- // include bundled or external copy of fmtlib's ostream support
- //
--#if !defined(SPDLOG_FMT_EXTERNAL)
--#ifndef FMT_HEADER_ONLY
--#define FMT_HEADER_ONLY
--#endif
--#include "bundled/ostream.h"
--#include "fmt.h"
--#else
- #include <fmt/ostream.h>
--#endif



More information about the arch-commits mailing list