[arch-commits] Commit in gummi/repos (8 files)

2016-03-08 Thread Alexander Rødseth
Date: Tuesday, March 8, 2016 @ 15:53:31
  Author: arodseth
Revision: 165613

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

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

+
 /PKGBUILD  |  104 +++
 /gummi.install |   28 ++
 community-i686/PKGBUILD|   51 ---
 community-i686/gummi.install   |   14 -
 community-x86_64/PKGBUILD  |   51 ---
 community-x86_64/gummi.install |   14 -
 6 files changed, 132 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-08 14:52:06 UTC (rev 165612)
+++ community-i686/PKGBUILD 2016-03-08 14:53:31 UTC (rev 165613)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Sergio A. Morales 
-# Contributor: soeren 
-
-pkgname=gummi
-pkgver=0.7.4
-pkgrel=1
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='https://github.com/aitjcize/Gummi' # Using the GTK3 fork, for now
-#url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell3' 'gtksourceview3' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk3' 'pango' 'poppler' 'intltool' 'setconf' 'git')
-install="$pkgname.install"
-source=("git://github.com/aitjcize/Gummi#tag=$pkgver") # Using the GTK3 fork, 
for now
-#source=("git://github.com/alexandervdm/gummi#tag=$pkgver") # 0.6.6
-md5sums=('SKIP')
-
-prepare() {
-  cd "${pkgname^}"
-
-  find . -type f -print0 | xargs -0 sed -i "s|0.6.5|$pkgver|g"
-  setconf autogen.sh AM_VERSION ''
-  ./autogen.sh
-  setconf Makefile.in PACKAGE_VERSION "'"$pkgver"'"
-  setconf data/misc/Makefile.in PACKAGE_VERSION "'"$pkgver"'"
-  echo $pkgver > dev/latest
-  autoreconf
-  setconf configure PACKAGE_VERSION "'"$pkgver"'"
-  setconf configure PACKAGE_STRING "'""Gummi $pkgver (GTK3 fork)""'"
-  setconf configure PACKAGE_BUGREPORT "'https://bugs.archlinux.org/'"
-}
-
-build() {
-  cd "${pkgname^}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${pkgname^}"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 165612, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-08 14:53:31 UTC (rev 165613)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Sergio A. Morales 
+# Contributor: soeren 
+
+pkgname=gummi
+pkgver=0.6.6
+epoch=1
+pkgrel=1
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+#url='https://github.com/aitjcize/Gummi' # GTK3 fork
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install="$pkgname.install"
+source=("git://github.com/alexandervdm/gummi#tag=$pkgver")
+#source=("git://github.com/aitjcize/Gummi#tag=$pkgver") # GTK3 fork
+md5sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  # TODO: Simplify
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+  setconf Makefile.in PACKAGE_VERSION "'"$pkgver"'"
+  setconf data/misc/Makefile.in PACKAGE_VERSION "'"$pkgver"'"
+  echo $pkgver > dev/latest
+  autoreconf
+  setconf configure PACKAGE_VERSION "'"$pkgver"'"
+  setconf configure PACKAGE_STRING "'""Gummi $pkgver""'"
+  setconf configure PACKAGE_BUGREPORT "'https://bugs.archlinux.org/'"
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2016-03-08 14:52:06 UTC (rev 165612)
+++ community-i686/gummi.install2016-03-08 14:53:31 UTC (rev 165613)

[arch-commits] Commit in gummi/repos (8 files)

2016-03-06 Thread Alexander Rødseth
Date: Sunday, March 6, 2016 @ 17:44:05
  Author: arodseth
Revision: 165396

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

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

+
 /PKGBUILD  |  102 +++
 /gummi.install |   28 ++
 community-i686/PKGBUILD|   41 ---
 community-i686/gummi.install   |   14 -
 community-x86_64/PKGBUILD  |   41 ---
 community-x86_64/gummi.install |   14 -
 6 files changed, 130 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-06 16:43:53 UTC (rev 165395)
+++ community-i686/PKGBUILD 2016-03-06 16:44:05 UTC (rev 165396)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Sergio A. Morales 
-# Contributor: soeren 
-
-pkgname=gummi
-pkgver=0.6.6
-pkgrel=3
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
-install="$pkgname.install"
-source=("git://github.com/alexandervdm/gummi#tag=$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  setconf autogen.sh AM_VERSION ''
-  ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 165395, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-06 16:44:05 UTC (rev 165396)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Sergio A. Morales 
+# Contributor: soeren 
+
+pkgname=gummi
+pkgver=0.7.4
+pkgrel=1
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='https://github.com/aitjcize/Gummi' # Using the GTK3 fork, for now
+#url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell3' 'gtksourceview3' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk3' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install="$pkgname.install"
+source=("git://github.com/aitjcize/Gummi#tag=$pkgver") # Using the GTK3 fork, 
for now
+#source=("git://github.com/alexandervdm/gummi#tag=$pkgver") # 0.6.6
+md5sums=('SKIP')
+
+prepare() {
+  cd "${pkgname^}"
+
+  find . -type f -print0 | xargs -0 sed -i "s|0.6.5|$pkgver|g"
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+  setconf Makefile.in PACKAGE_VERSION "'"$pkgver"'"
+  setconf data/misc/Makefile.in PACKAGE_VERSION "'"$pkgver"'"
+  echo $pkgver > dev/latest
+  autoreconf
+  setconf configure PACKAGE_VERSION "'"$pkgver"'"
+  setconf configure PACKAGE_STRING "'""Gummi $pkgver (GTK3 fork)""'"
+  setconf configure PACKAGE_BUGREPORT "'https://bugs.archlinux.org/'"
+}
+
+build() {
+  cd "${pkgname^}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname^}"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2016-03-06 16:43:53 UTC (rev 165395)
+++ community-i686/gummi.install2016-03-06 16:44:05 UTC (rev 165396)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/gummi.install (from rev 165395, 
gummi/trunk/gummi.install)
===
--- community-i686/gummi.install(rev 0)
+++ community-i686/gummi.install  

[arch-commits] Commit in gummi/repos (8 files)

2016-03-06 Thread Alexander Rødseth
Date: Sunday, March 6, 2016 @ 13:04:56
  Author: arodseth
Revision: 165358

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

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

+
 /PKGBUILD  |   82 +++
 /gummi.install |   28 +
 community-i686/PKGBUILD|   47 --
 community-i686/gummi.install   |   14 --
 community-x86_64/PKGBUILD  |   47 --
 community-x86_64/gummi.install |   14 --
 6 files changed, 110 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-06 12:04:44 UTC (rev 165357)
+++ community-i686/PKGBUILD 2016-03-06 12:04:56 UTC (rev 165358)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Sergio A. Morales 
-# Contributor: soeren 
-
-pkgname=gummi
-pkgver=0.6.6
-pkgrel=2
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
-install="$pkgname.install"
-source=("git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  setconf autogen.sh AM_VERSION ''
-  ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure --prefix=/usr
-  #  --datarootdir="/usr/share/$pkgname" \
-  #  --datadir="/usr/share/$pkgname"
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  # Fix FS#48130
-  mv "$pkgdir/usr/@DATADIRNAME@/"* "$pkgdir/usr/share/$pkgname"
-  rmdir "$pkgdir/usr/@DATADIRNAME@"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 165357, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-06 12:04:56 UTC (rev 165358)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Sergio A. Morales 
+# Contributor: soeren 
+
+pkgname=gummi
+pkgver=0.6.6
+pkgrel=3
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install="$pkgname.install"
+source=("git://github.com/alexandervdm/gummi#tag=$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2016-03-06 12:04:44 UTC (rev 165357)
+++ community-i686/gummi.install2016-03-06 12:04:56 UTC (rev 165358)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/gummi.install (from rev 165357, 
gummi/trunk/gummi.install)
===
--- community-i686/gummi.install(rev 0)
+++ community-i686/gummi.install2016-03-06 12:04:56 UTC (rev 165358)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD

[arch-commits] Commit in gummi/repos (8 files)

2016-02-11 Thread Alexander Rødseth
Date: Thursday, February 11, 2016 @ 23:51:49
  Author: arodseth
Revision: 161321

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

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

+
 /PKGBUILD  |   94 +++
 /gummi.install |   28 +++
 community-i686/PKGBUILD|   41 -
 community-i686/gummi.install   |   14 -
 community-x86_64/PKGBUILD  |   41 -
 community-x86_64/gummi.install |   14 -
 6 files changed, 122 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-11 22:51:37 UTC (rev 161320)
+++ community-i686/PKGBUILD 2016-02-11 22:51:49 UTC (rev 161321)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Sergio A. Morales 
-# Contributor: soeren 
-
-pkgname=gummi
-pkgver=0.6.6
-pkgrel=1
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
-install="$pkgname.install"
-source=("git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  setconf autogen.sh AM_VERSION ''
-  ./autogen.sh
-}
- 
-build() {
-  cd "$pkgname"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 161320, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-11 22:51:49 UTC (rev 161321)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Sergio A. Morales 
+# Contributor: soeren 
+
+pkgname=gummi
+pkgver=0.6.6
+pkgrel=2
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install="$pkgname.install"
+source=("git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135")
+md5sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr
+  #  --datarootdir="/usr/share/$pkgname" \
+  #  --datadir="/usr/share/$pkgname"
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  # Fix FS#48130
+  mv "$pkgdir/usr/@DATADIRNAME@/"* "$pkgdir/usr/share/$pkgname"
+  rmdir "$pkgdir/usr/@DATADIRNAME@"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2016-02-11 22:51:37 UTC (rev 161320)
+++ community-i686/gummi.install2016-02-11 22:51:49 UTC (rev 161321)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/gummi.install (from rev 161320, 
gummi/trunk/gummi.install)
===
--- community-i686/gummi.install(rev 0)
+++ community-i686/gummi.install2016-02-11 22:51:49 UTC (rev 161321)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD

[arch-commits] Commit in gummi/repos (8 files)

2016-02-10 Thread Alexander Rødseth
Date: Wednesday, February 10, 2016 @ 17:50:41
  Author: arodseth
Revision: 161065

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

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

+
 /PKGBUILD  |   82 +++
 /gummi.install |   28 +
 community-i686/PKGBUILD|   41 ---
 community-i686/gummi.install   |   14 --
 community-x86_64/PKGBUILD  |   41 ---
 community-x86_64/gummi.install |   14 --
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-10 16:49:31 UTC (rev 161064)
+++ community-i686/PKGBUILD 2016-02-10 16:50:41 UTC (rev 161065)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Sergio A. Morales 
-# Contributor: soeren 
-
-pkgname=gummi
-pkgver=0.6.5
-pkgrel=3
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
-install="$pkgname.install"
-source=("git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  setconf autogen.sh AM_VERSION ''
-  ./autogen.sh
-}
- 
-build() {
-  cd "$pkgname"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 161064, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-10 16:50:41 UTC (rev 161065)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Sergio A. Morales 
+# Contributor: soeren 
+
+pkgname=gummi
+pkgver=0.6.6
+pkgrel=1
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install="$pkgname.install"
+source=("git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135")
+md5sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+}
+ 
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2016-02-10 16:49:31 UTC (rev 161064)
+++ community-i686/gummi.install2016-02-10 16:50:41 UTC (rev 161065)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/gummi.install (from rev 161064, 
gummi/trunk/gummi.install)
===
--- community-i686/gummi.install(rev 0)
+++ community-i686/gummi.install2016-02-10 16:50:41 UTC (rev 161065)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-10 16:49:31 UTC (rev 161064)
+++ community-x86_64/PKGBUILD   2016-02-10 16:50:41 UTC (rev 

[arch-commits] Commit in gummi/repos (8 files)

2015-04-11 Thread Alexander Rødseth
Date: Sunday, April 12, 2015 @ 00:35:15
  Author: arodseth
Revision: 131197

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

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

+
 /PKGBUILD  |   82 +++
 /gummi.install |   28 +
 community-i686/PKGBUILD|   34 
 community-i686/gummi.install   |   14 --
 community-x86_64/PKGBUILD  |   34 
 community-x86_64/gummi.install |   14 --
 6 files changed, 110 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-11 22:33:37 UTC (rev 131196)
+++ community-i686/PKGBUILD 2015-04-11 22:35:15 UTC (rev 131197)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Sergio A. Morales sergiomora...@archlinux.cl
-# Contributor: soeren non...@posteo.de
-
-pkgname=gummi
-pkgver=0.6.5
-pkgrel=2
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool')
-install=$pkgname.install
-source=(http://dev.midnightcoding.org/attachments/download/301/$pkgname-$pkgver.tar.gz;)
-sha256sums=('b23c2958376ea43c701a276ad19ceac5b50d9cb32a489a10897b25aa5004fffb')
- 
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 131196, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-11 22:35:15 UTC (rev 131197)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Sergio A. Morales sergiomora...@archlinux.cl
+# Contributor: soeren non...@posteo.de
+
+pkgname=gummi
+pkgver=0.6.5
+pkgrel=3
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install=$pkgname.install
+source=(git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+}
+ 
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2015-04-11 22:33:37 UTC (rev 131196)
+++ community-i686/gummi.install2015-04-11 22:35:15 UTC (rev 131197)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/gummi.install (from rev 131196, 
gummi/trunk/gummi.install)
===
--- community-i686/gummi.install(rev 0)
+++ community-i686/gummi.install2015-04-11 22:35:15 UTC (rev 131197)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-04-11 22:33:37 UTC (rev 131196)
+++ community-x86_64/PKGBUILD   2015-04-11 22:35:15 UTC (rev 131197)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# 

[arch-commits] Commit in gummi/repos (8 files)

2015-04-11 Thread Alexander Rødseth
Date: Sunday, April 12, 2015 @ 02:28:36
  Author: arodseth
Revision: 131200

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

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

+
 /PKGBUILD  |   82 +++
 /gummi.install |   28 +
 community-i686/PKGBUILD|   41 ---
 community-i686/gummi.install   |   14 --
 community-x86_64/PKGBUILD  |   41 ---
 community-x86_64/gummi.install |   14 --
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-11 23:27:05 UTC (rev 131199)
+++ community-i686/PKGBUILD 2015-04-12 00:28:36 UTC (rev 131200)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Sergio A. Morales sergiomora...@archlinux.cl
-# Contributor: soeren non...@posteo.de
-
-pkgname=gummi
-pkgver=0.6.5
-pkgrel=3
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
-install=$pkgname.install
-source=(git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  setconf autogen.sh AM_VERSION ''
-  ./autogen.sh
-}
- 
-build() {
-  cd $pkgname
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 131199, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-12 00:28:36 UTC (rev 131200)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Sergio A. Morales sergiomora...@archlinux.cl
+# Contributor: soeren non...@posteo.de
+
+pkgname=gummi
+pkgver=0.6.5
+pkgrel=3
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install=$pkgname.install
+source=(git://github.com/alexandervdm/gummi#commit=37480c8e80348b1863abc5f55819f9bc361bc135)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+}
+ 
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2015-04-11 23:27:05 UTC (rev 131199)
+++ community-i686/gummi.install2015-04-12 00:28:36 UTC (rev 131200)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/gummi.install (from rev 131199, 
gummi/trunk/gummi.install)
===
--- community-i686/gummi.install(rev 0)
+++ community-i686/gummi.install2015-04-12 00:28:36 UTC (rev 131200)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-04-11 23:27:05 UTC (rev 131199)
+++ community-x86_64/PKGBUILD   2015-04-12 00:28:36 UTC (rev 131200)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: 

[arch-commits] Commit in gummi/repos (8 files)

2014-04-23 Thread Alexander Rødseth
Date: Wednesday, April 23, 2014 @ 17:23:03
  Author: arodseth
Revision: 110043

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

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

+
 /PKGBUILD  |   68 +++
 /gummi.install |   28 
 community-i686/PKGBUILD|   35 
 community-i686/gummi.install   |   14 
 community-x86_64/PKGBUILD  |   35 
 community-x86_64/gummi.install |   14 
 6 files changed, 96 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-23 15:22:48 UTC (rev 110042)
+++ community-i686/PKGBUILD 2014-04-23 15:23:03 UTC (rev 110043)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Sergio A. Morales sergiomora...@archlinux.cl
-# Contributor: soeren non...@posteo.de
-
-pkgname=gummi
-pkgver=0.6.5
-pkgrel=1
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::http://dev.midnightcoding.org/projects/$pkgname/latest.tar.gz;)
-sha256sums=('b23c2958376ea43c701a276ad19ceac5b50d9cb32a489a10897b25aa5004fffb')
- 
-build() {
-  cd $pkgname-$pkgver
-
-  find . -type f -exec touch {} \;
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make prefix=$pkgdir/usr install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 110042, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-23 15:23:03 UTC (rev 110043)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Sergio A. Morales sergiomora...@archlinux.cl
+# Contributor: soeren non...@posteo.de
+
+pkgname=gummi
+pkgver=0.6.5
+pkgrel=2
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool')
+install=$pkgname.install
+source=(http://dev.midnightcoding.org/attachments/download/301/$pkgname-$pkgver.tar.gz;)
+sha256sums=('b23c2958376ea43c701a276ad19ceac5b50d9cb32a489a10897b25aa5004fffb')
+ 
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2014-04-23 15:22:48 UTC (rev 110042)
+++ community-i686/gummi.install2014-04-23 15:23:03 UTC (rev 110043)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/gummi.install (from rev 110042, 
gummi/trunk/gummi.install)
===
--- community-i686/gummi.install(rev 0)
+++ community-i686/gummi.install2014-04-23 15:23:03 UTC (rev 110043)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-23 15:22:48 UTC (rev 110042)
+++ community-x86_64/PKGBUILD   2014-04-23 15:23:03 UTC (rev 110043)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: