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

Antonio Rojas arojas at archlinux.org
Sun May 8 11:36:53 UTC 2016


    Date: Sunday, May 8, 2016 @ 13:36:52
  Author: arojas
Revision: 174312

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

Added:
  minitube/repos/community-i686/PKGBUILD
    (from rev 174311, minitube/trunk/PKGBUILD)
  minitube/repos/community-i686/minitube.install
    (from rev 174311, minitube/trunk/minitube.install)
  minitube/repos/community-i686/minitube.sh
    (from rev 174311, minitube/trunk/minitube.sh)
  minitube/repos/community-x86_64/PKGBUILD
    (from rev 174311, minitube/trunk/PKGBUILD)
  minitube/repos/community-x86_64/minitube.install
    (from rev 174311, minitube/trunk/minitube.install)
  minitube/repos/community-x86_64/minitube.sh
    (from rev 174311, minitube/trunk/minitube.sh)
Deleted:
  minitube/repos/community-i686/PKGBUILD
  minitube/repos/community-i686/minitube.install
  minitube/repos/community-i686/minitube.sh
  minitube/repos/community-x86_64/PKGBUILD
  minitube/repos/community-x86_64/minitube.install
  minitube/repos/community-x86_64/minitube.sh

-----------------------------------+
 /PKGBUILD                         |   64 ++++++++++++++++++++++++++++++++++++
 /minitube.install                 |   18 ++++++++++
 /minitube.sh                      |   18 ++++++++++
 community-i686/PKGBUILD           |   32 ------------------
 community-i686/minitube.install   |   19 ----------
 community-i686/minitube.sh        |    9 -----
 community-x86_64/PKGBUILD         |   32 ------------------
 community-x86_64/minitube.install |   19 ----------
 community-x86_64/minitube.sh      |    9 -----
 9 files changed, 100 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-05-08 11:36:19 UTC (rev 174311)
+++ community-i686/PKGBUILD	2016-05-08 11:36:52 UTC (rev 174312)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=minitube
-pkgver=2.5.2
-pkgrel=1
-pkgdesc="A native YouTube client in Qt. Watch YouTube videos without Flash Player"
-arch=('i686' 'x86_64')
-url='http://flavio.tordini.org/minitube'
-license=('GPL3')
-depends=('phonon-qt5' 'qt5-script' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('qt5-tools')
-install="$pkgname.install"
-backup=('etc/profile.d/minitube.sh')
-source=("https://github.com/flaviotordini/minitube/archive/$pkgver.tar.gz" $pkgname.sh)
-md5sums=('9545f0e9bf70bcb648b25af4813338cb'
-         '01d1d532dd7f4670cf7f33f007863b7a')
-
-build() {
-  cd $pkgname-$pkgver
-  qmake
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install INSTALL_ROOT="$pkgdir/"
-
-  # GOOGLE_API_KEY
-  install -Dm644 ../$pkgname.sh \
-    "$pkgdir/etc/profile.d/$pkgname.sh"
-}

Copied: minitube/repos/community-i686/PKGBUILD (from rev 174311, minitube/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-05-08 11:36:52 UTC (rev 174312)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=minitube
+pkgver=2.5.2
+pkgrel=2
+pkgdesc="A native YouTube client in Qt. Watch YouTube videos without Flash Player"
+arch=('i686' 'x86_64')
+url='http://flavio.tordini.org/minitube'
+license=('GPL3')
+depends=('phonon-qt5' 'qt5-script' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('qt5-tools')
+install="$pkgname.install"
+backup=('etc/profile.d/minitube.sh')
+source=("https://github.com/flaviotordini/minitube/archive/$pkgver.tar.gz" $pkgname.sh)
+md5sums=('9545f0e9bf70bcb648b25af4813338cb'
+         '01d1d532dd7f4670cf7f33f007863b7a')
+
+build() {
+  cd $pkgname-$pkgver
+  qmake
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install INSTALL_ROOT="$pkgdir/"
+
+  # GOOGLE_API_KEY
+  install -Dm644 ../$pkgname.sh \
+    "$pkgdir/etc/profile.d/$pkgname.sh"
+}

Deleted: community-i686/minitube.install
===================================================================
--- community-i686/minitube.install	2016-05-08 11:36:19 UTC (rev 174311)
+++ community-i686/minitube.install	2016-05-08 11:36:52 UTC (rev 174312)
@@ -1,19 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-  cat << EOF
-
-  # Google is now requiring an API key in order to access YouTube Data web services.
-  # Create a "Browser Key" at https://console.developers.google.com and put it in
-  # /etc/profile.d/minitube.sh as the GOOGLE_API_KEY environmental variable.
-
-EOF
-}
-
-post_remove() {
-  post_install
-}

Copied: minitube/repos/community-i686/minitube.install (from rev 174311, minitube/trunk/minitube.install)
===================================================================
--- community-i686/minitube.install	                        (rev 0)
+++ community-i686/minitube.install	2016-05-08 11:36:52 UTC (rev 174312)
@@ -0,0 +1,9 @@
+post_upgrade() {
+  cat << EOF
+
+  # Google is now requiring an API key in order to access YouTube Data web services.
+  # Create a "Browser Key" at https://console.developers.google.com and put it in
+  # /etc/profile.d/minitube.sh as the GOOGLE_API_KEY environmental variable.
+
+EOF
+}

Deleted: community-i686/minitube.sh
===================================================================
--- community-i686/minitube.sh	2016-05-08 11:36:19 UTC (rev 174311)
+++ community-i686/minitube.sh	2016-05-08 11:36:52 UTC (rev 174312)
@@ -1,9 +0,0 @@
-# Google is now requiring an API key in order to access YouTube Data web services.
-# Create a "Browser Key" at https://console.developers.google.com and put it here.
-
-export GOOGLE_API_KEY=""
-
-# Uncomment the following line if you do use any
-# Desktop Environment and icons does not show up
-
-#export DESKTOP_SESSION="gnome"
\ No newline at end of file

Copied: minitube/repos/community-i686/minitube.sh (from rev 174311, minitube/trunk/minitube.sh)
===================================================================
--- community-i686/minitube.sh	                        (rev 0)
+++ community-i686/minitube.sh	2016-05-08 11:36:52 UTC (rev 174312)
@@ -0,0 +1,9 @@
+# Google is now requiring an API key in order to access YouTube Data web services.
+# Create a "Browser Key" at https://console.developers.google.com and put it here.
+
+export GOOGLE_API_KEY=""
+
+# Uncomment the following line if you do use any
+# Desktop Environment and icons does not show up
+
+#export DESKTOP_SESSION="gnome"
\ No newline at end of file

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-05-08 11:36:19 UTC (rev 174311)
+++ community-x86_64/PKGBUILD	2016-05-08 11:36:52 UTC (rev 174312)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=minitube
-pkgver=2.5.2
-pkgrel=1
-pkgdesc="A native YouTube client in Qt. Watch YouTube videos without Flash Player"
-arch=('i686' 'x86_64')
-url='http://flavio.tordini.org/minitube'
-license=('GPL3')
-depends=('phonon-qt5' 'qt5-script' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('qt5-tools')
-install="$pkgname.install"
-backup=('etc/profile.d/minitube.sh')
-source=("https://github.com/flaviotordini/minitube/archive/$pkgver.tar.gz" $pkgname.sh)
-md5sums=('9545f0e9bf70bcb648b25af4813338cb'
-         '01d1d532dd7f4670cf7f33f007863b7a')
-
-build() {
-  cd $pkgname-$pkgver
-  qmake
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install INSTALL_ROOT="$pkgdir/"
-
-  # GOOGLE_API_KEY
-  install -Dm644 ../$pkgname.sh \
-    "$pkgdir/etc/profile.d/$pkgname.sh"
-}

Copied: minitube/repos/community-x86_64/PKGBUILD (from rev 174311, minitube/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-05-08 11:36:52 UTC (rev 174312)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=minitube
+pkgver=2.5.2
+pkgrel=2
+pkgdesc="A native YouTube client in Qt. Watch YouTube videos without Flash Player"
+arch=('i686' 'x86_64')
+url='http://flavio.tordini.org/minitube'
+license=('GPL3')
+depends=('phonon-qt5' 'qt5-script' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('qt5-tools')
+install="$pkgname.install"
+backup=('etc/profile.d/minitube.sh')
+source=("https://github.com/flaviotordini/minitube/archive/$pkgver.tar.gz" $pkgname.sh)
+md5sums=('9545f0e9bf70bcb648b25af4813338cb'
+         '01d1d532dd7f4670cf7f33f007863b7a')
+
+build() {
+  cd $pkgname-$pkgver
+  qmake
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install INSTALL_ROOT="$pkgdir/"
+
+  # GOOGLE_API_KEY
+  install -Dm644 ../$pkgname.sh \
+    "$pkgdir/etc/profile.d/$pkgname.sh"
+}

Deleted: community-x86_64/minitube.install
===================================================================
--- community-x86_64/minitube.install	2016-05-08 11:36:19 UTC (rev 174311)
+++ community-x86_64/minitube.install	2016-05-08 11:36:52 UTC (rev 174312)
@@ -1,19 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-  cat << EOF
-
-  # Google is now requiring an API key in order to access YouTube Data web services.
-  # Create a "Browser Key" at https://console.developers.google.com and put it in
-  # /etc/profile.d/minitube.sh as the GOOGLE_API_KEY environmental variable.
-
-EOF
-}
-
-post_remove() {
-  post_install
-}

Copied: minitube/repos/community-x86_64/minitube.install (from rev 174311, minitube/trunk/minitube.install)
===================================================================
--- community-x86_64/minitube.install	                        (rev 0)
+++ community-x86_64/minitube.install	2016-05-08 11:36:52 UTC (rev 174312)
@@ -0,0 +1,9 @@
+post_upgrade() {
+  cat << EOF
+
+  # Google is now requiring an API key in order to access YouTube Data web services.
+  # Create a "Browser Key" at https://console.developers.google.com and put it in
+  # /etc/profile.d/minitube.sh as the GOOGLE_API_KEY environmental variable.
+
+EOF
+}

Deleted: community-x86_64/minitube.sh
===================================================================
--- community-x86_64/minitube.sh	2016-05-08 11:36:19 UTC (rev 174311)
+++ community-x86_64/minitube.sh	2016-05-08 11:36:52 UTC (rev 174312)
@@ -1,9 +0,0 @@
-# Google is now requiring an API key in order to access YouTube Data web services.
-# Create a "Browser Key" at https://console.developers.google.com and put it here.
-
-export GOOGLE_API_KEY=""
-
-# Uncomment the following line if you do use any
-# Desktop Environment and icons does not show up
-
-#export DESKTOP_SESSION="gnome"
\ No newline at end of file

Copied: minitube/repos/community-x86_64/minitube.sh (from rev 174311, minitube/trunk/minitube.sh)
===================================================================
--- community-x86_64/minitube.sh	                        (rev 0)
+++ community-x86_64/minitube.sh	2016-05-08 11:36:52 UTC (rev 174312)
@@ -0,0 +1,9 @@
+# Google is now requiring an API key in order to access YouTube Data web services.
+# Create a "Browser Key" at https://console.developers.google.com and put it here.
+
+export GOOGLE_API_KEY=""
+
+# Uncomment the following line if you do use any
+# Desktop Environment and icons does not show up
+
+#export DESKTOP_SESSION="gnome"
\ No newline at end of file



More information about the arch-commits mailing list