[arch-commits] Commit in pkgconf/repos (5 files)

Johannes Löthberg demize at archlinux.org
Thu Jan 17 22:44:30 UTC 2019


    Date: Thursday, January 17, 2019 @ 22:44:30
  Author: demize
Revision: 344401

db-move: moved pkgconf from [testing] to [core] (x86_64)

Added:
  pkgconf/repos/core-x86_64/PKGBUILD
    (from rev 344400, pkgconf/repos/testing-x86_64/PKGBUILD)
  pkgconf/repos/core-x86_64/platform-pkg-config.in
    (from rev 344400, pkgconf/repos/testing-x86_64/platform-pkg-config.in)
Deleted:
  pkgconf/repos/core-x86_64/PKGBUILD
  pkgconf/repos/core-x86_64/platform-pkg-config.in
  pkgconf/repos/testing-x86_64/

------------------------------------+
 /PKGBUILD                          |   80 +++++++++++++++++++++++++++++++++++
 /platform-pkg-config.in            |   11 ++++
 core-x86_64/PKGBUILD               |   80 -----------------------------------
 core-x86_64/platform-pkg-config.in |   11 ----
 4 files changed, 91 insertions(+), 91 deletions(-)

Deleted: core-x86_64/PKGBUILD
===================================================================
--- core-x86_64/PKGBUILD	2019-01-17 21:07:38 UTC (rev 344400)
+++ core-x86_64/PKGBUILD	2019-01-17 22:44:30 UTC (rev 344401)
@@ -1,80 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Johannes Löthberg <johannes at kyriasis.com>
-# Contributor: Piotr Gorski <lucjan.lucjanov at gmail.com>
-# Contributor: Lucy <lucy at luz.lu>
-# Contributor: Bartlomiej Piotrowski <nospam at bpiotrowski.pl>
-
-pkgname=pkgconf
-pkgver=1.5.4
-pkgrel=1
-pkgdesc="Package compiler and linker metadata toolkit"
-url="https://github.com/pkgconf/pkgconf"
-license=(custom:ISC)
-arch=(x86_64)
-depends=(glibc sh)
-makedepends=(git)
-provides=(pkg-config pkgconfig)
-conflicts=(pkg-config)
-replaces=(pkg-config)
-groups=(base-devel)
-_commit=74133eda31bc1ed5947b4a3a854001e320b6c1fe  # tags/pkgconf-1.5.4
-source=("git+https://github.com/pkgconf/pkgconf#commit=$_commit" platform-pkg-config.in)
-sha256sums=('SKIP'
-            '7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
-
-_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
-_libdir=/usr/lib
-_includedir=/usr/include
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-  ./autogen.sh
-}
-
-build() {
-  cd build
-  ../$pkgname/configure \
-    --prefix=/usr \
-    --sysconfdir=/etc \
-    --with-pkg-config-dir="$_pcdirs" \
-    --with-system-libdir="$_libdir" \
-    --with-system-includedir="$_includedir" \
-    --disable-static
-  make
-}
-
-package() {
-  DESTDIR="$pkgdir" make -C build install
-
-  # From https://src.fedoraproject.org/rpms/pkgconf/
-  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
-      -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
-      -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
-      -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
-      platform-pkg-config.in |
-    install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
-  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
-
-  # Multilib
-  if [[ $CARCH = x86_64 ]]; then
-    _host32=${CHOST/x86_64/i686}
-    sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
-        -e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
-        -e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
-        -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
-        platform-pkg-config.in |
-      install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
-    ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
-  fi
-
-  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
-}
-
-# vim:set sw=2 et:

Copied: pkgconf/repos/core-x86_64/PKGBUILD (from rev 344400, pkgconf/repos/testing-x86_64/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD	                        (rev 0)
+++ core-x86_64/PKGBUILD	2019-01-17 22:44:30 UTC (rev 344401)
@@ -0,0 +1,80 @@
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Johannes Löthberg <johannes at kyriasis.com>
+# Contributor: Piotr Gorski <lucjan.lucjanov at gmail.com>
+# Contributor: Lucy <lucy at luz.lu>
+# Contributor: Bartlomiej Piotrowski <nospam at bpiotrowski.pl>
+
+pkgname=pkgconf
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://github.com/pkgconf/pkgconf"
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=e2fdd6f47020bdfa670225d6f0763b082a419f91  # tags/pkgconf-1.6.0
+source=("git+https://github.com/pkgconf/pkgconf#commit=$_commit" platform-pkg-config.in)
+sha256sums=('SKIP'
+            '7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+    --prefix=/usr \
+    --sysconfdir=/etc \
+    --with-pkg-config-dir="$_pcdirs" \
+    --with-system-libdir="$_libdir" \
+    --with-system-includedir="$_includedir" \
+    --disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+      -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+      -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+      -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+      platform-pkg-config.in |
+    install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+    _host32=${CHOST/x86_64/i686}
+    sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+        -e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+        -e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+        -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+        platform-pkg-config.in |
+      install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+    ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Deleted: core-x86_64/platform-pkg-config.in
===================================================================
--- core-x86_64/platform-pkg-config.in	2019-01-17 21:07:38 UTC (rev 344400)
+++ core-x86_64/platform-pkg-config.in	2019-01-17 22:44:30 UTC (rev 344401)
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-# Simple wrapper to tell pkgconf to behave as a platform-specific version of pkg-config
-# Platform: @TARGET_PLATFORM@
-
-: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
-: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
-: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
-export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH PKG_CONFIG_SYSTEM_INCLUDE_PATH
-
-exec pkgconf "$@"

Copied: pkgconf/repos/core-x86_64/platform-pkg-config.in (from rev 344400, pkgconf/repos/testing-x86_64/platform-pkg-config.in)
===================================================================
--- core-x86_64/platform-pkg-config.in	                        (rev 0)
+++ core-x86_64/platform-pkg-config.in	2019-01-17 22:44:30 UTC (rev 344401)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"



More information about the arch-commits mailing list