summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pcr/yum/PKGBUILD54
-rw-r--r--pcr/yum/remove-init-dir-makefile.patch12
2 files changed, 66 insertions, 0 deletions
diff --git a/pcr/yum/PKGBUILD b/pcr/yum/PKGBUILD
new file mode 100644
index 000000000..2ee872220
--- /dev/null
+++ b/pcr/yum/PKGBUILD
@@ -0,0 +1,54 @@
+# Maintainer: David P. <megver83@openmailbox.org>
+# Contributor: Achilleas Pipinellis <axilleas archlinux info>
+# Contributor: William Giokas <1007380@gmail.com>
+# Contributor: Fernando M f[at]beford.net
+# Contributor: Ivo Benner <ivo.benner[at]web.de>
+# Contributor: Luka Perkov <archlinux <at> lukaperkov <dOt> net>
+# Contributor: Rob Taylor <robtaylor[at]floopily.org>
+
+pkgname=yum
+pkgver=3.4.3
+pkgrel=6
+pkgdesc="a popular channel based package manager for RPM distros."
+arch=('armv7h' 'i686' 'x86_64')
+license=('GPL')
+url="http://yum.baseurl.org/"
+groups=('system')
+depends=('python2' 'intltool' 'urlgrabber' 'rpm-org' 'python2-pysqlite' 'yum-metadata-parser' 'python2-iniparse' 'python2-pyliblzma')
+source=("http://yum.baseurl.org/download/3.4/yum-${pkgver}.tar.gz"
+ "yum.patch::http://pkgs.fedoraproject.org/cgit/yum.git/plain/yum-HEAD.patch?h=f21"
+ 'remove-init-dir-makefile.patch')
+md5sums=('7c8ea8beba5b4e7fe0c215e4ebaa26ed'
+ '3ed35721daf75fd56590bd2d2b993ddc'
+ '14d68bd689ea76a44567bc2dd0e64cb1')
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # Patch up to Fedora current
+ patch -p1 < "${srcdir}/yum.patch"
+
+ cd "etc"
+
+ # Apply patch to remove the RedHat style init script from being installed
+ patch < "${srcdir}/remove-init-dir-makefile.patch"
+}
+
+build() {
+ # Patching python2 shebangs
+ sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+ $(find ${srcdir} -name '*.py')
+ sed -i -e "s/PYTHON=python/PYTHON=python2/" "${srcdir}/${pkgname}-${pkgver}/Makefile"
+
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" INIT=systemd install
+
+ mv "${pkgdir}/usr/sbin/"* "${pkgdir}/usr/bin/"
+ rmdir "${pkgdir}/usr/sbin/"
+}
diff --git a/pcr/yum/remove-init-dir-makefile.patch b/pcr/yum/remove-init-dir-makefile.patch
new file mode 100644
index 000000000..671efdf9f
--- /dev/null
+++ b/pcr/yum/remove-init-dir-makefile.patch
@@ -0,0 +1,12 @@
+--- Makefile.dist 2009-01-08 13:36:04.598489682 -0700
++++ Makefile 2009-01-08 13:40:23.116347817 -0700
+@@ -13,9 +13,6 @@
+ mkdir -p $(DESTDIR)/etc/logrotate.d
+ install -m 644 yum.logrotate $(DESTDIR)/etc/logrotate.d/yum
+
+- mkdir -p $(DESTDIR)/etc/rc.d/init.d
+- install -m 755 yum-updatesd.init $(DESTDIR)/etc/rc.d/init.d/yum-updatesd
+-
+ mkdir -p $(DESTDIR)/etc/dbus-1/system.d/
+ install -m 755 yum-updatesd-dbus.conf $(DESTDIR)/etc/dbus-1/system.d/yum-updatesd.conf
+