[arch-commits] Commit in renpy/repos (16 files)

Maxime Gauduin alucryd at archlinux.org
Sun Feb 26 12:24:48 UTC 2017


    Date: Sunday, February 26, 2017 @ 12:24:47
  Author: alucryd
Revision: 213857

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

Added:
  renpy/repos/community-i686/PKGBUILD
    (from rev 213856, renpy/trunk/PKGBUILD)
  renpy/repos/community-i686/renpy
    (from rev 213856, renpy/trunk/renpy)
  renpy/repos/community-i686/renpy.desktop
    (from rev 213856, renpy/trunk/renpy.desktop)
  renpy/repos/community-i686/renpy.png
    (from rev 213856, renpy/trunk/renpy.png)
  renpy/repos/community-x86_64/PKGBUILD
    (from rev 213856, renpy/trunk/PKGBUILD)
  renpy/repos/community-x86_64/renpy
    (from rev 213856, renpy/trunk/renpy)
  renpy/repos/community-x86_64/renpy.desktop
    (from rev 213856, renpy/trunk/renpy.desktop)
  renpy/repos/community-x86_64/renpy.png
    (from rev 213856, renpy/trunk/renpy.png)
Deleted:
  renpy/repos/community-i686/PKGBUILD
  renpy/repos/community-i686/renpy
  renpy/repos/community-i686/renpy.desktop
  renpy/repos/community-i686/renpy.png
  renpy/repos/community-x86_64/PKGBUILD
  renpy/repos/community-x86_64/renpy
  renpy/repos/community-x86_64/renpy.desktop
  renpy/repos/community-x86_64/renpy.png

--------------------------------+
 /PKGBUILD                      |  150 +++++++++++++++++++++++++++++++++++++++
 /renpy                         |    6 +
 /renpy.desktop                 |   18 ++++
 community-i686/PKGBUILD        |   75 -------------------
 community-i686/renpy           |    3 
 community-i686/renpy.desktop   |    9 --
 community-x86_64/PKGBUILD      |   75 -------------------
 community-x86_64/renpy         |    3 
 community-x86_64/renpy.desktop |    9 --
 9 files changed, 174 insertions(+), 174 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-02-26 12:24:32 UTC (rev 213856)
+++ community-i686/PKGBUILD	2017-02-26 12:24:47 UTC (rev 213857)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: Cravix <dr.neemous at gmail.com>
-# Contributor: AlexanderR <rvacheva at nxt.ru>
-# Contributor: zhn <zhangn1985 at gmail.com>
-
-pkgbase=renpy
-pkgname=('renpy' 'renpy-demos')
-pkgver=6.99.12.2
-pkgrel=1
-pkgdesc="The Ren'Py Visual Novel Engine"
-arch=('i686' 'x86_64')
-url='https://www.renpy.org'
-license=('MIT')
-depends=('ffmpeg' 'glew' 'python2-pygame-sdl2')
-makedepends=('cython2')
-source=("https://www.renpy.org/dl/${pkgver}/renpy-${pkgver}-source.tar.bz2"
-        'renpy'
-        'renpy.desktop'
-        'renpy.png')
-sha256sums=('e365f507ec858d85b2acc9fd8313f3070b401b199474fa56f51c2a2ab6fa72d1'
-            'd12cccb8d5acbe28f6740d7efc58ceb78fb4f303a50724a43c47812d51897c6a'
-            'fccde3461617a098a78d938d9db782d403eda410a84ab52825a597498ab95834'
-            '611edc07a40ccb8e04e8858847fc1d2a066d29c2ed54e5b357880a0605818dc5')
-
-prepare() {
-  cd renpy-${pkgver}-source
-
-  sed 's/python/python2/' -i renpy.py launcher/game/tkaskdir.py
-}
-
-build() {
-  cd renpy-${pkgver}-source
-
-  export RENPY_CYTHON='cython2'
-
-  python2 module/setup.py build
-}
-
-package_renpy() {
-  optdepends=('renpy-demos: Tutorial and The Question demos'
-              'tk: Set projects directory')
-  replaces=('python-renpy' 'python2-renpy')
-
-  cd renpy-${pkgver}-source
-
-  python2 module/setup.py install --root="${pkgdir}" --prefix='/usr' --optimize='1'
-
-  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps,renpy,doc}}
-
-  cp -dr --no-preserve='ownership' doc launcher renpy renpy.py templates "${pkgdir}"/usr/share/renpy/
-  ln -s /usr/share/renpy/doc "${pkgdir}"/usr/share/doc/renpy
-
-  install -m 755 ../renpy "${pkgdir}"/usr/bin/
-  install -m 644 ../renpy.desktop "${pkgdir}"/usr/share/applications/
-  install -m 644 ../renpy.png "${pkgdir}"/usr/share/pixmaps/
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/renpy
-  install -m 644 LICENSE.txt "${pkgdir}"/usr/share/licenses/renpy/
-}
-
-package_renpy-demos() {
-  depends=('renpy')
-
-  cd renpy-${pkgver}-source
-
-  install -dm 755 "${pkgdir}"/usr/share/renpy
-
-  cp -dr --no-preserve='ownership' the_question tutorial "${pkgdir}"/usr/share/renpy/
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s renpy "${pkgdir}"/usr/share/licenses/renpy-demos
-}
-
-# vim: ts=2 sw=2 et:

Copied: renpy/repos/community-i686/PKGBUILD (from rev 213856, renpy/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-02-26 12:24:47 UTC (rev 213857)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Cravix <dr.neemous at gmail.com>
+# Contributor: AlexanderR <rvacheva at nxt.ru>
+# Contributor: zhn <zhangn1985 at gmail.com>
+
+pkgbase=renpy
+pkgname=('renpy' 'renpy-demos')
+pkgver=6.99.12.3
+pkgrel=1
+pkgdesc="The Ren'Py Visual Novel Engine"
+arch=('i686' 'x86_64')
+url='https://www.renpy.org'
+license=('MIT')
+depends=('ffmpeg' 'glew' 'python2-pygame-sdl2')
+makedepends=('cython2')
+source=("https://www.renpy.org/dl/${pkgver}/renpy-${pkgver}-source.tar.bz2"
+        'renpy'
+        'renpy.desktop'
+        'renpy.png')
+sha256sums=('eaa55d1b6b39c30ab4f04e198d58aa11fc69b555daec1e59429916280dab485e'
+            'd12cccb8d5acbe28f6740d7efc58ceb78fb4f303a50724a43c47812d51897c6a'
+            'fccde3461617a098a78d938d9db782d403eda410a84ab52825a597498ab95834'
+            '611edc07a40ccb8e04e8858847fc1d2a066d29c2ed54e5b357880a0605818dc5')
+
+prepare() {
+  cd renpy-${pkgver}-source
+
+  sed 's/python/python2/' -i renpy.py launcher/game/tkaskdir.py
+}
+
+build() {
+  cd renpy-${pkgver}-source
+
+  export RENPY_CYTHON='cython2'
+
+  python2 module/setup.py build
+}
+
+package_renpy() {
+  optdepends=('renpy-demos: Tutorial and The Question demos'
+              'tk: Set projects directory')
+  replaces=('python-renpy' 'python2-renpy')
+
+  cd renpy-${pkgver}-source
+
+  python2 module/setup.py install --root="${pkgdir}" --prefix='/usr' --optimize='1'
+
+  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps,renpy,doc}}
+
+  cp -dr --no-preserve='ownership' doc launcher renpy renpy.py templates "${pkgdir}"/usr/share/renpy/
+  ln -s /usr/share/renpy/doc "${pkgdir}"/usr/share/doc/renpy
+
+  install -m 755 ../renpy "${pkgdir}"/usr/bin/
+  install -m 644 ../renpy.desktop "${pkgdir}"/usr/share/applications/
+  install -m 644 ../renpy.png "${pkgdir}"/usr/share/pixmaps/
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/renpy
+  install -m 644 LICENSE.txt "${pkgdir}"/usr/share/licenses/renpy/
+}
+
+package_renpy-demos() {
+  depends=('renpy')
+
+  cd renpy-${pkgver}-source
+
+  install -dm 755 "${pkgdir}"/usr/share/renpy
+
+  cp -dr --no-preserve='ownership' the_question tutorial "${pkgdir}"/usr/share/renpy/
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s renpy "${pkgdir}"/usr/share/licenses/renpy-demos
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/renpy
===================================================================
--- community-i686/renpy	2017-02-26 12:24:32 UTC (rev 213856)
+++ community-i686/renpy	2017-02-26 12:24:47 UTC (rev 213857)
@@ -1,3 +0,0 @@
-#!/usr/bin/sh
-
-exec python2 /usr/share/renpy/renpy.py "$@"

Copied: renpy/repos/community-i686/renpy (from rev 213856, renpy/trunk/renpy)
===================================================================
--- community-i686/renpy	                        (rev 0)
+++ community-i686/renpy	2017-02-26 12:24:47 UTC (rev 213857)
@@ -0,0 +1,3 @@
+#!/usr/bin/sh
+
+exec python2 /usr/share/renpy/renpy.py "$@"

Deleted: community-i686/renpy.desktop
===================================================================
--- community-i686/renpy.desktop	2017-02-26 12:24:32 UTC (rev 213856)
+++ community-i686/renpy.desktop	2017-02-26 12:24:47 UTC (rev 213857)
@@ -1,9 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Name=Ren'Py
-GenericName=renpy
-Comment=Ren'Py is a visual novel engine that helps you use words, images, and sounds to tell interactive stories that run on computers and mobile devices.
-Icon=renpy
-Exec=renpy
-Categories=Game;AdventureGame;

Copied: renpy/repos/community-i686/renpy.desktop (from rev 213856, renpy/trunk/renpy.desktop)
===================================================================
--- community-i686/renpy.desktop	                        (rev 0)
+++ community-i686/renpy.desktop	2017-02-26 12:24:47 UTC (rev 213857)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=Ren'Py
+GenericName=renpy
+Comment=Ren'Py is a visual novel engine that helps you use words, images, and sounds to tell interactive stories that run on computers and mobile devices.
+Icon=renpy
+Exec=renpy
+Categories=Game;AdventureGame;

Deleted: community-i686/renpy.png
===================================================================
(Binary files differ)

Copied: renpy/repos/community-i686/renpy.png (from rev 213856, renpy/trunk/renpy.png)
===================================================================
(Binary files differ)

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-02-26 12:24:32 UTC (rev 213856)
+++ community-x86_64/PKGBUILD	2017-02-26 12:24:47 UTC (rev 213857)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: Cravix <dr.neemous at gmail.com>
-# Contributor: AlexanderR <rvacheva at nxt.ru>
-# Contributor: zhn <zhangn1985 at gmail.com>
-
-pkgbase=renpy
-pkgname=('renpy' 'renpy-demos')
-pkgver=6.99.12.2
-pkgrel=1
-pkgdesc="The Ren'Py Visual Novel Engine"
-arch=('i686' 'x86_64')
-url='https://www.renpy.org'
-license=('MIT')
-depends=('ffmpeg' 'glew' 'python2-pygame-sdl2')
-makedepends=('cython2')
-source=("https://www.renpy.org/dl/${pkgver}/renpy-${pkgver}-source.tar.bz2"
-        'renpy'
-        'renpy.desktop'
-        'renpy.png')
-sha256sums=('e365f507ec858d85b2acc9fd8313f3070b401b199474fa56f51c2a2ab6fa72d1'
-            'd12cccb8d5acbe28f6740d7efc58ceb78fb4f303a50724a43c47812d51897c6a'
-            'fccde3461617a098a78d938d9db782d403eda410a84ab52825a597498ab95834'
-            '611edc07a40ccb8e04e8858847fc1d2a066d29c2ed54e5b357880a0605818dc5')
-
-prepare() {
-  cd renpy-${pkgver}-source
-
-  sed 's/python/python2/' -i renpy.py launcher/game/tkaskdir.py
-}
-
-build() {
-  cd renpy-${pkgver}-source
-
-  export RENPY_CYTHON='cython2'
-
-  python2 module/setup.py build
-}
-
-package_renpy() {
-  optdepends=('renpy-demos: Tutorial and The Question demos'
-              'tk: Set projects directory')
-  replaces=('python-renpy' 'python2-renpy')
-
-  cd renpy-${pkgver}-source
-
-  python2 module/setup.py install --root="${pkgdir}" --prefix='/usr' --optimize='1'
-
-  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps,renpy,doc}}
-
-  cp -dr --no-preserve='ownership' doc launcher renpy renpy.py templates "${pkgdir}"/usr/share/renpy/
-  ln -s /usr/share/renpy/doc "${pkgdir}"/usr/share/doc/renpy
-
-  install -m 755 ../renpy "${pkgdir}"/usr/bin/
-  install -m 644 ../renpy.desktop "${pkgdir}"/usr/share/applications/
-  install -m 644 ../renpy.png "${pkgdir}"/usr/share/pixmaps/
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/renpy
-  install -m 644 LICENSE.txt "${pkgdir}"/usr/share/licenses/renpy/
-}
-
-package_renpy-demos() {
-  depends=('renpy')
-
-  cd renpy-${pkgver}-source
-
-  install -dm 755 "${pkgdir}"/usr/share/renpy
-
-  cp -dr --no-preserve='ownership' the_question tutorial "${pkgdir}"/usr/share/renpy/
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s renpy "${pkgdir}"/usr/share/licenses/renpy-demos
-}
-
-# vim: ts=2 sw=2 et:

Copied: renpy/repos/community-x86_64/PKGBUILD (from rev 213856, renpy/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-02-26 12:24:47 UTC (rev 213857)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Cravix <dr.neemous at gmail.com>
+# Contributor: AlexanderR <rvacheva at nxt.ru>
+# Contributor: zhn <zhangn1985 at gmail.com>
+
+pkgbase=renpy
+pkgname=('renpy' 'renpy-demos')
+pkgver=6.99.12.3
+pkgrel=1
+pkgdesc="The Ren'Py Visual Novel Engine"
+arch=('i686' 'x86_64')
+url='https://www.renpy.org'
+license=('MIT')
+depends=('ffmpeg' 'glew' 'python2-pygame-sdl2')
+makedepends=('cython2')
+source=("https://www.renpy.org/dl/${pkgver}/renpy-${pkgver}-source.tar.bz2"
+        'renpy'
+        'renpy.desktop'
+        'renpy.png')
+sha256sums=('eaa55d1b6b39c30ab4f04e198d58aa11fc69b555daec1e59429916280dab485e'
+            'd12cccb8d5acbe28f6740d7efc58ceb78fb4f303a50724a43c47812d51897c6a'
+            'fccde3461617a098a78d938d9db782d403eda410a84ab52825a597498ab95834'
+            '611edc07a40ccb8e04e8858847fc1d2a066d29c2ed54e5b357880a0605818dc5')
+
+prepare() {
+  cd renpy-${pkgver}-source
+
+  sed 's/python/python2/' -i renpy.py launcher/game/tkaskdir.py
+}
+
+build() {
+  cd renpy-${pkgver}-source
+
+  export RENPY_CYTHON='cython2'
+
+  python2 module/setup.py build
+}
+
+package_renpy() {
+  optdepends=('renpy-demos: Tutorial and The Question demos'
+              'tk: Set projects directory')
+  replaces=('python-renpy' 'python2-renpy')
+
+  cd renpy-${pkgver}-source
+
+  python2 module/setup.py install --root="${pkgdir}" --prefix='/usr' --optimize='1'
+
+  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps,renpy,doc}}
+
+  cp -dr --no-preserve='ownership' doc launcher renpy renpy.py templates "${pkgdir}"/usr/share/renpy/
+  ln -s /usr/share/renpy/doc "${pkgdir}"/usr/share/doc/renpy
+
+  install -m 755 ../renpy "${pkgdir}"/usr/bin/
+  install -m 644 ../renpy.desktop "${pkgdir}"/usr/share/applications/
+  install -m 644 ../renpy.png "${pkgdir}"/usr/share/pixmaps/
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/renpy
+  install -m 644 LICENSE.txt "${pkgdir}"/usr/share/licenses/renpy/
+}
+
+package_renpy-demos() {
+  depends=('renpy')
+
+  cd renpy-${pkgver}-source
+
+  install -dm 755 "${pkgdir}"/usr/share/renpy
+
+  cp -dr --no-preserve='ownership' the_question tutorial "${pkgdir}"/usr/share/renpy/
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s renpy "${pkgdir}"/usr/share/licenses/renpy-demos
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/renpy
===================================================================
--- community-x86_64/renpy	2017-02-26 12:24:32 UTC (rev 213856)
+++ community-x86_64/renpy	2017-02-26 12:24:47 UTC (rev 213857)
@@ -1,3 +0,0 @@
-#!/usr/bin/sh
-
-exec python2 /usr/share/renpy/renpy.py "$@"

Copied: renpy/repos/community-x86_64/renpy (from rev 213856, renpy/trunk/renpy)
===================================================================
--- community-x86_64/renpy	                        (rev 0)
+++ community-x86_64/renpy	2017-02-26 12:24:47 UTC (rev 213857)
@@ -0,0 +1,3 @@
+#!/usr/bin/sh
+
+exec python2 /usr/share/renpy/renpy.py "$@"

Deleted: community-x86_64/renpy.desktop
===================================================================
--- community-x86_64/renpy.desktop	2017-02-26 12:24:32 UTC (rev 213856)
+++ community-x86_64/renpy.desktop	2017-02-26 12:24:47 UTC (rev 213857)
@@ -1,9 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Name=Ren'Py
-GenericName=renpy
-Comment=Ren'Py is a visual novel engine that helps you use words, images, and sounds to tell interactive stories that run on computers and mobile devices.
-Icon=renpy
-Exec=renpy
-Categories=Game;AdventureGame;

Copied: renpy/repos/community-x86_64/renpy.desktop (from rev 213856, renpy/trunk/renpy.desktop)
===================================================================
--- community-x86_64/renpy.desktop	                        (rev 0)
+++ community-x86_64/renpy.desktop	2017-02-26 12:24:47 UTC (rev 213857)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=Ren'Py
+GenericName=renpy
+Comment=Ren'Py is a visual novel engine that helps you use words, images, and sounds to tell interactive stories that run on computers and mobile devices.
+Icon=renpy
+Exec=renpy
+Categories=Game;AdventureGame;

Deleted: community-x86_64/renpy.png
===================================================================
(Binary files differ)

Copied: renpy/repos/community-x86_64/renpy.png (from rev 213856, renpy/trunk/renpy.png)
===================================================================
(Binary files differ)



More information about the arch-commits mailing list