From 1bb9b69445091ba49100de8ca1446f9c4f7b571d Mon Sep 17 00:00:00 2001 From: Martchus Date: Mon, 29 Jan 2018 16:11:58 +0100 Subject: Update to 204.b66415a --- .SRCINFO | 6 ++--- 0001-Export-targets.patch | 62 ----------------------------------------------- PKGBUILD | 14 +++-------- 3 files changed, 5 insertions(+), 77 deletions(-) delete mode 100644 0001-Export-targets.patch diff --git a/.SRCINFO b/.SRCINFO index c39df74..44bfb01 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Mon Jul 3 20:47:22 UTC 2017 +# Mon Jan 29 15:11:58 UTC 2018 pkgbase = pistache-git pkgdesc = Modern and elegant HTTP and REST framework for C++ - pkgver = 189.9827cda + pkgver = 204.b66415a pkgrel = 1 url = https://github.com/oktal/pistache arch = i686 @@ -13,9 +13,7 @@ pkgbase = pistache-git provides = pistache conflicts = pistache source = pistache::git://github.com/oktal/pistache.git - source = 0001-Export-targets.patch sha256sums = SKIP - sha256sums = 68140dc3747b36e3287913cdb4e4ae1a2cc85d69e28560dee3937f6143e0cc5f pkgname = pistache-git diff --git a/0001-Export-targets.patch b/0001-Export-targets.patch deleted file mode 100644 index 2b769c0..0000000 --- a/0001-Export-targets.patch +++ /dev/null @@ -1,62 +0,0 @@ -From ef1474e0c587bb528532932c1db7e244755e5d49 Mon Sep 17 00:00:00 2001 -From: Martchus -Date: Thu, 23 Mar 2017 20:50:21 +0100 -Subject: [PATCH] Export targets - ---- - CMakeLists.txt | 2 +- - src/CMakeLists.txt | 20 ++++++++++++++++++++ - src/PistacheConfig.cmake.in | 3 +++ - 3 files changed, 24 insertions(+), 1 deletion(-) - create mode 100644 src/PistacheConfig.cmake.in - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index de5716d..25e3d7c 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1,4 +1,4 @@ --cmake_minimum_required (VERSION 2.8.7) -+cmake_minimum_required (VERSION 3.0.2) - project (pistache) - include(CheckCXXCompilerFlag) - -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 639ed0d..06cdb78 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -40,3 +40,23 @@ install( - DIRECTORY "${PROJECT_SOURCE_DIR}/include/pistache" - DESTINATION ${include_install_dir} - FILES_MATCHING PATTERN "*.*h") -+install(TARGETS pistache -+ EXPORT PistacheTargets -+ DESTINATION lib) -+install(EXPORT PistacheTargets -+ DESTINATION "lib/cmake/pistache" -+ EXPORT_LINK_INTERFACE_LIBRARIES -+ COMPONENT cmake-config -+) -+ -+include(CMakePackageConfigHelpers) -+configure_package_config_file( -+ "PistacheConfig.cmake.in" -+ "${CMAKE_CURRENT_BINARY_DIR}/PistacheConfig.cmake" -+ INSTALL_DESTINATION "lib/cmake/pistache" -+) -+install( -+ FILES "${CMAKE_CURRENT_BINARY_DIR}/PistacheConfig.cmake" -+ DESTINATION "lib/cmake/pistache" -+ COMPONENT cmake-config -+) -diff --git a/src/PistacheConfig.cmake.in b/src/PistacheConfig.cmake.in -new file mode 100644 -index 0000000..e8e92f0 ---- /dev/null -+++ b/src/PistacheConfig.cmake.in -@@ -0,0 +1,3 @@ -+@PACKAGE_INIT@ -+ -+include("${CMAKE_CURRENT_LIST_DIR}/PistacheTargets.cmake") --- -2.13.2 - diff --git a/PKGBUILD b/PKGBUILD index 3291a91..4f631f7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pistache-git _name=${pkgname%-git} -pkgver=189.9827cda +pkgver=204.b66415a pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Modern and elegant HTTP and REST framework for C++' @@ -15,22 +15,14 @@ makedepends=('cmake' 'git') provides=("${_name}") conflicts=("${_name}") url="https://github.com/oktal/${_name}" -source=("${_name}::git://github.com/oktal/${_name}.git" - '0001-Export-targets.patch') -sha256sums=('SKIP' - '68140dc3747b36e3287913cdb4e4ae1a2cc85d69e28560dee3937f6143e0cc5f') +source=("${_name}::git://github.com/oktal/${_name}.git") +sha256sums=('SKIP') pkgver() { cd "${srcdir}/${_name}" echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" } -prepare() { - cd "${srcdir}/${_name}" - - patch -p1 -i "${srcdir}/0001-Export-targets.patch" -} - build() { cd "${srcdir}/${_name}" -- cgit v1.2.1