X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qk0-f175.google.com (mail-qk0-f175.google.com [209.85.220.175]) by lists.alpinelinux.org (Postfix) with ESMTP id 17E225C4C95 for ; Tue, 22 Aug 2017 22:07:49 +0000 (GMT) Received: by mail-qk0-f175.google.com with SMTP id k126so86367qkb.5 for ; Tue, 22 Aug 2017 15:07:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mime-version:content-disposition :user-agent; bh=U7NrRg3ealDX8PaidVJj2r9xVAI8tjK2ZawxoYoYVJE=; b=Tw/nmv+hI10lAPAw4u8YjVuSI+Hlu/hpYfhfWI4wih+6lhm/N9T+ENEwOqOY0yGjHt UfBuTTqP78nORJL15rwECxqelmeO+RKCmgJIOFU2SEA1u5kJw07zIXTQQdLRsGCM5MKs 14aglZLGtm50KnQAN14XNE0nIk7+KA39jGI5JkL6UBs8mtOTMYtprvw6nt0/0mQ99mvz zc1BMvBv+KJ17NhsGPo4Ih5EKYqGokV1GyP63fyaNgEraO83ahwbJwhdOY72xxkResv1 1HQxe81AGC6Em0qrOrRtg2BieaMssBY1bc9mqZlJehWIHbLRi4eNyinyJA1UmeEt+l4k PYSA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition:user-agent; bh=U7NrRg3ealDX8PaidVJj2r9xVAI8tjK2ZawxoYoYVJE=; b=M4DSTTqid6R93DlRWYZIQvE565CHuHrrGTNlBWrdxr/sH5IjMos001eUYLj/IWHXiq DyDXmGc6smv8i3pNiYWNqmpNukhO8TemI8WjcBLahZ9xd1B8It4Q+a1jxRJG4wp94yWx zYa1ROPyafRBKtv4pHh3Ryl4bev3sWuWEl0Dbi+LNmaXrvFINetS3BELjtgg/5515NaZ iA2L64GS0n8onRfBZT6oLKhnfHqKiYgnirQB2YrH5v1qn61Y8A8ecUjmEEnFeiIxzIH+ DOJMTFqzFtwU6aovJqwnS45T63NPOro55T2t3Q4APYDlApzmnuvKtKj7Ibc0+/iNGQLm qTWQ== X-Gm-Message-State: AHYfb5iAw5VOGrUzO/hJaVWkciULjkvw//jMuMfHi5truo93dqcsedt3 vrMm7HSpQuSfL7ZnVc4= X-Received: by 10.55.103.135 with SMTP id b129mr929512qkc.16.1503439668068; Tue, 22 Aug 2017 15:07:48 -0700 (PDT) Received: from gmail.com ([67.205.145.156]) by smtp.gmail.com with ESMTPSA id b16sm5869qtb.82.2017.08.22.15.07.47 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 22 Aug 2017 15:07:47 -0700 (PDT) Date: Tue, 22 Aug 2017 22:07:45 +0000 From: Paul Morgan To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH v2] testing/createrepo_c: new aport Message-ID: <20170822220744.GA26587@gmail.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: VIM - Vi IMproved 8.0 X-Mailer: Mutt 1.8.3 X-do-not-ask: 0xf59e77c2 X-PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xF59E77C2 User-Agent: Mutt/1.8.3 (2017-05-23) This is a C implementation of createrepo and is smaller and faster than (the python-based) createrepo. The base package provides utilities to manipulate yum repositories: - createrepo_c - mergerepo_c - modifyrepo_c - sqliterepo_c Subpackages provide additional features. --- testing/createrepo_c/10-libdir.patch | 8 +++ testing/createrepo_c/APKBUILD | 108 +++++++++++++++++++++++++++++++++++ 2 files changed, 116 insertions(+) create mode 100644 testing/createrepo_c/10-libdir.patch create mode 100644 testing/createrepo_c/APKBUILD diff --git a/testing/createrepo_c/10-libdir.patch b/testing/createrepo_c/10-libdir.patch new file mode 100644 index 0000000000..82848b4030 --- /dev/null +++ b/testing/createrepo_c/10-libdir.patch @@ -0,0 +1,8 @@ +--- ./src/CMakeLists.txt.orig ++++ ./src/CMakeLists.txt +@@ -110,4 +110 @@ +-IF (CMAKE_SIZEOF_VOID_P MATCHES "8") +- SET (LIB_SUFFIX "64") +-ENDIF (CMAKE_SIZEOF_VOID_P MATCHES "8") +-SET (LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}") ++SET (LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") diff --git a/testing/createrepo_c/APKBUILD b/testing/createrepo_c/APKBUILD new file mode 100644 index 0000000000..54325b6f90 --- /dev/null +++ b/testing/createrepo_c/APKBUILD @@ -0,0 +1,108 @@ +# Contributor: +# Maintainer: Paul Morgan +pkgname=createrepo_c + +# This is awful, but it allows to create package with recent commits. +# Upstream has not tagged a release in nearly two years, but +# they have commits in master that we want to use. +# Follow the lead of 'git-describe' and +# append a number that represents the number of commits since last tag. +# After upstream releases a new tag, go back to normal alpine versioning. +# git_describe="0.10.0-48-g0cac54d" +treeish="0cac54d09b5a2140b625cabad95dc48898e25cdd" +upstream_tag=0.10.0 +commits_since=48 + +pkgver=${upstream_tag}.${commits_since} +pkgrel=0 +pkgdesc="C implementation of createrepo" +url="https://github.com/rpm-software-management/createrepo_c/" +arch="all" +license="GPL2" +makedepends=" + bash-completion + bzip2-dev + cmake + curl-dev + expat-dev + file-dev + glib-dev + libressl-dev + libxml2-dev + python2-dev + rpm-dev + scanelf + sqlite-dev + xz-dev + zlib-dev + " +checkdepends=" + ${makedepends} + check + check-dev + py-nose + xz + " +subpackages=" + ${pkgname}-bash-completion:bashcomp:noarch + ${pkgname}-dev + ${pkgname}-doc + ${pkgname}-libs + py2-${pkgname}:py2 + " +source=" + ${pkgname}-${treeish}.tar.gz::https://github.com/rpm-software-management/createrepo_c/archive/${treeish}.tar.gz + 10-libdir.patch + " +builddir="${srcdir}/${pkgname}-${treeish}/" + +build() { + mkdir "${builddir}"/build + cd "${builddir}"/build + + # Pass cmake variables so + # end user does not need to set LD_LIBRARY_PATH. + # https://cmake.org/Wiki/CMake_RPATH_handling#Always_full_RPATH + cmake .. \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DCMAKE_SKIP_BUILD_RPATH=false \ + -DCMAKE_BUILD_WITH_INSTALL_RPATH=false \ + -DCMAKE_INSTALL_RPATH=/usr/lib \ + -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=true \ + -DPYTHON_DESIRED=2 + make +} + +check() { + cd "${builddir}"/build + make tests + tests/run_gtester.sh +} + +package() { + cd "${builddir}"/build + make install/strip DESTDIR=${pkgdir} +} + +py2() { + pkgdesc="Python2 bindings for createrepo_c" + depends="python2 ${pkgname}-libs" + + # This is architecture-specific and provides a *.so file. + mkdir -p "${subpkgdir}"/usr/lib + mv "${pkgdir}"/usr/lib/python* "${subpkgdir}"/usr/lib/ +} + +bashcomp() { + depends="" + pkgdesc="Bash completions for ${pkgname}" + install_if="${pkgname}=${pkgver}-r${pkgrel} bash-completion" + + mkdir -p "${subpkgdir}"/usr/share/ + mv "${pkgdir}"/usr/share/bash-completion "${subpkgdir}"/usr/share/ +} + +sha512sums="e1e76d4a7c27af812d2ccf48512491377baeaa2506617ef6a6070dd04327a48b7f16e07bf8e84f8793db3fb5c8d0b79cd88cee4f013f86be2244a5750ccf08c0 createrepo_c-0cac54d09b5a2140b625cabad95dc48898e25cdd.tar.gz +df861d341d2acf5aba85d2bf0b959a7b22a29315efb0efeeada3871d7f1c4be035d27ff2408f55f3df24e6e11a8e5d7c4c88fd0ce25e4377b5452e861b40e188 10-libdir.patch" -- 2.13.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---