[arch-commits] Commit in minitube/repos (10 files)
speps
speps at archlinux.org
Sat Apr 25 21:17:42 UTC 2015
Date: Saturday, April 25, 2015 @ 23:17:42
Author: speps
Revision: 132248
archrelease: copy trunk to community-i686, community-x86_64
Added:
minitube/repos/community-i686/PKGBUILD
(from rev 132247, minitube/trunk/PKGBUILD)
minitube/repos/community-i686/minitube.install
(from rev 132247, minitube/trunk/minitube.install)
minitube/repos/community-i686/minitube.sh
(from rev 132247, minitube/trunk/minitube.sh)
minitube/repos/community-x86_64/PKGBUILD
(from rev 132247, minitube/trunk/PKGBUILD)
minitube/repos/community-x86_64/minitube.install
(from rev 132247, minitube/trunk/minitube.install)
minitube/repos/community-x86_64/minitube.sh
(from rev 132247, minitube/trunk/minitube.sh)
Deleted:
minitube/repos/community-i686/PKGBUILD
minitube/repos/community-i686/minitube.install
minitube/repos/community-x86_64/PKGBUILD
minitube/repos/community-x86_64/minitube.install
-----------------------------------+
/PKGBUILD | 62 ++++++++++++++++++++++++++++++++++++
/minitube.install | 36 ++++++++++++++++++++
community-i686/PKGBUILD | 25 --------------
community-i686/minitube.install | 11 ------
community-i686/minitube.sh | 9 +++++
community-x86_64/PKGBUILD | 25 --------------
community-x86_64/minitube.install | 11 ------
community-x86_64/minitube.sh | 9 +++++
8 files changed, 116 insertions(+), 72 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2015-04-25 21:17:28 UTC (rev 132247)
+++ community-i686/PKGBUILD 2015-04-25 21:17:42 UTC (rev 132248)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=minitube
-pkgver=2.3
-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-qt4')
-install="$pkgname.install"
-source=("http://flavio.tordini.org/files/$pkgname/$pkgname-$pkgver.tar.gz")
-md5sums=('8c9dba9b0190a740fab6c38c5d79c3f8')
-
-build() {
- cd $pkgname
- qmake-qt4
-}
-
-package() {
- cd $pkgname
- make install INSTALL_ROOT="$pkgdir/"
-}
Copied: minitube/repos/community-i686/PKGBUILD (from rev 132247, minitube/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-25 21:17:42 UTC (rev 132248)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=minitube
+pkgver=2.4
+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-qt4')
+install="$pkgname.install"
+backup=('etc/profile.d/minitube.sh')
+source=("https://github.com/flaviotordini/minitube/archive/$pkgver.tar.gz" $pkgname.sh)
+md5sums=('90e8f7c8adfe633553e08d98edd77961'
+ '01d1d532dd7f4670cf7f33f007863b7a')
+
+build() {
+ cd $pkgname-$pkgver
+ qmake-qt4
+}
+
+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 2015-04-25 21:17:28 UTC (rev 132247)
+++ community-i686/minitube.install 2015-04-25 21:17:42 UTC (rev 132248)
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
Copied: minitube/repos/community-i686/minitube.install (from rev 132247, minitube/trunk/minitube.install)
===================================================================
--- community-i686/minitube.install (rev 0)
+++ community-i686/minitube.install 2015-04-25 21:17:42 UTC (rev 132248)
@@ -0,0 +1,18 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+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.sh (from rev 132247, minitube/trunk/minitube.sh)
===================================================================
--- community-i686/minitube.sh (rev 0)
+++ community-i686/minitube.sh 2015-04-25 21:17:42 UTC (rev 132248)
@@ -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 2015-04-25 21:17:28 UTC (rev 132247)
+++ community-x86_64/PKGBUILD 2015-04-25 21:17:42 UTC (rev 132248)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=minitube
-pkgver=2.3
-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-qt4')
-install="$pkgname.install"
-source=("http://flavio.tordini.org/files/$pkgname/$pkgname-$pkgver.tar.gz")
-md5sums=('8c9dba9b0190a740fab6c38c5d79c3f8')
-
-build() {
- cd $pkgname
- qmake-qt4
-}
-
-package() {
- cd $pkgname
- make install INSTALL_ROOT="$pkgdir/"
-}
Copied: minitube/repos/community-x86_64/PKGBUILD (from rev 132247, minitube/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2015-04-25 21:17:42 UTC (rev 132248)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=minitube
+pkgver=2.4
+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-qt4')
+install="$pkgname.install"
+backup=('etc/profile.d/minitube.sh')
+source=("https://github.com/flaviotordini/minitube/archive/$pkgver.tar.gz" $pkgname.sh)
+md5sums=('90e8f7c8adfe633553e08d98edd77961'
+ '01d1d532dd7f4670cf7f33f007863b7a')
+
+build() {
+ cd $pkgname-$pkgver
+ qmake-qt4
+}
+
+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 2015-04-25 21:17:28 UTC (rev 132247)
+++ community-x86_64/minitube.install 2015-04-25 21:17:42 UTC (rev 132248)
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
Copied: minitube/repos/community-x86_64/minitube.install (from rev 132247, minitube/trunk/minitube.install)
===================================================================
--- community-x86_64/minitube.install (rev 0)
+++ community-x86_64/minitube.install 2015-04-25 21:17:42 UTC (rev 132248)
@@ -0,0 +1,18 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+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.sh (from rev 132247, minitube/trunk/minitube.sh)
===================================================================
--- community-x86_64/minitube.sh (rev 0)
+++ community-x86_64/minitube.sh 2015-04-25 21:17:42 UTC (rev 132248)
@@ -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