Date: Tuesday, July 30, 2013 @ 16:34:31
  Author: bisson
Revision: 94794

archrelease: copy trunk to community-i686, community-x86_64

Added:
  scribus/repos/community-i686/PKGBUILD
    (from rev 94793, scribus/trunk/PKGBUILD)
  scribus/repos/community-i686/install
    (from rev 94793, scribus/trunk/install)
  scribus/repos/community-x86_64/PKGBUILD
    (from rev 94793, scribus/trunk/PKGBUILD)
  scribus/repos/community-x86_64/install
    (from rev 94793, scribus/trunk/install)
Deleted:
  scribus/repos/community-i686/PKGBUILD
  scribus/repos/community-i686/install
  scribus/repos/community-x86_64/PKGBUILD
  scribus/repos/community-x86_64/install

---------------------------+
 /PKGBUILD                 |   98 ++++++++++++++++++++++++++++++++++++++++++++
 /install                  |   22 +++++++++
 community-i686/PKGBUILD   |   49 ----------------------
 community-i686/install    |   11 ----
 community-x86_64/PKGBUILD |   49 ----------------------
 community-x86_64/install  |   11 ----
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD     2013-07-30 14:33:53 UTC (rev 94793)
+++ community-i686/PKGBUILD     2013-07-30 14:34:31 UTC (rev 94794)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bis...@archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1...@archlinux.us>
-# Contributor: Ronald van Haren <ronald.archlinux.org>
-# Contributor: tobias <tob...@archlinux.org>
-# Contributor: Ben <b...@benmazer.net>
-
-pkgname=scribus
-pkgver=1.4.2
-pkgrel=4
-pkgdesc='Desktop publishing software'
-url="http://www.scribus.net/";
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=('cmake' 'boost' 'mesa')
-depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen'
-         'ghostscript' 'python2' 'aspell' 'podofo' 'boost-libs'
-         'desktop-file-utils' 'shared-mime-info')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('6e67e98fa315a2890d9cbb12eed49ecebb7f11cb')
-
-options=('!libtool')
-install=install
-
-prepare() {
-       cd "${srcdir}/${pkgname}-${pkgver}"
-       sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i 
scribus.desktop
-       sed \
-               -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
-               -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-               -i scribus/plugins/scriptplugin/{samples,scripts}/*
-       install -d ../build
-}
-
-build() {
-       cd "${srcdir}/build"
-       cmake "../${pkgname}-${pkgver}" \
-               -DCMAKE_INSTALL_PREFIX=/usr \
-               -DCMAKE_BUILD_TYPE=Release \
-               -DCMAKE_SKIP_RPATH=ON \
-               -DLIB_SUFFIX=""
-       make
-}
-
-package() {
-       cd "${srcdir}/build"
-       make DESTDIR="${pkgdir}" install
-       install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" 
"${pkgdir}/usr/share/applications/scribus.desktop"
-}

Copied: scribus/repos/community-i686/PKGBUILD (from rev 94793, 
scribus/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD                             (rev 0)
+++ community-i686/PKGBUILD     2013-07-30 14:34:31 UTC (rev 94794)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bis...@archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1...@archlinux.us>
+# Contributor: Ronald van Haren <ronald.archlinux.org>
+# Contributor: tobias <tob...@archlinux.org>
+# Contributor: Ben <b...@benmazer.net>
+
+pkgname=scribus
+pkgver=1.4.3
+pkgrel=1
+pkgdesc='Desktop publishing software'
+url='http://www.scribus.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'mesa')
+depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen'
+         'ghostscript' 'python2' 'podofo' 'boost-libs'
+         'desktop-file-utils' 'shared-mime-info')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('23d85fcfe0a61ff88cc003639efdbb38d43feb7f')
+
+options=('!libtool')
+install=install
+
+prepare() {
+       cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}"
+       sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i 
scribus.desktop
+       sed \
+               -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+               -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+               -i scribus/plugins/scriptplugin/{samples,scripts}/*
+       install -d ../build
+}
+
+build() {
+       cd "${srcdir}/${pkgname}-${pkgver}/build"
+       cmake "../${pkgname}-${pkgver}" \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DCMAKE_BUILD_TYPE=Release \
+               -DCMAKE_SKIP_RPATH=ON \
+               -DLIB_SUFFIX=""
+       make
+}
+
+package() {
+       cd "${srcdir}/${pkgname}-${pkgver}/build"
+       make DESTDIR="${pkgdir}" install
+       install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" 
"${pkgdir}/usr/share/applications/scribus.desktop"
+}

Deleted: community-i686/install
===================================================================
--- community-i686/install      2013-07-30 14:33:53 UTC (rev 94793)
+++ community-i686/install      2013-07-30 14:34:31 UTC (rev 94794)
@@ -1,11 +0,0 @@
-post_install() {
-       update-mime-database usr/share/mime &> /dev/null
-       update-desktop-database -q
-}
-post_upgrade() {
-       post_install
-}
-
-post_remove() {
-       post_install
-}

Copied: scribus/repos/community-i686/install (from rev 94793, 
scribus/trunk/install)
===================================================================
--- community-i686/install                              (rev 0)
+++ community-i686/install      2013-07-30 14:34:31 UTC (rev 94794)
@@ -0,0 +1,11 @@
+post_install() {
+       update-mime-database usr/share/mime &> /dev/null
+       update-desktop-database -q
+}
+post_upgrade() {
+       post_install
+}
+
+post_remove() {
+       post_install
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD   2013-07-30 14:33:53 UTC (rev 94793)
+++ community-x86_64/PKGBUILD   2013-07-30 14:34:31 UTC (rev 94794)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bis...@archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1...@archlinux.us>
-# Contributor: Ronald van Haren <ronald.archlinux.org>
-# Contributor: tobias <tob...@archlinux.org>
-# Contributor: Ben <b...@benmazer.net>
-
-pkgname=scribus
-pkgver=1.4.2
-pkgrel=4
-pkgdesc='Desktop publishing software'
-url="http://www.scribus.net/";
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=('cmake' 'boost' 'mesa')
-depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen'
-         'ghostscript' 'python2' 'aspell' 'podofo' 'boost-libs'
-         'desktop-file-utils' 'shared-mime-info')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('6e67e98fa315a2890d9cbb12eed49ecebb7f11cb')
-
-options=('!libtool')
-install=install
-
-prepare() {
-       cd "${srcdir}/${pkgname}-${pkgver}"
-       sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i 
scribus.desktop
-       sed \
-               -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
-               -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-               -i scribus/plugins/scriptplugin/{samples,scripts}/*
-       install -d ../build
-}
-
-build() {
-       cd "${srcdir}/build"
-       cmake "../${pkgname}-${pkgver}" \
-               -DCMAKE_INSTALL_PREFIX=/usr \
-               -DCMAKE_BUILD_TYPE=Release \
-               -DCMAKE_SKIP_RPATH=ON \
-               -DLIB_SUFFIX=""
-       make
-}
-
-package() {
-       cd "${srcdir}/build"
-       make DESTDIR="${pkgdir}" install
-       install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" 
"${pkgdir}/usr/share/applications/scribus.desktop"
-}

Copied: scribus/repos/community-x86_64/PKGBUILD (from rev 94793, 
scribus/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD                           (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-30 14:34:31 UTC (rev 94794)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bis...@archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1...@archlinux.us>
+# Contributor: Ronald van Haren <ronald.archlinux.org>
+# Contributor: tobias <tob...@archlinux.org>
+# Contributor: Ben <b...@benmazer.net>
+
+pkgname=scribus
+pkgver=1.4.3
+pkgrel=1
+pkgdesc='Desktop publishing software'
+url='http://www.scribus.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'mesa')
+depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen'
+         'ghostscript' 'python2' 'podofo' 'boost-libs'
+         'desktop-file-utils' 'shared-mime-info')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('23d85fcfe0a61ff88cc003639efdbb38d43feb7f')
+
+options=('!libtool')
+install=install
+
+prepare() {
+       cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}"
+       sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i 
scribus.desktop
+       sed \
+               -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+               -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+               -i scribus/plugins/scriptplugin/{samples,scripts}/*
+       install -d ../build
+}
+
+build() {
+       cd "${srcdir}/${pkgname}-${pkgver}/build"
+       cmake "../${pkgname}-${pkgver}" \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DCMAKE_BUILD_TYPE=Release \
+               -DCMAKE_SKIP_RPATH=ON \
+               -DLIB_SUFFIX=""
+       make
+}
+
+package() {
+       cd "${srcdir}/${pkgname}-${pkgver}/build"
+       make DESTDIR="${pkgdir}" install
+       install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" 
"${pkgdir}/usr/share/applications/scribus.desktop"
+}

Deleted: community-x86_64/install
===================================================================
--- community-x86_64/install    2013-07-30 14:33:53 UTC (rev 94793)
+++ community-x86_64/install    2013-07-30 14:34:31 UTC (rev 94794)
@@ -1,11 +0,0 @@
-post_install() {
-       update-mime-database usr/share/mime &> /dev/null
-       update-desktop-database -q
-}
-post_upgrade() {
-       post_install
-}
-
-post_remove() {
-       post_install
-}

Copied: scribus/repos/community-x86_64/install (from rev 94793, 
scribus/trunk/install)
===================================================================
--- community-x86_64/install                            (rev 0)
+++ community-x86_64/install    2013-07-30 14:34:31 UTC (rev 94794)
@@ -0,0 +1,11 @@
+post_install() {
+       update-mime-database usr/share/mime &> /dev/null
+       update-desktop-database -q
+}
+post_upgrade() {
+       post_install
+}
+
+post_remove() {
+       post_install
+}

Reply via email to