[arch-commits] Commit in pcb/repos (6 files)

Kyle Keen kkeen at archlinux.org
Thu Apr 28 20:15:51 UTC 2016


    Date: Thursday, April 28, 2016 @ 22:15:50
  Author: kkeen
Revision: 172452

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

Added:
  pcb/repos/community-i686/PKGBUILD
    (from rev 172451, pcb/trunk/PKGBUILD)
  pcb/repos/community-x86_64/PKGBUILD
    (from rev 172451, pcb/trunk/PKGBUILD)
Deleted:
  pcb/repos/community-i686/PKGBUILD
  pcb/repos/community-i686/pcb.install
  pcb/repos/community-x86_64/PKGBUILD
  pcb/repos/community-x86_64/pcb.install

------------------------------+
 /PKGBUILD                    |   82 +++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD      |   42 ---------------------
 community-i686/pcb.install   |   37 ------------------
 community-x86_64/PKGBUILD    |   42 ---------------------
 community-x86_64/pcb.install |   37 ------------------
 5 files changed, 82 insertions(+), 158 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-04-28 20:15:23 UTC (rev 172451)
+++ community-i686/PKGBUILD	2016-04-28 20:15:50 UTC (rev 172452)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: Matthias Blankertz <matthias at blankertz dot org>
-# Contributor: Egon Geerardyn <egon dot geerardyn at gmail dot com>
-# Contributor: kfgz <kfgz at interia pl>
-# Contributor: Gaetan Bisson <bisson at archlinux dot org>
-# Contributor: Jared Casper <jaredcasper at gmail dot com>
-# Contributor: Stefan Husmann <stefan-husmann at t-online dot de>
-
-pkgname=pcb
-pkgver=20140316
-pkgrel=2
-pkgdesc='Interactive printed circuit board editor'
-url='http://pcb.geda-project.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gtkglext' 'gd')
-optdepends=('tk: additional tools'
-            'tcl: additional tools'
-            'perl: additional tools'
-	    'desktop-file-utils: desktop integration')
-makedepends=('intltool' 'tk')
-source=("http://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz")
-sha1sums=('ec714ff136d1817e500e1a9e654e786883b9501e')
-install=pcb.install
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
-      --prefix=/usr \
-      --enable-dbus \
-      --disable-update-mime-database \
-      --disable-update-desktop-database
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -j1 prefix="$pkgdir/usr" install
-
-  rm "$pkgdir/usr/share/info/dir"
-}

Copied: pcb/repos/community-i686/PKGBUILD (from rev 172451, pcb/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-04-28 20:15:50 UTC (rev 172452)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Matthias Blankertz <matthias at blankertz dot org>
+# Contributor: Egon Geerardyn <egon dot geerardyn at gmail dot com>
+# Contributor: kfgz <kfgz at interia pl>
+# Contributor: Gaetan Bisson <bisson at archlinux dot org>
+# Contributor: Jared Casper <jaredcasper at gmail dot com>
+# Contributor: Stefan Husmann <stefan-husmann at t-online dot de>
+
+pkgname=pcb
+pkgver=20140316
+pkgrel=3
+pkgdesc='Interactive printed circuit board editor'
+url='http://pcb.geda-project.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gtkglext' 'gd')
+optdepends=('tk: additional tools'
+            'tcl: additional tools'
+            'perl: additional tools'
+	    'desktop-file-utils: desktop integration')
+makedepends=('intltool' 'tk')
+source=("http://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('ec714ff136d1817e500e1a9e654e786883b9501e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure \
+      --prefix=/usr \
+      --enable-dbus \
+      --disable-update-mime-database \
+      --disable-update-desktop-database
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -j1 prefix="$pkgdir/usr" install
+
+  rm "$pkgdir/usr/share/info/dir"
+}

Deleted: community-i686/pcb.install
===================================================================
--- community-i686/pcb.install	2016-04-28 20:15:23 UTC (rev 172451)
+++ community-i686/pcb.install	2016-04-28 20:15:50 UTC (rev 172452)
@@ -1,37 +0,0 @@
-infodir=/usr/share/info
-filelist=(pcb.info pcb.info-1 pcb.info-2)
-
-post_install() {
-   if [ -x /usr/bin/update-mime-database ]; then
-      echo Updating mime database...
-      /usr/bin/update-mime-database /usr/share/mime
-   fi
-   if [ -x /usr/bin/update-desktop-database ]; then
-      echo Updating desktop database..
-      /usr/bin/update-desktop-database /usr/share/applications
-   fi
-   if [ -x /usr/bin/install-info ]; then
-      echo Updating info directory...
-      for file in ${filelist[@]}; do
-        install-info $infodir/$file $infodir/dir 2> /dev/null
-      done
-   fi 
-   /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor	
-}
- 
-post_upgrade() {
-   post_install $1
-}
-
-pre_remove() {
-   if [ -x /usr/bin/install-info ]; then
-      echo Updating info directory...
-      for file in ${filelist[@]}; do
-        install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-      done
-   fi	
-}
-
-post_remove() {
-   /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
-}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-04-28 20:15:23 UTC (rev 172451)
+++ community-x86_64/PKGBUILD	2016-04-28 20:15:50 UTC (rev 172452)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: Matthias Blankertz <matthias at blankertz dot org>
-# Contributor: Egon Geerardyn <egon dot geerardyn at gmail dot com>
-# Contributor: kfgz <kfgz at interia pl>
-# Contributor: Gaetan Bisson <bisson at archlinux dot org>
-# Contributor: Jared Casper <jaredcasper at gmail dot com>
-# Contributor: Stefan Husmann <stefan-husmann at t-online dot de>
-
-pkgname=pcb
-pkgver=20140316
-pkgrel=2
-pkgdesc='Interactive printed circuit board editor'
-url='http://pcb.geda-project.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gtkglext' 'gd')
-optdepends=('tk: additional tools'
-            'tcl: additional tools'
-            'perl: additional tools'
-	    'desktop-file-utils: desktop integration')
-makedepends=('intltool' 'tk')
-source=("http://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz")
-sha1sums=('ec714ff136d1817e500e1a9e654e786883b9501e')
-install=pcb.install
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
-      --prefix=/usr \
-      --enable-dbus \
-      --disable-update-mime-database \
-      --disable-update-desktop-database
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -j1 prefix="$pkgdir/usr" install
-
-  rm "$pkgdir/usr/share/info/dir"
-}

Copied: pcb/repos/community-x86_64/PKGBUILD (from rev 172451, pcb/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-04-28 20:15:50 UTC (rev 172452)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Matthias Blankertz <matthias at blankertz dot org>
+# Contributor: Egon Geerardyn <egon dot geerardyn at gmail dot com>
+# Contributor: kfgz <kfgz at interia pl>
+# Contributor: Gaetan Bisson <bisson at archlinux dot org>
+# Contributor: Jared Casper <jaredcasper at gmail dot com>
+# Contributor: Stefan Husmann <stefan-husmann at t-online dot de>
+
+pkgname=pcb
+pkgver=20140316
+pkgrel=3
+pkgdesc='Interactive printed circuit board editor'
+url='http://pcb.geda-project.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gtkglext' 'gd')
+optdepends=('tk: additional tools'
+            'tcl: additional tools'
+            'perl: additional tools'
+	    'desktop-file-utils: desktop integration')
+makedepends=('intltool' 'tk')
+source=("http://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('ec714ff136d1817e500e1a9e654e786883b9501e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure \
+      --prefix=/usr \
+      --enable-dbus \
+      --disable-update-mime-database \
+      --disable-update-desktop-database
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -j1 prefix="$pkgdir/usr" install
+
+  rm "$pkgdir/usr/share/info/dir"
+}

Deleted: community-x86_64/pcb.install
===================================================================
--- community-x86_64/pcb.install	2016-04-28 20:15:23 UTC (rev 172451)
+++ community-x86_64/pcb.install	2016-04-28 20:15:50 UTC (rev 172452)
@@ -1,37 +0,0 @@
-infodir=/usr/share/info
-filelist=(pcb.info pcb.info-1 pcb.info-2)
-
-post_install() {
-   if [ -x /usr/bin/update-mime-database ]; then
-      echo Updating mime database...
-      /usr/bin/update-mime-database /usr/share/mime
-   fi
-   if [ -x /usr/bin/update-desktop-database ]; then
-      echo Updating desktop database..
-      /usr/bin/update-desktop-database /usr/share/applications
-   fi
-   if [ -x /usr/bin/install-info ]; then
-      echo Updating info directory...
-      for file in ${filelist[@]}; do
-        install-info $infodir/$file $infodir/dir 2> /dev/null
-      done
-   fi 
-   /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor	
-}
- 
-post_upgrade() {
-   post_install $1
-}
-
-pre_remove() {
-   if [ -x /usr/bin/install-info ]; then
-      echo Updating info directory...
-      for file in ${filelist[@]}; do
-        install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-      done
-   fi	
-}
-
-post_remove() {
-   /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
-}



More information about the arch-commits mailing list