[arch-commits] Commit in postfix/trunk (PKGBUILD service)

2012-07-17 Thread Gaetan Bisson
Date: Tuesday, July 17, 2012 @ 08:45:33
  Author: bisson
Revision: 163623

implement FS#30719

Added:
  postfix/trunk/service
Modified:
  postfix/trunk/PKGBUILD

--+
 PKGBUILD |   19 ---
 service  |   12 
 2 files changed, 24 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 06:22:37 UTC (rev 163622)
+++ PKGBUILD2012-07-17 12:45:33 UTC (rev 163623)
@@ -5,7 +5,7 @@
 
 pkgname=postfix
 pkgver=2.9.3
-pkgrel=2
+pkgrel=3
 pkgdesc='Fast, easy to administer, secure mail server'
 url='http://www.postfix.org/'
 license=('custom')
@@ -13,11 +13,13 @@
 depends=('pcre' 'libsasl' 'libldap' 'db'
  'libmysqlclient' 'postgresql-libs' 'sqlite' 'tinycdb')
 
backup=('etc/postfix/'{access,aliases,canonical,generic,header_checks,main.cf,master.cf,relocated,transport,virtual})
-source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz";
 \
-'aliases.patch' \
+source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz";
+'aliases.patch'
+'service'
 'rc.d')
 sha1sums=('fd6c1ba3bbceb1a29b95655a742a2c547e11ca1d'
   '5fc3de6c7df1e5851a0a379e825148868808318b'
+  'af621cf064813d9ddb13ffd579fee33e6b82d4be'
   '40c6be2eb55e6437a402f43775cdb3d22ea87a66')
 
 provides=('smtp-server' 'smtp-forwarder')
@@ -59,8 +61,11 @@
manpage_directory="/usr/share/man" \
readme_directory="/usr/share/doc/${pkgname}" \
 
-   install -D -m755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}"
-   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   sed 's/^\(\$manpage[^:]*\):/\1.gz:/' -i 
"${pkgdir}/usr/lib/${pkgname}/postfix-files"
-   cd "${pkgdir}"; patch -p0 -i "${srcdir}"/aliases.patch
+   install -Dm755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+
+   cd "${pkgdir}"
+   patch -p0 -i "${srcdir}"/aliases.patch
+   sed 's/^\(\$manpage[^:]*\):/\1.gz:/' -i 
"usr/lib/${pkgname}/postfix-files"
 }

Added: service
===
--- service (rev 0)
+++ service 2012-07-17 12:45:33 UTC (rev 163623)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Postfix Mail Transport Daemon
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/sbin/postfix start
+ExecStop=/usr/sbin/postfix stop
+ExecReload=/usr/sbin/postfix reload
+
+[Install]
+WantedBy=multi-user.target



[arch-commits] Commit in postfix/repos (18 files)

2012-07-17 Thread Gaetan Bisson
Date: Tuesday, July 17, 2012 @ 08:46:32
  Author: bisson
Revision: 163624

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

Added:
  postfix/repos/extra-i686/PKGBUILD
(from rev 163623, postfix/trunk/PKGBUILD)
  postfix/repos/extra-i686/aliases.patch
(from rev 163623, postfix/trunk/aliases.patch)
  postfix/repos/extra-i686/install
(from rev 163623, postfix/trunk/install)
  postfix/repos/extra-i686/rc.d
(from rev 163623, postfix/trunk/rc.d)
  postfix/repos/extra-i686/service
(from rev 163623, postfix/trunk/service)
  postfix/repos/extra-x86_64/PKGBUILD
(from rev 163623, postfix/trunk/PKGBUILD)
  postfix/repos/extra-x86_64/aliases.patch
(from rev 163623, postfix/trunk/aliases.patch)
  postfix/repos/extra-x86_64/install
(from rev 163623, postfix/trunk/install)
  postfix/repos/extra-x86_64/rc.d
(from rev 163623, postfix/trunk/rc.d)
  postfix/repos/extra-x86_64/service
(from rev 163623, postfix/trunk/service)
Deleted:
  postfix/repos/extra-i686/PKGBUILD
  postfix/repos/extra-i686/aliases.patch
  postfix/repos/extra-i686/install
  postfix/repos/extra-i686/rc.d
  postfix/repos/extra-x86_64/PKGBUILD
  postfix/repos/extra-x86_64/aliases.patch
  postfix/repos/extra-x86_64/install
  postfix/repos/extra-x86_64/rc.d

+
 extra-i686/PKGBUILD|  137 ++-
 extra-i686/aliases.patch   |   36 +--
 extra-i686/install |   66 ++--
 extra-i686/rc.d|   72 +++---
 extra-i686/service |   12 +++
 extra-x86_64/PKGBUILD  |  137 ++-
 extra-x86_64/aliases.patch |   36 +--
 extra-x86_64/install   |   66 ++--
 extra-x86_64/rc.d  |   72 +++---
 extra-x86_64/service   |   12 +++
 10 files changed, 340 insertions(+), 306 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 12:45:33 UTC (rev 163623)
+++ extra-i686/PKGBUILD 2012-07-17 12:46:32 UTC (rev 163624)
@@ -1,66 +0,0 @@
-# $Id$
-# Contributor: Jeff Brodnax 
-# Contributor: Paul Mattal 
-# Maintainer: Gaetan Bisson 
-
-pkgname=postfix
-pkgver=2.9.3
-pkgrel=2
-pkgdesc='Fast, easy to administer, secure mail server'
-url='http://www.postfix.org/'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('pcre' 'libsasl' 'libldap' 'db'
- 'libmysqlclient' 'postgresql-libs' 'sqlite' 'tinycdb')
-backup=('etc/postfix/'{access,aliases,canonical,generic,header_checks,main.cf,master.cf,relocated,transport,virtual})
-source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz";
 \
-'aliases.patch' \
-'rc.d')
-sha1sums=('fd6c1ba3bbceb1a29b95655a742a2c547e11ca1d'
-  '5fc3de6c7df1e5851a0a379e825148868808318b'
-  '40c6be2eb55e6437a402f43775cdb3d22ea87a66')
-
-provides=('smtp-server' 'smtp-forwarder')
-conflicts=('smtp-server' 'smtp-forwarder')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make makefiles DEBUG='' CCARGS=' \
-   -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl \
-   -DHAS_LDAP \
-   -DUSE_TLS \
-   -DHAS_MYSQL -I/usr/include/mysql \
-   -DHAS_PGSQL -I/usr/include/postgresql \
-   -DHAS_SQLITE \
-   -DHAS_CDB \
-   ' AUXLIBS=' \
-   -lsasl2 \
-   -lldap -llber \
-   -lssl -lcrypto \
-   -lmysqlclient -lz -lm \
-   -lpq \
-   -lsqlite3 -lpthread \
-   -lcdb \
-   ' OPT="${CFLAGS} ${LDFLAGS}"
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   sh postfix-install -non-interactive \
-   install_root="${pkgdir}" \
-   daemon_directory="/usr/lib/${pkgname}" \
-   sample_directory="/etc/${pkgname}/sample" \
-   manpage_directory="/usr/share/man" \
-   readme_directory="/usr/share/doc/${pkgname}" \
-
-   install -D -m755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}"
-   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   sed 's/^\(\$manpage[^:]*\):/\1.gz:/' -i 
"${pkgdir}/usr/lib/${pkgname}/postfix-files"
-   cd "${pkgdir}"; patch -p0 -i "${srcdir}"/aliases.patch
-}

Copied: postfix/repos/extra-i686/PKGBUILD (from rev 163623, 
postfix/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 12:46:32 UTC (rev 163624)
@@ -0,0 +1,71 @@
+# $Id$
+# Contributor: Jeff Brodnax 
+# Contributor: Paul Mattal 
+# Maintainer: Gaetan Bisson 
+
+pkgname=postfix
+pkgver=2.9.3
+pkgrel=3
+pkgdesc='Fast, easy to administer, secure mail server'
+url='http://www.postfix.org/'
+license=('custom')
+arch=('i686' 'x86

[arch-commits] Commit in netcfg/trunk (PKGBUILD)

2012-07-17 Thread Florian Pritz
Date: Tuesday, July 17, 2012 @ 09:04:02
  Author: bluewind
Revision: 163625

upgpkg: netcfg 2.8.8-1

upstream update

Modified:
  netcfg/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 12:46:32 UTC (rev 163624)
+++ PKGBUILD2012-07-17 13:04:02 UTC (rev 163625)
@@ -1,7 +1,7 @@
 # Maintainer: Jouke Witteveen 
 
 pkgname=netcfg
-pkgver=2.8.7
+pkgver=2.8.8
 pkgrel=1
 pkgdesc="Network configuration and profile scripts"
 url="http://archlinux.org/netcfg/";
@@ -19,7 +19,7 @@
)
 source=(ftp://ftp.archlinux.org/other/netcfg/netcfg-${pkgver}.tar.xz)
 arch=(any)
-md5sums=('5e3841570980a45b2ab78a99d621b799')
+md5sums=('e6a3b2588c84048d878367a2f16167eb')
 
 package() {
   cd "$srcdir/netcfg-${pkgver}"



[arch-commits] Commit in netcfg/repos/testing-any (PKGBUILD PKGBUILD)

2012-07-17 Thread Florian Pritz
Date: Tuesday, July 17, 2012 @ 09:04:23
  Author: bluewind
Revision: 163626

archrelease: copy trunk to testing-any

Added:
  netcfg/repos/testing-any/PKGBUILD
(from rev 163625, netcfg/trunk/PKGBUILD)
Deleted:
  netcfg/repos/testing-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-17 13:04:02 UTC (rev 163625)
+++ PKGBUILD2012-07-17 13:04:23 UTC (rev 163626)
@@ -1,33 +0,0 @@
-# Maintainer: Jouke Witteveen 
-
-pkgname=netcfg
-pkgver=2.8.7
-pkgrel=1
-pkgdesc="Network configuration and profile scripts"
-url="http://archlinux.org/netcfg/";
-license=("BSD")
-backup=(etc/iftab etc/conf.d/netcfg)
-depends=("coreutils" "dhcpcd" "iproute2")
-#makedepends=('asciidoc')  # The source tarball includes pre-built 
documentation.
-optdepends=('dialog: for the menu based profile and wifi selectors'
-'wpa_supplicant: for wireless networking support'
-'ifplugd: for automatic wired connections through 
rc.d/net-auto-wired'
-'wpa_actiond: for automatic wireless connections through 
rc.d/net-auto-wireless'
-'wireless_tools: for interface renaming through net-rename'
-'ifenslave: for bond connections'
-'bridge-utils: for bridge connections'
-   )
-source=(ftp://ftp.archlinux.org/other/netcfg/netcfg-${pkgver}.tar.xz)
-arch=(any)
-md5sums=('5e3841570980a45b2ab78a99d621b799')
-
-package() {
-  cd "$srcdir/netcfg-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/netcfg/LICENSE"
-
-  # Shell Completion
-  install -D -m644 contrib/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/netcfg"
-  install -D -m644 contrib/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_netcfg"
-}
-

Copied: netcfg/repos/testing-any/PKGBUILD (from rev 163625, 
netcfg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-07-17 13:04:23 UTC (rev 163626)
@@ -0,0 +1,33 @@
+# Maintainer: Jouke Witteveen 
+
+pkgname=netcfg
+pkgver=2.8.8
+pkgrel=1
+pkgdesc="Network configuration and profile scripts"
+url="http://archlinux.org/netcfg/";
+license=("BSD")
+backup=(etc/iftab etc/conf.d/netcfg)
+depends=("coreutils" "dhcpcd" "iproute2")
+#makedepends=('asciidoc')  # The source tarball includes pre-built 
documentation.
+optdepends=('dialog: for the menu based profile and wifi selectors'
+'wpa_supplicant: for wireless networking support'
+'ifplugd: for automatic wired connections through 
rc.d/net-auto-wired'
+'wpa_actiond: for automatic wireless connections through 
rc.d/net-auto-wireless'
+'wireless_tools: for interface renaming through net-rename'
+'ifenslave: for bond connections'
+'bridge-utils: for bridge connections'
+   )
+source=(ftp://ftp.archlinux.org/other/netcfg/netcfg-${pkgver}.tar.xz)
+arch=(any)
+md5sums=('e6a3b2588c84048d878367a2f16167eb')
+
+package() {
+  cd "$srcdir/netcfg-${pkgver}"
+  make DESTDIR="$pkgdir" install
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/netcfg/LICENSE"
+
+  # Shell Completion
+  install -D -m644 contrib/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/netcfg"
+  install -D -m644 contrib/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_netcfg"
+}
+



[arch-commits] Commit in qt-doc/trunk (PKGBUILD)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 09:33:15
  Author: andrea
Revision: 163627

upgpkg: qt-doc 4.8.2-1

Upstream release

Modified:
  qt-doc/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 13:04:23 UTC (rev 163626)
+++ PKGBUILD2012-07-17 13:33:15 UTC (rev 163627)
@@ -3,7 +3,7 @@
 # Contributor: Vinay S Shastry 
 
 pkgname=qt-doc
-pkgver=4.8.1
+pkgver=4.8.2
 pkgrel=1
 pkgdesc='The Qt gui toolkit documentation'
 arch=('any')
@@ -15,8 +15,8 @@
 provides=("qt4-doc=${pkgver}")
 conflicts=("qt4-doc=${pkgver}")
 _pkgfqn="qt-everywhere-opensource-src-${pkgver}"
-source=("http://get.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz";)
-md5sums=('7960ba8e18ca31f0c6e4895a312f92ff')
+source=("http://releases.qt-project.org/qt4/source/${_pkgfqn}.tar.gz";)
+md5sums=('3c1146ddf56247e16782f96910a8423b')
 
 package() {
   cd "${srcdir}"/${_pkgfqn}



[arch-commits] Commit in qt-doc/repos/extra-any (PKGBUILD PKGBUILD)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 09:33:33
  Author: andrea
Revision: 163628

archrelease: copy trunk to extra-any

Added:
  qt-doc/repos/extra-any/PKGBUILD
(from rev 163627, qt-doc/trunk/PKGBUILD)
Deleted:
  qt-doc/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-17 13:33:15 UTC (rev 163627)
+++ PKGBUILD2012-07-17 13:33:33 UTC (rev 163628)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Vinay S Shastry 
-
-pkgname=qt-doc
-pkgver=4.8.1
-pkgrel=1
-pkgdesc='The Qt gui toolkit documentation'
-arch=('any')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL')
-options=('docs')
-depends=('qt')
-replaces=('qt4-doc')
-provides=("qt4-doc=${pkgver}")
-conflicts=("qt4-doc=${pkgver}")
-_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
-source=("http://get.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz";)
-md5sums=('7960ba8e18ca31f0c6e4895a312f92ff')
-
-package() {
-  cd "${srcdir}"/${_pkgfqn}
-  install -d "${pkgdir}"/usr/share/doc/qt
-  cp -r doc/* "${pkgdir}"/usr/share/doc/qt
-  cp -r demos "${pkgdir}"/usr/share/doc/qt
-  cp -r examples "${pkgdir}"/usr/share/doc/qt
-}

Copied: qt-doc/repos/extra-any/PKGBUILD (from rev 163627, qt-doc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-07-17 13:33:33 UTC (rev 163628)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Vinay S Shastry 
+
+pkgname=qt-doc
+pkgver=4.8.2
+pkgrel=1
+pkgdesc='The Qt gui toolkit documentation'
+arch=('any')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL')
+options=('docs')
+depends=('qt')
+replaces=('qt4-doc')
+provides=("qt4-doc=${pkgver}")
+conflicts=("qt4-doc=${pkgver}")
+_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
+source=("http://releases.qt-project.org/qt4/source/${_pkgfqn}.tar.gz";)
+md5sums=('3c1146ddf56247e16782f96910a8423b')
+
+package() {
+  cd "${srcdir}"/${_pkgfqn}
+  install -d "${pkgdir}"/usr/share/doc/qt
+  cp -r doc/* "${pkgdir}"/usr/share/doc/qt
+  cp -r demos "${pkgdir}"/usr/share/doc/qt
+  cp -r examples "${pkgdir}"/usr/share/doc/qt
+}



[arch-commits] Commit in hddtemp/trunk (8 files)

2012-07-17 Thread Gaetan Bisson
Date: Tuesday, July 17, 2012 @ 10:23:13
  Author: bisson
Revision: 163629

upstream update, various cleanup and bikeshedding

Added:
  hddtemp/trunk/conf.d
(from rev 163622, hddtemp/trunk/hddtemp.confd)
  hddtemp/trunk/rc.d
(from rev 163622, hddtemp/trunk/hddtemp)
  hddtemp/trunk/service
(from rev 163622, hddtemp/trunk/hddtemp.service)
Modified:
  hddtemp/trunk/PKGBUILD
Deleted:
  hddtemp/trunk/hddtemp
  hddtemp/trunk/hddtemp-0.3-beta15-reg-eip.patch
  hddtemp/trunk/hddtemp.confd
  hddtemp/trunk/hddtemp.service

--+
 PKGBUILD |   61 -
 conf.d   |2 +
 hddtemp  |   39 ---
 hddtemp-0.3-beta15-reg-eip.patch |   22 -
 hddtemp.confd|2 -
 hddtemp.service  |9 -
 rc.d |   39 +++
 service  |9 +
 8 files changed, 83 insertions(+), 100 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 13:33:33 UTC (rev 163628)
+++ PKGBUILD2012-07-17 14:23:13 UTC (rev 163629)
@@ -1,48 +1,53 @@
 # $Id$
-# Maintainer: Ionut Biru 
+# Maintainer: Gaetan Bisson 
+# Contributor: Ionut Biru 
 # Contributor: Andrea Scarpino 
 # Contributor: Roman Kyrylych 
 # Contributor: Damir Perisa 
 
 pkgname=hddtemp
-pkgver=0.3.beta15.46
 _origver=0.3-beta15
-_patchver=46
-pkgrel=3
+_patchver=${_origver}-52
+pkgver=${_patchver//-/.}
+pkgrel=1
 pkgdesc="Gives you the temperature of your hard drive by reading S.M.A.R.T. 
information"
+url='https://savannah.nongnu.org/projects/hddtemp/'
+license=('GPL')
 arch=('i686' 'x86_64')
-url="http://www.guzu.net/linux/hddtemp.php";
-license=('GPL')
-depends=('glibc')
 backup=('etc/conf.d/hddtemp')
-source=(http://www.guzu.net/files/hddtemp-${_origver}.tar.bz2
-
http://ftp.debian.org/debian/pool/main/h/hddtemp/hddtemp_${_origver}-${_patchver}.diff.gz
-'hddtemp' 'hddtemp.service' 'hddtemp.confd' 
'hddtemp-0.3-beta15-reg-eip.patch')
-md5sums=('8b829339e1ae9df701684ec239021bb8'
- '040437845e28771c560b4bb40e41f933'
- 'b7ebb86dfeef3bc4577ed1040307e36b'
- 'b6767bdbb03b6cdbc1995418cafdb1e1'
- 'fdca5c43900406f0be76534ef2a5a697'
- '526ef28549dd0da7e38d32cfc8523592')
+source=("http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${_origver}.tar.bz2";
+
"http://ftp.debian.org/debian/pool/main/h/${pkgname}/${pkgname}_${_patchver}.diff.gz";
+'rc.d'
+'conf.d'
+'service')
+sha1sums=('65393b0a4d9862c030c81702d95c1acd00da275b'
+  'b9bcdd0537c1540e55e5056445b571ea61d5a4a3'
+  '71159486b1505ec6acfb7585e0d8fbe78afe54ec'
+  'd45e3022f614dbf8904ecb1a3e702bb71fcaa808'
+  '501fcf4faf8b2689d010f9cbbf39f917211f611f')
+
 options=('!libtool')
 
 build() {
-  cd "$srcdir/$pkgname-${_origver}"
+   cd "${srcdir}/${pkgname}-${_origver}"
 
-  patch -Np1 -i "$srcdir/${pkgname}_${_origver}-${_patchver}.diff"
-  patch -Np1 -i "$srcdir/hddtemp-0.3-beta15-reg-eip.patch"
+   patch -p1 -i "../${pkgname}_${_patchver}.diff"
 
-  ./configure --prefix=/usr --mandir=/usr/share/man 
--with-db-path=/usr/share/$pkgname/hddtemp.db
-  make
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --with-db-path="/usr/share/${pkgname}/hddtemp.db"
+
+   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-${_origver}"
-  make DESTDIR=$pkgdir install
+   cd "${srcdir}/${pkgname}-${_origver}"
 
-  install -D -m644 "$srcdir/$pkgname-${_origver}/debian/hddtemp.db" \
-"$pkgdir/usr/share/${pkgname}/hddtemp.db"
-  install -D -m644 "$srcdir/hddtemp.confd" "$pkgdir/etc/conf.d/hddtemp"
-  install -D -m644 "$srcdir/hddtemp.service" 
"$pkgdir/usr/lib/systemd/system/hddtemp.service"
-  install -D -m755 "$srcdir/hddtemp" "$pkgdir/etc/rc.d/hddtemp"
+   make DESTDIR="${pkgdir}" install
+
+   install -Dm644 "../${pkgname}-${_origver}/debian/hddtemp.db" 
"${pkgdir}/usr/share/${pkgname}/hddtemp.db"
+   install -Dm644 '../service' 
"${pkgdir}/usr/lib/systemd/system/hddtemp.service"
+   install -Dm644 '../conf.d' "${pkgdir}/etc/conf.d/hddtemp"
+   install -Dm755 '../rc.d' "${pkgdir}/etc/rc.d/hddtemp"
 }

Copied: hddtemp/trunk/conf.d (from rev 163622, hddtemp/trunk/hddtemp.confd)
===
--- conf.d  (rev 0)
+++ conf.d  2012-07-17 14:23:13 UTC (rev 163629)
@@ -0,0 +1,2 @@
+PARAMS="-q -l 127.0.0.1"
+DRIVES="/dev/sda"

Deleted: hddtemp
===
--- hddtemp 2012-07-17 13:33:33 UTC (rev 163628)
+++ hddtemp 2012-07-17 14:23:13 UTC (rev 163629)
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PARAMS=
-DRIVES=

[arch-commits] Commit in hddtemp/repos (18 files)

2012-07-17 Thread Gaetan Bisson
Date: Tuesday, July 17, 2012 @ 10:24:03
  Author: bisson
Revision: 163630

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

Added:
  hddtemp/repos/extra-i686/PKGBUILD
(from rev 163629, hddtemp/trunk/PKGBUILD)
  hddtemp/repos/extra-i686/conf.d
(from rev 163629, hddtemp/trunk/conf.d)
  hddtemp/repos/extra-i686/rc.d
(from rev 163629, hddtemp/trunk/rc.d)
  hddtemp/repos/extra-i686/service
(from rev 163629, hddtemp/trunk/service)
  hddtemp/repos/extra-x86_64/PKGBUILD
(from rev 163629, hddtemp/trunk/PKGBUILD)
  hddtemp/repos/extra-x86_64/conf.d
(from rev 163629, hddtemp/trunk/conf.d)
  hddtemp/repos/extra-x86_64/rc.d
(from rev 163629, hddtemp/trunk/rc.d)
  hddtemp/repos/extra-x86_64/service
(from rev 163629, hddtemp/trunk/service)
Deleted:
  hddtemp/repos/extra-i686/PKGBUILD
  hddtemp/repos/extra-i686/hddtemp
  hddtemp/repos/extra-i686/hddtemp-0.3-beta15-reg-eip.patch
  hddtemp/repos/extra-i686/hddtemp.confd
  hddtemp/repos/extra-i686/hddtemp.service
  hddtemp/repos/extra-x86_64/PKGBUILD
  hddtemp/repos/extra-x86_64/hddtemp
  hddtemp/repos/extra-x86_64/hddtemp-0.3-beta15-reg-eip.patch
  hddtemp/repos/extra-x86_64/hddtemp.confd
  hddtemp/repos/extra-x86_64/hddtemp.service

---+
 extra-i686/PKGBUILD   |  101 
 extra-i686/conf.d |2 
 extra-i686/hddtemp|   39 -
 extra-i686/hddtemp-0.3-beta15-reg-eip.patch   |   22 -
 extra-i686/hddtemp.confd  |2 
 extra-i686/hddtemp.service|9 --
 extra-i686/rc.d   |   39 +
 extra-i686/service|9 ++
 extra-x86_64/PKGBUILD |  101 
 extra-x86_64/conf.d   |2 
 extra-x86_64/hddtemp  |   39 -
 extra-x86_64/hddtemp-0.3-beta15-reg-eip.patch |   22 -
 extra-x86_64/hddtemp.confd|2 
 extra-x86_64/hddtemp.service  |9 --
 extra-x86_64/rc.d |   39 +
 extra-x86_64/service  |9 ++
 16 files changed, 206 insertions(+), 240 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 14:23:13 UTC (rev 163629)
+++ extra-i686/PKGBUILD 2012-07-17 14:24:03 UTC (rev 163630)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-# Contributor: Damir Perisa 
-
-pkgname=hddtemp
-pkgver=0.3.beta15.46
-_origver=0.3-beta15
-_patchver=46
-pkgrel=3
-pkgdesc="Gives you the temperature of your hard drive by reading S.M.A.R.T. 
information"
-arch=('i686' 'x86_64')
-url="http://www.guzu.net/linux/hddtemp.php";
-license=('GPL')
-depends=('glibc')
-backup=('etc/conf.d/hddtemp')
-source=(http://www.guzu.net/files/hddtemp-${_origver}.tar.bz2
-
http://ftp.debian.org/debian/pool/main/h/hddtemp/hddtemp_${_origver}-${_patchver}.diff.gz
-'hddtemp' 'hddtemp.service' 'hddtemp.confd' 
'hddtemp-0.3-beta15-reg-eip.patch')
-md5sums=('8b829339e1ae9df701684ec239021bb8'
- '040437845e28771c560b4bb40e41f933'
- 'b7ebb86dfeef3bc4577ed1040307e36b'
- 'b6767bdbb03b6cdbc1995418cafdb1e1'
- 'fdca5c43900406f0be76534ef2a5a697'
- '526ef28549dd0da7e38d32cfc8523592')
-options=('!libtool')
-
-build() {
-  cd "$srcdir/$pkgname-${_origver}"
-
-  patch -Np1 -i "$srcdir/${pkgname}_${_origver}-${_patchver}.diff"
-  patch -Np1 -i "$srcdir/hddtemp-0.3-beta15-reg-eip.patch"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man 
--with-db-path=/usr/share/$pkgname/hddtemp.db
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${_origver}"
-  make DESTDIR=$pkgdir install
-
-  install -D -m644 "$srcdir/$pkgname-${_origver}/debian/hddtemp.db" \
-"$pkgdir/usr/share/${pkgname}/hddtemp.db"
-  install -D -m644 "$srcdir/hddtemp.confd" "$pkgdir/etc/conf.d/hddtemp"
-  install -D -m644 "$srcdir/hddtemp.service" 
"$pkgdir/usr/lib/systemd/system/hddtemp.service"
-  install -D -m755 "$srcdir/hddtemp" "$pkgdir/etc/rc.d/hddtemp"
-}

Copied: hddtemp/repos/extra-i686/PKGBUILD (from rev 163629, 
hddtemp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 14:24:03 UTC (rev 163630)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Damir Perisa 
+
+pkgname=hddtemp
+_origver=0.3-beta15
+_patchver=${_origver}-52
+pkgver=${_patchver//-/.}
+pkgrel=1
+pkgdesc="Gives you the temperature of your hard drive by reading S.M.A.R.T. 
information"
+url='https://savannah.nongnu.org/projects/hddtemp/'
+license=('GPL')
+arch=('i686' '

[arch-commits] Commit in linux-lts/trunk (PKGBUILD linux-lts.install)

2012-07-17 Thread Tobias Powalowski
Date: Tuesday, July 17, 2012 @ 10:40:43
  Author: tpowa
Revision: 163631

upgpkg: linux-lts 3.0.37-1

bump to latest version

Modified:
  linux-lts/trunk/PKGBUILD
  linux-lts/trunk/linux-lts.install

---+
 PKGBUILD  |6 +++---
 linux-lts.install |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 14:24:03 UTC (rev 163630)
+++ PKGBUILD2012-07-17 14:40:43 UTC (rev 163631)
@@ -7,8 +7,8 @@
 # pkgname=linux-custom   # Build kernel with a different name
 _kernelname=${pkgname#linux}
 _basekernel=3.0
-pkgver=${_basekernel}.36
-pkgrel=2
+pkgver=${_basekernel}.37
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
 license=('GPL2')
@@ -24,7 +24,7 @@
 'i915-fix-ghost-tv-output.patch'
 'ext4-options.patch')
 md5sums=('ecf932280e2441bdd992423ef3d55f8f'
- '3217040d0e7ec2def9d7c8c3e4436834'
+ 'dd3a8dc62c5f9aaf93b19507dbce6e8a'
  'b062564a56da7b67c02d014a0a95584d'
  'f441ad868946ca2f34e739e5649985da'
  'e1e1b5004323eb1975d71568ccaf1e1b'

Modified: linux-lts.install
===
--- linux-lts.install   2012-07-17 14:24:03 UTC (rev 163630)
+++ linux-lts.install   2012-07-17 14:40:43 UTC (rev 163631)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=-lts
-KERNEL_VERSION=3.0.36-2-lts
+KERNEL_VERSION=3.0.37-1-lts
 
 # set a sane PATH to ensure that critical utils like depmod will be found
 export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'



[arch-commits] Commit in linux-lts/repos (20 files)

2012-07-17 Thread Tobias Powalowski
Date: Tuesday, July 17, 2012 @ 10:41:50
  Author: tpowa
Revision: 163632

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/CVE-2012-0056.patch
(from rev 163631, linux-lts/trunk/CVE-2012-0056.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 163631, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 163631, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 163631, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 163631, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/ext4-options.patch
(from rev 163631, linux-lts/trunk/ext4-options.patch)
  linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch
(from rev 163631, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 163631, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 163631, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/CVE-2012-0056.patch
(from rev 163631, linux-lts/trunk/CVE-2012-0056.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 163631, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 163631, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 163631, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 163631, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/ext4-options.patch
(from rev 163631, linux-lts/trunk/ext4-options.patch)
  linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
(from rev 163631, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 163631, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 163631, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/CVE-2012-0056.patch |  269 
 testing-i686/PKGBUILD|  288 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 5648 +
 testing-i686/config.x86_64   | 5386 
 testing-i686/ext4-options.patch  |   49 
 testing-i686/i915-fix-ghost-tv-output.patch  |   26 
 testing-i686/linux-lts.install   |   65 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/CVE-2012-0056.patch   |  269 
 testing-x86_64/PKGBUILD  |  288 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 5648 +
 testing-x86_64/config.x86_64 | 5386 
 testing-x86_64/ext4-options.patch|   49 
 testing-x86_64/i915-fix-ghost-tv-output.patch|   26 
 testing-x86_64/linux-lts.install |   65 
 testing-x86_64/linux-lts.preset  |   14 
 18 files changed, 23514 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 163631:163632 to see the changes.


[arch-commits] Commit in filesystem/trunk (crypttab)

2012-07-17 Thread Tom Gundersen
Date: Tuesday, July 17, 2012 @ 10:58:42
  Author: tomegun
Revision: 163633

update the standard crypttab

This must be released at the same time as the new initscripts.

Modified:
  filesystem/trunk/crypttab

--+
 crypttab |   36 ++--
 1 file changed, 10 insertions(+), 26 deletions(-)

Modified: crypttab
===
--- crypttab2012-07-17 14:41:50 UTC (rev 163632)
+++ crypttab2012-07-17 14:58:42 UTC (rev 163633)
@@ -1,33 +1,17 @@
-# crypttab: Mappings for encrypted partitions
+# crypttab: mappings for encrypted partitions
 #
 # Each mapped device will be created in /dev/mapper, so your /etc/fstab
-# should use the /dev/mapper/{NAME} paths for encrypted devices.
+# should use the /dev/mapper/ paths for encrypted devices.
 #
-# Each PASSWORD field can be an absolute pathname to a key file (starting
-# with a slash, recommended) or a literal string that will be used as
-# a passphrase. To use special characters in the passphrase, surround it
-# by quotes, the usual bash quoting rules apply.
-# There are two special keywords that cannot be used as passphrases:
-#   - ASK  ask for a passphrase on boot
-#   - SWAP use a random key and create a swapspace afterwards
-# WARNING: use the SWAP keyword carefully, as it overwrites the data
-#  on the specified partition
-# 
-# To create a key file:
-#hashalot -n 32 ripemd160 >/etc/crytfs.key
-# or
-#dd if=/dev/urandom of=/etc/cryptfs.key bs=256 count=1
+# The Arch specific syntax has been deprecated, see crypttab(5) for the
+# new supported syntax.
 #
-# To pass additional options to cryptsetup for non-LUKS partitions, use the
-# fourth column.
-#
 # NOTE: Do not list your root (/) partition here, it must be set up
 #   beforehand by the initramfs (/etc/mkinitcpio.conf).
 
-
-# NAME SOURCE DEVICE   PASSWORDOPTIONS
-#home  /dev/hda4   mypassword
-#data1 /dev/hda3   "my \"password\""
-#data2 /dev/hda5   /etc/cryptfs.key
-#swap  /dev/hdx4   SWAP-c 
aes-cbc-essiv:sha256 -s 256
-#vol   /dev/hdb7   ASK
+#   
+# home /dev/hda4/etc/mypassword1
+# data1/dev/hda3/etc/mypassword2
+# data2/dev/hda5/etc/cryptfs.key
+# swap /dev/hdx4/dev/urandom
swap,cipher=aes-cbc-essiv:sha256,size=256
+# vol  /dev/hdb7none



[arch-commits] Commit in xf86-video-apm/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:03:24
  Author: andyrtr
Revision: 163634

upgpkg: xf86-video-apm 1.2.5-1

upstream update 1.2.5

Modified:
  xf86-video-apm/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 14:58:42 UTC (rev 163633)
+++ PKGBUILD2012-07-17 16:03:24 UTC (rev 163634)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-apm
-pkgver=1.2.4
+pkgver=1.2.5
 pkgrel=1
 pkgdesc="X.org Alliance ProMotion video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('ae65982961fe884728497db9b805123d486d2aade2ba8e7bba9a3ee9dccf4302')
+sha256sums=('953b04320117b14c5b7efb37de45cef45592409f639c2aa87b7e2d77dc8d3d0f')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-apm/repos (6 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:04:08
  Author: andyrtr
Revision: 163635

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

Added:
  xf86-video-apm/repos/extra-i686/PKGBUILD
(from rev 163634, xf86-video-apm/trunk/PKGBUILD)
  xf86-video-apm/repos/extra-x86_64/PKGBUILD
(from rev 163634, xf86-video-apm/trunk/PKGBUILD)
Deleted:
  xf86-video-apm/repos/extra-i686/PKGBUILD
  xf86-video-apm/repos/extra-i686/apm-1.2.3-git.patch
  xf86-video-apm/repos/extra-x86_64/PKGBUILD
  xf86-video-apm/repos/extra-x86_64/apm-1.2.3-git.patch

--+
 extra-i686/PKGBUILD  |   60 ++---
 extra-i686/apm-1.2.3-git.patch   |   34 
 extra-x86_64/PKGBUILD|   60 ++---
 extra-x86_64/apm-1.2.3-git.patch |   34 
 4 files changed, 60 insertions(+), 128 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:03:24 UTC (rev 163634)
+++ extra-i686/PKGBUILD 2012-07-17 16:04:08 UTC (rev 163635)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-apm
-pkgver=1.2.4
-pkgrel=1
-pkgdesc="X.org Alliance ProMotion video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.902')
-conflicts=('xorg-server<1.11.99.902')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('d792ba6e8c39e60e00e0790b4e08f551044b2f7c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-apm/repos/extra-i686/PKGBUILD (from rev 163634, 
xf86-video-apm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:04:08 UTC (rev 163635)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-apm
+pkgver=1.2.5
+pkgrel=1
+pkgdesc="X.org Alliance ProMotion video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('953b04320117b14c5b7efb37de45cef45592409f639c2aa87b7e2d77dc8d3d0f')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-i686/apm-1.2.3-git.patch
===
--- extra-i686/apm-1.2.3-git.patch  2012-07-17 16:03:24 UTC (rev 163634)
+++ extra-i686/apm-1.2.3-git.patch  2012-07-17 16:04:08 UTC (rev 163635)
@@ -1,34 +0,0 @@
-diff --git a/src/apm.h b/src/apm.h
-index bc66714..86c7663 100644
 a/src/apm.h
-+++ b/src/apm.h
-@@ -109,7 +109,7 @@ typedef struct {
- char  *MemMap;
- pointer   BltMap;
- Bool  UnlockCalled;
--IOADDRESS iobase, xport, xbase;
-+unsigned long iobase, xport, xbase;
- unsigned char savedSR10;
- CARD8 MiscOut;
- CARD8 c9, d9, db, Rush;
-diff --git a/src/apm_driver.c b/src/apm_driver.c
-index f172bab..f77bb2b 100644
 a/src/apm_driver.c
-+++ b/src/apm_driver.c
-@@ -418,8 +418,14 @@ ApmPreInit(ScrnInfoPtr pScrn, int flags)
- 
- hwp = VGAHWPTR(pScrn);
- vgaHWGetIOBase(hwp);
--pApm->iobase = hwp->PIOOffset;
--pApm->xport = hwp->PIOOffset + 0x3C4;
-+#if ABI_VIDEODRV_VERSION < 12
-+#define PIOOFFSET hwp->PIOOffset
-+#else
-+/* FIXME reintroduce domain support */
-+#define PIOOFFSET 0
-+#endif
-+pApm->iobase = PIOOFFSET;
-+pApm->xport = PIOOFFSET + 0x3C4;
- 
- /* Set pScrn->monitor */
- pScrn->monitor = pScrn->confScreen->monitor;

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:03:24 UTC (rev 163634)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:04:08 UTC (rev 163635)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-apm
-pkgver=1.2.4
-pkgrel=1
-pkgdesc="X.org Alliance ProMotion video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.902')
-conf

[arch-commits] Commit in xf86-video-ark/trunk (PKGBUILD git-fixes.patch)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:07:47
  Author: andyrtr
Revision: 163636

upgpkg: xf86-video-ark 0.7.5-1

upstream update 0.7.5

Modified:
  xf86-video-ark/trunk/PKGBUILD
Deleted:
  xf86-video-ark/trunk/git-fixes.patch

-+
 PKGBUILD|9 +---
 git-fixes.patch |  118 --
 2 files changed, 3 insertions(+), 124 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:04:08 UTC (rev 163635)
+++ PKGBUILD2012-07-17 16:07:47 UTC (rev 163636)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-ark
-pkgver=0.7.4
+pkgver=0.7.5
 pkgrel=1
 pkgdesc="X.org ark video driver"
 arch=(i686 x86_64)
@@ -13,14 +13,11 @@
 conflicts=('xorg-server<1.11.99.902')
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-#git-fixes.patch
-)
-sha1sums=('d95cb9aa56e7db542b3ac8fed9cb519b11f77556')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('c690e046f34a393aac1c8d9616b4790e93cda60a460b00b9597d322175dbe51e')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  #patch -Np1 -i "${srcdir}/git-fixes.patch"
   ./configure --prefix=/usr
   make
 }

Deleted: git-fixes.patch
===
--- git-fixes.patch 2012-07-17 16:04:08 UTC (rev 163635)
+++ git-fixes.patch 2012-07-17 16:07:47 UTC (rev 163636)
@@ -1,118 +0,0 @@
-From 9d3769bed020e9796e51411c63de337da5073bb4 Mon Sep 17 00:00:00 2001
-From: Ondrej Zary 
-Date: Sat, 04 Dec 2010 00:23:51 +
-Subject: Don't assume that FB address registers are initialized properly
-
-https://bugs.freedesktop.org/show_bug.cgi?id=28249
-
-ark driver does not work with Hercules Stingray 64 card (ark2000pv).
-X fails to start with:
-
-[...]
-(II) ark(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is
-0x
-(II) ark(0): Creating default Display subsection in Screen section
-"Default Screen Section" for depth/fbbpp 24/32
-(==) ark(0): Depth 24, (--) framebuffer bpp 32
-(==) ark(0): RGB weight 888
-(==) ark(0): Default visual is TrueColor
-(**) ark(0): Chipset: "ark2000pv"
-(--) ark(0): Framebuffer @ 0xe5e5
-(==) ark(0): Using gamma correction (1.0, 1.0, 1.0)
-(--) ark(0): Detected 2048 bytes video ram
-[...]
-Fatal server error:
-AddScreen/ScreenInit failed for driver 0
-
-Comparing with lspci, the framebuffer address is wrong:
-00:0f.0 VGA compatible controller: ARK Logic Inc 2000PV [Stingray] (prog-if 00 
[VGA controller])
-   Flags: medium devsel
-   Memory at e500 (32-bit, prefetchable) [size=4M]
-   [virtual] Expansion ROM at 1c00 [disabled] [size=64K]
-
-Reviewed-by: Adam Jackson 

-diff --git a/src/ark.h b/src/ark.h
-index de301dc..077f93b 100644
 a/src/ark.h
-+++ b/src/ark.h
-@@ -34,7 +34,6 @@ typedef struct _ARKRec {
- #endif
-   EntityInfoPtr   pEnt;
-   CARD32  IOAddress;
--  CARD32  FBAddress;
-   unsigned char * FBBase;
-   unsigned char * MMIOBase;
-   unsigned long   videoRam;
-diff --git a/src/ark_driver.c b/src/ark_driver.c
-index 5de3b9a..fec3e1a 100644
 a/src/ark_driver.c
-+++ b/src/ark_driver.c
-@@ -363,14 +363,14 @@ static Bool ARKPreInit(ScrnInfoPtr pScrn, int flags)
-   outb(hwp->PIOOffset + hwp->IOBase + 5, tmp & 0x7f);
-   modinx(hwp->PIOOffset + 0x3c4, 0x1d, 0x01, 0x01);
- 
--  /* use membase's later on ??? */
--  pARK->FBAddress = (rdinx(hwp->PIOOffset + 0x3c4, 0x13) << 16) +
--(rdinx(hwp->PIOOffset + 0x3c4, 0x14) << 24);
--
--  pScrn->memPhysBase = pARK->FBAddress;
-+#ifndef XSERVER_LIBPCIACCESS
-+  pScrn->memPhysBase = pARK->PciInfo->memBase[0];
-+#else
-+  pScrn->memPhysBase = pARK->PciInfo->regions[0].base_addr;
-+#endif
- 
-   xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "Framebuffer @ 0x%lx\n",
-- (unsigned long)pARK->FBAddress);
-+ (unsigned long)pScrn->memPhysBase);
- 
-   if (!xf86SetGamma(pScrn, gzeros))
-   return FALSE;
-@@ -748,8 +748,13 @@ static Bool ARKModeInit(ScrnInfoPtr pScrn, DisplayModePtr 
mode)
-   new->sr10 = rdinx(isaIOBase + 0x3c4, 0x10) & ~0x1f;
-   new->sr10 |= 0x1f;
- 
--  new->sr13 = pARK->FBAddress >> 16;
--  new->sr14 = pARK->FBAddress >> 24;
-+#ifndef XSERVER_LIBPCIACCESS
-+  new->sr13 = pARK->PciInfo->memBase[0] >> 16;
-+  new->sr14 = pARK->PciInfo->memBase[0] >> 24;
-+#else
-+  new->sr13 = pARK->PciInfo->regions[0].base_addr >> 16;
-+  new->sr14 = pARK->PciInfo->regions[0].base_addr >> 24;
-+#endif
- 
-   new->sr12 = rdinx(isaIOBase + 0x3c4, 0x12) & ~0x03;
-   switch (pScrn->videoRam) {
-@@ -1022,7 +1027,7 @@ static Bool ARKMapMem(ScrnInfoPtr pScrn)
-pARK->PciTag, 0xb8000

[arch-commits] Commit in xf86-video-ark/repos (6 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:08:25
  Author: andyrtr
Revision: 163637

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

Added:
  xf86-video-ark/repos/extra-i686/PKGBUILD
(from rev 163636, xf86-video-ark/trunk/PKGBUILD)
  xf86-video-ark/repos/extra-x86_64/PKGBUILD
(from rev 163636, xf86-video-ark/trunk/PKGBUILD)
Deleted:
  xf86-video-ark/repos/extra-i686/PKGBUILD
  xf86-video-ark/repos/extra-i686/git-fixes.patch
  xf86-video-ark/repos/extra-x86_64/PKGBUILD
  xf86-video-ark/repos/extra-x86_64/git-fixes.patch

--+
 extra-i686/PKGBUILD  |   65 ++
 extra-i686/git-fixes.patch   |  118 -
 extra-x86_64/PKGBUILD|   65 ++
 extra-x86_64/git-fixes.patch |  118 -
 4 files changed, 62 insertions(+), 304 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:07:47 UTC (rev 163636)
+++ extra-i686/PKGBUILD 2012-07-17 16:08:25 UTC (rev 163637)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-ark
-pkgver=0.7.4
-pkgrel=1
-pkgdesc="X.org ark video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.902')
-conflicts=('xorg-server<1.11.99.902')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-#git-fixes.patch
-)
-sha1sums=('d95cb9aa56e7db542b3ac8fed9cb519b11f77556')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  #patch -Np1 -i "${srcdir}/git-fixes.patch"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-ark/repos/extra-i686/PKGBUILD (from rev 163636, 
xf86-video-ark/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:08:25 UTC (rev 163637)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-ark
+pkgver=0.7.5
+pkgrel=1
+pkgdesc="X.org ark video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.902')
+conflicts=('xorg-server<1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('c690e046f34a393aac1c8d9616b4790e93cda60a460b00b9597d322175dbe51e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-i686/git-fixes.patch
===
--- extra-i686/git-fixes.patch  2012-07-17 16:07:47 UTC (rev 163636)
+++ extra-i686/git-fixes.patch  2012-07-17 16:08:25 UTC (rev 163637)
@@ -1,118 +0,0 @@
-From 9d3769bed020e9796e51411c63de337da5073bb4 Mon Sep 17 00:00:00 2001
-From: Ondrej Zary 
-Date: Sat, 04 Dec 2010 00:23:51 +
-Subject: Don't assume that FB address registers are initialized properly
-
-https://bugs.freedesktop.org/show_bug.cgi?id=28249
-
-ark driver does not work with Hercules Stingray 64 card (ark2000pv).
-X fails to start with:
-
-[...]
-(II) ark(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is
-0x
-(II) ark(0): Creating default Display subsection in Screen section
-"Default Screen Section" for depth/fbbpp 24/32
-(==) ark(0): Depth 24, (--) framebuffer bpp 32
-(==) ark(0): RGB weight 888
-(==) ark(0): Default visual is TrueColor
-(**) ark(0): Chipset: "ark2000pv"
-(--) ark(0): Framebuffer @ 0xe5e5
-(==) ark(0): Using gamma correction (1.0, 1.0, 1.0)
-(--) ark(0): Detected 2048 bytes video ram
-[...]
-Fatal server error:
-AddScreen/ScreenInit failed for driver 0
-
-Comparing with lspci, the framebuffer address is wrong:
-00:0f.0 VGA compatible controller: ARK Logic Inc 2000PV [Stingray] (prog-if 00 
[VGA controller])
-   Flags: medium devsel
-   Memory at e500 (32-bit, prefetchable) [size=4M]
-   [virtual] Expansion ROM at 1c00 [disabled] [size=64K]
-
-Reviewed-by: Adam Jackson 

-diff --git a/src/ark.h b/src/ark.h
-index de301dc..077f93b 100644
 a/src/ark.h
-+++ b/src/ark.h
-@@ -34,7 +34,6 @@ typedef struct _ARKRec {
- #endif
-   EntityInfoPtr   pEnt;
-   CARD32  IOAddress;
--  CARD32  FBAddress;
-   unsigned char * FBB

[arch-commits] Commit in xf86-video-ast/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:09:58
  Author: andyrtr
Revision: 163638

upgpkg: xf86-video-ast 0.97.0-1

upstream update 0.97.0

Modified:
  xf86-video-ast/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:08:25 UTC (rev 163637)
+++ PKGBUILD2012-07-17 16:09:58 UTC (rev 163638)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-ast
-pkgver=0.96.0
+pkgver=0.97.0
 pkgrel=1
 pkgdesc="X.org ASPEED AST Graphics video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('73ac2bc3999add5a77c9d5d38d3651d5e50ab7bbac81d710912ab3125fc1ab3c')
+sha256sums=('28fcd4781676485293f6dcd46e0797866f6219e22e1851c9796b037589998e76')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-ast/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:10:36
  Author: andyrtr
Revision: 163639

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

Added:
  xf86-video-ast/repos/extra-i686/PKGBUILD
(from rev 163638, xf86-video-ast/trunk/PKGBUILD)
  xf86-video-ast/repos/extra-x86_64/PKGBUILD
(from rev 163638, xf86-video-ast/trunk/PKGBUILD)
Deleted:
  xf86-video-ast/repos/extra-i686/PKGBUILD
  xf86-video-ast/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:09:58 UTC (rev 163638)
+++ extra-i686/PKGBUILD 2012-07-17 16:10:36 UTC (rev 163639)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-ast
-pkgver=0.96.0
-pkgrel=1
-pkgdesc="X.org ASPEED AST Graphics video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('73ac2bc3999add5a77c9d5d38d3651d5e50ab7bbac81d710912ab3125fc1ab3c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-ast/repos/extra-i686/PKGBUILD (from rev 163638, 
xf86-video-ast/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:10:36 UTC (rev 163639)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-ast
+pkgver=0.97.0
+pkgrel=1
+pkgdesc="X.org ASPEED AST Graphics video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('28fcd4781676485293f6dcd46e0797866f6219e22e1851c9796b037589998e76')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:09:58 UTC (rev 163638)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:10:36 UTC (rev 163639)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-ast
-pkgver=0.96.0
-pkgrel=1
-pkgdesc="X.org ASPEED AST Graphics video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('73ac2bc3999add5a77c9d5d38d3651d5e50ab7bbac81d710912ab3125fc1ab3c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-ast/repos/extra-x86_64/PKGBUILD (from rev 163638, 
xf86-video-ast/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:10:36 UTC (rev 163639)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-ast
+pkgver=0.97.0
+pkgrel=1
+pkgdesc="X.org ASPEED AST Graphics video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('28fcd4781676485293f6dcd46e0797866f6219e22e1851c9796b037589998e76')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m75

[arch-commits] Commit in xf86-video-cirrus/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:18:11
  Author: andyrtr
Revision: 163640

upgpkg: xf86-video-cirrus 1.5.1-1

upstream update 1.5.1

Modified:
  xf86-video-cirrus/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:10:36 UTC (rev 163639)
+++ PKGBUILD2012-07-17 16:18:11 UTC (rev 163640)
@@ -2,7 +2,7 @@
 #Maintainer: Jan de Groot 
 
 pkgname=xf86-video-cirrus
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="X.org Cirrus Logic video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e506a97cce667d71971e8fcc163285b791ca508365593f3dc1e191f3411fdfed')
+sha256sums=('a955429cbd673230c4b171afd6d0a6b28372d2f9d0a400f5124869274a27c557')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-cirrus/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:18:49
  Author: andyrtr
Revision: 163641

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

Added:
  xf86-video-cirrus/repos/extra-i686/PKGBUILD
(from rev 163640, xf86-video-cirrus/trunk/PKGBUILD)
  xf86-video-cirrus/repos/extra-x86_64/PKGBUILD
(from rev 163640, xf86-video-cirrus/trunk/PKGBUILD)
Deleted:
  xf86-video-cirrus/repos/extra-i686/PKGBUILD
  xf86-video-cirrus/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:18:11 UTC (rev 163640)
+++ extra-i686/PKGBUILD 2012-07-17 16:18:49 UTC (rev 163641)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-cirrus
-pkgver=1.5.0
-pkgrel=1
-pkgdesc="X.org Cirrus Logic video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e506a97cce667d71971e8fcc163285b791ca508365593f3dc1e191f3411fdfed')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-cirrus/repos/extra-i686/PKGBUILD (from rev 163640, 
xf86-video-cirrus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:18:49 UTC (rev 163641)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-cirrus
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="X.org Cirrus Logic video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('a955429cbd673230c4b171afd6d0a6b28372d2f9d0a400f5124869274a27c557')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:18:11 UTC (rev 163640)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:18:49 UTC (rev 163641)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-cirrus
-pkgver=1.5.0
-pkgrel=1
-pkgdesc="X.org Cirrus Logic video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e506a97cce667d71971e8fcc163285b791ca508365593f3dc1e191f3411fdfed')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-cirrus/repos/extra-x86_64/PKGBUILD (from rev 163640, 
xf86-video-cirrus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:18:49 UTC (rev 163641)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-cirrus
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="X.org Cirrus Logic video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('a955429cbd673230c4b171afd6d0a6b28372d2f9d0a400f5124869274a27c557')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  instal

[arch-commits] Commit in xf86-video-glint/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:20:13
  Author: andyrtr
Revision: 163642

upgpkg: xf86-video-glint 1.2.8-1

upstream update 1.2.8

Modified:
  xf86-video-glint/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:18:49 UTC (rev 163641)
+++ PKGBUILD2012-07-17 16:20:13 UTC (rev 163642)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-glint
-pkgver=1.2.7
+pkgver=1.2.8
 pkgrel=1
 pkgdesc="X.org GLINT/Permedia video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('9aa9689436fc78a71145d4caeaf63b0e80f9abd54e9b4a3066f62ee5b334c359')
+sha256sums=('657f883bb3a4e4278399eba73840862c3642706ae8b0a4798ec97a31b3524221')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-glint/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:20:51
  Author: andyrtr
Revision: 163643

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

Added:
  xf86-video-glint/repos/extra-i686/PKGBUILD
(from rev 163642, xf86-video-glint/trunk/PKGBUILD)
  xf86-video-glint/repos/extra-x86_64/PKGBUILD
(from rev 163642, xf86-video-glint/trunk/PKGBUILD)
Deleted:
  xf86-video-glint/repos/extra-i686/PKGBUILD
  xf86-video-glint/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:20:13 UTC (rev 163642)
+++ extra-i686/PKGBUILD 2012-07-17 16:20:51 UTC (rev 163643)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-glint
-pkgver=1.2.7
-pkgrel=1
-pkgdesc="X.org GLINT/Permedia video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
-conflicts=('xorg-server<1.11.99.903')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('9aa9689436fc78a71145d4caeaf63b0e80f9abd54e9b4a3066f62ee5b334c359')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-glint/repos/extra-i686/PKGBUILD (from rev 163642, 
xf86-video-glint/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:20:51 UTC (rev 163643)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-glint
+pkgver=1.2.8
+pkgrel=1
+pkgdesc="X.org GLINT/Permedia video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
+conflicts=('xorg-server<1.11.99.903')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('657f883bb3a4e4278399eba73840862c3642706ae8b0a4798ec97a31b3524221')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:20:13 UTC (rev 163642)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:20:51 UTC (rev 163643)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-glint
-pkgver=1.2.7
-pkgrel=1
-pkgdesc="X.org GLINT/Permedia video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
-conflicts=('xorg-server<1.11.99.903')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('9aa9689436fc78a71145d4caeaf63b0e80f9abd54e9b4a3066f62ee5b334c359')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-glint/repos/extra-x86_64/PKGBUILD (from rev 163642, 
xf86-video-glint/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:20:51 UTC (rev 163643)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-glint
+pkgver=1.2.8
+pkgrel=1
+pkgdesc="X.org GLINT/Permedia video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
+conflicts=('xorg-server<1.11.99.903')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('657f883bb3a4e4278399eba73840862c3642706ae8b0a4798ec97a31b3524221')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+

[arch-commits] Commit in xf86-video-i128/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:22:54
  Author: andyrtr
Revision: 163644

upgpkg: xf86-video-i128 1.3.6-1

upstream update 1.3.6

Modified:
  xf86-video-i128/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:20:51 UTC (rev 163643)
+++ PKGBUILD2012-07-17 16:22:54 UTC (rev 163644)
@@ -2,7 +2,7 @@
 # Maintainer:Jan de Groot 
 
 pkgname=xf86-video-i128
-pkgver=1.3.5
+pkgver=1.3.6
 pkgrel=1
 pkgdesc="X.org Number 9 I128 video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('3eedeb1e575e96b2ebebdf894c515e8543900aa3f9f85d10120b8240264333ea')
+sha256sums=('f8827e4c988f90cf5a677554b30d61f0a07eb86d872478751cdc94dc17452b9c')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-i128/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:23:32
  Author: andyrtr
Revision: 163645

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

Added:
  xf86-video-i128/repos/extra-i686/PKGBUILD
(from rev 163644, xf86-video-i128/trunk/PKGBUILD)
  xf86-video-i128/repos/extra-x86_64/PKGBUILD
(from rev 163644, xf86-video-i128/trunk/PKGBUILD)
Deleted:
  xf86-video-i128/repos/extra-i686/PKGBUILD
  xf86-video-i128/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:22:54 UTC (rev 163644)
+++ extra-i686/PKGBUILD 2012-07-17 16:23:32 UTC (rev 163645)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:Jan de Groot 
-
-pkgname=xf86-video-i128
-pkgver=1.3.5
-pkgrel=1
-pkgdesc="X.org Number 9 I128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('3eedeb1e575e96b2ebebdf894c515e8543900aa3f9f85d10120b8240264333ea')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-i128/repos/extra-i686/PKGBUILD (from rev 163644, 
xf86-video-i128/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:23:32 UTC (rev 163645)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:Jan de Groot 
+
+pkgname=xf86-video-i128
+pkgver=1.3.6
+pkgrel=1
+pkgdesc="X.org Number 9 I128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f8827e4c988f90cf5a677554b30d61f0a07eb86d872478751cdc94dc17452b9c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:22:54 UTC (rev 163644)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:23:32 UTC (rev 163645)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:Jan de Groot 
-
-pkgname=xf86-video-i128
-pkgver=1.3.5
-pkgrel=1
-pkgdesc="X.org Number 9 I128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('3eedeb1e575e96b2ebebdf894c515e8543900aa3f9f85d10120b8240264333ea')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-i128/repos/extra-x86_64/PKGBUILD (from rev 163644, 
xf86-video-i128/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:23:32 UTC (rev 163645)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:Jan de Groot 
+
+pkgname=xf86-video-i128
+pkgver=1.3.6
+pkgrel=1
+pkgdesc="X.org Number 9 I128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f8827e4c988f90cf5a677554b30d61f0a07eb86d872478751cdc94dc17452b9c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/us

[arch-commits] Commit in xf86-video-i740/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:24:48
  Author: andyrtr
Revision: 163646

upgpkg: xf86-video-i740 1.3.4-1

upstream update 1.3.4

Modified:
  xf86-video-i740/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:23:32 UTC (rev 163645)
+++ PKGBUILD2012-07-17 16:24:48 UTC (rev 163646)
@@ -2,7 +2,7 @@
 #Maintainer: Jan de Groot 
 
 pkgname=xf86-video-i740
-pkgver=1.3.3
+pkgver=1.3.4
 pkgrel=1
 pkgdesc="X.org Intel i740 video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('a39e8cf8e34816d07d33eae79dcb26fc2137f719156ae90fa4afff319e320dcc')
+sha256sums=('1a24009bb2223b722fb41e1a2737a6e74bfecb0829e5583e270d267ee4ecca78')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-i740/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:25:27
  Author: andyrtr
Revision: 163647

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

Added:
  xf86-video-i740/repos/extra-i686/PKGBUILD
(from rev 163646, xf86-video-i740/trunk/PKGBUILD)
  xf86-video-i740/repos/extra-x86_64/PKGBUILD
(from rev 163646, xf86-video-i740/trunk/PKGBUILD)
Deleted:
  xf86-video-i740/repos/extra-i686/PKGBUILD
  xf86-video-i740/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:24:48 UTC (rev 163646)
+++ extra-i686/PKGBUILD 2012-07-17 16:25:27 UTC (rev 163647)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-i740
-pkgver=1.3.3
-pkgrel=1
-pkgdesc="X.org Intel i740 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903')
-conflicts=('xorg-server<1.11.99.903')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('885660aad0d558ae0fb69f3b639c03f084a7a615')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-i740/repos/extra-i686/PKGBUILD (from rev 163646, 
xf86-video-i740/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:25:27 UTC (rev 163647)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-i740
+pkgver=1.3.4
+pkgrel=1
+pkgdesc="X.org Intel i740 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('1a24009bb2223b722fb41e1a2737a6e74bfecb0829e5583e270d267ee4ecca78')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:24:48 UTC (rev 163646)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:25:27 UTC (rev 163647)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-i740
-pkgver=1.3.3
-pkgrel=1
-pkgdesc="X.org Intel i740 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903')
-conflicts=('xorg-server<1.11.99.903')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('885660aad0d558ae0fb69f3b639c03f084a7a615')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-i740/repos/extra-x86_64/PKGBUILD (from rev 163646, 
xf86-video-i740/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:25:27 UTC (rev 163647)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-i740
+pkgver=1.3.4
+pkgrel=1
+pkgdesc="X.org Intel i740 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('1a24009bb2223b722fb41e1a2737a6e74bfecb0829e5583e270d267ee4ecca78')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m64

[arch-commits] Commit in xf86-video-mach64/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:28:55
  Author: andyrtr
Revision: 163648

upgpkg: xf86-video-mach64 6.9.3-1

upstream update 6.9.3

Modified:
  xf86-video-mach64/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:25:27 UTC (rev 163647)
+++ PKGBUILD2012-07-17 16:28:55 UTC (rev 163648)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-mach64
-pkgver=6.9.2
+pkgver=6.9.3
 pkgrel=1
 pkgdesc="X.org mach64 video driver"
 arch=(i686 x86_64)
@@ -13,9 +13,9 @@
 optdepends=('mach64-dri: DRI1 support from community repo')
 conflicts=('xorg-server<1.12.0')
 groups=('xorg-drivers' 'xorg')
-options=('!libtool')
+options=('!libtool' '!emptydirs')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e3967d6ee953cd907c6a9e38b132b90db8173565198f6a65fe1e8c398dc06293')
+sha256sums=('5473d0e7dfd7bcff3f759e9e6bd6794ab464958f2f647d9b6d3edf3c66c53218')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-mach64/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:29:33
  Author: andyrtr
Revision: 163649

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

Added:
  xf86-video-mach64/repos/extra-i686/PKGBUILD
(from rev 163648, xf86-video-mach64/trunk/PKGBUILD)
  xf86-video-mach64/repos/extra-x86_64/PKGBUILD
(from rev 163648, xf86-video-mach64/trunk/PKGBUILD)
Deleted:
  xf86-video-mach64/repos/extra-i686/PKGBUILD
  xf86-video-mach64/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   62 
 extra-x86_64/PKGBUILD |   62 
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:28:55 UTC (rev 163648)
+++ extra-i686/PKGBUILD 2012-07-17 16:29:33 UTC (rev 163649)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-mach64
-pkgver=6.9.2
-pkgrel=1
-pkgdesc="X.org mach64 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('mach64-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e3967d6ee953cd907c6a9e38b132b90db8173565198f6a65fe1e8c398dc06293')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-mach64/repos/extra-i686/PKGBUILD (from rev 163648, 
xf86-video-mach64/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:29:33 UTC (rev 163649)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-mach64
+pkgver=6.9.3
+pkgrel=1
+pkgdesc="X.org mach64 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('mach64-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool' '!emptydirs')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('5473d0e7dfd7bcff3f759e9e6bd6794ab464958f2f647d9b6d3edf3c66c53218')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:28:55 UTC (rev 163648)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:29:33 UTC (rev 163649)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-mach64
-pkgver=6.9.2
-pkgrel=1
-pkgdesc="X.org mach64 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('mach64-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e3967d6ee953cd907c6a9e38b132b90db8173565198f6a65fe1e8c398dc06293')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-mach64/repos/extra-x86_64/PKGBUILD (from rev 163648, 
xf86-video-mach64/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:29:33 UTC (rev 163649)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-mach64
+pkgver=6.9.3
+pkgrel=1
+pkgdesc="X.org mach64 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('mach64-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+optio

[arch-commits] Commit in xf86-video-mga/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:31:01
  Author: andyrtr
Revision: 163650

upgpkg: xf86-video-mga 1.6.1-1

upstream update 1.6.1

Modified:
  xf86-video-mga/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:29:33 UTC (rev 163649)
+++ PKGBUILD2012-07-17 16:31:01 UTC (rev 163650)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-mga
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc="X.org mga video driver"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('f0894fd8ddb1984d9212880544b7a7c30294e374df52bcce0c2acc93d434ce15')
+sha256sums=('6a70f5015f822eef82a18eedf3d3ee5fdfa81f1c0e701103ab837ffbd61aa4b4')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-mga/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:31:39
  Author: andyrtr
Revision: 163651

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

Added:
  xf86-video-mga/repos/extra-i686/PKGBUILD
(from rev 163650, xf86-video-mga/trunk/PKGBUILD)
  xf86-video-mga/repos/extra-x86_64/PKGBUILD
(from rev 163650, xf86-video-mga/trunk/PKGBUILD)
Deleted:
  xf86-video-mga/repos/extra-i686/PKGBUILD
  xf86-video-mga/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   64 
 extra-x86_64/PKGBUILD |   64 
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:31:01 UTC (rev 163650)
+++ extra-i686/PKGBUILD 2012-07-17 16:31:39 UTC (rev 163651)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-mga
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="X.org mga video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('mga-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('f0894fd8ddb1984d9212880544b7a7c30294e374df52bcce0c2acc93d434ce15')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-mga/repos/extra-i686/PKGBUILD (from rev 163650, 
xf86-video-mga/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:31:39 UTC (rev 163651)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-mga
+pkgver=1.6.1
+pkgrel=1
+pkgdesc="X.org mga video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('mga-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6a70f5015f822eef82a18eedf3d3ee5fdfa81f1c0e701103ab837ffbd61aa4b4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:31:01 UTC (rev 163650)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:31:39 UTC (rev 163651)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-mga
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="X.org mga video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('mga-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('f0894fd8ddb1984d9212880544b7a7c30294e374df52bcce0c2acc93d434ce15')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-mga/repos/extra-x86_64/PKGBUILD (from rev 163650, 
xf86-video-mga/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:31:39 UTC (rev 163651)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-mga
+pkgver=1.6.1
+pkgrel=1
+pkgdesc="X.org mga video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('mga-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${p

[arch-commits] Commit in xf86-video-neomagic/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:32:54
  Author: andyrtr
Revision: 163652

upgpkg: xf86-video-neomagic 1.2.7-1

upstream update 1.2.7

Modified:
  xf86-video-neomagic/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:31:39 UTC (rev 163651)
+++ PKGBUILD2012-07-17 16:32:54 UTC (rev 163652)
@@ -2,7 +2,7 @@
 #Maintainer: Jan de Groot 
 
 pkgname=xf86-video-neomagic
-pkgver=1.2.6
+pkgver=1.2.7
 pkgrel=1
 pkgdesc="X.org neomagic video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('b19ed2a33e8d9a3e2bfc1ae3e8ff49031b7d34dec786e4a5e060e68e48649888')
+sha256sums=('9f06e89ea68afb65dbc064af63dc57d3606fc7244cd62cf87841ff5bbc98cb76')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-neomagic/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:33:32
  Author: andyrtr
Revision: 163653

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

Added:
  xf86-video-neomagic/repos/extra-i686/PKGBUILD
(from rev 163652, xf86-video-neomagic/trunk/PKGBUILD)
  xf86-video-neomagic/repos/extra-x86_64/PKGBUILD
(from rev 163652, xf86-video-neomagic/trunk/PKGBUILD)
Deleted:
  xf86-video-neomagic/repos/extra-i686/PKGBUILD
  xf86-video-neomagic/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:32:54 UTC (rev 163652)
+++ extra-i686/PKGBUILD 2012-07-17 16:33:32 UTC (rev 163653)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-neomagic
-pkgver=1.2.6
-pkgrel=1
-pkgdesc="X.org neomagic video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('b19ed2a33e8d9a3e2bfc1ae3e8ff49031b7d34dec786e4a5e060e68e48649888')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-neomagic/repos/extra-i686/PKGBUILD (from rev 163652, 
xf86-video-neomagic/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:33:32 UTC (rev 163653)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-neomagic
+pkgver=1.2.7
+pkgrel=1
+pkgdesc="X.org neomagic video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('9f06e89ea68afb65dbc064af63dc57d3606fc7244cd62cf87841ff5bbc98cb76')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:32:54 UTC (rev 163652)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:33:32 UTC (rev 163653)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-neomagic
-pkgver=1.2.6
-pkgrel=1
-pkgdesc="X.org neomagic video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('b19ed2a33e8d9a3e2bfc1ae3e8ff49031b7d34dec786e4a5e060e68e48649888')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-neomagic/repos/extra-x86_64/PKGBUILD (from rev 163652, 
xf86-video-neomagic/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:33:32 UTC (rev 163653)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-neomagic
+pkgver=1.2.7
+pkgrel=1
+pkgdesc="X.org neomagic video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('9f06e89ea68afb65dbc064af63dc57d3606fc7244cd62cf87841ff5bbc98cb76')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${src

[arch-commits] Commit in xf86-video-r128/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:34:56
  Author: andyrtr
Revision: 163654

upgpkg: xf86-video-r128 6.8.4-1

upstream update 6.8.4

Modified:
  xf86-video-r128/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:33:32 UTC (rev 163653)
+++ PKGBUILD2012-07-17 16:34:56 UTC (rev 163654)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-r128
-pkgver=6.8.3
+pkgver=6.8.4
 pkgrel=1
 pkgdesc="X.org ati Rage128 video driver"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('855e8cf72c3a7704e12f331fe8a4b354518753c6ff3aa61ed156cf6e7530f02b')
+sha256sums=('6fbfbba2589c1daf45f048009d6521bb687adbdf2f695eb961b316ce68935cd7')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-r128/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:35:34
  Author: andyrtr
Revision: 163655

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

Added:
  xf86-video-r128/repos/extra-i686/PKGBUILD
(from rev 163654, xf86-video-r128/trunk/PKGBUILD)
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
(from rev 163654, xf86-video-r128/trunk/PKGBUILD)
Deleted:
  xf86-video-r128/repos/extra-i686/PKGBUILD
  xf86-video-r128/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   64 
 extra-x86_64/PKGBUILD |   64 
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:34:56 UTC (rev 163654)
+++ extra-i686/PKGBUILD 2012-07-17 16:35:34 UTC (rev 163655)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-r128
-pkgver=6.8.3
-pkgrel=1
-pkgdesc="X.org ati Rage128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('r128-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('855e8cf72c3a7704e12f331fe8a4b354518753c6ff3aa61ed156cf6e7530f02b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-r128/repos/extra-i686/PKGBUILD (from rev 163654, 
xf86-video-r128/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:35:34 UTC (rev 163655)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.8.4
+pkgrel=1
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('r128-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6fbfbba2589c1daf45f048009d6521bb687adbdf2f695eb961b316ce68935cd7')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:34:56 UTC (rev 163654)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:35:34 UTC (rev 163655)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-r128
-pkgver=6.8.3
-pkgrel=1
-pkgdesc="X.org ati Rage128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('r128-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('855e8cf72c3a7704e12f331fe8a4b354518753c6ff3aa61ed156cf6e7530f02b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-r128/repos/extra-x86_64/PKGBUILD (from rev 163654, 
xf86-video-r128/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:35:34 UTC (rev 163655)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.8.4
+pkgrel=1
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('r128-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source

[arch-commits] Commit in xf86-video-s3virge/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:36:46
  Author: andyrtr
Revision: 163656

upgpkg: xf86-video-s3virge 1.10.6-1

upstream update 1.10.6

Modified:
  xf86-video-s3virge/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:35:34 UTC (rev 163655)
+++ PKGBUILD2012-07-17 16:36:46 UTC (rev 163656)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xf86-video-s3virge
-pkgver=1.10.5
+pkgver=1.10.6
 pkgrel=1
 pkgdesc="X.org S3 Virge video driver"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=(!libtool)
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('583b2d2982c2dd8b3c2d8f09c3cbca901c3cb844115ac99251ae6521560fac31')
+sha256sums=('85e1f6bdd3f39d0348c53602f481b974c13fc752c94931882817751c8ec8363e')
 
 
 build() {



[arch-commits] Commit in xf86-video-s3virge/repos (6 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:37:24
  Author: andyrtr
Revision: 163657

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

Added:
  xf86-video-s3virge/repos/extra-i686/PKGBUILD
(from rev 163656, xf86-video-s3virge/trunk/PKGBUILD)
  xf86-video-s3virge/repos/extra-x86_64/PKGBUILD
(from rev 163656, xf86-video-s3virge/trunk/PKGBUILD)
Deleted:
  xf86-video-s3virge/repos/extra-i686/PKGBUILD
  xf86-video-s3virge/repos/extra-i686/git-fixes.patch
  xf86-video-s3virge/repos/extra-x86_64/PKGBUILD
  xf86-video-s3virge/repos/extra-x86_64/git-fixes.patch

--+
 extra-i686/PKGBUILD  |   69 -
 extra-i686/git-fixes.patch   | 1644 -
 extra-x86_64/PKGBUILD|   69 -
 extra-x86_64/git-fixes.patch | 1644 -
 4 files changed, 66 insertions(+), 3360 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 163656:163657 to see the changes.


[arch-commits] Commit in xf86-video-savage/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:38:51
  Author: andyrtr
Revision: 163658

upgpkg: xf86-video-savage 2.3.6-1

upstream update 2.3.6

Modified:
  xf86-video-savage/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:37:24 UTC (rev 163657)
+++ PKGBUILD2012-07-17 16:38:51 UTC (rev 163658)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-savage
-pkgver=2.3.5
+pkgver=2.3.6
 pkgrel=1
 pkgdesc="X.org savage video driver"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=(!libtool)
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4b5b52aad9413a9d8717ff0aa3290d110dd5cdb5c93eebda4a5fff1c5ccf63e4')
+sha256sums=('48813ed8f4a08858e8c2466fd2dc810ea31f86842025fa39ec949d44f9ad63d6')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-savage/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:39:29
  Author: andyrtr
Revision: 163659

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

Added:
  xf86-video-savage/repos/extra-i686/PKGBUILD
(from rev 163658, xf86-video-savage/trunk/PKGBUILD)
  xf86-video-savage/repos/extra-x86_64/PKGBUILD
(from rev 163658, xf86-video-savage/trunk/PKGBUILD)
Deleted:
  xf86-video-savage/repos/extra-i686/PKGBUILD
  xf86-video-savage/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   66 
 extra-x86_64/PKGBUILD |   66 
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:38:51 UTC (rev 163658)
+++ extra-i686/PKGBUILD 2012-07-17 16:39:29 UTC (rev 163659)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-savage
-pkgver=2.3.5
-pkgrel=1
-pkgdesc="X.org savage video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('savage-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=(!libtool)
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4b5b52aad9413a9d8717ff0aa3290d110dd5cdb5c93eebda4a5fff1c5ccf63e4')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  #cd "${srcdir}/${pkgname}-${pkgver}"
-  cd ${srcdir}/${pkgname}*
-  make DESTDIR="${pkgdir}" install
-
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-savage/repos/extra-i686/PKGBUILD (from rev 163658, 
xf86-video-savage/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:39:29 UTC (rev 163659)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-savage
+pkgver=2.3.6
+pkgrel=1
+pkgdesc="X.org savage video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('savage-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+options=(!libtool)
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('48813ed8f4a08858e8c2466fd2dc810ea31f86842025fa39ec949d44f9ad63d6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  #cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}*
+  make DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:38:51 UTC (rev 163658)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:39:29 UTC (rev 163659)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-savage
-pkgver=2.3.5
-pkgrel=1
-pkgdesc="X.org savage video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('savage-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=(!libtool)
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4b5b52aad9413a9d8717ff0aa3290d110dd5cdb5c93eebda4a5fff1c5ccf63e4')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  #cd "${srcdir}/${pkgname}-${pkgver}"
-  cd ${srcdir}/${pkgname}*
-  make DESTDIR="${pkgdir}" install
-
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-savage/repos/extra-x86_64/PKGBUILD (from rev 163658, 
xf86-video-savage/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:39:29 UTC (rev 163659)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-savage
+pkgver=2.3.6
+pkgrel=1
+pkgdesc="X.org savage video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('savage-dri: DRI1 support from community repo'

[arch-commits] Commit in xf86-video-siliconmotion/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:42:49
  Author: andyrtr
Revision: 163660

upgpkg: xf86-video-siliconmotion 1.7.7-1

upstream update 1.7.7

Modified:
  xf86-video-siliconmotion/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:39:29 UTC (rev 163659)
+++ PKGBUILD2012-07-17 16:42:49 UTC (rev 163660)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xf86-video-siliconmotion
-pkgver=1.7.6
+pkgver=1.7.7
 pkgrel=1
 pkgdesc="X.org siliconmotion video driver"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('a59f1bd21499351b3703c4b77ec007d1299ccb888434d19fabbbeee0a7a14d07')
+sha256sums=('87b8b59d43945d4fc8012860c0bd9aed42c4684a943355c607b8eb8d6710c3aa')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-siliconmotion/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:43:27
  Author: andyrtr
Revision: 163661

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

Added:
  xf86-video-siliconmotion/repos/extra-i686/PKGBUILD
(from rev 163660, xf86-video-siliconmotion/trunk/PKGBUILD)
  xf86-video-siliconmotion/repos/extra-x86_64/PKGBUILD
(from rev 163660, xf86-video-siliconmotion/trunk/PKGBUILD)
Deleted:
  xf86-video-siliconmotion/repos/extra-i686/PKGBUILD
  xf86-video-siliconmotion/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   64 
 extra-x86_64/PKGBUILD |   64 
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:42:49 UTC (rev 163660)
+++ extra-i686/PKGBUILD 2012-07-17 16:43:27 UTC (rev 163661)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=xf86-video-siliconmotion
-pkgver=1.7.6
-pkgrel=1
-pkgdesc="X.org siliconmotion video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('a59f1bd21499351b3703c4b77ec007d1299ccb888434d19fabbbeee0a7a14d07')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-siliconmotion/repos/extra-i686/PKGBUILD (from rev 163660, 
xf86-video-siliconmotion/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:43:27 UTC (rev 163661)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xf86-video-siliconmotion
+pkgver=1.7.7
+pkgrel=1
+pkgdesc="X.org siliconmotion video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('87b8b59d43945d4fc8012860c0bd9aed42c4684a943355c607b8eb8d6710c3aa')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:42:49 UTC (rev 163660)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:43:27 UTC (rev 163661)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=xf86-video-siliconmotion
-pkgver=1.7.6
-pkgrel=1
-pkgdesc="X.org siliconmotion video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('a59f1bd21499351b3703c4b77ec007d1299ccb888434d19fabbbeee0a7a14d07')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-siliconmotion/repos/extra-x86_64/PKGBUILD (from rev 163660, 
xf86-video-siliconmotion/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:43:27 UTC (rev 163661)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xf86-video-siliconmotion
+pkgver=1.7.7
+pkgrel=1
+pkgdesc="X.org siliconmotion video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('87b8b5

[arch-commits] Commit in xf86-video-sis/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:44:58
  Author: andyrtr
Revision: 163662

upgpkg: xf86-video-sis 0.10.7-1

upstream update 0.10.7

Modified:
  xf86-video-sis/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:43:27 UTC (rev 163661)
+++ PKGBUILD2012-07-17 16:44:58 UTC (rev 163662)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-sis
-pkgver=0.10.4
-pkgrel=2
+pkgver=0.10.7
+pkgrel=1
 pkgdesc="X.org SiS video driver"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
@@ -15,7 +15,7 @@
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4e841080ea524f37d887ef4ee50df5b9f7f5b417abddc9eb8ddad19128c0b10d')
+sha256sums=('be2eb6acba081e88dabc5be9db379e3da89a4d4edeb68064f204bf343a411cd0')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-sis/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:45:36
  Author: andyrtr
Revision: 163663

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

Added:
  xf86-video-sis/repos/extra-i686/PKGBUILD
(from rev 163662, xf86-video-sis/trunk/PKGBUILD)
  xf86-video-sis/repos/extra-x86_64/PKGBUILD
(from rev 163662, xf86-video-sis/trunk/PKGBUILD)
Deleted:
  xf86-video-sis/repos/extra-i686/PKGBUILD
  xf86-video-sis/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   64 
 extra-x86_64/PKGBUILD |   64 
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:44:58 UTC (rev 163662)
+++ extra-i686/PKGBUILD 2012-07-17 16:45:36 UTC (rev 163663)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-sis
-pkgver=0.10.4
-pkgrel=2
-pkgdesc="X.org SiS video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa' 
'xf86dgaproto')
-optdepends=('sis-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4e841080ea524f37d887ef4ee50df5b9f7f5b417abddc9eb8ddad19128c0b10d')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-sis/repos/extra-i686/PKGBUILD (from rev 163662, 
xf86-video-sis/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:45:36 UTC (rev 163663)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-sis
+pkgver=0.10.7
+pkgrel=1
+pkgdesc="X.org SiS video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa' 
'xf86dgaproto')
+optdepends=('sis-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('be2eb6acba081e88dabc5be9db379e3da89a4d4edeb68064f204bf343a411cd0')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:44:58 UTC (rev 163662)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:45:36 UTC (rev 163663)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-sis
-pkgver=0.10.4
-pkgrel=2
-pkgdesc="X.org SiS video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa' 
'xf86dgaproto')
-optdepends=('sis-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4e841080ea524f37d887ef4ee50df5b9f7f5b417abddc9eb8ddad19128c0b10d')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-sis/repos/extra-x86_64/PKGBUILD (from rev 163662, 
xf86-video-sis/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:45:36 UTC (rev 163663)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-sis
+pkgver=0.10.7
+pkgrel=1
+pkgdesc="X.org SiS video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa' 
'xf86dgaproto')
+optdepends=('sis-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+options=('!libtool')
+groups=('xorg-driver

[arch-commits] Commit in xf86-video-sisusb/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:46:49
  Author: andyrtr
Revision: 163664

upgpkg: xf86-video-sisusb 0.9.6-1

upstream update 0.9.6

Modified:
  xf86-video-sisusb/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:45:36 UTC (rev 163663)
+++ PKGBUILD2012-07-17 16:46:49 UTC (rev 163664)
@@ -2,7 +2,7 @@
 #Maintainer: Jan de Groot 
 
 pkgname=xf86-video-sisusb
-pkgver=0.9.5
+pkgver=0.9.6
 pkgrel=1
 pkgdesc="X.org SiS USB video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('6508f0edcbbca978f97665953135fb564e988fed437a7c56611f8355bb4daa6b')
+sha256sums=('73dbef43c56a4ce1445c27ebac2ddc062c643c32ca6e2a4d095aea2185b9e046')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-sisusb/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:47:27
  Author: andyrtr
Revision: 163665

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

Added:
  xf86-video-sisusb/repos/extra-i686/PKGBUILD
(from rev 163664, xf86-video-sisusb/trunk/PKGBUILD)
  xf86-video-sisusb/repos/extra-x86_64/PKGBUILD
(from rev 163664, xf86-video-sisusb/trunk/PKGBUILD)
Deleted:
  xf86-video-sisusb/repos/extra-i686/PKGBUILD
  xf86-video-sisusb/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:46:49 UTC (rev 163664)
+++ extra-i686/PKGBUILD 2012-07-17 16:47:27 UTC (rev 163665)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-sisusb
-pkgver=0.9.5
-pkgrel=1
-pkgdesc="X.org SiS USB video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903')
-conflicts=('xorg-server<1.11.99.903')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('6508f0edcbbca978f97665953135fb564e988fed437a7c56611f8355bb4daa6b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-sisusb/repos/extra-i686/PKGBUILD (from rev 163664, 
xf86-video-sisusb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:47:27 UTC (rev 163665)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-sisusb
+pkgver=0.9.6
+pkgrel=1
+pkgdesc="X.org SiS USB video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903')
+conflicts=('xorg-server<1.11.99.903')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('73dbef43c56a4ce1445c27ebac2ddc062c643c32ca6e2a4d095aea2185b9e046')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:46:49 UTC (rev 163664)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:47:27 UTC (rev 163665)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=xf86-video-sisusb
-pkgver=0.9.5
-pkgrel=1
-pkgdesc="X.org SiS USB video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903')
-conflicts=('xorg-server<1.11.99.903')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('6508f0edcbbca978f97665953135fb564e988fed437a7c56611f8355bb4daa6b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-sisusb/repos/extra-x86_64/PKGBUILD (from rev 163664, 
xf86-video-sisusb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:47:27 UTC (rev 163665)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=xf86-video-sisusb
+pkgver=0.9.6
+pkgrel=1
+pkgdesc="X.org SiS USB video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903')
+conflicts=('xorg-server<1.11.99.903')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('73dbef43c56a4ce1445c27ebac2ddc062c643c32ca6e2a4d095aea2185b9e046')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir

[arch-commits] Commit in xf86-video-tdfx/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:48:52
  Author: andyrtr
Revision: 163666

upgpkg: xf86-video-tdfx 1.4.5-1

upstream update 1.4.5

Modified:
  xf86-video-tdfx/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:47:27 UTC (rev 163665)
+++ PKGBUILD2012-07-17 16:48:52 UTC (rev 163666)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-tdfx
-pkgver=1.4.4
-pkgrel=2
+pkgver=1.4.5
+pkgrel=1
 pkgdesc="X.org tdfx video driver"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
@@ -15,7 +15,7 @@
 options=(!libtool)
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e0b931dea0fb1ebfaa628a3dc07bf6945b377d3f7bbfd3a43ca4c80c46d48f88')
+sha256sums=('70d5fbadfb60fc25e4f90f2a1aad258f64fa3953efbc1059103a8d845870d859')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-tdfx/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:49:31
  Author: andyrtr
Revision: 163667

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

Added:
  xf86-video-tdfx/repos/extra-i686/PKGBUILD
(from rev 163666, xf86-video-tdfx/trunk/PKGBUILD)
  xf86-video-tdfx/repos/extra-x86_64/PKGBUILD
(from rev 163666, xf86-video-tdfx/trunk/PKGBUILD)
Deleted:
  xf86-video-tdfx/repos/extra-i686/PKGBUILD
  xf86-video-tdfx/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   66 
 extra-x86_64/PKGBUILD |   66 
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:48:52 UTC (rev 163666)
+++ extra-i686/PKGBUILD 2012-07-17 16:49:31 UTC (rev 163667)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-tdfx
-pkgver=1.4.4
-pkgrel=2
-pkgdesc="X.org tdfx video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('tdfx-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=(!libtool)
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e0b931dea0fb1ebfaa628a3dc07bf6945b377d3f7bbfd3a43ca4c80c46d48f88')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  #cd "${srcdir}/${pkgname}-${pkgver}"
-  cd ${srcdir}/${pkgname}*
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-tdfx/repos/extra-i686/PKGBUILD (from rev 163666, 
xf86-video-tdfx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:49:31 UTC (rev 163667)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-tdfx
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="X.org tdfx video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('tdfx-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+options=(!libtool)
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('70d5fbadfb60fc25e4f90f2a1aad258f64fa3953efbc1059103a8d845870d859')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  #cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}*
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:48:52 UTC (rev 163666)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:49:31 UTC (rev 163667)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-tdfx
-pkgver=1.4.4
-pkgrel=2
-pkgdesc="X.org tdfx video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('tdfx-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-options=(!libtool)
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e0b931dea0fb1ebfaa628a3dc07bf6945b377d3f7bbfd3a43ca4c80c46d48f88')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  #cd "${srcdir}/${pkgname}-${pkgver}"
-  cd ${srcdir}/${pkgname}*
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-tdfx/repos/extra-x86_64/PKGBUILD (from rev 163666, 
xf86-video-tdfx/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:49:31 UTC (rev 163667)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-tdfx
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="X.org tdfx video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
+optdepends=('tdfx-dri: DRI1 support from community repo')
+conflicts=('xorg-server<1.12.0')
+options

[arch-commits] Commit in xf86-video-trident/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:50:56
  Author: andyrtr
Revision: 163668

upgpkg: xf86-video-trident 1.3.6-1

upstream update 1.3.6

Modified:
  xf86-video-trident/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:49:31 UTC (rev 163667)
+++ PKGBUILD2012-07-17 16:50:56 UTC (rev 163668)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-trident
-pkgver=1.3.5
+pkgver=1.3.6
 pkgrel=1
 pkgdesc="X.org Trident video driver"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=(!libtool)
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4bb3d091ab7788e1883d6d9e7e0c7ecbf9f57e5ef03d94a5082c2870dbbfc50b')
+sha256sums=('6a58e3f3034abd8803af8a5c7dd5a6a4a28ed4fdac742ffb05518caaddc28104')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-trident/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:51:34
  Author: andyrtr
Revision: 163669

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

Added:
  xf86-video-trident/repos/extra-i686/PKGBUILD
(from rev 163668, xf86-video-trident/trunk/PKGBUILD)
  xf86-video-trident/repos/extra-x86_64/PKGBUILD
(from rev 163668, xf86-video-trident/trunk/PKGBUILD)
Deleted:
  xf86-video-trident/repos/extra-i686/PKGBUILD
  xf86-video-trident/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   62 
 extra-x86_64/PKGBUILD |   62 
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:50:56 UTC (rev 163668)
+++ extra-i686/PKGBUILD 2012-07-17 16:51:34 UTC (rev 163669)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-trident
-pkgver=1.3.5
-pkgrel=1
-pkgdesc="X.org Trident video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=(!libtool)
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4bb3d091ab7788e1883d6d9e7e0c7ecbf9f57e5ef03d94a5082c2870dbbfc50b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-trident/repos/extra-i686/PKGBUILD (from rev 163668, 
xf86-video-trident/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:51:34 UTC (rev 163669)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-trident
+pkgver=1.3.6
+pkgrel=1
+pkgdesc="X.org Trident video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=(!libtool)
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6a58e3f3034abd8803af8a5c7dd5a6a4a28ed4fdac742ffb05518caaddc28104')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:50:56 UTC (rev 163668)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:51:34 UTC (rev 163669)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-trident
-pkgver=1.3.5
-pkgrel=1
-pkgdesc="X.org Trident video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=(!libtool)
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4bb3d091ab7788e1883d6d9e7e0c7ecbf9f57e5ef03d94a5082c2870dbbfc50b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-trident/repos/extra-x86_64/PKGBUILD (from rev 163668, 
xf86-video-trident/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:51:34 UTC (rev 163669)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-trident
+pkgver=1.3.6
+pkgrel=1
+pkgdesc="X.org Trident video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.12.0' 'xf86dgaproto')
+conflicts=('xorg-server<1.12.0')
+groups=('xorg-drivers' 'xorg')
+options=(!libtool)
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6a58e3f3034abd8803af8a5c7dd5a6a4a28ed4fdac742ffb05518caaddc28104')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-

[arch-commits] Commit in xf86-video-tseng/trunk (PKGBUILD tseng-1.2.4-git.patch)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:53:00
  Author: andyrtr
Revision: 163670

upgpkg: xf86-video-tseng 1.2.5-1

upstream update 1.2.5

Modified:
  xf86-video-tseng/trunk/PKGBUILD
Deleted:
  xf86-video-tseng/trunk/tseng-1.2.4-git.patch

---+
 PKGBUILD  |   11 -
 tseng-1.2.4-git.patch |  317 
 2 files changed, 4 insertions(+), 324 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:51:34 UTC (rev 163669)
+++ PKGBUILD2012-07-17 16:53:00 UTC (rev 163670)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-tseng
-pkgver=1.2.4
-pkgrel=6
+pkgver=1.2.5
+pkgrel=1
 pkgdesc="X.org tseng video driver"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
@@ -13,14 +13,11 @@
 conflicts=('xorg-server<1.11.99.903')
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-tseng-1.2.4-git.patch)
-sha1sums=('1b45f55657b2c92f30abb0769cae57fca98d93b7'
-  'd84bb75d62888096da7477b38e8b13f9c23d4e3a')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('c06dc5205f627e5afc795ecfa75e18d2d1db4e1f1f195fd017dad60854407819')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i ${srcdir}/tseng-1.2.4-git.patch
   ./configure --prefix=/usr
   make
 }

Deleted: tseng-1.2.4-git.patch
===
--- tseng-1.2.4-git.patch   2012-07-17 16:51:34 UTC (rev 163669)
+++ tseng-1.2.4-git.patch   2012-07-17 16:53:00 UTC (rev 163670)
@@ -1,317 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 62cc318..8458c06 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -20,46 +20,46 @@
- #
- # Process this file with autoconf to produce a configure script
- 
--AC_PREREQ(2.57)
-+# Initialize Autoconf
-+AC_PREREQ([2.60])
- AC_INIT([xf86-video-tseng],
--1.2.4,
-+[1.2.4],
- [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
--xf86-video-tseng)
--
-+[xf86-video-tseng])
- AC_CONFIG_SRCDIR([Makefile.am])
--AM_CONFIG_HEADER([config.h])
-+AC_CONFIG_HEADERS([config.h])
- AC_CONFIG_AUX_DIR(.)
- 
-+# Initialize Automake
- AM_INIT_AUTOMAKE([foreign dist-bzip2])
--
- AM_MAINTAINER_MODE
- 
--# Require xorg-macros: XORG_DEFAULT_OPTIONS
-+# Require X.Org macros 1.8 or later for MAN_SUBSTS set by 
XORG_MANPAGE_SECTIONS
- m4_ifndef([XORG_MACROS_VERSION],
--  [m4_fatal([must install xorg-macros 1.3 or later before running 
autoconf/autogen])])
--XORG_MACROS_VERSION(1.3)
-+  [m4_fatal([must install xorg-macros 1.8 or later before running 
autoconf/autogen])])
-+XORG_MACROS_VERSION(1.8)
- XORG_DEFAULT_OPTIONS
- 
--# Checks for programs.
-+# Initialize libtool
- AC_DISABLE_STATIC
- AC_PROG_LIBTOOL
--AC_PROG_CC
- 
- AH_TOP([#include "xorg-server.h"])
- 
-+# Define a configure option for an alternate module directory
- AC_ARG_WITH(xorg-module-dir,
--AC_HELP_STRING([--with-xorg-module-dir=DIR],
-+AS_HELP_STRING([--with-xorg-module-dir=DIR],
-[Default xorg module directory 
[[default=$libdir/xorg/modules]]]),
- [moduledir="$withval"],
- [moduledir="$libdir/xorg/modules"])
- 
--# Checks for extensions
-+# Store the list of server defined optional extensions in REQUIRED_MODULES
- XORG_DRIVER_CHECK_EXT(RANDR, randrproto)
- XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
- XORG_DRIVER_CHECK_EXT(XV, videoproto)
- XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
- 
--# Checks for pkg-config packages
-+# Obtain compiler/linker options for the driver dependencies
- PKG_CHECK_MODULES(XORG, [xorg-server >= 1.0.99.901 xproto fontsproto 
$REQUIRED_MODULES])
- 
- # Checks for libraries.
-@@ -78,17 +78,14 @@ if test "x$XSERVER_LIBPCIACCESS" = xyes; then
- fi
- AM_CONDITIONAL(XSERVER_LIBPCIACCESS, test "x$XSERVER_LIBPCIACCESS" = xyes)
- 
--# Checks for header files.
--AC_HEADER_STDC
--
--AC_SUBST([XORG_CFLAGS])
- AC_SUBST([moduledir])
- 
- DRIVER_NAME=tseng
- AC_SUBST([DRIVER_NAME])
- 
--AC_OUTPUT([
--  Makefile
--  src/Makefile
--  man/Makefile
-+AC_CONFIG_FILES([
-+Makefile
-+src/Makefile
-+man/Makefile
- ])
-+AC_OUTPUT
-diff --git a/man/Makefile.am b/man/Makefile.am
-index 8f2454b..b3688ce 100644
 a/man/Makefile.am
-+++ b/man/Makefile.am
-@@ -31,25 +31,11 @@ EXTRA_DIST = @DRIVER_NAME@.man
- 
- CLEANFILES = $(driverman_DATA)
- 
--SED = sed
--
--# Strings to replace in man pages
--XORGRELSTRING = @PACKAGE_STRING@
--  XORGMANNAME = X Version 11
--
--MAN_SUBSTS = \
--  -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
--  -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
--  -e 's|__xservername__|Xorg|g' \
--  -e 's|__xconfigfile__|xorg.conf|g' \
--  -e 's|__projectroot__|$(prefix)|

[arch-commits] Commit in xf86-video-tseng/repos (6 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:53:38
  Author: andyrtr
Revision: 163671

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

Added:
  xf86-video-tseng/repos/extra-i686/PKGBUILD
(from rev 163670, xf86-video-tseng/trunk/PKGBUILD)
  xf86-video-tseng/repos/extra-x86_64/PKGBUILD
(from rev 163670, xf86-video-tseng/trunk/PKGBUILD)
Deleted:
  xf86-video-tseng/repos/extra-i686/PKGBUILD
  xf86-video-tseng/repos/extra-i686/tseng-1.2.4-git.patch
  xf86-video-tseng/repos/extra-x86_64/PKGBUILD
  xf86-video-tseng/repos/extra-x86_64/tseng-1.2.4-git.patch

+
 extra-i686/PKGBUILD|   63 +++---
 extra-i686/tseng-1.2.4-git.patch   |  317 ---
 extra-x86_64/PKGBUILD  |   63 +++---
 extra-x86_64/tseng-1.2.4-git.patch |  317 ---
 4 files changed, 60 insertions(+), 700 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:53:00 UTC (rev 163670)
+++ extra-i686/PKGBUILD 2012-07-17 16:53:38 UTC (rev 163671)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-tseng
-pkgver=1.2.4
-pkgrel=6
-pkgdesc="X.org tseng video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903')
-conflicts=('xorg-server<1.11.99.903')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-tseng-1.2.4-git.patch)
-sha1sums=('1b45f55657b2c92f30abb0769cae57fca98d93b7'
-  'd84bb75d62888096da7477b38e8b13f9c23d4e3a')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i ${srcdir}/tseng-1.2.4-git.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-tseng/repos/extra-i686/PKGBUILD (from rev 163670, 
xf86-video-tseng/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:53:38 UTC (rev 163671)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-tseng
+pkgver=1.2.5
+pkgrel=1
+pkgdesc="X.org tseng video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903')
+conflicts=('xorg-server<1.11.99.903')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('c06dc5205f627e5afc795ecfa75e18d2d1db4e1f1f195fd017dad60854407819')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-i686/tseng-1.2.4-git.patch
===
--- extra-i686/tseng-1.2.4-git.patch2012-07-17 16:53:00 UTC (rev 163670)
+++ extra-i686/tseng-1.2.4-git.patch2012-07-17 16:53:38 UTC (rev 163671)
@@ -1,317 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 62cc318..8458c06 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -20,46 +20,46 @@
- #
- # Process this file with autoconf to produce a configure script
- 
--AC_PREREQ(2.57)
-+# Initialize Autoconf
-+AC_PREREQ([2.60])
- AC_INIT([xf86-video-tseng],
--1.2.4,
-+[1.2.4],
- [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
--xf86-video-tseng)
--
-+[xf86-video-tseng])
- AC_CONFIG_SRCDIR([Makefile.am])
--AM_CONFIG_HEADER([config.h])
-+AC_CONFIG_HEADERS([config.h])
- AC_CONFIG_AUX_DIR(.)
- 
-+# Initialize Automake
- AM_INIT_AUTOMAKE([foreign dist-bzip2])
--
- AM_MAINTAINER_MODE
- 
--# Require xorg-macros: XORG_DEFAULT_OPTIONS
-+# Require X.Org macros 1.8 or later for MAN_SUBSTS set by 
XORG_MANPAGE_SECTIONS
- m4_ifndef([XORG_MACROS_VERSION],
--  [m4_fatal([must install xorg-macros 1.3 or later before running 
autoconf/autogen])])
--XORG_MACROS_VERSION(1.3)
-+  [m4_fatal([must install xorg-macros 1.8 or later before running 
autoconf/autogen])])
-+XORG_MACROS_VERSION(1.8)
- XORG_DEFAULT_OPTIONS
- 
--# Checks for programs.
-+# Initialize libtool
- AC_DISABLE_STATIC
- AC_PROG_LIBTOOL
--AC_PROG_CC
- 
- AH_TOP([#include "xorg-server.h"])
- 
-+# Define a configure option for an alternate module directory
- AC_ARG_WITH(xorg-module-dir,
--AC_HELP_STRING([--with-xorg-module-dir=DIR],
-+AS_HELP_STRING([--with-xorg-module-dir=DIR],
-

[arch-commits] Commit in xf86-video-voodoo/trunk (PKGBUILD)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:55:14
  Author: andyrtr
Revision: 163672

upgpkg: xf86-video-voodoo 1.2.5-1

upstream update 1.2.5

Modified:
  xf86-video-voodoo/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:53:38 UTC (rev 163671)
+++ PKGBUILD2012-07-17 16:55:14 UTC (rev 163672)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-voodoo
-pkgver=1.2.4
-pkgrel=6
+pkgver=1.2.5
+pkgrel=1
 pkgdesc="X.org 3dfx Voodoo1/Voodoo2 2D video driver"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
@@ -14,7 +14,7 @@
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('7ecd232cc0b7fe507e18e08799791eefa9fdaf48')
+sha256sums=('9e3eb8a3fdcc60ce4f7c37649188cfa67dcf25cda3a85d8027588458bb3fd7e8')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xf86-video-voodoo/repos (4 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:55:52
  Author: andyrtr
Revision: 163673

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

Added:
  xf86-video-voodoo/repos/extra-i686/PKGBUILD
(from rev 163672, xf86-video-voodoo/trunk/PKGBUILD)
  xf86-video-voodoo/repos/extra-x86_64/PKGBUILD
(from rev 163672, xf86-video-voodoo/trunk/PKGBUILD)
Deleted:
  xf86-video-voodoo/repos/extra-i686/PKGBUILD
  xf86-video-voodoo/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:55:14 UTC (rev 163672)
+++ extra-i686/PKGBUILD 2012-07-17 16:55:52 UTC (rev 163673)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-voodoo
-pkgver=1.2.4
-pkgrel=6
-pkgdesc="X.org 3dfx Voodoo1/Voodoo2 2D video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
-conflicts=('xorg-server<1.11.99.903')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('7ecd232cc0b7fe507e18e08799791eefa9fdaf48')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: xf86-video-voodoo/repos/extra-i686/PKGBUILD (from rev 163672, 
xf86-video-voodoo/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:55:52 UTC (rev 163673)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-voodoo
+pkgver=1.2.5
+pkgrel=1
+pkgdesc="X.org 3dfx Voodoo1/Voodoo2 2D video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
+conflicts=('xorg-server<1.11.99.903')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('9e3eb8a3fdcc60ce4f7c37649188cfa67dcf25cda3a85d8027588458bb3fd7e8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 16:55:14 UTC (rev 163672)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:55:52 UTC (rev 163673)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-voodoo
-pkgver=1.2.4
-pkgrel=6
-pkgdesc="X.org 3dfx Voodoo1/Voodoo2 2D video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
-conflicts=('xorg-server<1.11.99.903')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('7ecd232cc0b7fe507e18e08799791eefa9fdaf48')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: xf86-video-voodoo/repos/extra-x86_64/PKGBUILD (from rev 163672, 
xf86-video-voodoo/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-17 16:55:52 UTC (rev 163673)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-voodoo
+pkgver=1.2.5
+pkgrel=1
+pkgdesc="X.org 3dfx Voodoo1/Voodoo2 2D video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903' 'xf86dgaproto')
+conflicts=('xorg-server<1.11.99.903')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('9e3eb8a3fdcc60ce4f7c37649188cfa67dcf25cda3a85d8027588458bb3fd7e8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefi

[arch-commits] Commit in xf86-video-nv/trunk (PKGBUILD git_fixes.patch)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:57:24
  Author: andyrtr
Revision: 163674

upgpkg: xf86-video-nv 2.1.20-1

upstream update 2.1.20

Modified:
  xf86-video-nv/trunk/PKGBUILD
Deleted:
  xf86-video-nv/trunk/git_fixes.patch

-+
 PKGBUILD|   13 +--
 git_fixes.patch |  234 --
 2 files changed, 5 insertions(+), 242 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:55:52 UTC (rev 163673)
+++ PKGBUILD2012-07-17 16:57:24 UTC (rev 163674)
@@ -2,10 +2,10 @@
 # Maintainer:Jan de Groot 
 
 pkgname=xf86-video-nv
-pkgver=2.1.18
-pkgrel=6
+pkgver=2.1.20
+pkgrel=1
 pkgdesc="X.org nv video driver"
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('custom')
 url="http://xorg.freedesktop.org/";
 depends=('glibc')
@@ -13,14 +13,11 @@
 conflicts=('xorg-server<1.11.99.903')
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-git_fixes.patch)
-sha1sums=('d35b2fa5a26a507a9cc95b69243d9fd0c0f32aa2'
-  '07469140e20751a7366017b116a8c4d7d39eaac0')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('8395f65501f16f9cbaae8f598b02c6f18e78f4d3d30a08cb8d547dc2e00c10bf')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i ${srcdir}/git_fixes.patch
   ./configure --prefix=/usr
   make
 }

Deleted: git_fixes.patch
===
--- git_fixes.patch 2012-07-17 16:55:52 UTC (rev 163673)
+++ git_fixes.patch 2012-07-17 16:57:24 UTC (rev 163674)
@@ -1,234 +0,0 @@
-From cb93a9b513b5814b18594de7a3b67bb225fb9c34 Mon Sep 17 00:00:00 2001
-From: Jesse Adkins 
-Date: Tue, 28 Sep 2010 20:29:51 +
-Subject: Purge cvs tags.
-
-Signed-off-by: Jesse Adkins 
-Signed-off-by: Alan Coopersmith 

-diff --git a/man/nv.man b/man/nv.man
-index 228f1da..c679803 100644
 a/man/nv.man
-+++ b/man/nv.man
-@@ -1,4 +1,3 @@
--.\" $XFree86: xc/programs/Xserver/hw/xfree86/drivers/nv/nv.man,v 1.30 
2006/06/16 00:19:32 mvojkovi Exp $ 
- .\" shorthand for double quote that works everywhere.
- .ds q \N'34'
- .TH NV __drivermansuffix__ __vendorversion__
---
-cgit v0.9.0.2-2-gbebe
-From d7727e5307c5c3fd0dbc51394893385cb3b01101 Mon Sep 17 00:00:00 2001
-From: Alan Coopersmith 
-Date: Sat, 30 Oct 2010 16:39:39 +
-Subject: Sun's copyrights now belong to Oracle
-
-Signed-off-by: Alan Coopersmith 

-diff --git a/man/Makefile.am b/man/Makefile.am
-index b3688ce..e39d1fc 100644
 a/man/Makefile.am
-+++ b/man/Makefile.am
-@@ -1,5 +1,5 @@
- #
--# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
-+# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
- #
- # Permission is hereby granted, free of charge, to any person obtaining a
- # copy of this software and associated documentation files (the "Software"),
-@@ -19,7 +19,7 @@
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- # DEALINGS IN THE SOFTWARE.
--# 
-+#
- 
- drivermandir = $(DRIVER_MAN_DIR)
- 
---
-cgit v0.9.0.2-2-gbebe
-From 95108089e22d33723488baba22467f2f3c4f1bf6 Mon Sep 17 00:00:00 2001
-From: Alan Coopersmith 
-Date: Sat, 30 Oct 2010 16:53:33 +
-Subject: Correct copyright date in previous commit
-
-Oops, pasted in the new template and forgot to restore the original date
-
-Signed-off-by: Alan Coopersmith 

-diff --git a/man/Makefile.am b/man/Makefile.am
-index e39d1fc..1ea26b3 100644
 a/man/Makefile.am
-+++ b/man/Makefile.am
-@@ -1,5 +1,5 @@
- #
--# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
-+# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
- #
- # Permission is hereby granted, free of charge, to any person obtaining a
- # copy of this software and associated documentation files (the "Software"),
---
-cgit v0.9.0.2-2-gbebe
-From 2b17d1ac579ee426f631f4c62c9f0cf617a06e51 Mon Sep 17 00:00:00 2001
-From: Cyril Brulebois 
-Date: Wed, 02 Mar 2011 01:09:10 +
-Subject: Fix compiler warning.
-
-Get rid of this with CFLAGS="-Wall -Werror":
-|   CC g80_display.lo
-| cc1: warnings being treated as errors
-| g80_display.c: In function ‘G80CrtcSetPClk’:
-| g80_display.c:216: error: unused variable ‘i’
-
-Signed-off-by: Cyril Brulebois 
-Signed-off-by: Aaron Plattner 
-Reviewed-by: Aaron Plattner 
-Tested-by: Aaron Plattner 

-diff --git a/src/g80_display.c b/src/g80_display.c
-index ae946a8..84e731c 100644
 a/src/g80_display.c
-+++ b/src/g80_display.c
-@@ -213,7 +213,7 @@ G80CrtcSetPClk(xf86CrtcPtr crtc)
- if(pNv->architecture <= 0xa0 ||
-pNv->architecture == 0xaa ||
-pNv->architecture == 0xac) {
--int lo_n, lo_m, hi_n, hi_m, p, i;
-+int lo_n, lo_m, hi_n, hi_m, p;
- CARD32 lo = pNv->reg[(0x00614104+headOff)/4]

[arch-commits] Commit in xf86-video-nv/repos (6 files)

2012-07-17 Thread andyrtr
Date: Tuesday, July 17, 2012 @ 12:58:02
  Author: andyrtr
Revision: 163675

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

Added:
  xf86-video-nv/repos/extra-i686/PKGBUILD
(from rev 163674, xf86-video-nv/trunk/PKGBUILD)
  xf86-video-nv/repos/extra-x86_64/PKGBUILD
(from rev 163674, xf86-video-nv/trunk/PKGBUILD)
Deleted:
  xf86-video-nv/repos/extra-i686/PKGBUILD
  xf86-video-nv/repos/extra-i686/git_fixes.patch
  xf86-video-nv/repos/extra-x86_64/PKGBUILD
  xf86-video-nv/repos/extra-x86_64/git_fixes.patch

--+
 extra-i686/PKGBUILD  |   65 +--
 extra-i686/git_fixes.patch   |  234 -
 extra-x86_64/PKGBUILD|   65 +--
 extra-x86_64/git_fixes.patch |  234 -
 4 files changed, 62 insertions(+), 536 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 16:57:24 UTC (rev 163674)
+++ extra-i686/PKGBUILD 2012-07-17 16:58:02 UTC (rev 163675)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:Jan de Groot 
-
-pkgname=xf86-video-nv
-pkgver=2.1.18
-pkgrel=6
-pkgdesc="X.org nv video driver"
-arch=(i686 x86_64)
-license=('custom')
-url="http://xorg.freedesktop.org/";
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.11.99.903')
-conflicts=('xorg-server<1.11.99.903')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-git_fixes.patch)
-sha1sums=('d35b2fa5a26a507a9cc95b69243d9fd0c0f32aa2'
-  '07469140e20751a7366017b116a8c4d7d39eaac0')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i ${srcdir}/git_fixes.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-nv/repos/extra-i686/PKGBUILD (from rev 163674, 
xf86-video-nv/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 16:58:02 UTC (rev 163675)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:Jan de Groot 
+
+pkgname=xf86-video-nv
+pkgver=2.1.20
+pkgrel=1
+pkgdesc="X.org nv video driver"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://xorg.freedesktop.org/";
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903')
+conflicts=('xorg-server<1.11.99.903')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('8395f65501f16f9cbaae8f598b02c6f18e78f4d3d30a08cb8d547dc2e00c10bf')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-i686/git_fixes.patch
===
--- extra-i686/git_fixes.patch  2012-07-17 16:57:24 UTC (rev 163674)
+++ extra-i686/git_fixes.patch  2012-07-17 16:58:02 UTC (rev 163675)
@@ -1,234 +0,0 @@
-From cb93a9b513b5814b18594de7a3b67bb225fb9c34 Mon Sep 17 00:00:00 2001
-From: Jesse Adkins 
-Date: Tue, 28 Sep 2010 20:29:51 +
-Subject: Purge cvs tags.
-
-Signed-off-by: Jesse Adkins 
-Signed-off-by: Alan Coopersmith 

-diff --git a/man/nv.man b/man/nv.man
-index 228f1da..c679803 100644
 a/man/nv.man
-+++ b/man/nv.man
-@@ -1,4 +1,3 @@
--.\" $XFree86: xc/programs/Xserver/hw/xfree86/drivers/nv/nv.man,v 1.30 
2006/06/16 00:19:32 mvojkovi Exp $ 
- .\" shorthand for double quote that works everywhere.
- .ds q \N'34'
- .TH NV __drivermansuffix__ __vendorversion__
---
-cgit v0.9.0.2-2-gbebe
-From d7727e5307c5c3fd0dbc51394893385cb3b01101 Mon Sep 17 00:00:00 2001
-From: Alan Coopersmith 
-Date: Sat, 30 Oct 2010 16:39:39 +
-Subject: Sun's copyrights now belong to Oracle
-
-Signed-off-by: Alan Coopersmith 

-diff --git a/man/Makefile.am b/man/Makefile.am
-index b3688ce..e39d1fc 100644
 a/man/Makefile.am
-+++ b/man/Makefile.am
-@@ -1,5 +1,5 @@
- #
--# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
-+# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
- #
- # Permission is hereby granted, free of charge, to any person obtaining a
- # copy of this software and associated documentation files (the "Software"),
-@@ -19,7 +19,7 @@
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- # DEALINGS IN THE SOFTWARE.
--# 
-+#
- 
- drivermandir = $(DRIVER_MAN_DIR)
- 
---
-cgit v0.9.0.2-2-gbebe
-From 95108089e22d33723488baba22

[arch-commits] Commit in virtuoso/trunk (PKGBUILD)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:00:56
  Author: andrea
Revision: 163676

upgpkg: virtuoso 6.1.5.20120717-1

Update to a most recent snapshot to fix important bugs; ship the complete 
virtuoso package and a 'base' package used by kde

Modified:
  virtuoso/trunk/PKGBUILD

--+
 PKGBUILD |   55 +++
 1 file changed, 35 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 16:58:02 UTC (rev 163675)
+++ PKGBUILD2012-07-17 18:00:56 UTC (rev 163676)
@@ -2,45 +2,60 @@
 # Maintainer: Andrea Scarpino 
 # Contributor: Massimiliano Torromeo 
 
-pkgname=virtuoso
-pkgver=6.1.5.20120630
+pkgbase=virtuoso
+pkgname=('virtuoso' 'virtuoso-base')
+pkgver=6.1.5.20120717
 pkgrel=1
 arch=('i686' 'x86_64')
-pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data 
Management with Web Application Server and Web Services Platform functionality'
 url='http://virtuoso.openlinksw.com/wiki/main/Main/'
 license=('GPL')
-depends=('libldap')
-makedepends=('bison' 'flex' 'gperf')
+makedepends=('libldap' 'bison' 'flex' 'gperf' 'net-tools' 'libxml2')
 options=('!libtool')
-source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz";)
-#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz";)
-md5sums=('1364679ffdbc6b0c16eadf6dee0e2676')
+source=("ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
+#source=("http://downloads.sourceforge.net/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
+md5sums=('bee8d6ad91e888bab8fdd177063ca084')
 
 build() {
-  cd ${srcdir}/${pkgname}-opensource-${pkgver}
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
 
   ./autogen.sh
-  ./configure --prefix=/usr \
---localstatedir=/var \
---sysconfdir=/etc \
---disable-rendezvous \
---disable-hslookup \
---disable-all-vads
+  ./configure --with-layout=debian \
+--program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' \
+--with-readline
   make
 }
 
-package() {
+package_virtuoso-base() {
+  pkgdesc='A scalable cross-platform server of virtuoso (very minimal 
installation)'
+  depends=('libldap')
+
   # install server
-  cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/virtuoso
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/virtuoso
   make DESTDIR=${pkgdir} install
 
   # install driver
-  cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/driver
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/driver
   make DESTDIR=${pkgdir} install
 
-  # Install some useful tools; rename to avoid conflicts
+  # Install some useful tools; rename to avoid conflicts with unixodbc
   for bin in isql isqlw; do
-install -Dm755 ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/tests/$bin 
\
+install -Dm755 ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/tests/$bin 
\
   ${pkgdir}/usr/bin/$bin-vt
   done
 }
+
+package_virtuoso() {
+  pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data 
Management with Web Application Server and Web Services Platform functionality'
+  depends=('virtuoso-base' 'libxml2')
+
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # remove conflicts with virtuoso-base
+  rm "${pkgdir}"/usr/bin/virtuoso-t
+  rm "${pkgdir}"/usr/lib/libvirtuoso-t.a
+  rm "${pkgdir}"/usr/lib/virtodbc.{a,so}
+  rm "${pkgdir}"/usr/lib/virtodbc_r.{a,so}
+  rm "${pkgdir}"/usr/lib/virtodbcu.{a,so}
+  rm "${pkgdir}"/usr/lib/virtodbcu_r.{a,so}
+}



[arch-commits] Commit in virtuoso/repos (4 files)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:01:27
  Author: andrea
Revision: 163677

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

Added:
  virtuoso/repos/extra-i686/PKGBUILD
(from rev 163676, virtuoso/trunk/PKGBUILD)
  virtuoso/repos/extra-x86_64/PKGBUILD
(from rev 163676, virtuoso/trunk/PKGBUILD)
Deleted:
  virtuoso/repos/extra-i686/PKGBUILD
  virtuoso/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |  107 +++-
 extra-x86_64/PKGBUILD |  107 +++-
 2 files changed, 122 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 18:00:56 UTC (rev 163676)
+++ extra-i686/PKGBUILD 2012-07-17 18:01:27 UTC (rev 163677)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=virtuoso
-pkgver=6.1.5.20120630
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data 
Management with Web Application Server and Web Services Platform functionality'
-url='http://virtuoso.openlinksw.com/wiki/main/Main/'
-license=('GPL')
-depends=('libldap')
-makedepends=('bison' 'flex' 'gperf')
-options=('!libtool')
-source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz";)
-#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz";)
-md5sums=('1364679ffdbc6b0c16eadf6dee0e2676')
-
-build() {
-  cd ${srcdir}/${pkgname}-opensource-${pkgver}
-
-  ./autogen.sh
-  ./configure --prefix=/usr \
---localstatedir=/var \
---sysconfdir=/etc \
---disable-rendezvous \
---disable-hslookup \
---disable-all-vads
-  make
-}
-
-package() {
-  # install server
-  cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/virtuoso
-  make DESTDIR=${pkgdir} install
-
-  # install driver
-  cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/driver
-  make DESTDIR=${pkgdir} install
-
-  # Install some useful tools; rename to avoid conflicts
-  for bin in isql isqlw; do
-install -Dm755 ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/tests/$bin 
\
-  ${pkgdir}/usr/bin/$bin-vt
-  done
-}

Copied: virtuoso/repos/extra-i686/PKGBUILD (from rev 163676, 
virtuoso/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 18:01:27 UTC (rev 163677)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Massimiliano Torromeo 
+
+pkgbase=virtuoso
+pkgname=('virtuoso' 'virtuoso-base')
+pkgver=6.1.5.20120717
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://virtuoso.openlinksw.com/wiki/main/Main/'
+license=('GPL')
+makedepends=('libldap' 'bison' 'flex' 'gperf' 'net-tools' 'libxml2')
+options=('!libtool')
+source=("ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
+#source=("http://downloads.sourceforge.net/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
+md5sums=('bee8d6ad91e888bab8fdd177063ca084')
+
+build() {
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
+
+  ./autogen.sh
+  ./configure --with-layout=debian \
+--program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' \
+--with-readline
+  make
+}
+
+package_virtuoso-base() {
+  pkgdesc='A scalable cross-platform server of virtuoso (very minimal 
installation)'
+  depends=('libldap')
+
+  # install server
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/virtuoso
+  make DESTDIR=${pkgdir} install
+
+  # install driver
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/driver
+  make DESTDIR=${pkgdir} install
+
+  # Install some useful tools; rename to avoid conflicts with unixodbc
+  for bin in isql isqlw; do
+install -Dm755 ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/tests/$bin 
\
+  ${pkgdir}/usr/bin/$bin-vt
+  done
+}
+
+package_virtuoso() {
+  pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data 
Management with Web Application Server and Web Services Platform functionality'
+  depends=('virtuoso-base' 'libxml2')
+
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # remove conflicts with virtuoso-base
+  rm "${pkgdir}"/usr/bin/virtuoso-t
+  rm "${pkgdir}"/usr/lib/libvirtuoso-t.a
+  rm "${pkgdir}"/usr/lib/virtodbc.{a,so}
+  rm "${pkgdir}"/usr/lib/virtodbc_r.{a,so}
+  rm "${pkgdir}"/usr/lib/virtodbcu.{a,so}
+  rm "${pkgdir}"/usr/lib/virtodbcu_r.{a,so}
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-17 18:00:56 UTC (rev 163676)
+++ extra-x86_64/PKGBUILD   2012-07-17 18:01:27 UTC (rev 163677)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=virtuoso
-pkgver=6.1.5.20120630
-pkgrel=1
-arch=('i686' 

[arch-commits] Commit in pyqt/trunk (PKGBUILD fix-pyuic4.patch)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:10:36
  Author: andrea
Revision: 163678

Fix regression (FS#30728)

Added:
  pyqt/trunk/fix-pyuic4.patch
Modified:
  pyqt/trunk/PKGBUILD

--+
 PKGBUILD |   14 +---
 fix-pyuic4.patch |   91 +
 2 files changed, 101 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 18:01:27 UTC (rev 163677)
+++ PKGBUILD2012-07-17 18:10:36 UTC (rev 163678)
@@ -6,17 +6,23 @@
 pkgbase=pyqt
 pkgname=('pyqt-common' 'pyqt' 'python2-pyqt')
 pkgver=4.9.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://riverbankcomputing.co.uk/software/pyqt/intro";
 license=('GPL')
 makedepends=('qt' 'python-sip' 'python-dbus' 'python2-sip' 'phonon'
  'python-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
- 
source=("http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('a0b6a820633366365af5124ddbd059c7')
+source=("http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz";
+'fix-pyuic4.patch')
+md5sums=('a0b6a820633366365af5124ddbd059c7'
+ '097651aea0bafded5abdfd6d62afd2ad')
 
 build() {
-  cd "${srcdir}"
+  # FS#30728
+  cd "${srcdir}"/PyQt-x11-gpl-${pkgver}
+  patch -p1 -i "${srcdir}"/fix-pyuic4.patch
+  cd ..
+  
   cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
 
   cd "${srcdir}/PyQt-x11-gpl-${pkgver}"

Added: fix-pyuic4.patch
===
--- fix-pyuic4.patch(rev 0)
+++ fix-pyuic4.patch2012-07-17 18:10:36 UTC (rev 163678)
@@ -0,0 +1,91 @@
+# HG changeset patch
+# User Phil Thompson 
+# Date 2012-07-13 13:39:28 +0100
+# Node ID 29b668ada14c1428a3bbfe8f0324c6626bd5ac9a
+# Parent  fd0f3da9d79ca9858d10a20c15fb85456cb832d7
+Fixed a regression in pyuic's handling of custom widgets.
+
+diff --git a/pyuic/uic/Compiler/qobjectcreator.py 
b/pyuic/uic/Compiler/qobjectcreator.py
+--- a/pyuic/uic/Compiler/qobjectcreator.py
 b/pyuic/uic/Compiler/qobjectcreator.py
+@@ -1,6 +1,6 @@
+ #
+ ##
+-## Copyright (C) 2011 Riverbank Computing Limited.
++## Copyright (C) 2012 Riverbank Computing Limited.
+ ## Copyright (C) 2006 Thorsten Marek.
+ ## All right reserved.
+ ##
+@@ -100,7 +100,6 @@
+ assert widgetClass not in self._widgets 
+ self._widgets[widgetClass] = (baseClass, module)
+ 
+-
+ def _resolveBaseclass(self, baseClass):
+ try:
+ for x in range(0, 10):
+@@ -114,19 +113,17 @@
+ except KeyError:
+ raise ValueError("unknown baseclass %s" % baseClass)
+ 
+-
+ def search(self, cls):
+ try:
+-self._usedWidgets.add(cls)
+ baseClass = self._resolveBaseclass(self._widgets[cls][0])
+ DEBUG("resolved baseclass of %s: %s" % (cls, baseClass))
+-
+-return type(cls, (baseClass,),
+-{"module" : ""})
+-
+ except KeyError:
+ return None
+ 
++self._usedWidgets.add(cls)
++
++return type(cls, (baseClass, ), {"module" : ""})
++
+ def _writeImportCode(self):
+ imports = {}
+ for widget in self._usedWidgets:
+diff --git a/pyuic/uic/objcreator.py b/pyuic/uic/objcreator.py
+--- a/pyuic/uic/objcreator.py
 b/pyuic/uic/objcreator.py
+@@ -102,19 +102,26 @@
+ self._modules.append(self._customWidgets)
+ 
+ def createQObject(self, classname, *args, **kwargs):
+-# Handle scoped names, typically static factory methods.
+-parts = classname.split('.')
+-factory = self.findQObjectType(parts[0])
++# Handle regular and custom widgets.
++factory = self.findQObjectType(classname)
+ 
+-if factory is not None:
+-for part in parts[1:]:
+-factory = getattr(factory, part, None)
+-if factory is None:
+-break
+-else:
+-return self._cpolicy.instantiate(factory, *args, **kwargs)
++if factory is None:
++# Handle scoped names, typically static factory methods.
++parts = classname.split('.')
+ 
+-raise NoSuchWidgetError(classname)
++if len(parts) > 1:
++factory = self.findQObjectType(parts[0])
++
++if factory is not None:
++for part in parts[1:]:
++factory = getattr(factory, part, None)
++if factory is None:
++break
++
++if factory is None:
++raise NoSuchWidgetError(classname)
++
++return self._cpolicy.instantiate(factory, *args, **kwargs)
+ 
+ def invoke(self, rname, method, args=()):
+ return self._

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

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:11:04
  Author: andrea
Revision: 163679

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

Added:
  pyqt/repos/extra-i686/PKGBUILD
(from rev 163678, pyqt/trunk/PKGBUILD)
  pyqt/repos/extra-i686/fix-pyuic4.patch
(from rev 163678, pyqt/trunk/fix-pyuic4.patch)
  pyqt/repos/extra-x86_64/PKGBUILD
(from rev 163678, pyqt/trunk/PKGBUILD)
  pyqt/repos/extra-x86_64/fix-pyuic4.patch
(from rev 163678, pyqt/trunk/fix-pyuic4.patch)
Deleted:
  pyqt/repos/extra-i686/PKGBUILD
  pyqt/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |  192 
 extra-i686/fix-pyuic4.patch   |   91 ++
 extra-x86_64/PKGBUILD |  192 
 extra-x86_64/fix-pyuic4.patch |   91 ++
 4 files changed, 380 insertions(+), 186 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 18:10:36 UTC (rev 163678)
+++ extra-i686/PKGBUILD 2012-07-17 18:11:04 UTC (rev 163679)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt
-pkgname=('pyqt-common' 'pyqt' 'python2-pyqt')
-pkgver=4.9.4
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('qt' 'python-sip' 'python-dbus' 'python2-sip' 'phonon'
- 'python-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
- 
source=("http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('a0b6a820633366365af5124ddbd059c7')
-
-build() {
-  cd "${srcdir}"
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd "${srcdir}/PyQt-x11-gpl-${pkgver}"
-  python configure.py \
---confirm-license \
---qsci-api
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd "${srcdir}/Py2Qt-x11-gpl-${pkgver}"
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt-common(){
-  pkgdesc="Common PyQt files shared between pyqt and python2-pyqt"
-  
-  cd "${srcdir}/PyQt-x11-gpl-${pkgver}"
-  make -C pyrcc DESTDIR="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" install
-  make -C designer INSTALL_ROOT="${pkgdir}" install
-  
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt4.api
-}
-
-package_pyqt(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-
-  cd "${srcdir}/PyQt-x11-gpl-${pkgver}"
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpythonplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  provides=('python2-qt')
-
-  cd "${srcdir}/Py2Qt-x11-gpl-${pkgver}"
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with pyqt
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-  
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpythonplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt4.api
-}

Copied: pyqt/repos/extra-i686/PKGBUILD (from rev 163678, pyqt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 18:11:04 UTC (rev 163679)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt
+pkgname=('pyqt-common' 'pyqt' 'python2-pyqt')
+pkgver=4.9.4
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+ma

[arch-commits] Commit in soprano/trunk (PKGBUILD)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:38:10
  Author: andrea
Revision: 163680

upgpkg: soprano 2.7.6-2

soprano only needs virtuoso-base

Modified:
  soprano/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 18:11:04 UTC (rev 163679)
+++ PKGBUILD2012-07-17 18:38:10 UTC (rev 163680)
@@ -4,12 +4,12 @@
 
 pkgname=soprano
 pkgver=2.7.6
-pkgrel=1
+pkgrel=2
 pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
 arch=('i686' 'x86_64')
 url='http://soprano.sourceforge.net/'
 license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso')
+depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
 makedepends=('cmake' 'openjdk6' 'doxygen')
 
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
 md5sums=('8eee947956134ea4aa2d1e94ddbd551e')



[arch-commits] Commit in soprano (5 files)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:38:40
  Author: andrea
Revision: 163681

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

Added:
  soprano/repos/extra-i686/PKGBUILD
(from rev 163680, soprano/trunk/PKGBUILD)
  soprano/repos/extra-x86_64/PKGBUILD
(from rev 163680, soprano/trunk/PKGBUILD)
Modified:
  soprano/kde-unstable/PKGBUILD
Deleted:
  soprano/repos/extra-i686/PKGBUILD
  soprano/repos/extra-x86_64/PKGBUILD

-+
 kde-unstable/PKGBUILD   |4 +-
 repos/extra-i686/PKGBUILD   |   68 +-
 repos/extra-x86_64/PKGBUILD |   68 +-
 3 files changed, 70 insertions(+), 70 deletions(-)

Modified: kde-unstable/PKGBUILD
===
--- kde-unstable/PKGBUILD   2012-07-17 18:38:10 UTC (rev 163680)
+++ kde-unstable/PKGBUILD   2012-07-17 18:38:40 UTC (rev 163681)
@@ -4,12 +4,12 @@
 
 pkgname=soprano
 pkgver=2.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
 arch=('i686' 'x86_64')
 url='http://soprano.sourceforge.net/'
 license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso')
+depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
 makedepends=('cmake' 'openjdk6' 'doxygen')
 
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
 md5sums=('273c3403aeb6d8a43e78a4887f50a385')

Deleted: repos/extra-i686/PKGBUILD
===
--- repos/extra-i686/PKGBUILD   2012-07-17 18:38:10 UTC (rev 163680)
+++ repos/extra-i686/PKGBUILD   2012-07-17 18:38:40 UTC (rev 163681)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=soprano
-pkgver=2.7.6
-pkgrel=1
-pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
-arch=('i686' 'x86_64')
-url='http://soprano.sourceforge.net/'
-license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso')
-makedepends=('cmake' 'openjdk6' 'doxygen')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('8eee947956134ea4aa2d1e94ddbd551e')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  . /etc/profile.d/openjdk6.sh
-  # we need the rpath
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSOPRANO_DISABLE_CLUCENE_INDEX=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: soprano/repos/extra-i686/PKGBUILD (from rev 163680, 
soprano/trunk/PKGBUILD)
===
--- repos/extra-i686/PKGBUILD   (rev 0)
+++ repos/extra-i686/PKGBUILD   2012-07-17 18:38:40 UTC (rev 163681)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=soprano
+pkgver=2.7.6
+pkgrel=2
+pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
+arch=('i686' 'x86_64')
+url='http://soprano.sourceforge.net/'
+license=('GPL' 'LGPL')
+depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
+makedepends=('cmake' 'openjdk6' 'doxygen')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('8eee947956134ea4aa2d1e94ddbd551e')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  . /etc/profile.d/openjdk6.sh
+  # we need the rpath
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: repos/extra-x86_64/PKGBUILD
===
--- repos/extra-x86_64/PKGBUILD 2012-07-17 18:38:10 UTC (rev 163680)
+++ repos/extra-x86_64/PKGBUILD 2012-07-17 18:38:40 UTC (rev 163681)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=soprano
-pkgver=2.7.6
-pkgrel=1
-pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
-arch=('i686' 'x86_64')
-url='http://soprano.sourceforge.net/'
-license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso')
-makedepends=('cmake' 'openjdk6' 'doxygen')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('8eee947956134ea4aa2d1e94ddbd551e')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  . /etc/profile.d/openjdk6.sh
-  # we need the rpath
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSOPRAN

[arch-commits] Commit in soprano/repos (4 files)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:39:18
  Author: andrea
Revision: 163682

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  soprano/repos/kde-unstable-i686/PKGBUILD
(from rev 163681, soprano/kde-unstable/PKGBUILD)
  soprano/repos/kde-unstable-x86_64/PKGBUILD
(from rev 163681, soprano/kde-unstable/PKGBUILD)
Deleted:
  soprano/repos/kde-unstable-i686/PKGBUILD
  soprano/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |   68 -
 kde-unstable-x86_64/PKGBUILD |   68 -
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-07-17 18:38:40 UTC (rev 163681)
+++ kde-unstable-i686/PKGBUILD  2012-07-17 18:39:18 UTC (rev 163682)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=soprano
-pkgver=2.8.0
-pkgrel=1
-pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
-arch=('i686' 'x86_64')
-url='http://soprano.sourceforge.net/'
-license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso')
-makedepends=('cmake' 'openjdk6' 'doxygen')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('273c3403aeb6d8a43e78a4887f50a385')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  . /etc/profile.d/openjdk6.sh
-  # we need the rpath
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSOPRANO_DISABLE_CLUCENE_INDEX=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: soprano/repos/kde-unstable-i686/PKGBUILD (from rev 163681, 
soprano/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-07-17 18:39:18 UTC (rev 163682)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=soprano
+pkgver=2.8.0
+pkgrel=2
+pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
+arch=('i686' 'x86_64')
+url='http://soprano.sourceforge.net/'
+license=('GPL' 'LGPL')
+depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
+makedepends=('cmake' 'openjdk6' 'doxygen')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('273c3403aeb6d8a43e78a4887f50a385')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  . /etc/profile.d/openjdk6.sh
+  # we need the rpath
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2012-07-17 18:38:40 UTC (rev 163681)
+++ kde-unstable-x86_64/PKGBUILD2012-07-17 18:39:18 UTC (rev 163682)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=soprano
-pkgver=2.8.0
-pkgrel=1
-pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
-arch=('i686' 'x86_64')
-url='http://soprano.sourceforge.net/'
-license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso')
-makedepends=('cmake' 'openjdk6' 'doxygen')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('273c3403aeb6d8a43e78a4887f50a385')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  . /etc/profile.d/openjdk6.sh
-  # we need the rpath
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSOPRANO_DISABLE_CLUCENE_INDEX=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: soprano/repos/kde-unstable-x86_64/PKGBUILD (from rev 163681, 
soprano/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2012-07-17 18:39:18 UTC (rev 163682)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=soprano
+pkgver=2.8.0
+pkgrel=2
+pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
+arch=('i686' 'x86_64')
+url='http://soprano.sourceforge.net/'
+license=('GPL' 'LGPL')
+depends=('qt' 'redland-storage-virtu

[arch-commits] Commit in calligra/trunk (PKGBUILD)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:48:41
  Author: andrea
Revision: 163683

Use internal wv2 (FS#30729)

Modified:
  calligra/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 18:39:18 UTC (rev 163682)
+++ PKGBUILD2012-07-17 18:48:41 UTC (rev 163683)
@@ -31,7 +31,7 @@
  'kdepimlibs' 'libpqxx' 'freetds' 'xbase'
  'kdegraphics-okular' 'gsl' 'kdeedu-marble'
  'libwpd' 'libwpg' 'pstoedit' 'glew'
- 'fftw' 'opengtl' 'lcms2' 'libkdcraw' 'wv2')
+ 'fftw' 'opengtl' 'lcms2' 'libkdcraw')
 groups=('calligra')
 
source=("http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.bz2";)
 md5sums=('469d639f17e3d6a186baabd899147e39')



[arch-commits] Commit in wv2/repos (extra-i686)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:49:22
  Author: andrea
Revision: 163684

db-remove: wv2 removed by andrea

Deleted:
  wv2/repos/extra-i686/



[arch-commits] Commit in wv2/repos (extra-x86_64)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:49:38
  Author: andrea
Revision: 163685

db-remove: wv2 removed by andrea

Deleted:
  wv2/repos/extra-x86_64/



[arch-commits] Commit in (wv2)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 14:50:36
  Author: andrea
Revision: 163686

this project is unmaintained; is part of calligra

Deleted:
  wv2/



[arch-commits] Commit in firefox/trunk (PKGBUILD shared-libs.patch)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 15:32:45
  Author: ibiru
Revision: 163687

update to 14.0.1

Added:
  firefox/trunk/shared-libs.patch
Modified:
  firefox/trunk/PKGBUILD

---+
 PKGBUILD  |   14 --
 shared-libs.patch |   12 
 2 files changed, 20 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 18:50:36 UTC (rev 163686)
+++ PKGBUILD2012-07-17 19:32:45 UTC (rev 163687)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=13.0.1
+pkgver=14.0.1
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=('i686' 'x86_64')
@@ -12,29 +12,31 @@
  'libnotify' 'desktop-file-utils' 'hicolor-icon-theme'
  'libvpx' 'libevent' 'nss>=3.13.3' 'hunspell' 'sqlite')
 makedepends=('unzip' 'zip' 'diffutils' 'python2' 'wireless_tools' 'yasm' 'mesa'
- 'autoconf2.13' 'libidl2' 'xorg-server-xvfb' 'imake' 'gcc>=4.7.1')
+ 'autoconf2.13' 'libidl2' 'xorg-server-xvfb' 'imake')
 optdepends=('wireless_tools: Location detection via available WiFi networks')
 url="http://www.mozilla.org/projects/firefox";
 install=firefox.install
 options=(!emptydirs)
 
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
-mozconfig firefox.desktop firefox-install-dir.patch vendor.js)
-md5sums=('82deadb501c7fc0e9fa6b025f51f05a1'
+mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch)
+md5sums=('c2f884f0f6c41c65cf20f678a1ee7191'
  '5644c7b42f51013e2023787938fa955e'
  'bdeb0380c7fae30dd0ead6d2d3bc5873'
  '594523c536a9be951b52c90dd85aff18'
- '0d053487907de4376d67d8f499c5502b')
+ '0d053487907de4376d67d8f499c5502b'
+ '52e52f840a49eb1d14be1c0065b03a93')
 
 build() {
   cd mozilla-release
 
   cp ../mozconfig .mozconfig
   patch -Np1 -i ../firefox-install-dir.patch
+  patch -Np1 -i ../shared-libs.patch
 
   # Fix PRE_RELEASE_SUFFIX
   sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' \
 browser/base/Makefile.in
-
+  
   export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/firefox"
   export PYTHON="/usr/bin/python2"
   export MOZ_MAKE_FLAGS="$MAKEFLAGS"

Added: shared-libs.patch
===
--- shared-libs.patch   (rev 0)
+++ shared-libs.patch   2012-07-17 19:32:45 UTC (rev 163687)
@@ -0,0 +1,12 @@
+diff -Nur mozilla-release.orig/browser/installer/Makefile.in 
mozilla-release/browser/installer/Makefile.in
+--- mozilla-release.orig/browser/installer/Makefile.in 2012-07-17 
16:19:29.480356991 +
 mozilla-release/browser/installer/Makefile.in  2012-07-17 
17:32:41.250937293 +
+@@ -50,7 +50,7 @@
+ MOZ_PKG_MANIFEST_P = $(srcdir)/package-manifest.in
+ # Some files have been already bundled with xulrunner
+ ifndef SYSTEM_LIBXUL
+-MOZ_PKG_FATAL_WARNINGS = 1
++MOZ_PKG_FATAL_WARNINGS = 0
+ endif
+ 
+ MOZ_NONLOCALIZED_PKG_LIST = \



[arch-commits] Commit in virtuoso/trunk (PKGBUILD)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 15:47:38
  Author: andrea
Revision: 163688

Fix conflicts with unixodbc (FS#30730)

Modified:
  virtuoso/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 19:32:45 UTC (rev 163687)
+++ PKGBUILD2012-07-17 19:47:38 UTC (rev 163688)
@@ -5,7 +5,7 @@
 pkgbase=virtuoso
 pkgname=('virtuoso' 'virtuoso-base')
 pkgver=6.1.5.20120717
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://virtuoso.openlinksw.com/wiki/main/Main/'
 license=('GPL')
@@ -52,6 +52,7 @@
   make DESTDIR=${pkgdir} install
 
   # remove conflicts with virtuoso-base
+  rm "${pkgdir}"/usr/bin/isql{,w-vt}
   rm "${pkgdir}"/usr/bin/virtuoso-t
   rm "${pkgdir}"/usr/lib/libvirtuoso-t.a
   rm "${pkgdir}"/usr/lib/virtodbc.{a,so}



[arch-commits] Commit in virtuoso/repos (4 files)

2012-07-17 Thread Andrea Scarpino
Date: Tuesday, July 17, 2012 @ 15:51:54
  Author: andrea
Revision: 163689

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

Added:
  virtuoso/repos/extra-i686/PKGBUILD
(from rev 163688, virtuoso/trunk/PKGBUILD)
  virtuoso/repos/extra-x86_64/PKGBUILD
(from rev 163688, virtuoso/trunk/PKGBUILD)
Deleted:
  virtuoso/repos/extra-i686/PKGBUILD
  virtuoso/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |  123 
 extra-x86_64/PKGBUILD |  123 
 2 files changed, 124 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 19:47:38 UTC (rev 163688)
+++ extra-i686/PKGBUILD 2012-07-17 19:51:54 UTC (rev 163689)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Massimiliano Torromeo 
-
-pkgbase=virtuoso
-pkgname=('virtuoso' 'virtuoso-base')
-pkgver=6.1.5.20120717
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://virtuoso.openlinksw.com/wiki/main/Main/'
-license=('GPL')
-makedepends=('libldap' 'bison' 'flex' 'gperf' 'net-tools' 'libxml2')
-options=('!libtool')
-source=("ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
-#source=("http://downloads.sourceforge.net/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
-md5sums=('bee8d6ad91e888bab8fdd177063ca084')
-
-build() {
-  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
-
-  ./autogen.sh
-  ./configure --with-layout=debian \
---program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' \
---with-readline
-  make
-}
-
-package_virtuoso-base() {
-  pkgdesc='A scalable cross-platform server of virtuoso (very minimal 
installation)'
-  depends=('libldap')
-
-  # install server
-  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/virtuoso
-  make DESTDIR=${pkgdir} install
-
-  # install driver
-  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/driver
-  make DESTDIR=${pkgdir} install
-
-  # Install some useful tools; rename to avoid conflicts with unixodbc
-  for bin in isql isqlw; do
-install -Dm755 ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/tests/$bin 
\
-  ${pkgdir}/usr/bin/$bin-vt
-  done
-}
-
-package_virtuoso() {
-  pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data 
Management with Web Application Server and Web Services Platform functionality'
-  depends=('virtuoso-base' 'libxml2')
-
-  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # remove conflicts with virtuoso-base
-  rm "${pkgdir}"/usr/bin/virtuoso-t
-  rm "${pkgdir}"/usr/lib/libvirtuoso-t.a
-  rm "${pkgdir}"/usr/lib/virtodbc.{a,so}
-  rm "${pkgdir}"/usr/lib/virtodbc_r.{a,so}
-  rm "${pkgdir}"/usr/lib/virtodbcu.{a,so}
-  rm "${pkgdir}"/usr/lib/virtodbcu_r.{a,so}
-}

Copied: virtuoso/repos/extra-i686/PKGBUILD (from rev 163688, 
virtuoso/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 19:51:54 UTC (rev 163689)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Massimiliano Torromeo 
+
+pkgbase=virtuoso
+pkgname=('virtuoso' 'virtuoso-base')
+pkgver=6.1.5.20120717
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://virtuoso.openlinksw.com/wiki/main/Main/'
+license=('GPL')
+makedepends=('libldap' 'bison' 'flex' 'gperf' 'net-tools' 'libxml2')
+options=('!libtool')
+source=("ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
+#source=("http://downloads.sourceforge.net/${pkgbase}/${pkgbase}-opensource-${pkgver}.tar.gz";)
+md5sums=('bee8d6ad91e888bab8fdd177063ca084')
+
+build() {
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
+
+  ./autogen.sh
+  ./configure --with-layout=debian \
+--program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' \
+--with-readline
+  make
+}
+
+package_virtuoso-base() {
+  pkgdesc='A scalable cross-platform server of virtuoso (very minimal 
installation)'
+  depends=('libldap')
+
+  # install server
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/virtuoso
+  make DESTDIR=${pkgdir} install
+
+  # install driver
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/driver
+  make DESTDIR=${pkgdir} install
+
+  # Install some useful tools; rename to avoid conflicts with unixodbc
+  for bin in isql isqlw; do
+install -Dm755 ${srcdir}/${pkgbase}-opensource-${pkgver}/binsrc/tests/$bin 
\
+  ${pkgdir}/usr/bin/$bin-vt
+  done
+}
+
+package_virtuoso() {
+  pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data 
Management with Web Application Server and Web Services Platform functionality'
+  depends=('virtuoso-base' 'libxml2')
+
+  cd ${srcdir}/${pkgbase}-opensource-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # remove conflicts with virtuoso-base
+  rm "${pkgdir}"/usr/bin/isql{,w-vt}
+  rm "${pkgdi

[arch-commits] Commit in firefox/repos (26 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 18:24:22
  Author: ibiru
Revision: 163690

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

Added:
  firefox/repos/extra-i686/PKGBUILD
(from rev 163689, firefox/trunk/PKGBUILD)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 163689, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox.desktop
(from rev 163689, firefox/trunk/firefox.desktop)
  firefox/repos/extra-i686/firefox.install
(from rev 163689, firefox/trunk/firefox.install)
  firefox/repos/extra-i686/mozconfig
(from rev 163689, firefox/trunk/mozconfig)
  firefox/repos/extra-i686/shared-libs.patch
(from rev 163689, firefox/trunk/shared-libs.patch)
  firefox/repos/extra-i686/vendor.js
(from rev 163689, firefox/trunk/vendor.js)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 163689, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 163689, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 163689, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/firefox.install
(from rev 163689, firefox/trunk/firefox.install)
  firefox/repos/extra-x86_64/mozconfig
(from rev 163689, firefox/trunk/mozconfig)
  firefox/repos/extra-x86_64/shared-libs.patch
(from rev 163689, firefox/trunk/shared-libs.patch)
  firefox/repos/extra-x86_64/vendor.js
(from rev 163689, firefox/trunk/vendor.js)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/firefox.install
  firefox/repos/extra-i686/mozconfig
  firefox/repos/extra-i686/vendor.js
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/firefox.install
  firefox/repos/extra-x86_64/mozconfig
  firefox/repos/extra-x86_64/vendor.js

+
 extra-i686/PKGBUILD|  161 +++---
 extra-i686/firefox-install-dir.patch   |   56 +-
 extra-i686/firefox.desktop |  162 +++
 extra-i686/firefox.install |   26 ++--
 extra-i686/mozconfig   |   76 +++---
 extra-i686/shared-libs.patch   |   12 ++
 extra-i686/vendor.js   |   18 +--
 extra-x86_64/PKGBUILD  |  161 +++---
 extra-x86_64/firefox-install-dir.patch |   56 +-
 extra-x86_64/firefox.desktop   |  162 +++
 extra-x86_64/firefox.install   |   26 ++--
 extra-x86_64/mozconfig |   76 +++---
 extra-x86_64/shared-libs.patch |   12 ++
 extra-x86_64/vendor.js |   18 +--
 14 files changed, 522 insertions(+), 500 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 163689:163690 to see the changes.


[arch-commits] Commit in gnome-screensaver/trunk (PKGBUILD)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 18:25:47
  Author: ibiru
Revision: 163691

update to 3.4.4

Modified:
  gnome-screensaver/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 22:24:22 UTC (rev 163690)
+++ PKGBUILD2012-07-17 22:25:47 UTC (rev 163691)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-screensaver
-pkgver=3.4.3
+pkgver=3.4.4
 pkgrel=1
 pkgdesc="Screensaver designed to integrate well with the GNOME desktop."
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 install=gnome-screensaver.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
gnome-screensaver.pam)
-sha256sums=('76bea2526c6065e5d182e23fda8e75eb2e0afe9d1d40301b019a3cfc39d95a3e'
+sha256sums=('dae4be9daa2c3db15f614dd004aa858e32e5fc5d1818a8317167441097b57904'
 'c19870c4f2d6e91ba0eea2603753a74e0c5c82ff5fa3cacb1198027a38d0a6cb')
 
 build() {



[arch-commits] Commit in gnome-screensaver/repos (12 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 18:26:51
  Author: ibiru
Revision: 163692

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

Added:
  gnome-screensaver/repos/extra-i686/PKGBUILD
(from rev 163691, gnome-screensaver/trunk/PKGBUILD)
  gnome-screensaver/repos/extra-i686/gnome-screensaver.install
(from rev 163691, gnome-screensaver/trunk/gnome-screensaver.install)
  gnome-screensaver/repos/extra-i686/gnome-screensaver.pam
(from rev 163691, gnome-screensaver/trunk/gnome-screensaver.pam)
  gnome-screensaver/repos/extra-x86_64/PKGBUILD
(from rev 163691, gnome-screensaver/trunk/PKGBUILD)
  gnome-screensaver/repos/extra-x86_64/gnome-screensaver.install
(from rev 163691, gnome-screensaver/trunk/gnome-screensaver.install)
  gnome-screensaver/repos/extra-x86_64/gnome-screensaver.pam
(from rev 163691, gnome-screensaver/trunk/gnome-screensaver.pam)
Deleted:
  gnome-screensaver/repos/extra-i686/PKGBUILD
  gnome-screensaver/repos/extra-i686/gnome-screensaver.install
  gnome-screensaver/repos/extra-i686/gnome-screensaver.pam
  gnome-screensaver/repos/extra-x86_64/PKGBUILD
  gnome-screensaver/repos/extra-x86_64/gnome-screensaver.install
  gnome-screensaver/repos/extra-x86_64/gnome-screensaver.pam

+
 extra-i686/PKGBUILD|   74 +++
 extra-i686/gnome-screensaver.install   |   14 ++---
 extra-i686/gnome-screensaver.pam   |6 +-
 extra-x86_64/PKGBUILD  |   74 +++
 extra-x86_64/gnome-screensaver.install |   14 ++---
 extra-x86_64/gnome-screensaver.pam |6 +-
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 22:25:47 UTC (rev 163691)
+++ extra-i686/PKGBUILD 2012-07-17 22:26:51 UTC (rev 163692)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-screensaver
-pkgver=3.4.3
-pkgrel=1
-pkgdesc="Screensaver designed to integrate well with the GNOME desktop."
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://live.gnome.org/GnomeScreensaver";
-backup=(etc/pam.d/gnome-screensaver)
-depends=('dbus-glib' 'libgnomekbd' 'gnome-desktop' 'gsettings-desktop-schemas' 
'libsystemd')
-makedepends=('pkgconfig' 'intltool' 'libxss')
-groups=('gnome')
-options=(!emptydirs)
-install=gnome-screensaver.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-   gnome-screensaver.pam)
-sha256sums=('76bea2526c6065e5d182e23fda8e75eb2e0afe9d1d40301b019a3cfc39d95a3e'
-'c19870c4f2d6e91ba0eea2603753a74e0c5c82ff5fa3cacb1198027a38d0a6cb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/gnome-screensaver \
-  --localstatedir=/var \
-  --with-mit-ext --with-systemd
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 ../gnome-screensaver.pam "$pkgdir/etc/pam.d/gnome-screensaver"
-}

Copied: gnome-screensaver/repos/extra-i686/PKGBUILD (from rev 163691, 
gnome-screensaver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-17 22:26:51 UTC (rev 163692)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-screensaver
+pkgver=3.4.4
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the GNOME desktop."
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://live.gnome.org/GnomeScreensaver";
+backup=(etc/pam.d/gnome-screensaver)
+depends=('dbus-glib' 'libgnomekbd' 'gnome-desktop' 'gsettings-desktop-schemas' 
'libsystemd')
+makedepends=('pkgconfig' 'intltool' 'libxss')
+groups=('gnome')
+options=(!emptydirs)
+install=gnome-screensaver.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+   gnome-screensaver.pam)
+sha256sums=('dae4be9daa2c3db15f614dd004aa858e32e5fc5d1818a8317167441097b57904'
+'c19870c4f2d6e91ba0eea2603753a74e0c5c82ff5fa3cacb1198027a38d0a6cb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/gnome-screensaver \
+  --localstatedir=/var \
+  --with-mit-ext --with-systemd
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../gnome-screensaver.pam "$pkgdir/etc/pam.d/gnome-screensaver"
+}

Deleted: extra-i686/gnome-screensaver.install
===
--- extra-i686/gnome-screensaver.install2012-07-17 22:25:47 UTC (rev 
163691)
+++ extra-i686/gnome-screensaver.install2012-07-17 22:26:51 UTC (rev 
163692)
@@ -1,7 +0,0 @@
-pkgname=gnome-screensaver
-
-pre_upgrade

[arch-commits] Commit in firefox-i18n/trunk (PKGBUILD)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 18:48:48
  Author: ibiru
Revision: 163693

update to 14.0.1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  162 ++---
 1 file changed, 81 insertions(+), 81 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 22:26:51 UTC (rev 163692)
+++ PKGBUILD2012-07-17 22:48:48 UTC (rev 163693)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=13.0.1
+pkgver=14.0.1
 pkgname=('firefox-i18n'
 'firefox-i18n-af'
 'firefox-i18n-ak'
@@ -745,83 +745,83 @@
   cd "${srcdir}"
   install -Dm644 firefox-i18n-$pkgver-zu.xpi 
"${pkgdir}/$_path/langpack...@firefox.mozilla.org.xpi"
 }
-md5sums=('59c80abcb0ed19b444c88115464eac26'
- 'ac051c55dd9daaa772c4ac893af1138e'
- '44c06494b35472f4845435b096528cf4'
- '4c3657d3a968ced57bfc26b10f97c990'
- '7e030c0089f29939e55721aeea486554'
- 'ba4a3ab7906d2a121a2579449e9413ed'
- 'd631b45c73871ef4f3698ff859fb4f91'
- 'b575b886006aa4d330052fde29ef60ff'
- '7d4b1f108205c24dd9e4ab8231273050'
- '5f93c0283b32c4ae3c6ea99fe45d855f'
- '6f7c166ead1ecd5955c938c58150be72'
- 'c6ad080d33ce0650109b05aac4289937'
- 'dfac9a3073cb3fd1fd1af2daacc815dc'
- '9d56d413565f192691e0271ea0e49e40'
- '5ac0fab556f0d670ae28886c1371dd7c'
- 'e0366107ae4801a9c5f7841ef833004d'
- '4232cd58d5b8f7dfde4438090e50b50f'
- '61ba59182c2f608225f28d976b25733b'
- '6cd93da9c2bf1c9cc2887a168e04536d'
- '3e3ed4d4416e4ee5aaa226a17c2f2663'
- 'b73e8e8cf8d6fda8d1a3b880ab48be5c'
- '8f63b7436cb0c7cb433f29d1c329fadc'
- '648b7abbafad7a7202683474a6b4f8a4'
- 'fabaa3e713107df2f24b3cc261d18666'
- 'b517b537282427122864ba4beafbf4bc'
- '3157514c12c06b4f783d87a6e876fc5e'
- 'd9411175a8f3bda0c36d61511b3ce877'
- '16e927d57f8412b6951b60986d14b447'
- '35390661dd66ed5fa278c5fce00df710'
- '288d55c9bab35ec805ba66a03996844f'
- '981898e88bb4ffa02a22e9ce39c8d205'
- 'd9d3db05d18d940953c2263042a0d430'
- '2f5b312acd70f16a11b9a9c4dcc5bb67'
- '37d125497bf3ec3a75760be9a900c232'
- '08c137c94ac51c65c01a5a96e7d95d30'
- 'e5c14c495b4a1b23287ca24729baaf86'
- 'a17905ba225cdcb201e5e193d312333a'
- '9b438146c585b2caad8caca47313bf9f'
- '6aaaef95aec14f20fe132eabd317a802'
- 'e0a03ef9b54f8177c9bf6ed57549320e'
- 'c3b76f03829b6452dd4fa2c56fd6e709'
- 'd78b54e0406ca4ec31482df96f31bad5'
- 'c8961404672a27c41ede5cb81dbf8c22'
- '81bbbfcde9a1bd04d631754607dc896b'
- 'cddb184a54d73814023fb8be738d9db3'
- 'f45261a72386548eb8501c80c6f8df3f'
- 'ab59a8edabe8db652fc9b7827d8c178b'
- 'd3bd9fc94d420b501471c295666b4988'
- '94b4d3e0d53f6f1dc5a33353c30d06f2'
- '3e79c03ac78571a0bd77008b52fd5236'
- '76466c7d70174857f1c9991aaf3d4217'
- '75b8a73de33ca836f8e8326ed874d0dc'
- '1f11060f24b49c86c3b2617a83a49c8e'
- '70bd94b7f6c2ff89f50c17dd66ad5764'
- '06515312df6d168e41a39efdba7b3276'
- '63bfeab3ccec53e9c7191ee6c63155e1'
- '1c1a454d1eae10ae9ad077ee9373ba7f'
- '2b343ea2aab4e7bcebbeaf91fda6662e'
- '50325c9e1d8a2978c83ea50b4a4c4679'
- '83958948b2595ea88b665cf1e444290b'
- '67e6c07ec5b0b189751656d369d8cfa9'
- 'fac12081a72dfb6863a4015788bb9b8b'
- 'ed5665f6a1c849f8f47d0747fd676e90'
- '3980fc8440e57bb0d9552d8c4a63706f'
- '6a381d173d2892d3d5811bbec1a0f35e'
- '1c5ea403f6305cdbba722ea33932b7ef'
- 'ff7973c4f3775188606b7c905a4b7ffa'
- '43553adc3a4f09eb202520edebcf54f3'
- '96c705b6dc2f5deabb6235db77252e95'
- 'c7ac00fa83b56646dd5005da08f247c9'
- 'a6b565ba115b78a0827d4d2067e42842'
- '8b660c4b8dcf8657c8bd6020867d29f1'
- '77414e264921025cfba63a1e294e27e4'
- '81a8771f7dd065179ba7461a0460584c'
- 'f50667cb4fef2e79f8d6946b11fcf752'
- 'cdc503e1fc7fc0271f9c7a138cf35876'
- '825ec0b64df9539d2cf3f43ee2f632c1'
- '194e482318e49fb1d6e37bf55dfbea62'
- '49875e1ea456a893231118a24f69f2b9'
- '063a7f43128742163565b746ff9f4639')
+md5sums=('b2d688d47e38f6d0c9f0f72f3a7452a2'
+ '1fe9ff0c82ec9283567071cd79a10a2d'
+ '1cfc8f596e96e8a032c1326a5a3b9e38'
+ 'ffed8a04edb6b35cdcae2606bce8ca95'
+ '65f145e3ef67aba07335aa2336a7bdba'
+ 'a13e07b8291b29ed66b69531747c289a'
+ '7b283fa60d749a030ac46f3b58dee32c'
+ '03b8eb8298a808d6cb42d58847c84cff'
+ 'c02aaea46929d3b52e359c38e5255c9a'
+ 'f7c2a3eb8c600b1739966cffa11df29b'
+ 'f2aefa8720f437c7e61572514e26157e'
+ 'f88255a970f6d658c832f1aed41b2114'
+ '5350c0189cfe37d01353d64c604a7a64'
+ '4690033411

[arch-commits] Commit in firefox-i18n/repos/extra-any (4 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 18:49:10
  Author: ibiru
Revision: 163694

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 163693, firefox-i18n/trunk/PKGBUILD)
  firefox-i18n/repos/extra-any/firefox-i18n.install
(from rev 163693, firefox-i18n/trunk/firefox-i18n.install)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD
  firefox-i18n/repos/extra-any/firefox-i18n.install

--+
 PKGBUILD | 1654 -
 firefox-i18n.install |   16 
 2 files changed, 835 insertions(+), 835 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 163693:163694 to see the changes.


[arch-commits] Commit in thunderbird-i18n/trunk (PKGBUILD)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 19:19:36
  Author: ibiru
Revision: 163695

update to 14.0

Modified:
  thunderbird-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  102 ++---
 1 file changed, 51 insertions(+), 51 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 22:49:10 UTC (rev 163694)
+++ PKGBUILD2012-07-17 23:19:36 UTC (rev 163695)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=13.0.1
+pkgver=14.0
 pkgname=('thunderbird-i18n-ar'
 #'thunderbird-i18n-af'
 'thunderbird-i18n-be'
@@ -472,53 +472,53 @@
   cd ${srcdir}
   install -Dm644 thunderbird-i18n-$pkgver-zh-TW.xpi 
"${pkgdir}/$_path/langpack-zh...@thunderbird.mozilla.org.xpi"
 }
-md5sums=('cc5fdea9c8f3767a4422a2c710bad17d'
- 'b810ca9597f668ec1494221b4ef0236c'
- 'ed40919021f9314bcedfe83d4479c156'
- '3be9de4bef6929b684fccb83d66899f3'
- '6f48d470e6340932c96f37e3843b55ad'
- '940c29a1695c8e4fb0a93f0d6cf2150b'
- '8e08c38b5b11a930a363721e52a70208'
- '35835a8b5b3dc0ac503bd9f4cbff0614'
- 'a81427893729718d05a988e816e9d683'
- 'a89b7c6c5353b263e398e7c81327f78b'
- 'c396bb17ac784bb4a1e299e2bf994191'
- 'a329e1fc2881c0b4f72db0c12efb4cbf'
- 'fa7d1951e31bd8dd0df3b75b2624a60e'
- '0510b44f02b8916a0e3bb004ced53157'
- '16e508e4f65f5bf9ff4a5bcd45a58435'
- 'ec303286aab02e4ce2c91ce9f571d66f'
- 'af90bcbe1c4d6f8e7e752fb274ac4fe4'
- '181cd6e1131b8e246435eb68f13a2afb'
- '49f22f37d8bdb5ef8b56576cb68c0951'
- '156fc2f33b1524d228623d99f75d6a94'
- 'dc5a3664144055bb3956e543ce45a45e'
- '1b1c63f8e91fc41d87246897125b8207'
- '8c347fd889a82195e3942798e0fdeced'
- '2d6582b31447ecc613dd699fd85d87bb'
- 'e6d7af3e9a4d70af46c87c1212f3f4b5'
- '26b7b16f8d14f933d0c271947c72334c'
- 'e038f27fc2c8919bb0205e736f1cc112'
- 'b3cd2f37ac58a20d2d775b03c7983990'
- '83fba3312befcbd7cc0bd2efaf6b1617'
- 'bcbfa3953a22190d523ade483e10347f'
- '4878947df78232f6a39e6939cb353c46'
- '0c0e4487f84aeee31ec97157221b20e2'
- '235f7b8d1ffa0f9a075fed1a5c019be3'
- 'd279fef6c5a122fb4a77858ced33bfe0'
- 'a892d87de1cb164d8bce27fe3eca7dd3'
- '7392d837ef17c0ac4060c48d2183202b'
- '7baa922057585b0ea9bb29714933eb9e'
- 'e5104bbdc40d5aca1e15b15a0d3ecade'
- '7f8a5b29106a0dd55ea5270541f4b1c6'
- 'cdadb5d5f428317f6206481df81fafdb'
- 'e616de17174b8c2fbf3bfde8934db61e'
- '52e7c593093b6986adc8d22198e2d350'
- 'fb381d53574089b674b9c47bfea40481'
- 'ab999616d5f7b6fd7c439ce2364506d1'
- 'b6084303342b4011c71a6b83bd8df0da'
- '3f61059841d0b7daeb37d9e9ae6a55db'
- '237e7cdb2542a548202e49cc92c4159d'
- '5759036555eb30470db3dab88d865ab1'
- 'bb21a17ca9049edd3dbdc381d4a22313'
- 'be61d55df02b6fe941a7f915fd431823')
+md5sums=('06b0b22f597ca5f8ed9c53c6fa47800d'
+ 'c4c0dbdda1ec3f5ff6e787c027affa8c'
+ 'f1037e9f8034e255b84993b11bec9f08'
+ '62b3b135906ebbdd4f85a1b96ec33cb5'
+ '71f51048897f631f851e51263f8f505c'
+ '70b475c125e92cdcd87a0209c3f26617'
+ '0cd0a2d6dfb1d3f6cd0e5254d40c694d'
+ '01edba2f2986b67b8c84dd7fd56c3b9d'
+ '6408a0562e37782d5874415834443893'
+ '3a39333b570bb15bdc6774a196667a61'
+ '0c4cea9b9261647af7e74933606245b3'
+ '830d8c255070f3fecb7631570fbd0fa7'
+ 'fea6375c630109877c3c8ee34d8a730a'
+ 'fd3935b483bf66b2563ca7ac84a39730'
+ '56d65a82971d0124a18e55de942bc9d8'
+ '1b7bfdc0754848bf1f39cf91d9cbaf67'
+ '2d1007ca7037a8b26569f77e2f8af2a4'
+ '3bb033d6221e7fe6fad2c021700404af'
+ 'b983152afc5c4579af383002f50e6341'
+ '55791f74517a30a96053faf4d55c3b9c'
+ 'a8afe68600857aea8c917a2ca242f441'
+ '7c0a2e0055880ae5dce46c2f032d137a'
+ '10aba4cd6eb642cf1d16b5bb41039ff6'
+ 'f0a4504821cb06e40c8e279854eb06e0'
+ '287c46c7bc49faf5f9105d4ae47a7ccd'
+ '2809a17528927d9bab5b1f36e670d412'
+ 'fe02ae167f8568caa8b2d90d0195f7db'
+ '5136f13a2a56765940400ca9bf0d4114'
+ '07ffe268ec9337b271298ffb0abe1d63'
+ '48ad591baf6b7e524c45fc22bbf32e54'
+ 'b04521738048ae31c722386ca43a6b18'
+ 'a9786c4ed3db377c9386bdfac08ae015'
+ 'c215e26c62a00e4570a15bc4077cfd05'
+ 'dc2af049ce8ea81e60baedde9ad2544b'
+ '358ea04a62faba05c7c4e185899acd37'
+ 'e1692adc8f11e44755b679cc50ab922d'
+ '5131506d0200c1bc01d35c3c8c6bf99f'
+ '4cdd47f9f5bbfc87392097d16348e930'
+ '13694ead5ffb8dba1ec46eae10b69f39'
+ '2f22f7de295be4c444aa447b027338d1'
+ 'f761ff225737369504ab79ef4800bf9f'
+ 'decfc529fcbce67a0192659b624847e3'
+ '7b28a409040a7bbfc076414

[arch-commits] Commit in thunderbird-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 19:27:27
  Author: ibiru
Revision: 163696

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 163695, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD | 1048 ++---
 1 file changed, 524 insertions(+), 524 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-17 23:19:36 UTC (rev 163695)
+++ PKGBUILD2012-07-17 23:27:27 UTC (rev 163696)
@@ -1,524 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=13.0.1
-pkgname=('thunderbird-i18n-ar'
-#'thunderbird-i18n-af'
-'thunderbird-i18n-be'
-'thunderbird-i18n-bn-bd'
-'thunderbird-i18n-bg'
-'thunderbird-i18n-br'
-'thunderbird-i18n-ca'
-'thunderbird-i18n-cs'
-'thunderbird-i18n-da'
-'thunderbird-i18n-de'
-'thunderbird-i18n-el'
-'thunderbird-i18n-en-gb'
-'thunderbird-i18n-es-ar'
-'thunderbird-i18n-es'
-'thunderbird-i18n-et'
-'thunderbird-i18n-eu'
-'thunderbird-i18n-fi'
-'thunderbird-i18n-fr'
-'thunderbird-i18n-fy-nl'
-'thunderbird-i18n-ga'
-'thunderbird-i18n-gd'
-'thunderbird-i18n-gl'
-'thunderbird-i18n-he'
-'thunderbird-i18n-hu'
-'thunderbird-i18n-id'
-'thunderbird-i18n-is'
-'thunderbird-i18n-it'
-'thunderbird-i18n-ja'
-'thunderbird-i18n-ko'
-'thunderbird-i18n-lt'
-'thunderbird-i18n-nb'
-'thunderbird-i18n-nl'
-'thunderbird-i18n-nn'
-'thunderbird-i18n-pa'
-'thunderbird-i18n-pl'
-'thunderbird-i18n-pt-br'
-'thunderbird-i18n-pt'
-'thunderbird-i18n-ro'
-'thunderbird-i18n-rm'
-'thunderbird-i18n-ru'
-'thunderbird-i18n-si'
-'thunderbird-i18n-sk'
-'thunderbird-i18n-sl'
-'thunderbird-i18n-sq'
-'thunderbird-i18n-sv'
-'thunderbird-i18n-ta-lk'
-'thunderbird-i18n-tr'
-'thunderbird-i18n-uk'
-'thunderbird-i18n-vi'
-'thunderbird-i18n-zh-cn'
-'thunderbird-i18n-zh-tw')
-pkgrel=1
-pkgdesc="Language pack for Thunderbird"
-arch=('any')
-url="http://www.mozilla.com/";
-license=('MPL' 'GPL')
-depends=("thunderbird>=$pkgver")
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
-source=(thunderbird-i18n-$pkgver-ar.xpi::$_url/ar.xpi
-#   thunderbird-i18n-$pkgver-af.xpi::$_url/af.xpi
-thunderbird-i18n-$pkgver-be.xpi::$_url/be.xpi
-thunderbird-i18n-$pkgver-bn-BD.xpi::$_url/bn-BD.xpi
-thunderbird-i18n-$pkgver-bg.xpi::$_url/bg.xpi
-thunderbird-i18n-$pkgver-br.xpi::$_url/br.xpi
-thunderbird-i18n-$pkgver-ca.xpi::$_url/ca.xpi
-thunderbird-i18n-$pkgver-cs.xpi::$_url/cs.xpi
-thunderbird-i18n-$pkgver-da.xpi::$_url/da.xpi
-thunderbird-i18n-$pkgver-de.xpi::$_url/de.xpi
-thunderbird-i18n-$pkgver-el.xpi::$_url/el.xpi
-thunderbird-i18n-$pkgver-en-GB.xpi::$_url/en-GB.xpi
-thunderbird-i18n-$pkgver-es-AR.xpi::$_url/es-AR.xpi
-thunderbird-i18n-$pkgver-es-ES.xpi::$_url/es-ES.xpi
-thunderbird-i18n-$pkgver-et.xpi::$_url/et.xpi
-thunderbird-i18n-$pkgver-eu.xpi::$_url/eu.xpi
-thunderbird-i18n-$pkgver-fi.xpi::$_url/fi.xpi
-thunderbird-i18n-$pkgver-fr.xpi::$_url/fr.xpi
-thunderbird-i18n-$pkgver-fy-NL.xpi::$_url/fy-NL.xpi
-thunderbird-i18n-$pkgver-ga-IE.xpi::$_url/ga-IE.xpi
-thunderbird-i18n-$pkgver-gd.xpi::$_url/gd.xpi
-thunderbird-i18n-$pkgver-gl.xpi::$_url/gl.xpi
-thunderbird-i18n-$pkgver-he.xpi::$_url/he.xpi
-thunderbird-i18n-$pkgver-hu.xpi::$_url/hu.xpi
-thunderbird-i18n-$pkgver-id.xpi::$_url/id.xpi
-thunderbird-i18n-$pkgver-is.xpi::$_url/is.xpi
-thunderbird-i18n-$pkgver-it.xpi::$_url/it.xpi
-thunderbird-i18n-$pkgver-ja.xpi::$_url/ja.xpi
-thunderbird-i18n-$pkgver-ko.xpi::$_url/ko.xpi
-thunderbird-i18n-$pkgver-lt.xpi::$_url/lt.xpi
-thunderbird-i18n-$pkgver-nb-NO.xpi::$_url/nb-NO.xpi
-thunderbird-i18n-$pkgver-nl.xpi::$_url/nl.xpi
-thunderbird-i18n-$pkgver-nn-NO.xpi::$_url/nn-NO.xpi
-thunderbird-i18n-$pkgver-pa-IN.xpi::$_url/pa-IN.xpi
-thunderbird-i18n-$pkgver-pl.xpi::$_url/pl.xpi
-thunderbird-i18n-$pkgver-pt-BR.xpi::$_url/pt-BR.xpi
-thunderbird-i18n-$pkgver-pt-PT.xpi::$_url/pt-PT.xpi
-thunderbird-i18n-$pkgver-rm.xpi::$_url/rm.xpi
-thunderbird-i18n-$pkgver-ro.xpi::$_url/ro.xpi
-thunderbird-i18n-$pkgver-ru.xpi::$_url/ru.xpi
-thunderbird-i18n-$pkgver-si.xpi::$_url/si.xpi
-thunderbird-i18n-$pkgver-sk.xpi::$_url/sk.xpi
- 

[arch-commits] Commit in thunderbird/trunk (PKGBUILD)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 19:29:06
  Author: ibiru
Revision: 163697

update to 14.0

Modified:
  thunderbird/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 23:27:27 UTC (rev 163696)
+++ PKGBUILD2012-07-17 23:29:06 UTC (rev 163697)
@@ -5,7 +5,7 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=13.0.1
+pkgver=14.0
 pkgrel=1
 pkgdesc="Standalone Mail/News reader"
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 thunderbird-install-dir.patch
 vendor.js)
 options=(!emptydirs)
-md5sums=('721088faf4bedfd8d7beb6f8295856d1'
+md5sums=('64dcfaa0aa47aa5fd8588090503fac9d'
  '41511a6bcdd04cf56706218e4670e631'
  'af3e5b344d2edf1c7d61bb0a5a96de9a'
  'aea906acf72c43dd82ead2fabcc1c6db'



[arch-commits] Commit in thunderbird/repos (24 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 19:30:05
  Author: ibiru
Revision: 163698

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

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 163697, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-i686/mozconfig
(from rev 163697, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 163697, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 163697, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-i686/thunderbird.install
(from rev 163697, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-i686/vendor.js
(from rev 163697, thunderbird/trunk/vendor.js)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 163697, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/mozconfig
(from rev 163697, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 163697, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 163697, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/thunderbird.install
(from rev 163697, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-x86_64/vendor.js
(from rev 163697, thunderbird/trunk/vendor.js)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/mozconfig
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-i686/thunderbird.install
  thunderbird/repos/extra-i686/vendor.js
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/mozconfig
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/thunderbird.install
  thunderbird/repos/extra-x86_64/vendor.js

+
 extra-i686/PKGBUILD|  124 +--
 extra-i686/mozconfig   |   80 -
 extra-i686/thunderbird-install-dir.patch   |   84 +-
 extra-i686/thunderbird.desktop |   26 ++---
 extra-i686/thunderbird.install |   24 ++---
 extra-i686/vendor.js   |   18 +--
 extra-x86_64/PKGBUILD  |  124 +--
 extra-x86_64/mozconfig |   80 -
 extra-x86_64/thunderbird-install-dir.patch |   84 +-
 extra-x86_64/thunderbird.desktop   |   26 ++---
 extra-x86_64/thunderbird.install   |   24 ++---
 extra-x86_64/vendor.js |   18 +--
 12 files changed, 356 insertions(+), 356 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-17 23:29:06 UTC (rev 163697)
+++ extra-i686/PKGBUILD 2012-07-17 23:30:05 UTC (rev 163698)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Alexander Baldeck 
-# Contributor: Dale Blount 
-# Contributor: Anders Bostrom 
-
-pkgname=thunderbird
-pkgver=13.0.1
-pkgrel=1
-pkgdesc="Standalone Mail/News reader"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL')
-url="http://www.mozilla.org/thunderbird/";
-depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 
'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 
'mime-types' 'mozilla-common' 'nss' 'sqlite' 'startup-notification')
-makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 
'mesa' 'autoconf2.13')
-optdepends=('libcanberra: for sound support')
-install=thunderbird.install
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2
-mozconfig
-thunderbird.desktop
-thunderbird-install-dir.patch
-vendor.js)
-options=(!emptydirs)
-md5sums=('721088faf4bedfd8d7beb6f8295856d1'
- '41511a6bcdd04cf56706218e4670e631'
- 'af3e5b344d2edf1c7d61bb0a5a96de9a'
- 'aea906acf72c43dd82ead2fabcc1c6db'
- '5a53179d14ae9631b7afe5e4d0fc0b25')
-
-build() {
-  cd comm-release
-  patch -Np1 -i "$srcdir/thunderbird-install-dir.patch"
-
-  cp "$srcdir/mozconfig" .mozconfig
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/thunderbird"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd comm-release
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  install -m644 "$srcdir"/vendor.js 
"$pkgdir/usr/lib/thunderbird/defaults/pref/"
-
-  for i in 16x16 22x22 24x24 32x32 48x48 256x256; do
-  install -Dm644 other-licenses/branding/thunderbird/mailicon${i/x*/}.png \
-  "$pkgdir/usr/share/icons/hicolor/$i/apps/thunderbird.png"
-  done
-
-  install -Dm644 "$srcdir/thunderbird.desktop

[arch-commits] Commit in xulrunner/trunk (PKGBUILD shared-libs.patch)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 20:41:33
  Author: ibiru
Revision: 163699

update to 14.0.1

Added:
  xulrunner/trunk/shared-libs.patch
Modified:
  xulrunner/trunk/PKGBUILD

---+
 PKGBUILD  |   13 -
 shared-libs.patch |   12 
 2 files changed, 20 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-17 23:30:05 UTC (rev 163698)
+++ PKGBUILD2012-07-18 00:41:33 UTC (rev 163699)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 # Contributor: Alexander Baldeck 
 pkgname=xulrunner
-pkgver=13.0
+pkgver=14.0.1
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -12,19 +12,22 @@
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
 mozconfig
-mozilla-pkgconfig.patch)
+mozilla-pkgconfig.patch
+shared-libs.patch)
 options=('!emptydirs')
 replaces=('xulrunner-oss')
-md5sums=('f50ca7656eec47030b396f39075fa980'
+md5sums=('c2f884f0f6c41c65cf20f678a1ee7191'
  '4afe63440e2f1935ff90de15db3b70f0'
- '27271ce647a83906ef7a24605e840d61')
+ '27271ce647a83906ef7a24605e840d61'
+ '52e52f840a49eb1d14be1c0065b03a93')
 
 build() {
   cd "$srcdir/mozilla-release"
   cp "$srcdir/mozconfig" .mozconfig
 
   #fix libdir/sdkdir - fedora
-  patch -Np1 -i "$srcdir/mozilla-pkgconfig.patch"
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
 
   export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
   export PYTHON="/usr/bin/python2"

Added: shared-libs.patch
===
--- shared-libs.patch   (rev 0)
+++ shared-libs.patch   2012-07-18 00:41:33 UTC (rev 163699)
@@ -0,0 +1,12 @@
+diff -Nur mozilla-release.orig/browser/installer/Makefile.in 
mozilla-release/browser/installer/Makefile.in
+--- mozilla-release.orig/browser/installer/Makefile.in 2012-07-17 
16:19:29.480356991 +
 mozilla-release/browser/installer/Makefile.in  2012-07-17 
17:32:41.250937293 +
+@@ -50,7 +50,7 @@
+ MOZ_PKG_MANIFEST_P = $(srcdir)/package-manifest.in
+ # Some files have been already bundled with xulrunner
+ ifndef SYSTEM_LIBXUL
+-MOZ_PKG_FATAL_WARNINGS = 1
++MOZ_PKG_FATAL_WARNINGS = 0
+ endif
+ 
+ MOZ_NONLOCALIZED_PKG_LIST = \



[arch-commits] Commit in xulrunner/repos (14 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 20:58:48
  Author: ibiru
Revision: 163700

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

Added:
  xulrunner/repos/extra-i686/PKGBUILD
(from rev 163699, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-i686/mozconfig
(from rev 163699, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
(from rev 163699, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-i686/shared-libs.patch
(from rev 163699, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/extra-x86_64/PKGBUILD
(from rev 163699, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-x86_64/mozconfig
(from rev 163699, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
(from rev 163699, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-x86_64/shared-libs.patch
(from rev 163699, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/extra-i686/PKGBUILD
  xulrunner/repos/extra-i686/mozconfig
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
  xulrunner/repos/extra-x86_64/PKGBUILD
  xulrunner/repos/extra-x86_64/mozconfig
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch

--+
 extra-i686/PKGBUILD  |  107 -
 extra-i686/mozconfig |   76 +++
 extra-i686/mozilla-pkgconfig.patch   |   80 
 extra-i686/shared-libs.patch |   12 +++
 extra-x86_64/PKGBUILD|  107 -
 extra-x86_64/mozconfig   |   76 +++
 extra-x86_64/mozilla-pkgconfig.patch |   80 
 extra-x86_64/shared-libs.patch   |   12 +++
 8 files changed, 290 insertions(+), 260 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 00:41:33 UTC (rev 163699)
+++ extra-i686/PKGBUILD 2012-07-18 00:58:48 UTC (rev 163700)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-pkgname=xulrunner
-pkgver=13.0
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.13.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libnotify' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'wireless_tools' 'yasm' 
'mesa' 'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch)
-options=('!emptydirs')
-replaces=('xulrunner-oss')
-md5sums=('f50ca7656eec47030b396f39075fa980'
- '4afe63440e2f1935ff90de15db3b70f0'
- '27271ce647a83906ef7a24605e840d61')
-
-build() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i "$srcdir/mozilla-pkgconfig.patch"
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python|!/usr/bin/env python2|' 
"$pkgdir/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python|!/usr/bin/env python2|' 
"$pkgdir/usr/lib/xulrunner-devel-$pkgver/sdk/bin/header.py"
-  sed -i 's|!/usr/bin/env python|!/usr/bin/env python2|' 
"$pkgdir/usr/lib/xulrunner-devel-$pkgver/sdk/bin/typelib.py"
-  sed -i 's|!/usr/bin/env python|!/usr/bin/env python2|' 
"$pkgdir/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpidl.py"
-}

Copied: xulrunner/repos/extra-i686/PKGBUILD (from rev 163699, 
xulrunner/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 00:58:48 UTC (rev 163700)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+pkgname=xulrunner
+pkgver=14.0.1
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>=3.13.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib'

[arch-commits] Commit in akonadi/repos (10 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:04:54
  Author: ibiru
Revision: 163701

db-move: moved akonadi from [testing] to [extra] ( i686,  x86_64)

Added:
  akonadi/repos/extra-i686/PKGBUILD
(from rev 163700, akonadi/repos/testing-i686/PKGBUILD)
  akonadi/repos/extra-i686/akonadi.install
(from rev 163700, akonadi/repos/testing-i686/akonadi.install)
  akonadi/repos/extra-x86_64/PKGBUILD
(from rev 163700, akonadi/repos/testing-x86_64/PKGBUILD)
  akonadi/repos/extra-x86_64/akonadi.install
(from rev 163700, akonadi/repos/testing-x86_64/akonadi.install)
Deleted:
  akonadi/repos/extra-i686/PKGBUILD
  akonadi/repos/extra-i686/akonadi.install
  akonadi/repos/extra-x86_64/PKGBUILD
  akonadi/repos/extra-x86_64/akonadi.install
  akonadi/repos/testing-i686/
  akonadi/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |   64 -
 extra-i686/akonadi.install   |   22 +++---
 extra-x86_64/PKGBUILD|   64 -
 extra-x86_64/akonadi.install |   22 +++---
 4 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 00:58:48 UTC (rev 163700)
+++ extra-i686/PKGBUILD 2012-07-18 01:04:54 UTC (rev 163701)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=akonadi
-pkgver=1.7.2
-pkgrel=1
-pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
-arch=('i686' 'x86_64')
-url='http://pim.kde.org/akonadi'
-license=('LGPL')
-depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
-makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
-install="${pkgname}.install"
-source=("http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('c73bb835057a3ee07d37a4f7daaf7ecf')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-  make DESTDIR="${pkgdir}" install
-}

Copied: akonadi/repos/extra-i686/PKGBUILD (from rev 163700, 
akonadi/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:04:54 UTC (rev 163701)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=akonadi
+pkgver=1.7.2
+pkgrel=2
+pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
+arch=('i686' 'x86_64')
+url='http://pim.kde.org/akonadi'
+license=('LGPL')
+depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('c73bb835057a3ee07d37a4f7daaf7ecf')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/akonadi.install
===
--- extra-i686/akonadi.install  2012-07-18 00:58:48 UTC (rev 163700)
+++ extra-i686/akonadi.install  2012-07-18 01:04:54 UTC (rev 163701)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: akonadi/repos/extra-i686/akonadi.install (from rev 163700, 
akonadi/repos/testing-i686/akonadi.install)
===
--- extra-i686/akonadi.install  (rev 0)
+++ extra-i686/akonadi.install  2012-07-18 01:04:54 UTC (rev 163701)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-18 00:58:48 UTC (rev 163700)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:04:54 UTC (rev 163701)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=akonadi
-pkgver=1.7.2
-pkgrel=1
-pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
-arch=('i686' 'x86_64')
-url='http://pim.kde.org/akonadi'
-license=('LGPL')
-depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
-makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
-install="${pkgname}.install"
-source=("

[arch-commits] Commit in avogadro/repos (22 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:05
  Author: ibiru
Revision: 163702

db-move: moved avogadro from [testing] to [extra] ( i686,  x86_64)

Added:
  avogadro/repos/extra-i686/PKGBUILD
(from rev 163700, avogadro/repos/testing-i686/PKGBUILD)
  avogadro/repos/extra-i686/avogadro.install
(from rev 163700, avogadro/repos/testing-i686/avogadro.install)
  avogadro/repos/extra-i686/fix-boost.patch
(from rev 163700, avogadro/repos/testing-i686/fix-boost.patch)
  avogadro/repos/extra-i686/fix-opengl-headers.patch
(from rev 163700, avogadro/repos/testing-i686/fix-opengl-headers.patch)
  avogadro/repos/extra-i686/replace-qt4_automoc-with-qt4_wrap_cpp.patch
(from rev 163700, 
avogadro/repos/testing-i686/replace-qt4_automoc-with-qt4_wrap_cpp.patch)
  avogadro/repos/extra-x86_64/PKGBUILD
(from rev 163700, avogadro/repos/testing-x86_64/PKGBUILD)
  avogadro/repos/extra-x86_64/avogadro.install
(from rev 163700, avogadro/repos/testing-x86_64/avogadro.install)
  avogadro/repos/extra-x86_64/fix-boost.patch
(from rev 163700, avogadro/repos/testing-x86_64/fix-boost.patch)
  avogadro/repos/extra-x86_64/fix-opengl-headers.patch
(from rev 163700, avogadro/repos/testing-x86_64/fix-opengl-headers.patch)
  avogadro/repos/extra-x86_64/replace-qt4_automoc-with-qt4_wrap_cpp.patch
(from rev 163700, 
avogadro/repos/testing-x86_64/replace-qt4_automoc-with-qt4_wrap_cpp.patch)
Deleted:
  avogadro/repos/extra-i686/PKGBUILD
  avogadro/repos/extra-i686/avogadro.install
  avogadro/repos/extra-i686/fix-boost.patch
  avogadro/repos/extra-i686/fix-opengl-headers.patch
  avogadro/repos/extra-i686/replace-qt4_automoc-with-qt4_wrap_cpp.patch
  avogadro/repos/extra-x86_64/PKGBUILD
  avogadro/repos/extra-x86_64/avogadro.install
  avogadro/repos/extra-x86_64/fix-boost.patch
  avogadro/repos/extra-x86_64/fix-opengl-headers.patch
  avogadro/repos/extra-x86_64/replace-qt4_automoc-with-qt4_wrap_cpp.patch
  avogadro/repos/testing-i686/
  avogadro/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |   90 
 extra-i686/avogadro.install  |   22 
 extra-i686/fix-boost.patch   |   66 
 extra-i686/fix-opengl-headers.patch  |  106 
 extra-i686/replace-qt4_automoc-with-qt4_wrap_cpp.patch   | 1556 ++---
 extra-x86_64/PKGBUILD|   90 
 extra-x86_64/avogadro.install|   22 
 extra-x86_64/fix-boost.patch |   66 
 extra-x86_64/fix-opengl-headers.patch|  106 
 extra-x86_64/replace-qt4_automoc-with-qt4_wrap_cpp.patch | 1556 ++---
 10 files changed, 1840 insertions(+), 1840 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 163701:163702 to see the changes.


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

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:09
  Author: ibiru
Revision: 163703

db-move: moved boost from [testing] to [extra] ( i686,  x86_64)

Added:
  boost/repos/extra-i686/PKGBUILD
(from rev 163700, boost/repos/testing-i686/PKGBUILD)
  boost/repos/extra-x86_64/PKGBUILD
(from rev 163700, boost/repos/testing-x86_64/PKGBUILD)
Deleted:
  boost/repos/extra-i686/PKGBUILD
  boost/repos/extra-x86_64/PKGBUILD
  boost/repos/testing-i686/
  boost/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |  226 
 extra-x86_64/PKGBUILD |  226 
 2 files changed, 226 insertions(+), 226 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:05 UTC (rev 163702)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:09 UTC (rev 163703)
@@ -1,113 +0,0 @@
-# $Id$
-# Maintainer: kevin 
-# Contributor: Giovanni Scafora 
-# Contributor: Kritoke 
-# Contributor: Luca Roccia 
-
-pkgbase=boost
-pkgname=('boost-libs' 'boost')
-pkgver=1.50.0
-_boostver=${pkgver//./_}
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.boost.org/";
-makedepends=('icu' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
-source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz)
-license=('custom')
-md5sums=('dbc07ab0254df3dda6300fd737b3f264')
-
-_stagedir="${srcdir}/stagedir"
-
-build() {
-  # set python path for bjam
-  cd "${srcdir}/${pkgbase}_${_boostver}/tools"
-  echo "using python : 2.7 : /usr/bin/python2 ;" >> build/v2/user-config.jam
-  echo "using python : 3.2 : /usr/bin/python : /usr/include/python3.2mu : 
/usr/lib ;" >> build/v2/user-config.jam
-  echo "using mpi ;" >> build/v2/user-config.jam
-
-  cd "${srcdir}"/${pkgbase}_${_boostver}
-
-  # build bjam
-  cd "${srcdir}/${pkgbase}_${_boostver}/tools/build/v2/engine"
-  ./build.sh cc
-
-  _bindir="bin.linuxx86"
-  [ "${CARCH}" = "x86_64" ] && _bindir="bin.linuxx86_64"
-
-  install -d "${_stagedir}"/usr/bin
-  install ${_bindir}/bjam "${_stagedir}"/usr/bin/bjam
-
-  # build tools
-  cd "${srcdir}/${pkgbase}_${_boostver}/tools/"
-  "${_stagedir}"/usr/bin/bjam --toolset=gcc
-
-  # copy the tools
-  cd "${srcdir}/${pkgbase}_${_boostver}/dist/bin"
-  for i in *;do
-  install -m755 "${i}" "${_stagedir}/usr/bin/${i}"
-  done
-
-  #boostbook needed by quickbook
-  cd "${srcdir}/${pkgbase}_${_boostver}/dist/"
-  cp -r share "${_stagedir}"
-
-  # build libs
-  cd "${srcdir}/${pkgbase}_${_boostver}"
-
-  # default "minimal" install: "release link=shared,static
-  # runtime-link=shared threading=single,multi"
-  # --layout=tagged will add the "-mt" suffix for multithreaded libraries
-  # and installs includes in /usr/include/boost.
-  # --layout=system no longer adds the -mt suffix for multi-threaded libs.
-  # install to ${_stagedir} in preparation for split packaging
-
-  "${_stagedir}"/usr/bin/bjam \
-  release debug-symbols=off threading=multi \
-  runtime-link=shared link=shared,static \
-  cflags=-fno-strict-aliasing \
-  toolset=gcc \
-  --prefix="${_stagedir}" \
-  -sTOOLS=gcc \
-  --layout=system \
-  ${MAKEFLAGS} \
-  install
-}
-
-package_boost() {
-pkgdesc="Free peer-reviewed portable C++ source libraries - Development"
-depends=("boost-libs=${pkgver}")
-optdepends=('python: for python bindings'
-'python2: for python2 bindings'
-   'boost-build: to use boost jam for building your project.')
-
-install -d "${pkgdir}"/usr/{include,lib,share}
-# headers/source files
-cp -r "${_stagedir}"/include/ "${pkgdir}"/usr/
-
-# static libs
-cp -r "${_stagedir}"/lib/*.a "${pkgdir}"/usr/lib/
-
-# utilities (bjam, bcp, pyste)
-cp -r "${_stagedir}"/usr/* "${pkgdir}"/usr/
-
-#boostbook
-cp -r "${_stagedir}"/share/* "${pkgdir}"/usr/share
-
-# license
-install -D -m644 "${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt" \
-"${pkgdir}"/usr/share/licenses/boost/LICENSE_1_0.txt
-}
-
-package_boost-libs() {
-pkgdesc="Free peer-reviewed portable C++ source libraries - Runtime"
-depends=('gcc-libs' 'bzip2' 'zlib' 'icu')
-optdepends=('openmpi: for mpi support')
-
-install -d "${pkgdir}/usr/lib"
-#shared libs
-cp -r "${_stagedir}"/lib/*.so{,.*} "${pkgdir}/usr/lib/"
-
-# license
-install -D -m644 "${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt" \
-"${pkgdir}"/usr/share/licenses/boost-libs/LICENSE_1_0.txt
-}

Copied: boost/repos/extra-i686/PKGBUILD (from rev 163700, 
boost/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:09 UTC (rev 163703)
@@ -0,0 +1,113 @@
+# $Id$
+# Maintainer: kevin 
+# Contributor: Giovanni Scafora 
+# Contributor: Kritoke 
+# Contributor: Luca Roccia 
+
+pkgbase=boost

[arch-commits] Commit in ekiga/repos (14 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:16
  Author: ibiru
Revision: 163704

db-move: moved ekiga from [testing] to [extra] ( i686,  x86_64)

Added:
  ekiga/repos/extra-i686/PKGBUILD
(from rev 163700, ekiga/repos/testing-i686/PKGBUILD)
  ekiga/repos/extra-i686/ekiga.install
(from rev 163700, ekiga/repos/testing-i686/ekiga.install)
  ekiga/repos/extra-i686/gcc47.patch
(from rev 163700, ekiga/repos/testing-i686/gcc47.patch)
  ekiga/repos/extra-x86_64/PKGBUILD
(from rev 163700, ekiga/repos/testing-x86_64/PKGBUILD)
  ekiga/repos/extra-x86_64/ekiga.install
(from rev 163700, ekiga/repos/testing-x86_64/ekiga.install)
  ekiga/repos/extra-x86_64/gcc47.patch
(from rev 163700, ekiga/repos/testing-x86_64/gcc47.patch)
Deleted:
  ekiga/repos/extra-i686/PKGBUILD
  ekiga/repos/extra-i686/ekiga.install
  ekiga/repos/extra-i686/gcc47.patch
  ekiga/repos/extra-x86_64/PKGBUILD
  ekiga/repos/extra-x86_64/ekiga.install
  ekiga/repos/extra-x86_64/gcc47.patch
  ekiga/repos/testing-i686/
  ekiga/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|   78 
 extra-i686/ekiga.install   |   44 -
 extra-i686/gcc47.patch |  198 +--
 extra-x86_64/PKGBUILD  |   78 
 extra-x86_64/ekiga.install |   44 -
 extra-x86_64/gcc47.patch   |  198 +--
 6 files changed, 320 insertions(+), 320 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:09 UTC (rev 163703)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:16 UTC (rev 163704)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tom K 
-
-pkgname=ekiga
-pkgver=3.3.2
-pkgrel=5
-pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
-url="http://www.ekiga.org";
-license=(GPL)
-arch=(i686 x86_64)
-depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
-optdepends=('evolution-data-server: Evolution integration')
-options=(!emptydirs)
-groups=('gnome-extra')
-install=ekiga.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-gcc47.patch)
-sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a'
-'9e316e1174be5d6cc60c89abeaeb61a98eb163a38abf11f4af4f2d6363ec')
-
-build() {
-  cd "$pkgname-$pkgver"
-  patch -Np1 -i "$srcdir/gcc47.patch"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-install \
-  --disable-scrollkeeper --enable-dbus
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
-
-  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
-  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
-  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
-}

Copied: ekiga/repos/extra-i686/PKGBUILD (from rev 163700, 
ekiga/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:16 UTC (rev 163704)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=3.3.2
+pkgrel=6
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org";
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+groups=('gnome-extra')
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+gcc47.patch)
+sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a'
+'9e316e1174be5d6cc60c89abeaeb61a98eb163a38abf11f4af4f2d6363ec')
+
+build() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 -i "$srcdir/gcc47.patch"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Deleted: extra-i686/ekiga.install
===
--- extra-i686/ekiga.i

[arch-commits] Commit in hugin/repos (12 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:24
  Author: ibiru
Revision: 163705

db-move: moved hugin from [testing] to [extra] ( i686,  x86_64)

Added:
  hugin/repos/extra-i686/PKGBUILD
(from rev 163700, hugin/repos/testing-i686/PKGBUILD)
  hugin/repos/extra-i686/gcc47.patch
(from rev 163700, hugin/repos/testing-i686/gcc47.patch)
  hugin/repos/extra-i686/hugin.install
(from rev 163700, hugin/repos/testing-i686/hugin.install)
  hugin/repos/extra-x86_64/PKGBUILD
(from rev 163700, hugin/repos/testing-x86_64/PKGBUILD)
  hugin/repos/extra-x86_64/gcc47.patch
(from rev 163700, hugin/repos/testing-x86_64/gcc47.patch)
  hugin/repos/extra-x86_64/hugin.install
(from rev 163700, hugin/repos/testing-x86_64/hugin.install)
Deleted:
  hugin/repos/extra-i686/PKGBUILD
  hugin/repos/extra-i686/hugin.install
  hugin/repos/extra-x86_64/PKGBUILD
  hugin/repos/extra-x86_64/hugin.install
  hugin/repos/testing-i686/
  hugin/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|   74 ++-
 extra-i686/gcc47.patch |   11 ++
 extra-i686/hugin.install   |   30 -
 extra-x86_64/PKGBUILD  |   74 ++-
 extra-x86_64/gcc47.patch   |   11 ++
 extra-x86_64/hugin.install |   30 -
 6 files changed, 130 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:16 UTC (rev 163704)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:24 UTC (rev 163705)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich 
-# Contributor: Giovanni Scafora 
-# Contributor: Dominik Ryba 
-
-pkgname=hugin
-pkgver=2011.4.0
-pkgrel=2
-pkgdesc="A frontend to the panorama-tools"
-arch=('i686' 'x86_64')
-url="http://hugin.sourceforge.net/";
-license=('GPL')
-depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
- 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
-makedepends=('zip' 'cmake' 'boost' 'tclap')
-install=hugin.install
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake "${srcdir}/${pkgname}-${pkgver}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_EXE_LINKER_FLAGS="-lpthread" \
--DENABLE_LAPACK=yes
-  make
-}
-
-package(){
-  cd "${srcdir}/build"
-  make DESTDIR="${pkgdir}" install
-}

Copied: hugin/repos/extra-i686/PKGBUILD (from rev 163700, 
hugin/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:24 UTC (rev 163705)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Tobias Kieslich 
+# Contributor: Giovanni Scafora 
+# Contributor: Dominik Ryba 
+
+pkgname=hugin
+pkgver=2011.4.0
+pkgrel=3
+pkgdesc="A frontend to the panorama-tools"
+arch=('i686' 'x86_64')
+url="http://hugin.sourceforge.net/";
+license=('GPL')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
+ 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
+makedepends=('zip' 'cmake' 'boost' 'tclap')
+install=hugin.install
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+gcc47.patch)
+sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b'
+  'aa0fc9425bd7a4b5e270412f4ca72258fac77298')
+
+build() {
+  cd "${srcdir}"
+  patch -Np0 -i gcc47.patch
+  mkdir build
+  cd build
+  export CXXFLAGS+=" -fpermissive" 
+  cmake "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_EXE_LINKER_FLAGS="-lpthread" \
+-DENABLE_LAPACK=yes
+  make
+}
+
+package(){
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+}

Copied: hugin/repos/extra-i686/gcc47.patch (from rev 163700, 
hugin/repos/testing-i686/gcc47.patch)
===
--- extra-i686/gcc47.patch  (rev 0)
+++ extra-i686/gcc47.patch  2012-07-18 01:05:24 UTC (rev 163705)
@@ -0,0 +1,11 @@
+diff -Nur hugin-2011.4.0.orig/src/celeste/Utilities.cpp 
hugin-2011.4.0/src/celeste/Utilities.cpp
+--- hugin-2011.4.0.orig/src/celeste/Utilities.cpp  2012-07-08 
15:18:16.864454043 +
 hugin-2011.4.0/src/celeste/Utilities.cpp   2012-07-08 15:18:20.341089422 
+
+@@ -27,6 +27,7 @@
+ 
+ #include 
+ #include 
++#include 
+ #include "Utilities.h"
+ 
+ using namespace std; 

Deleted: extra-i686/hugin.install
===
--- extra-i686/hugin.install2012-07-18 01:05:16 UTC (rev 163704)
+++ extra-i686/hugin.install2012-07-18 01:05:24 UTC (rev 163705)
@@ -1,15 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icon

[arch-commits] Commit in kdeedu-kig/repos (10 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:29
  Author: ibiru
Revision: 163706

db-move: moved kdeedu-kig from [testing] to [extra] ( i686,  x86_64)

Added:
  kdeedu-kig/repos/extra-i686/PKGBUILD
(from rev 163700, kdeedu-kig/repos/testing-i686/PKGBUILD)
  kdeedu-kig/repos/extra-i686/kdeedu-kig.install
(from rev 163700, kdeedu-kig/repos/testing-i686/kdeedu-kig.install)
  kdeedu-kig/repos/extra-x86_64/PKGBUILD
(from rev 163700, kdeedu-kig/repos/testing-x86_64/PKGBUILD)
  kdeedu-kig/repos/extra-x86_64/kdeedu-kig.install
(from rev 163700, kdeedu-kig/repos/testing-x86_64/kdeedu-kig.install)
Deleted:
  kdeedu-kig/repos/extra-i686/PKGBUILD
  kdeedu-kig/repos/extra-i686/kdeedu-kig.install
  kdeedu-kig/repos/extra-x86_64/PKGBUILD
  kdeedu-kig/repos/extra-x86_64/kdeedu-kig.install
  kdeedu-kig/repos/testing-i686/
  kdeedu-kig/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |   68 +++---
 extra-i686/kdeedu-kig.install   |   24 ++---
 extra-x86_64/PKGBUILD   |   68 +++---
 extra-x86_64/kdeedu-kig.install |   24 ++---
 4 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:24 UTC (rev 163705)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:29 UTC (rev 163706)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdeedu-kig
-pkgver=4.8.4
-pkgrel=1
-pkgdesc="Interactive Geometry"
-url="http://kde.org/applications/education/kig/";
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.xz";)
-sha1sums=('dcbde5fbb34e0c569a2ef95a328cf69a924cd38e')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../kig-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-
-  # Use the python2 executable
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
-}

Copied: kdeedu-kig/repos/extra-i686/PKGBUILD (from rev 163700, 
kdeedu-kig/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:29 UTC (rev 163706)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-kig
+pkgver=4.8.4
+pkgrel=2
+pkgdesc="Interactive Geometry"
+url="http://kde.org/applications/education/kig/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.xz";)
+sha1sums=('dcbde5fbb34e0c569a2ef95a328cf69a924cd38e')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kig-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
+}

Deleted: extra-i686/kdeedu-kig.install
===
--- extra-i686/kdeedu-kig.install   2012-07-18 01:05:24 UTC (rev 163705)
+++ extra-i686/kdeedu-kig.install   2012-07-18 01:05:29 UTC (rev 163706)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-kig/repos/extra-i686/kdeedu-kig.install (from rev 163700, 
kdeedu-kig/repos/testing-i686/kdeedu-kig.install)
===
--- extra-i686/kdeedu-kig.install   (rev 0)
+++ extra-i686/kdeedu-kig.install   2012-07-18 01:05:29 UTC (rev 163706)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-18 01:05:24 UTC (rev 163705)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:29 UTC (rev 163706)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdeedu-kig
-pkgver=4.8.4
-pkgrel=1
-pkgdesc="Interactive Geometry"
-url="http://kde.org/applications/education/kig/";
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-dep

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

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:32
  Author: ibiru
Revision: 163707

db-move: moved kdeedu-rocs from [testing] to [extra] ( i686,  x86_64)

Added:
  kdeedu-rocs/repos/extra-i686/PKGBUILD
(from rev 163700, kdeedu-rocs/repos/testing-i686/PKGBUILD)
  kdeedu-rocs/repos/extra-x86_64/PKGBUILD
(from rev 163700, kdeedu-rocs/repos/testing-x86_64/PKGBUILD)
Deleted:
  kdeedu-rocs/repos/extra-i686/PKGBUILD
  kdeedu-rocs/repos/extra-x86_64/PKGBUILD
  kdeedu-rocs/repos/testing-i686/
  kdeedu-rocs/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   62 
 extra-x86_64/PKGBUILD |   62 
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:29 UTC (rev 163706)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:32 UTC (rev 163707)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdeedu-rocs
-pkgver=4.8.4
-pkgrel=1
-pkgdesc="Rocs Graph Theory"
-url="http://kde.org/applications/education/rocs/";
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'boost')
-source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz";)
-sha1sums=('991e5aa15e59cc432a9c9f140fe90bd47f8f8e15')
-options=('!makeflags')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../rocs-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdeedu-rocs/repos/extra-i686/PKGBUILD (from rev 163700, 
kdeedu-rocs/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:32 UTC (rev 163707)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-rocs
+pkgver=4.8.4
+pkgrel=2
+pkgdesc="Rocs Graph Theory"
+url="http://kde.org/applications/education/rocs/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz";)
+sha1sums=('991e5aa15e59cc432a9c9f140fe90bd47f8f8e15')
+options=('!makeflags')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../rocs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-18 01:05:29 UTC (rev 163706)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:32 UTC (rev 163707)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdeedu-rocs
-pkgver=4.8.4
-pkgrel=1
-pkgdesc="Rocs Graph Theory"
-url="http://kde.org/applications/education/rocs/";
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'boost')
-source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz";)
-sha1sums=('991e5aa15e59cc432a9c9f140fe90bd47f8f8e15')
-options=('!makeflags')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../rocs-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdeedu-rocs/repos/extra-x86_64/PKGBUILD (from rev 163700, 
kdeedu-rocs/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:32 UTC (rev 163707)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-rocs
+pkgver=4.8.4
+pkgrel=2
+pkgdesc="Rocs Graph Theory"
+url="http://kde.org/applications/education/rocs/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz";)
+sha1sums=('991e5aa15e59cc432a9c9f140fe90bd47f8f8e15')
+options=('!makeflags')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../rocs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:35
  Author: ibiru
Revision: 163708

db-move: moved libpst from [testing] to [extra] ( i686,  x86_64)

Added:
  libpst/repos/extra-i686/PKGBUILD
(from rev 163700, libpst/repos/testing-i686/PKGBUILD)
  libpst/repos/extra-x86_64/PKGBUILD
(from rev 163700, libpst/repos/testing-x86_64/PKGBUILD)
Deleted:
  libpst/repos/extra-i686/PKGBUILD
  libpst/repos/extra-x86_64/PKGBUILD
  libpst/repos/testing-i686/
  libpst/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   80 
 extra-x86_64/PKGBUILD |   80 
 2 files changed, 80 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:32 UTC (rev 163707)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:35 UTC (rev 163708)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=libpst
-pkgname=('libpst' 'libpst-docs')
-pkgver=0.6.54
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.five-ten-sg.com/libpst/";
-license=('GPL')
-makedepends=('python2' 'boost')
-source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('a4713b87e330556acb0786b4efa975a3c739cd84')
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
-  make
-}
-
-package_libpst() {
-  pkgdesc="Outlook .pst file converter"
-  depends=('gcc-libs')
-  optdepends=('boost-libs: for libpst python interface')
-  options=('!libtool' '!docs')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}
-
-package_libpst-docs() {
-  pkgdesc="Documentation for Outlook .pst file converter"
-  options=('!libtool')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make DESTDIR="${pkgdir}" install-htmlDATA
-  cd "${srcdir}/${pkgbase}-${pkgver}/html"
-  make DESTDIR="${pkgdir}" install-htmldevelDATA
-}

Copied: libpst/repos/extra-i686/PKGBUILD (from rev 163700, 
libpst/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:35 UTC (rev 163708)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.54
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://www.five-ten-sg.com/libpst/";
+license=('GPL')
+makedepends=('python2' 'boost')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('a4713b87e330556acb0786b4efa975a3c739cd84')
+
+build() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  make
+}
+
+package_libpst() {
+  pkgdesc="Outlook .pst file converter"
+  depends=('gcc-libs')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!libtool' '!docs')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+
+package_libpst-docs() {
+  pkgdesc="Documentation for Outlook .pst file converter"
+  options=('!libtool')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgdir}" install-htmlDATA
+  cd "${srcdir}/${pkgbase}-${pkgver}/html"
+  make DESTDIR="${pkgdir}" install-htmldevelDATA
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-18 01:05:32 UTC (rev 163707)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:35 UTC (rev 163708)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=libpst
-pkgname=('libpst' 'libpst-docs')
-pkgver=0.6.54
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.five-ten-sg.com/libpst/";
-license=('GPL')
-makedepends=('python2' 'boost')
-source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('a4713b87e330556acb0786b4efa975a3c739cd84')
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
-  make
-}
-
-package_libpst() {
-  pkgdesc="Outlook .pst file converter"
-  depends=('gcc-libs')
-  optdepends=('boost-libs: for libpst python interface')
-  options=('!libtool' '!docs')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}
-
-package_libpst-docs() {
-  pkgdesc="Documentation for Outlook .pst file converter"
-  options=('!libtool')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make DESTDIR="${pkgdir}" install-htmlDATA
-  cd "${srcdir}/${pkgbase}-${pkgver}/html"
-  make DESTDIR="${pkgdir}" install-htmldevelDATA
-}

Copied: libpst/repos/extra-x86_64/PKGBUILD (from rev 163700, 
libpst/repos/testing-x86_64/PKGBUILD)
==

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

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:39
  Author: ibiru
Revision: 163709

db-move: moved libtorrent-rasterbar from [testing] to [extra] ( i686,  x86_64)

Added:
  libtorrent-rasterbar/repos/extra-i686/PKGBUILD
(from rev 163700, libtorrent-rasterbar/repos/testing-i686/PKGBUILD)
  libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD
(from rev 163700, libtorrent-rasterbar/repos/testing-x86_64/PKGBUILD)
Deleted:
  libtorrent-rasterbar/repos/extra-i686/PKGBUILD
  libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD
  libtorrent-rasterbar/repos/testing-i686/
  libtorrent-rasterbar/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   62 
 extra-x86_64/PKGBUILD |   62 
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:35 UTC (rev 163708)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:39 UTC (rev 163709)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Hugo Doria 
-
-pkgname=libtorrent-rasterbar
-pkgver=0.15.10
-pkgrel=1
-epoch=1
-pkgdesc="A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around"
-url="http://www.rasterbar.com/products/libtorrent/";
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('boost-libs' 'geoip' 'python2')
-makedepends=('boost')
-options=('!libtool' '!emptydirs')
-source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-sha1sums=('3e461d9ede5fab3fb59be6a9f0cbc52121d536c4')
-
-build() {
-  cd "$pkgname-$pkgver"
-  PYTHON2=/usr/bin/python2 ./configure --prefix=/usr \
-  --enable-python-binding \
-  --with-libgeoip=system
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libtorrent-rasterbar/repos/extra-i686/PKGBUILD (from rev 163700, 
libtorrent-rasterbar/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:39 UTC (rev 163709)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=0.16.1
+pkgrel=1
+epoch=1
+pkgdesc="A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around"
+url="http://www.rasterbar.com/products/libtorrent/";
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('boost-libs' 'geoip' 'python2')
+makedepends=('boost')
+options=('!libtool' '!emptydirs')
+source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz)
+sha1sums=('798944301ee6ef8e0d8de3d944c59d184ef1a4d3')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON2=/usr/bin/python2 ./configure --prefix=/usr \
+  --enable-python-binding \
+  --with-libgeoip=system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-18 01:05:35 UTC (rev 163708)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:39 UTC (rev 163709)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Hugo Doria 
-
-pkgname=libtorrent-rasterbar
-pkgver=0.15.10
-pkgrel=1
-epoch=1
-pkgdesc="A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around"
-url="http://www.rasterbar.com/products/libtorrent/";
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('boost-libs' 'geoip' 'python2')
-makedepends=('boost')
-options=('!libtool' '!emptydirs')
-source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-sha1sums=('3e461d9ede5fab3fb59be6a9f0cbc52121d536c4')
-
-build() {
-  cd "$pkgname-$pkgver"
-  PYTHON2=/usr/bin/python2 ./configure --prefix=/usr \
-  --enable-python-binding \
-  --with-libgeoip=system
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD (from rev 163700, 
libtorrent-rasterbar/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:39 UTC (rev 163709)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=0.16.1
+pkgrel=1
+epoch=1
+pkgdesc="A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around"
+url="http://www.rasterbar.com/products/libtorrent/";
+arch=('i686' 'x86_64')
+license=('custom')
+depends

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

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:42
  Author: ibiru
Revision: 163710

db-move: moved licq from [testing] to [extra] ( i686,  x86_64)

Added:
  licq/repos/extra-i686/PKGBUILD
(from rev 163700, licq/repos/testing-i686/PKGBUILD)
  licq/repos/extra-x86_64/PKGBUILD
(from rev 163700, licq/repos/testing-x86_64/PKGBUILD)
Deleted:
  licq/repos/extra-i686/PKGBUILD
  licq/repos/extra-x86_64/PKGBUILD
  licq/repos/testing-i686/
  licq/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   80 
 extra-x86_64/PKGBUILD |   80 
 2 files changed, 80 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:39 UTC (rev 163709)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:42 UTC (rev 163710)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel 
-
-pkgname=licq
-pkgver=1.6.0
-pkgrel=4
-pkgdesc="Advanced graphical ICQ clone and more for Unix" 
-arch=('i686' 'x86_64')
-url="http://www.licq.org";
-license=('GPL')
-depends=('boost-libs' 'gpgme' 'libxss' 'qt')
-makedepends=('cmake' 'boost')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
-md5sums=('383153697e281a0b1b4ff008936731b8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # licq
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
-  make
-
-  # qt4-gui
-  cd ../plugins/qt4-gui
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake"  ..
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-  make DESTDIR="${pkgdir}" install
-
-  cd ../plugins/qt4-gui/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: licq/repos/extra-i686/PKGBUILD (from rev 163700, 
licq/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:42 UTC (rev 163710)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+
+pkgname=licq
+pkgver=1.6.0
+pkgrel=5
+pkgdesc="Advanced graphical ICQ clone and more for Unix" 
+arch=('i686' 'x86_64')
+url="http://www.licq.org";
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt')
+makedepends=('cmake' 'boost')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
+md5sums=('383153697e281a0b1b4ff008936731b8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # licq
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
+  make
+
+  # qt4-gui
+  cd ../plugins/qt4-gui
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake"  ..
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+
+  cd ../plugins/qt4-gui/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-18 01:05:39 UTC (rev 163709)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:42 UTC (rev 163710)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel 
-
-pkgname=licq
-pkgver=1.6.0
-pkgrel=4
-pkgdesc="Advanced graphical ICQ clone and more for Unix" 
-arch=('i686' 'x86_64')
-url="http://www.licq.org";
-license=('GPL')
-depends=('boost-libs' 'gpgme' 'libxss' 'qt')
-makedepends=('cmake' 'boost')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
-md5sums=('383153697e281a0b1b4ff008936731b8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # licq
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
-  make
-
-  # qt4-gui
-  cd ../plugins/qt4-gui
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake"  ..
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-  make DESTDIR="${pkgdir}" install
-
-  cd ../plugins/qt4-gui/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: licq/repos/extra-x86_64/PKGBUILD (from rev 163700, 
licq/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-18 01:05:42 UTC (rev 163710)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+
+pkgname=licq
+pkgver=1.6.0
+pkgrel=5
+pkgdesc="Advanced graphical ICQ clone and more for Unix" 
+arch=('i686' 'x86_64')
+url="http://www.licq.org";
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt')
+makedepends=('cmake' 'boost')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
+md5sums=('383153697e281a0b1b4ff008936

[arch-commits] Commit in lyx/repos (18 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:51
  Author: ibiru
Revision: 163711

db-move: moved lyx from [testing] to [extra] ( i686,  x86_64)

Added:
  lyx/repos/extra-i686/PKGBUILD
(from rev 163700, lyx/repos/testing-i686/PKGBUILD)
  lyx/repos/extra-i686/lyx.desktop
(from rev 163700, lyx/repos/testing-i686/lyx.desktop)
  lyx/repos/extra-i686/lyx.install
(from rev 163700, lyx/repos/testing-i686/lyx.install)
  lyx/repos/extra-i686/lyxrc.dist
(from rev 163700, lyx/repos/testing-i686/lyxrc.dist)
  lyx/repos/extra-x86_64/PKGBUILD
(from rev 163700, lyx/repos/testing-x86_64/PKGBUILD)
  lyx/repos/extra-x86_64/lyx.desktop
(from rev 163700, lyx/repos/testing-x86_64/lyx.desktop)
  lyx/repos/extra-x86_64/lyx.install
(from rev 163700, lyx/repos/testing-x86_64/lyx.install)
  lyx/repos/extra-x86_64/lyxrc.dist
(from rev 163700, lyx/repos/testing-x86_64/lyxrc.dist)
Deleted:
  lyx/repos/extra-i686/PKGBUILD
  lyx/repos/extra-i686/lyx.desktop
  lyx/repos/extra-i686/lyx.install
  lyx/repos/extra-i686/lyxrc.dist
  lyx/repos/extra-x86_64/PKGBUILD
  lyx/repos/extra-x86_64/lyx.desktop
  lyx/repos/extra-x86_64/lyx.install
  lyx/repos/extra-x86_64/lyxrc.dist
  lyx/repos/testing-i686/
  lyx/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |  100 ++---
 extra-i686/lyx.desktop   |   28 ++--
 extra-i686/lyx.install   |   28 ++--
 extra-i686/lyxrc.dist|   28 ++--
 extra-x86_64/PKGBUILD|  100 ++---
 extra-x86_64/lyx.desktop |   28 ++--
 extra-x86_64/lyx.install |   28 ++--
 extra-x86_64/lyxrc.dist  |   28 ++--
 8 files changed, 184 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:42 UTC (rev 163710)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:51 UTC (rev 163711)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Jason Chu 
-
-pkgname=lyx
-pkgver=2.0.3
-pkgrel=3
-pkgdesc="An advanced WYSIWYM document processor & LaTeX front-end"
-arch=('i686' 'x86_64')
-url="http://www.lyx.org";
-depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
-makedepends=('boost')
-optdepends=('rcs: built-in version control system'
-'texlive-latexextra: float wrap support')
-license=('GPL')
-source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
-lyx.desktop lyxrc.dist)
-backup=('etc/lyx/lyxrc.dist')
-install=lyx.install
-options=('emptydirs')
-sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
-  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
-  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
-  sed -i 's|"python|"python2|' lib/configure.py src/support/os.cpp
-  export CXXFLAGS="$CXXFLAGS -fpermissive"
-  ./configure --prefix=/usr \
---with-frontend=qt4 --without-included-boost \
---without-included-mythes
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  # install desktop entry
-  install -Dm644 "${srcdir}/lyx.desktop" \
-"${pkgdir}/usr/share/applications/lyx.desktop"
-  install -Dm644 "lib/images/lyx.png" \
-"${pkgdir}/usr/share/pixmaps/lyx.png"
-
-  # install default config file
-  install -Dm644 "${srcdir}/lyxrc.dist" "${pkgdir}/etc/lyx/lyxrc.dist"
-  ln -sf /etc/lyx/lyxrc.dist "${pkgdir}/usr/share/lyx/lyxrc.dist"
-}

Copied: lyx/repos/extra-i686/PKGBUILD (from rev 163700, 
lyx/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:51 UTC (rev 163711)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Jason Chu 
+
+pkgname=lyx
+pkgver=2.0.3
+pkgrel=4
+pkgdesc="An advanced WYSIWYM document processor & LaTeX front-end"
+arch=('i686' 'x86_64')
+url="http://www.lyx.org";
+depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
+makedepends=('boost')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
+lyx.desktop lyxrc.dist)
+backup=('etc/lyx/lyxrc.dist')
+install=lyx.install
+options=('emptydirs')
+sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
+  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
+  sed -i 's|"python|"python2|' lib/configure.py src/support/os.cpp
+  export CXXFLAGS="$CXXFLAGS -fpermissive"
+  ./configure --prefi

[arch-commits] Commit in mkvtoolnix/repos (10 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:05:57
  Author: ibiru
Revision: 163712

db-move: moved mkvtoolnix from [testing] to [extra] ( i686,  x86_64)

Added:
  mkvtoolnix/repos/extra-i686/PKGBUILD
(from rev 163700, mkvtoolnix/repos/testing-i686/PKGBUILD)
  mkvtoolnix/repos/extra-i686/mkvtoolnix.install
(from rev 163700, mkvtoolnix/repos/testing-i686/mkvtoolnix.install)
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
(from rev 163700, mkvtoolnix/repos/testing-x86_64/PKGBUILD)
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix.install
(from rev 163700, mkvtoolnix/repos/testing-x86_64/mkvtoolnix.install)
Deleted:
  mkvtoolnix/repos/extra-i686/PKGBUILD
  mkvtoolnix/repos/extra-i686/mkvtoolnix.install
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix.install
  mkvtoolnix/repos/testing-i686/
  mkvtoolnix/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |  168 +++---
 extra-i686/mkvtoolnix.install   |   28 +++---
 extra-x86_64/PKGBUILD   |  168 +++---
 extra-x86_64/mkvtoolnix.install |   28 +++---
 4 files changed, 196 insertions(+), 196 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:51 UTC (rev 163711)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:57 UTC (rev 163712)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: xduugu 
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=5.7.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.bunkus.org/videotools/mkvtoolnix/index.html";
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
-source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.bz2";)
-md5sums=('99ea44be570412dadafe4ccaee0cfe6e')
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  # Disable automagic curl dep used for online update checking
-  sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS="" CURL_LIBS=""
-
-  export CFLAGS="${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-  export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-
-  autoreconf
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --disable-gui
-  rake
-
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib
-  rake
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - CLI 
version"
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo2')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  rake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
-
-  rm -rf "${pkgdir}"/usr/bin/mmg
-  rm -rf "${pkgdir}"/usr/share/man/ja/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/nl/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/uk/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/applications
-  rm -rf "${pkgdir}"/usr/share/icons
-  rm -rf "${pkgdir}"/usr/share/mime
-}
-
-package_mkvtoolnix-gtk() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - wxGTK GUI"
-  depends=("mkvtoolnix-cli=${pkgver}" 'wxgtk' 'xdg-utils')
-  install=mkvtoolnix.install
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  rake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkv*
-  install -Dm755 src/mkvinfo "${pkgdir}"/usr/bin/mkvinfo-gtk
-  sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
"${pkgdir}"/usr/share/applications/mkvinfo.desktop
-
-  rm -rf "${pkgdir}"/usr/share/doc
-  rm -rf "${pkgdir}"/usr/share/locale
-  rm -rf "${pkgdir}"/usr/share/man/ja/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/nl/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/zh_CN/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/uk/man1/mkv*
-}

Copied: mkvtoolnix/repos/extra-i686/PKGBUILD (from rev 163700, 
mkvtoolnix/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:05:57 UTC (rev 163712)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
+pkgver=5.7.0
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.bunkus.org/videotools/mkvtoolnix/index.html";
+makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
+ 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
+source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.bz2";)
+md5sums=('99ea44be570412dad

[arch-commits] Commit in source-highlight/repos (10 files)

2012-07-17 Thread Ionut Biru
Date: Tuesday, July 17, 2012 @ 21:06:02
  Author: ibiru
Revision: 163713

db-move: moved source-highlight from [testing] to [extra] ( i686,  x86_64)

Added:
  source-highlight/repos/extra-i686/PKGBUILD
(from rev 163700, source-highlight/repos/testing-i686/PKGBUILD)
  source-highlight/repos/extra-i686/source-highlight.install
(from rev 163700, 
source-highlight/repos/testing-i686/source-highlight.install)
  source-highlight/repos/extra-x86_64/PKGBUILD
(from rev 163700, source-highlight/repos/testing-x86_64/PKGBUILD)
  source-highlight/repos/extra-x86_64/source-highlight.install
(from rev 163700, 
source-highlight/repos/testing-x86_64/source-highlight.install)
Deleted:
  source-highlight/repos/extra-i686/PKGBUILD
  source-highlight/repos/extra-i686/source-highlight.install
  source-highlight/repos/extra-x86_64/PKGBUILD
  source-highlight/repos/extra-x86_64/source-highlight.install
  source-highlight/repos/testing-i686/
  source-highlight/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   64 
 extra-i686/source-highlight.install   |   36 +-
 extra-x86_64/PKGBUILD |   64 
 extra-x86_64/source-highlight.install |   36 +-
 4 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 01:05:57 UTC (rev 163712)
+++ extra-i686/PKGBUILD 2012-07-18 01:06:02 UTC (rev 163713)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=source-highlight
-pkgver=3.1.7
-pkgrel=1
-pkgdesc="Convert source code to syntax highlighted document"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/src-highlite/";
-license=('GPL')
-depends=('bash' 'boost-libs')
-makedepends=('ctags' 'boost')
-options=('!libtool')
-install=$pkgname.install
-source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('0ff81588d3536b4c4e571122ba940595')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
- 
--with-bash-completion=${pkgdir}/usr/share/bash-completion/completions
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make prefix="${pkgdir}/usr" install
-}

Copied: source-highlight/repos/extra-i686/PKGBUILD (from rev 163700, 
source-highlight/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 01:06:02 UTC (rev 163713)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=source-highlight
+pkgver=3.1.7
+pkgrel=2
+pkgdesc="Convert source code to syntax highlighted document"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/src-highlite/";
+license=('GPL')
+depends=('bash' 'boost-libs')
+makedepends=('ctags' 'boost')
+options=('!libtool')
+install=$pkgname.install
+source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('0ff81588d3536b4c4e571122ba940595')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+ 
--with-bash-completion=${pkgdir}/usr/share/bash-completion/completions
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make prefix="${pkgdir}/usr" install
+}

Deleted: extra-i686/source-highlight.install
===
--- extra-i686/source-highlight.install 2012-07-18 01:05:57 UTC (rev 163712)
+++ extra-i686/source-highlight.install 2012-07-18 01:06:02 UTC (rev 163713)
@@ -1,18 +0,0 @@
-info_dir=usr/share/info
-info_files=(source-highlight.info source-highlight-lib.info)
-
-post_install() {
-  for f in ${info_files[@]}; do
-install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-   post_install
-}
-
-pre_remove() {
-  for f in ${info_files[@]}; do
-install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}

Copied: source-highlight/repos/extra-i686/source-highlight.install (from rev 
163700, source-highlight/repos/testing-i686/source-highlight.install)
===
--- extra-i686/source-highlight.install (rev 0)
+++ extra-i686/source-highlight.install 2012-07-18 01:06:02 UTC (rev 163713)
@@ -0,0 +1,18 @@
+info_dir=usr/share/info
+info_files=(source-highlight.info source-highlight-lib.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+   post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+install-info --

[arch-commits] Commit in coreutils/repos (20 files)

2012-07-17 Thread Dave Reisner
Date: Tuesday, July 17, 2012 @ 22:16:52
  Author: dreisner
Revision: 163714

db-move: moved coreutils from [testing] to [core] ( i686,  x86_64)

Added:
  
coreutils/repos/core-i686/0001-ls-color-each-symlink-to-relative-name-in-properly.patch
(from rev 163713, 
coreutils/repos/testing-i686/0001-ls-color-each-symlink-to-relative-name-in-properly.patch)
  coreutils/repos/core-i686/PKGBUILD
(from rev 163713, coreutils/repos/testing-i686/PKGBUILD)
  coreutils/repos/core-i686/coreutils-pam.patch
(from rev 163713, coreutils/repos/testing-i686/coreutils-pam.patch)
  coreutils/repos/core-i686/coreutils.install
(from rev 163713, coreutils/repos/testing-i686/coreutils.install)
  coreutils/repos/core-i686/su.pam
(from rev 163713, coreutils/repos/testing-i686/su.pam)
  
coreutils/repos/core-x86_64/0001-ls-color-each-symlink-to-relative-name-in-properly.patch
(from rev 163713, 
coreutils/repos/testing-x86_64/0001-ls-color-each-symlink-to-relative-name-in-properly.patch)
  coreutils/repos/core-x86_64/PKGBUILD
(from rev 163713, coreutils/repos/testing-x86_64/PKGBUILD)
  coreutils/repos/core-x86_64/coreutils-pam.patch
(from rev 163713, coreutils/repos/testing-x86_64/coreutils-pam.patch)
  coreutils/repos/core-x86_64/coreutils.install
(from rev 163713, coreutils/repos/testing-x86_64/coreutils.install)
  coreutils/repos/core-x86_64/su.pam
(from rev 163713, coreutils/repos/testing-x86_64/su.pam)
Deleted:
  coreutils/repos/core-i686/PKGBUILD
  coreutils/repos/core-i686/coreutils-pam.patch
  coreutils/repos/core-i686/coreutils.install
  coreutils/repos/core-i686/su.pam
  coreutils/repos/core-x86_64/PKGBUILD
  coreutils/repos/core-x86_64/coreutils-pam.patch
  coreutils/repos/core-x86_64/coreutils.install
  coreutils/repos/core-x86_64/su.pam
  coreutils/repos/testing-i686/
  coreutils/repos/testing-x86_64/

---+
 core-i686/0001-ls-color-each-symlink-to-relative-name-in-properly.patch   |  
135 +
 core-i686/PKGBUILD|  
129 -
 core-i686/coreutils-pam.patch |  
856 +-
 core-i686/coreutils.install   |   
42 
 core-i686/su.pam  |   
18 
 core-x86_64/0001-ls-color-each-symlink-to-relative-name-in-properly.patch |  
135 +
 core-x86_64/PKGBUILD  |  
129 -
 core-x86_64/coreutils-pam.patch   |  
856 +-
 core-x86_64/coreutils.install |   
42 
 core-x86_64/su.pam|   
18 
 10 files changed, 1318 insertions(+), 1042 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 163713:163714 to see the changes.


[arch-commits] Commit in grep/repos (14 files)

2012-07-17 Thread Dave Reisner
Date: Tuesday, July 17, 2012 @ 22:16:59
  Author: dreisner
Revision: 163715

db-move: moved grep from [testing] to [core] ( i686,  x86_64)

Added:
  grep/repos/core-i686/PKGBUILD
(from rev 163713, grep/repos/testing-i686/PKGBUILD)
  grep/repos/core-i686/grep-2.11-exclude-dir-crash.patch
(from rev 163713, grep/repos/testing-i686/grep-2.11-exclude-dir-crash.patch)
  grep/repos/core-i686/grep.install
(from rev 163713, grep/repos/testing-i686/grep.install)
  grep/repos/core-x86_64/PKGBUILD
(from rev 163713, grep/repos/testing-x86_64/PKGBUILD)
  grep/repos/core-x86_64/grep-2.11-exclude-dir-crash.patch
(from rev 163713, 
grep/repos/testing-x86_64/grep-2.11-exclude-dir-crash.patch)
  grep/repos/core-x86_64/grep.install
(from rev 163713, grep/repos/testing-x86_64/grep.install)
Deleted:
  grep/repos/core-i686/PKGBUILD
  grep/repos/core-i686/grep-2.11-exclude-dir-crash.patch
  grep/repos/core-i686/grep.install
  grep/repos/core-x86_64/PKGBUILD
  grep/repos/core-x86_64/grep-2.11-exclude-dir-crash.patch
  grep/repos/core-x86_64/grep.install
  grep/repos/testing-i686/
  grep/repos/testing-x86_64/

---+
 core-i686/PKGBUILD|   71 +--
 core-i686/grep-2.11-exclude-dir-crash.patch   |   88 
 core-i686/grep.install|   42 +--
 core-x86_64/PKGBUILD  |   71 +--
 core-x86_64/grep-2.11-exclude-dir-crash.patch |   88 
 core-x86_64/grep.install  |   42 +--
 6 files changed, 198 insertions(+), 204 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-07-18 02:16:52 UTC (rev 163714)
+++ core-i686/PKGBUILD  2012-07-18 02:16:59 UTC (rev 163715)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: judd 
-
-pkgname=grep
-pkgver=2.13
-pkgrel=1
-pkgdesc="A string search utility"
-arch=('i686' 'x86_64')
-license=('GPL3')
-url="http://www.gnu.org/software/grep/grep.html";
-groups=('base')
-depends=('glibc' 'pcre' 'sh')
-makedepends=('texinfo')
-install=${pkgname}.install
-source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-md5sums=('5894d484e6c02249f9702d0d8a472115'
- '99acaa4d45ab931be2ecba49a1766df7')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --without-included-regex
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  
-  install -dm755 ${pkgdir}/bin
-  ln -s /usr/bin/grep ${pkgdir}/bin/grep
-}

Copied: grep/repos/core-i686/PKGBUILD (from rev 163713, 
grep/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-07-18 02:16:59 UTC (rev 163715)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=grep
+pkgver=2.13
+pkgrel=2
+pkgdesc="A string search utility"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/grep/grep.html";
+groups=('base')
+depends=('glibc' 'pcre' 'sh')
+makedepends=('texinfo')
+install=${pkgname}.install
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('5894d484e6c02249f9702d0d8a472115'
+ '99acaa4d45ab931be2ecba49a1766df7')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --without-included-regex
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: core-i686/grep-2.11-exclude-dir-crash.patch
===
--- core-i686/grep-2.11-exclude-dir-crash.patch 2012-07-18 02:16:52 UTC (rev 
163714)
+++ core-i686/grep-2.11-exclude-dir-crash.patch 2012-07-18 02:16:59 UTC (rev 
163715)
@@ -1,44 +0,0 @@
-From 12c957f786b12a4dd116f9c40a715d671d17fa16 Mon Sep 17 00:00:00 2001
-From: Allan McRae 
-Date: Mon, 12 Mar 2012 09:28:01 +0100
-Subject: [PATCH] grep: fix segfault with -r --exclude-dir and no file operand
-
-* src/main.c (grepdir): Don't invoke excluded_file_name on NULL.
-* NEWS (Bug fixes): Mention it.

- NEWS   |5 +
- src/main.c |2 +-
- 2 files changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/NEWS b/NEWS
-index d0a63d5..d4d70f5 100644
 a/NEWS
-+++ b/NEWS
-@@ -2,6 +2,11 @@ GNU grep NEWS-*- outline 
-*-
- 
- * Noteworthy changes in release ?.? (-??-??) [?]
- 
-+** Bug fixes
-+
-+   grep no longer segfaults with -r --exclude-dir and no file operand.
-+   I.e., ":|grep -r --exclude-dir=D PAT" would segfault.
-+
- 
- * Noteworthy changes in release 2.11 (2012-03-02) [stable]
- 
-diff --git a/src/main.c b

[arch-commits] Commit in kbd/repos (10 files)

2012-07-17 Thread Dave Reisner
Date: Tuesday, July 17, 2012 @ 22:17:05
  Author: dreisner
Revision: 163716

db-move: moved kbd from [testing] to [core] ( i686,  x86_64)

Added:
  kbd/repos/core-i686/PKGBUILD
(from rev 163713, kbd/repos/testing-i686/PKGBUILD)
  kbd/repos/core-i686/fix-es.po.patch
(from rev 163713, kbd/repos/testing-i686/fix-es.po.patch)
  kbd/repos/core-x86_64/PKGBUILD
(from rev 163713, kbd/repos/testing-x86_64/PKGBUILD)
  kbd/repos/core-x86_64/fix-es.po.patch
(from rev 163713, kbd/repos/testing-x86_64/fix-es.po.patch)
Deleted:
  kbd/repos/core-i686/PKGBUILD
  kbd/repos/core-i686/fix-es.po.patch
  kbd/repos/core-x86_64/PKGBUILD
  kbd/repos/core-x86_64/fix-es.po.patch
  kbd/repos/testing-i686/
  kbd/repos/testing-x86_64/

-+
 core-i686/PKGBUILD  |   82 +++---
 core-i686/fix-es.po.patch   |   22 +--
 core-x86_64/PKGBUILD|   82 +++---
 core-x86_64/fix-es.po.patch |   22 +--
 4 files changed, 98 insertions(+), 110 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-07-18 02:16:59 UTC (rev 163715)
+++ core-i686/PKGBUILD  2012-07-18 02:17:05 UTC (rev 163716)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=kbd
-pkgver=1.15.3
-pkgrel=2
-pkgdesc="Keytable files and keyboard utilities"
-arch=('i686' 'x86_64')
-url="ftp://ftp.altlinux.org/pub/people/legion/kbd/";
-license=('GPL')
-depends=('glibc')
-source=(ftp://ftp.altlinux.org/pub/people/legion/kbd/${pkgname}-${pkgver}.tar.gz
-fix-es.po.patch)
-md5sums=('8143e179a0f3c25646ce5085e8777200'
- '4ded3edb50fb7a3277bae6a870cee812')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ../fix-es.po.patch
-  # rename keymap files with the same names
-  # this is needed because when only name of keymap is specified
-  # loadkeys loads the first keymap it can find, which is bad (see FS#13837)
-  # this should be removed when upstream adopts the change
-  mv data/keymaps/i386/qwertz/cz{,-qwertz}.map
-  mv data/keymaps/i386/olpc/es{,-olpc}.map
-  mv data/keymaps/i386/olpc/pt{,-olpc}.map
-  mv data/keymaps/i386/dvorak/no{,-dvorak}.map
-  mv data/keymaps/i386/fgGIod/trf{,-fgGIod}.map
-  mv data/keymaps/i386/colemak/{en-latin9,colemak}.map
-
-  ./configure --prefix=/usr --datadir=/usr/share/kbd --mandir=/usr/share/man
-  make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes DESTDIR=${pkgdir} install
-
-  # this is needed because initscripts call /bin/loadkeys
-  # remove this when next versions of kbd
-  # and initscripts with /usr/bin/loadkeys usage will be released
-  mkdir ${pkgdir}/bin
-  ln -s /usr/bin/loadkeys ${pkgdir}/bin/loadkeys
-}

Copied: kbd/repos/core-i686/PKGBUILD (from rev 163713, 
kbd/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-07-18 02:17:05 UTC (rev 163716)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=kbd
+pkgver=1.15.3
+pkgrel=3
+pkgdesc="Keytable files and keyboard utilities"
+arch=('i686' 'x86_64')
+url="ftp://ftp.altlinux.org/pub/people/legion/kbd/";
+license=('GPL')
+depends=('glibc')
+source=(ftp://ftp.altlinux.org/pub/people/legion/kbd/${pkgname}-${pkgver}.tar.gz
+fix-es.po.patch)
+md5sums=('8143e179a0f3c25646ce5085e8777200'
+ '4ded3edb50fb7a3277bae6a870cee812')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-es.po.patch
+  # rename keymap files with the same names
+  # this is needed because when only name of keymap is specified
+  # loadkeys loads the first keymap it can find, which is bad (see FS#13837)
+  # this should be removed when upstream adopts the change
+  mv data/keymaps/i386/qwertz/cz{,-qwertz}.map
+  mv data/keymaps/i386/olpc/es{,-olpc}.map
+  mv data/keymaps/i386/olpc/pt{,-olpc}.map
+  mv data/keymaps/i386/dvorak/no{,-dvorak}.map
+  mv data/keymaps/i386/fgGIod/trf{,-fgGIod}.map
+  mv data/keymaps/i386/colemak/{en-latin9,colemak}.map
+
+  ./configure --prefix=/usr --datadir=/usr/share/kbd --mandir=/usr/share/man
+  make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes DESTDIR=${pkgdir} install
+}

Deleted: core-i686/fix-es.po.patch
===
--- core-i686/fix-es.po.patch   2012-07-18 02:16:59 UTC (rev 163715)
+++ core-i686/fix-es.po.patch   2012-07-18 02:17:05 UTC (rev 163716)
@@ -1,11 +0,0 @@
 kbd-1.15.3/po/es.old   2011-05-14 23:12:49.0 +0200
-+++ kbd-1.15.3/po/es.po2011-05-15 21:07:02.120669404 +0200
-@@ -1363,7 +1363,7 @@
- #: src/setfont.c:682
- #, c-format
- msgid "Saved %d-char %dx%d font file on 

[arch-commits] Commit in elfutils/trunk (2 files)

2012-07-17 Thread Eric Bélanger
Date: Tuesday, July 17, 2012 @ 23:05:06
  Author: eric
Revision: 163717

upgpkg: elfutils 0.154-1

Upstream update, Update license, Fix depends, Add patch to fix tests

Added:
  elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch
Modified:
  elfutils/trunk/PKGBUILD

---+
 PKGBUILD  |   16 +---
 elfutils-0.154-binutils-pr-ld-13621.patch |   10 ++
 2 files changed, 19 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-18 02:17:05 UTC (rev 163716)
+++ PKGBUILD2012-07-18 03:05:06 UTC (rev 163717)
@@ -3,31 +3,33 @@
 # Contributor: Andrej Gelenberg 
 
 pkgname=elfutils
-pkgver=0.153
+pkgver=0.154
 pkgrel=1
 pkgdesc="Collection of libraries and utilities for working with ELF object 
files and DWARF debugging information"
 arch=('i686' 'x86_64')
 url="https://fedorahosted.org/elfutils/";
-license=('GPL2')
-depends=('glibc')
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
 provides=('libelf')
 replaces=('libelf')
 conflicts=('libelf')
 options=('!makeflags')
-source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
-md5sums=('289a146182bc29f0236eaa15d8ebdf98'
- '1af9fe25e9316173b81fa4fad3a17ed5')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig}
 \
+elfutils-0.154-binutils-pr-ld-13621.patch)
+sha1sums=('3a92a6f636cc3d14d4b3b00ba5c1e88a2a8d510b'
+  '956461d44b03823e0b448e78b1f4aa25ef269e1e'
+  '09681b728edb86c77eed47286554bef048f3507f')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   CFLAGS+=" -g"  # required for test-suite success
+  patch -p1 -i "${srcdir}/elfutils-0.154-binutils-pr-ld-13621.patch"
   ./configure --prefix=/usr --program-prefix="eu-"
   make
 }
 
 check() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i "s#./alldts#testrun ./alldts#" tests/run-alldts.sh
   make check
 }
 

Added: elfutils-0.154-binutils-pr-ld-13621.patch
===
--- elfutils-0.154-binutils-pr-ld-13621.patch   (rev 0)
+++ elfutils-0.154-binutils-pr-ld-13621.patch   2012-07-18 03:05:06 UTC (rev 
163717)
@@ -0,0 +1,10 @@
+diff --git a/tests/run-elflint-self.sh b/tests/run-elflint-self.sh
+index 8aca9e1..d449416 100755
+--- a/tests/run-elflint-self.sh
 b/tests/run-elflint-self.sh
+@@ -51,4 +51,4 @@ runtest ../libebl/libebl_sh.so
+ runtest ../libebl/libebl_sparc.so
+ runtest ../libebl/libebl_x86_64.so
+ 
+-exit $status
++test $status == 0 || echo "binutils PR ld/13621 workaround"



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

2012-07-17 Thread Eric Bélanger
Date: Tuesday, July 17, 2012 @ 23:05:26
  Author: eric
Revision: 163718

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

Added:
  elfutils/repos/extra-i686/PKGBUILD
(from rev 163717, elfutils/trunk/PKGBUILD)
  elfutils/repos/extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch
(from rev 163717, elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch)
  elfutils/repos/extra-x86_64/PKGBUILD
(from rev 163717, elfutils/trunk/PKGBUILD)
  elfutils/repos/extra-x86_64/elfutils-0.154-binutils-pr-ld-13621.patch
(from rev 163717, elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch)
Deleted:
  elfutils/repos/extra-i686/PKGBUILD
  elfutils/repos/extra-x86_64/PKGBUILD

+
 extra-i686/PKGBUILD|   76 +++
 extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch   |   10 +
 extra-x86_64/PKGBUILD  |   76 +++
 extra-x86_64/elfutils-0.154-binutils-pr-ld-13621.patch |   10 +
 4 files changed, 98 insertions(+), 74 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-18 03:05:06 UTC (rev 163717)
+++ extra-i686/PKGBUILD 2012-07-18 03:05:26 UTC (rev 163718)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: 
-# Contributor: Andrej Gelenberg 
-
-pkgname=elfutils
-pkgver=0.153
-pkgrel=1
-pkgdesc="Collection of libraries and utilities for working with ELF object 
files and DWARF debugging information"
-arch=('i686' 'x86_64')
-url="https://fedorahosted.org/elfutils/";
-license=('GPL2')
-depends=('glibc')
-provides=('libelf')
-replaces=('libelf')
-conflicts=('libelf')
-options=('!makeflags')
-source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
-md5sums=('289a146182bc29f0236eaa15d8ebdf98'
- '1af9fe25e9316173b81fa4fad3a17ed5')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  CFLAGS+=" -g"  # required for test-suite success
-  ./configure --prefix=/usr --program-prefix="eu-"
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i "s#./alldts#testrun ./alldts#" tests/run-alldts.sh
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: elfutils/repos/extra-i686/PKGBUILD (from rev 163717, 
elfutils/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 03:05:26 UTC (rev 163718)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: 
+# Contributor: Andrej Gelenberg 
+
+pkgname=elfutils
+pkgver=0.154
+pkgrel=1
+pkgdesc="Collection of libraries and utilities for working with ELF object 
files and DWARF debugging information"
+arch=('i686' 'x86_64')
+url="https://fedorahosted.org/elfutils/";
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+provides=('libelf')
+replaces=('libelf')
+conflicts=('libelf')
+options=('!makeflags')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig}
 \
+elfutils-0.154-binutils-pr-ld-13621.patch)
+sha1sums=('3a92a6f636cc3d14d4b3b00ba5c1e88a2a8d510b'
+  '956461d44b03823e0b448e78b1f4aa25ef269e1e'
+  '09681b728edb86c77eed47286554bef048f3507f')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=" -g"  # required for test-suite success
+  patch -p1 -i "${srcdir}/elfutils-0.154-binutils-pr-ld-13621.patch"
+  ./configure --prefix=/usr --program-prefix="eu-"
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: elfutils/repos/extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch 
(from rev 163717, elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch)
===
--- extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch
(rev 0)
+++ extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch2012-07-18 
03:05:26 UTC (rev 163718)
@@ -0,0 +1,10 @@
+diff --git a/tests/run-elflint-self.sh b/tests/run-elflint-self.sh
+index 8aca9e1..d449416 100755
+--- a/tests/run-elflint-self.sh
 b/tests/run-elflint-self.sh
+@@ -51,4 +51,4 @@ runtest ../libebl/libebl_sh.so
+ runtest ../libebl/libebl_sparc.so
+ runtest ../libebl/libebl_x86_64.so
+ 
+-exit $status
++test $status == 0 || echo "binutils PR ld/13621 workaround"

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-18 03:05:06 UTC (rev 163717)
+++ extra-x86_64/PKGBUILD   2012-07-18 03:05:26 UTC (rev 163718)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: 
-# Contributor: Andrej Gelenberg 
-
-pkgname=elfutils
-pkgver=0.153
-pkgrel=1
-pkgdesc="Collection of libraries and utilities for working 

[arch-commits] Commit in texlive-bin/trunk (2 files)

2012-07-17 Thread Rémy Oudompheng
Date: Wednesday, July 18, 2012 @ 02:07:56
  Author: remy
Revision: 163719

upgpkg: texlive-bin 2012.0-2

Sort backup array, add patch to fix Luatex bug
with radicals.

Added:
  texlive-bin/trunk/luatex-r4449-radical-rule-thickness.patch
Modified:
  texlive-bin/trunk/PKGBUILD

---+
 PKGBUILD  |   22 +-
 luatex-r4449-radical-rule-thickness.patch |   23 +++
 2 files changed, 36 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-18 03:05:26 UTC (rev 163718)
+++ PKGBUILD2012-07-18 06:07:56 UTC (rev 163719)
@@ -4,7 +4,7 @@
 
 pkgname=texlive-bin
 pkgver=2012.0
-pkgrel=1
+pkgrel=2
 pkgdesc="TeX Live binaries"
 license=('GPL')
 arch=('i686' 'x86_64')
@@ -22,19 +22,19 @@
 'poppler-0.20.patch'
 
'http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-20120623.tar.xz'
 
'http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-texmf-20120623.tar.xz'
+'luatex-r4449-radical-rule-thickness.patch'
 )
 backup=(etc/texmf/web2c/texmf.cnf \
-  etc/texmf/chktex/chktexrc \
-   etc/texmf/web2c/mktex.cnf \
-   etc/texmf/web2c/updmap.cfg \
-   etc/texmf/web2c/fmtutil.cnf \
+etc/texmf/chktex/chktexrc \
+   etc/texmf/dvipdfm/config/config \
+   etc/texmf/dvipdfmx/dvipdfmx.cfg \
+   etc/texmf/dvips/config/config.ps \
etc/texmf/tex/generic/config/language.dat \
etc/texmf/tex/generic/config/language.def \
etc/texmf/tex/generic/config/pdftexconfig.tex \
etc/texmf/ttf2pk/ttf2pk.cfg \
-   etc/texmf/dvips/config/config.ps \
-   etc/texmf/dvipdfmx/dvipdfmx.cfg \
-   etc/texmf/dvipdfm/config/config \
+   etc/texmf/web2c/fmtutil.cnf \
+   etc/texmf/web2c/mktex.cnf \
etc/texmf/xdvi/XDvi)
 
 md5sums=('220a4f4cc0d915bf8fcbcb553dcee1ae'
@@ -42,7 +42,8 @@
  '393a4bf67adc7ca5df2b386759d1a637'
  'e3a664d5a7f0923f35060fe9d25d2573'
  'ac2c3c3aa765581f8504e21a5edbfb9f'
- 'f315a860158cfc952c82a6d759961024')
+ 'f315a860158cfc952c82a6d759961024'
+ '5190f3295eb9a604c5f17f5bd607299b')
 
 build() {
if [ "${CARCH}" = "x86_64" ]; then
@@ -55,6 +56,9 @@
patch -Np0 -i fix-fontforge-encoding.patch
# fix build with poppler >= 0.20
patch -Np0 -i poppler-0.20.patch
+   # fix radical rule thickness regression in Luatex
+   # http://tex.stackexchange.com/q/61952/729
+   patch -Np0 -i luatex-r4449-radical-rule-thickness.patch
# t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
#

Added: luatex-r4449-radical-rule-thickness.patch
===
--- luatex-r4449-radical-rule-thickness.patch   (rev 0)
+++ luatex-r4449-radical-rule-thickness.patch   2012-07-18 06:07:56 UTC (rev 
163719)
@@ -0,0 +1,23 @@
+Index: source/texk/web2c/luatexdir/tex/mlist.w
+===
+--- source/texk/web2c/luatexdir/tex/mlist.w(revision 4448)
 source/texk/web2c/luatexdir/tex/mlist.w(revision 4449)
+@@ -1798,7 +1798,17 @@
+ theta = fraction_rule(cur_style);
+ y = var_delimiter(left_delimiter(q), cur_size,
+   height(x) + depth(x) + clr + theta, NULL, 
cur_style);
+-theta = height(y);
++  /* If |y| is a composite then set |theta| to the height of its top
++   character, else set it to the height of |y|. */
++if (list_ptr(y) != null
++&& type(list_ptr(y)) == hlist_node
++&& list_ptr(list_ptr(y)) != null
++&& type(list_ptr(list_ptr(y))) == glyph_node) { /* and it 
should be */
++theta = char_height(font(list_ptr(list_ptr(y))),
++   character(list_ptr(list_ptr(y;
++} else {
++theta = height(y);
++}
+ } else {
+ y = var_delimiter(left_delimiter(q), cur_size,
+   height(x) + depth(x) + clr + theta, NULL, 
cur_style);



[arch-commits] Commit in texlive-bin/repos (26 files)

2012-07-17 Thread Rémy Oudompheng
Date: Wednesday, July 18, 2012 @ 02:12:56
  Author: remy
Revision: 163720

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

Added:
  texlive-bin/repos/testing-i686/09-texlive-fonts.conf
(from rev 163719, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 163719, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 163719, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/luatex-r4449-radical-rule-thickness.patch
(from rev 163719, 
texlive-bin/trunk/luatex-r4449-radical-rule-thickness.patch)
  texlive-bin/repos/testing-i686/poppler-0.20.patch
(from rev 163719, texlive-bin/trunk/poppler-0.20.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 163719, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-i686/texmf.cnf
(from rev 163719, texlive-bin/trunk/texmf.cnf)
  texlive-bin/repos/testing-x86_64/09-texlive-fonts.conf
(from rev 163719, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 163719, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 163719, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/luatex-r4449-radical-rule-thickness.patch
(from rev 163719, 
texlive-bin/trunk/luatex-r4449-radical-rule-thickness.patch)
  texlive-bin/repos/testing-x86_64/poppler-0.20.patch
(from rev 163719, texlive-bin/trunk/poppler-0.20.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 163719, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-x86_64/texmf.cnf
(from rev 163719, texlive-bin/trunk/texmf.cnf)
Deleted:
  texlive-bin/repos/testing-i686/09-texlive-fonts.conf
  texlive-bin/repos/testing-i686/PKGBUILD
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
  texlive-bin/repos/testing-i686/poppler-0.20.patch
  texlive-bin/repos/testing-i686/texlive.install
  texlive-bin/repos/testing-i686/texmf.cnf
  texlive-bin/repos/testing-x86_64/09-texlive-fonts.conf
  texlive-bin/repos/testing-x86_64/PKGBUILD
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
  texlive-bin/repos/testing-x86_64/poppler-0.20.patch
  texlive-bin/repos/testing-x86_64/texlive.install
  texlive-bin/repos/testing-x86_64/texmf.cnf

--+
 testing-i686/09-texlive-fonts.conf   |   18 
 testing-i686/PKGBUILD|  618 ++---
 testing-i686/fix-fontforge-encoding.patch|   24 
 testing-i686/luatex-r4449-radical-rule-thickness.patch   |   23 
 testing-i686/poppler-0.20.patch  |   44 
 testing-i686/texlive.install |   74 
 testing-i686/texmf.cnf   | 1448 ++---
 testing-x86_64/09-texlive-fonts.conf |   18 
 testing-x86_64/PKGBUILD  |  618 ++---
 testing-x86_64/fix-fontforge-encoding.patch  |   24 
 testing-x86_64/luatex-r4449-radical-rule-thickness.patch |   23 
 testing-x86_64/poppler-0.20.patch|   44 
 testing-x86_64/texlive.install   |   74 
 testing-x86_64/texmf.cnf | 1448 ++---
 14 files changed, 2276 insertions(+),  deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 163719:163720 to see the changes.


[arch-commits] Commit in fcpci/trunk (PKGBUILD)

2012-07-17 Thread Tobias Powalowski
Date: Wednesday, July 18, 2012 @ 02:38:04
  Author: tpowa
Revision: 163721

upgpkg: fcpci 31107-77

rebuild against 3.4.5

Modified:
  fcpci/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-18 06:12:56 UTC (rev 163720)
+++ PKGBUILD2012-07-18 06:38:04 UTC (rev 163721)
@@ -3,7 +3,7 @@
 
 pkgname=fcpci
 pkgver=31107
-pkgrel=76
+pkgrel=77
 _extramodules=extramodules-3.4-ARCH
 pkgdesc="AVM ISDN driver for FRITZ PCI isdn cards. For stock arch linux kernel"
 arch=(i686 x86_64)



[arch-commits] Commit in fcpci/repos (34 files)

2012-07-17 Thread Tobias Powalowski
Date: Wednesday, July 18, 2012 @ 02:39:49
  Author: tpowa
Revision: 163722

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

Added:
  fcpci/repos/testing-i686/
  fcpci/repos/testing-i686/PKGBUILD
(from rev 163721, fcpci/trunk/PKGBUILD)
  fcpci/repos/testing-i686/atomic.patch
(from rev 163721, fcpci/trunk/atomic.patch)
  fcpci/repos/testing-i686/fcpci.install
(from rev 163721, fcpci/trunk/fcpci.install)
  fcpci/repos/testing-i686/kernel-2.6.19.patch
(from rev 163721, fcpci/trunk/kernel-2.6.19.patch)
  fcpci/repos/testing-i686/kernel-2.6.20.patch
(from rev 163721, fcpci/trunk/kernel-2.6.20.patch)
  fcpci/repos/testing-i686/kernel-2.6.22.patch
(from rev 163721, fcpci/trunk/kernel-2.6.22.patch)
  fcpci/repos/testing-i686/kernel-2.6.24.patch
(from rev 163721, fcpci/trunk/kernel-2.6.24.patch)
  fcpci/repos/testing-i686/kernel-2.6.31.patch
(from rev 163721, fcpci/trunk/kernel-2.6.31.patch)
  fcpci/repos/testing-i686/kernel-2.6.34.patch
(from rev 163721, fcpci/trunk/kernel-2.6.34.patch)
  fcpci/repos/testing-i686/kernel-2.6.39-i686.patch
(from rev 163721, fcpci/trunk/kernel-2.6.39-i686.patch)
  fcpci/repos/testing-i686/kernel-2.6.39-x86_64.patch
(from rev 163721, fcpci/trunk/kernel-2.6.39-x86_64.patch)
  fcpci/repos/testing-i686/kernel-2.6.39.patch
(from rev 163721, fcpci/trunk/kernel-2.6.39.patch)
  fcpci/repos/testing-i686/kernel-3.2.0.patch
(from rev 163721, fcpci/trunk/kernel-3.2.0.patch)
  fcpci/repos/testing-i686/kernel-3.4.0.patch
(from rev 163721, fcpci/trunk/kernel-3.4.0.patch)
  fcpci/repos/testing-i686/string.h
(from rev 163721, fcpci/trunk/string.h)
  fcpci/repos/testing-i686/string64.h
(from rev 163721, fcpci/trunk/string64.h)
  fcpci/repos/testing-x86_64/
  fcpci/repos/testing-x86_64/PKGBUILD
(from rev 163721, fcpci/trunk/PKGBUILD)
  fcpci/repos/testing-x86_64/atomic.patch
(from rev 163721, fcpci/trunk/atomic.patch)
  fcpci/repos/testing-x86_64/fcpci.install
(from rev 163721, fcpci/trunk/fcpci.install)
  fcpci/repos/testing-x86_64/kernel-2.6.19.patch
(from rev 163721, fcpci/trunk/kernel-2.6.19.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.20.patch
(from rev 163721, fcpci/trunk/kernel-2.6.20.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.22.patch
(from rev 163721, fcpci/trunk/kernel-2.6.22.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.24.patch
(from rev 163721, fcpci/trunk/kernel-2.6.24.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.31.patch
(from rev 163721, fcpci/trunk/kernel-2.6.31.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.34.patch
(from rev 163721, fcpci/trunk/kernel-2.6.34.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.39-i686.patch
(from rev 163721, fcpci/trunk/kernel-2.6.39-i686.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.39-x86_64.patch
(from rev 163721, fcpci/trunk/kernel-2.6.39-x86_64.patch)
  fcpci/repos/testing-x86_64/kernel-2.6.39.patch
(from rev 163721, fcpci/trunk/kernel-2.6.39.patch)
  fcpci/repos/testing-x86_64/kernel-3.2.0.patch
(from rev 163721, fcpci/trunk/kernel-3.2.0.patch)
  fcpci/repos/testing-x86_64/kernel-3.4.0.patch
(from rev 163721, fcpci/trunk/kernel-3.4.0.patch)
  fcpci/repos/testing-x86_64/string.h
(from rev 163721, fcpci/trunk/string.h)
  fcpci/repos/testing-x86_64/string64.h
(from rev 163721, fcpci/trunk/string64.h)

---+
 testing-i686/PKGBUILD |   91 +
 testing-i686/atomic.patch |   18 +
 testing-i686/fcpci.install|   25 +
 testing-i686/kernel-2.6.19.patch  |   20 +
 testing-i686/kernel-2.6.20.patch  |   55 +++
 testing-i686/kernel-2.6.22.patch  |   11 
 testing-i686/kernel-2.6.24.patch  |   14 
 testing-i686/kernel-2.6.31.patch  |   11 
 testing-i686/kernel-2.6.34.patch  |  170 +
 testing-i686/kernel-2.6.39-i686.patch |   11 
 testing-i686/kernel-2.6.39-x86_64.patch   |   11 
 testing-i686/kernel-2.6.39.patch  |   22 +
 testing-i686/kernel-3.2.0.patch   |   10 
 testing-i686/kernel-3.4.0.patch   |   10 
 testing-i686/string.h |  493 
 testing-i686/string64.h   |   67 +++
 testing-x86_64/PKGBUILD   |   91 +
 testing-x86_64/atomic.patch   |   18 +
 testing-x86_64/fcpci.install  |   25 +
 testing-x86_64/kernel-2.6.19.patch|   20 +
 testing-x86_64/kernel-2.6.20.patch|   55 +++
 testing-x86_64/kernel-2.6.22.patch|   11 
 testing-x86_64/kernel-2.6.24.patch|   14 
 testing-x86_64/kernel-2.6.31.patch|   11 
 testing-x86_64/kernel-2.6.34.patch|  170 +
 testing-x86_64/kernel-2.6.39-i686.patch   |   11 
 testing-x86_64/kernel-2.6.39-x86_64.patch |   11 
 testing-x86_64/kernel-2.6.39.patch|   22 +
 testing-x86_64/kernel-3.2.0.patch |   10 
 testing-x86_64/kernel-3.4.0.patch 

  1   2   >