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

Lukas Fleischer lfleischer at nymeria.archlinux.org
Sun Apr 13 08:35:54 UTC 2014


    Date: Sunday, April 13, 2014 @ 10:35:54
  Author: lfleischer
Revision: 109308

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

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

-----------------------------------+
 /PKGBUILD                         |   68 ++++++++++++++++++++++++++++++++++++
 /redshift.install                 |   22 +++++++++++
 community-i686/PKGBUILD           |   33 -----------------
 community-i686/redshift.install   |   11 -----
 community-x86_64/PKGBUILD         |   33 -----------------
 community-x86_64/redshift.install |   11 -----
 6 files changed, 90 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-04-13 08:35:41 UTC (rev 109307)
+++ community-i686/PKGBUILD	2014-04-13 08:35:54 UTC (rev 109308)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Geoffrey Teale <tealeg at stop-squark>
-# Contributor: Mark, Huo Mian <markhuomian[at]gmail[dot]com>
-# Contributor: Biginoz <biginoz a free dot fr>
-
-pkgname=redshift
-pkgver=1.9
-pkgrel=1
-pkgdesc='Adjusts the color temperature of your screen according to your surroundings.'
-arch=('i686' 'x86_64')
-url='http://jonls.dk/redshift/'
-license=('GPL3')
-depends=('gconf' 'geoclue' 'libxxf86vm')
-optdepends=('pygtk: for gtk-redshift'
-            'python-xdg: for gtk-redshift'
-            'librsvg: for gtk-redshift')
-makedepends=('python')
-install='redshift.install'
-source=("https://github.com/jonls/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('9640218cd9ba88f6d10b347b2277c415')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  PYTHON=/usr/bin/python ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: redshift/repos/community-i686/PKGBUILD (from rev 109307, redshift/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-04-13 08:35:54 UTC (rev 109308)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Geoffrey Teale <tealeg at stop-squark>
+# Contributor: Mark, Huo Mian <markhuomian[at]gmail[dot]com>
+# Contributor: Biginoz <biginoz a free dot fr>
+# Contributor: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=redshift
+pkgver=1.9
+pkgrel=2
+pkgdesc='Adjusts the color temperature of your screen according to your surroundings.'
+arch=('i686' 'x86_64')
+url='http://jonls.dk/redshift/'
+license=('GPL3')
+depends=('geoclue' 'libdrm' 'libxcb' 'libxxf86vm')
+optdepends=('pygtk: for redshift-gtk'
+            'python-xdg: for redshift-gtk'
+            'librsvg: for redshift-gtk')
+makedepends=('python')
+install='redshift.install'
+source=("https://github.com/jonls/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
+md5sums=('9640218cd9ba88f6d10b347b2277c415')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --enable-drm --enable-randr --enable-vidmode --enable-geoclue
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/redshift.install
===================================================================
--- community-i686/redshift.install	2014-04-13 08:35:41 UTC (rev 109307)
+++ community-i686/redshift.install	2014-04-13 08:35:54 UTC (rev 109308)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: redshift/repos/community-i686/redshift.install (from rev 109307, redshift/trunk/redshift.install)
===================================================================
--- community-i686/redshift.install	                        (rev 0)
+++ community-i686/redshift.install	2014-04-13 08:35:54 UTC (rev 109308)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-04-13 08:35:41 UTC (rev 109307)
+++ community-x86_64/PKGBUILD	2014-04-13 08:35:54 UTC (rev 109308)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Geoffrey Teale <tealeg at stop-squark>
-# Contributor: Mark, Huo Mian <markhuomian[at]gmail[dot]com>
-# Contributor: Biginoz <biginoz a free dot fr>
-
-pkgname=redshift
-pkgver=1.9
-pkgrel=1
-pkgdesc='Adjusts the color temperature of your screen according to your surroundings.'
-arch=('i686' 'x86_64')
-url='http://jonls.dk/redshift/'
-license=('GPL3')
-depends=('gconf' 'geoclue' 'libxxf86vm')
-optdepends=('pygtk: for gtk-redshift'
-            'python-xdg: for gtk-redshift'
-            'librsvg: for gtk-redshift')
-makedepends=('python')
-install='redshift.install'
-source=("https://github.com/jonls/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('9640218cd9ba88f6d10b347b2277c415')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  PYTHON=/usr/bin/python ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: redshift/repos/community-x86_64/PKGBUILD (from rev 109307, redshift/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-04-13 08:35:54 UTC (rev 109308)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Geoffrey Teale <tealeg at stop-squark>
+# Contributor: Mark, Huo Mian <markhuomian[at]gmail[dot]com>
+# Contributor: Biginoz <biginoz a free dot fr>
+# Contributor: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=redshift
+pkgver=1.9
+pkgrel=2
+pkgdesc='Adjusts the color temperature of your screen according to your surroundings.'
+arch=('i686' 'x86_64')
+url='http://jonls.dk/redshift/'
+license=('GPL3')
+depends=('geoclue' 'libdrm' 'libxcb' 'libxxf86vm')
+optdepends=('pygtk: for redshift-gtk'
+            'python-xdg: for redshift-gtk'
+            'librsvg: for redshift-gtk')
+makedepends=('python')
+install='redshift.install'
+source=("https://github.com/jonls/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
+md5sums=('9640218cd9ba88f6d10b347b2277c415')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --enable-drm --enable-randr --enable-vidmode --enable-geoclue
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/redshift.install
===================================================================
--- community-x86_64/redshift.install	2014-04-13 08:35:41 UTC (rev 109307)
+++ community-x86_64/redshift.install	2014-04-13 08:35:54 UTC (rev 109308)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: redshift/repos/community-x86_64/redshift.install (from rev 109307, redshift/trunk/redshift.install)
===================================================================
--- community-x86_64/redshift.install	                        (rev 0)
+++ community-x86_64/redshift.install	2014-04-13 08:35:54 UTC (rev 109308)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}




More information about the arch-commits mailing list