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

Antonio Rojas arojas at archlinux.org
Sat Aug 19 19:31:56 UTC 2017


    Date: Saturday, August 19, 2017 @ 19:31:55
  Author: arojas
Revision: 302893

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

Added:
  dvdauthor/repos/extra-i686/PKGBUILD
    (from rev 302892, dvdauthor/trunk/PKGBUILD)
  dvdauthor/repos/extra-x86_64/PKGBUILD
    (from rev 302892, dvdauthor/trunk/PKGBUILD)
Deleted:
  dvdauthor/repos/extra-i686/PKGBUILD
  dvdauthor/repos/extra-i686/dvdauthor-fix-build.patch
  dvdauthor/repos/extra-x86_64/PKGBUILD
  dvdauthor/repos/extra-x86_64/dvdauthor-fix-build.patch

----------------------------------------+
 /PKGBUILD                              |   62 +++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD                    |   38 -------------------
 extra-i686/dvdauthor-fix-build.patch   |   26 -------------
 extra-x86_64/PKGBUILD                  |   38 -------------------
 extra-x86_64/dvdauthor-fix-build.patch |   26 -------------
 5 files changed, 62 insertions(+), 128 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2017-08-19 19:31:26 UTC (rev 302892)
+++ extra-i686/PKGBUILD	2017-08-19 19:31:55 UTC (rev 302893)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Travis Willard <travisw at wmpub.ca>
-# Contributor: Jaroslaw Swierczynski <swiergot at juvepoland.com>
-# Contributor: Nicolai Lissner <nlissne at linux01.gwdg.de>
-
-pkgname=dvdauthor
-pkgver=0.7.1
-pkgrel=10
-pkgdesc="DVD authoring tools"
-arch=('i686' 'x86_64')
-url="http://dvdauthor.sourceforge.net/"
-license=('GPL')
-depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi')
-options=('!makeflags')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" dvdauthor-fix-build.patch)
-md5sums=('2694a5a3ef460106ea3caf0f7f60ff80'
-         '3ac58688085e7a1a503d1f895dfce718')
-
-prepare() {
-  cd $pkgname
-  # Fix build (Debian)
-  patch -p1 -i ../dvdauthor-fix-build.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}"
-
-  ./configure --prefix=/usr \
-              --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: dvdauthor/repos/extra-i686/PKGBUILD (from rev 302892, dvdauthor/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2017-08-19 19:31:55 UTC (rev 302893)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Travis Willard <travisw at wmpub.ca>
+# Contributor: Jaroslaw Swierczynski <swiergot at juvepoland.com>
+# Contributor: Nicolai Lissner <nlissne at linux01.gwdg.de>
+
+pkgname=dvdauthor
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="DVD authoring tools"
+arch=('i686' 'x86_64')
+url="http://dvdauthor.sourceforge.net/"
+license=('GPL')
+depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi')
+options=('!makeflags')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('3020a92de9f78eb36f48b6f22d5a001c47107826634a785a62dfcd080f612eb7')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  ./configure --prefix=/usr \
+              --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/dvdauthor-fix-build.patch
===================================================================
--- extra-i686/dvdauthor-fix-build.patch	2017-08-19 19:31:26 UTC (rev 302892)
+++ extra-i686/dvdauthor-fix-build.patch	2017-08-19 19:31:55 UTC (rev 302893)
@@ -1,26 +0,0 @@
-Description: Fix for #807657 -- missing include "config.h"
-Author: Tobias Frost <tobi at frost.de>
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807657
-Last-Update: 2016-01-07
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/src/compat.h
-+++ b/src/compat.h
-@@ -1,6 +1,8 @@
- // basic headers
- #define _GNU_SOURCE /* really just for strndup */
- 
-+#include "config.h"
-+
- #ifdef HAVE_STDBOOL_H
- # include <stdbool.h>
- #else
-@@ -17,6 +19,7 @@
- # define __bool_true_false_are_defined 1
- #endif
- 
-+
- #include <stdio.h>
- 
- #ifdef HAVE_STDLIB_H
-

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2017-08-19 19:31:26 UTC (rev 302892)
+++ extra-x86_64/PKGBUILD	2017-08-19 19:31:55 UTC (rev 302893)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Travis Willard <travisw at wmpub.ca>
-# Contributor: Jaroslaw Swierczynski <swiergot at juvepoland.com>
-# Contributor: Nicolai Lissner <nlissne at linux01.gwdg.de>
-
-pkgname=dvdauthor
-pkgver=0.7.1
-pkgrel=10
-pkgdesc="DVD authoring tools"
-arch=('i686' 'x86_64')
-url="http://dvdauthor.sourceforge.net/"
-license=('GPL')
-depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi')
-options=('!makeflags')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" dvdauthor-fix-build.patch)
-md5sums=('2694a5a3ef460106ea3caf0f7f60ff80'
-         '3ac58688085e7a1a503d1f895dfce718')
-
-prepare() {
-  cd $pkgname
-  # Fix build (Debian)
-  patch -p1 -i ../dvdauthor-fix-build.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}"
-
-  ./configure --prefix=/usr \
-              --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: dvdauthor/repos/extra-x86_64/PKGBUILD (from rev 302892, dvdauthor/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2017-08-19 19:31:55 UTC (rev 302893)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Travis Willard <travisw at wmpub.ca>
+# Contributor: Jaroslaw Swierczynski <swiergot at juvepoland.com>
+# Contributor: Nicolai Lissner <nlissne at linux01.gwdg.de>
+
+pkgname=dvdauthor
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="DVD authoring tools"
+arch=('i686' 'x86_64')
+url="http://dvdauthor.sourceforge.net/"
+license=('GPL')
+depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi')
+options=('!makeflags')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('3020a92de9f78eb36f48b6f22d5a001c47107826634a785a62dfcd080f612eb7')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  ./configure --prefix=/usr \
+              --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/dvdauthor-fix-build.patch
===================================================================
--- extra-x86_64/dvdauthor-fix-build.patch	2017-08-19 19:31:26 UTC (rev 302892)
+++ extra-x86_64/dvdauthor-fix-build.patch	2017-08-19 19:31:55 UTC (rev 302893)
@@ -1,26 +0,0 @@
-Description: Fix for #807657 -- missing include "config.h"
-Author: Tobias Frost <tobi at frost.de>
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807657
-Last-Update: 2016-01-07
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/src/compat.h
-+++ b/src/compat.h
-@@ -1,6 +1,8 @@
- // basic headers
- #define _GNU_SOURCE /* really just for strndup */
- 
-+#include "config.h"
-+
- #ifdef HAVE_STDBOOL_H
- # include <stdbool.h>
- #else
-@@ -17,6 +19,7 @@
- # define __bool_true_false_are_defined 1
- #endif
- 
-+
- #include <stdio.h>
- 
- #ifdef HAVE_STDLIB_H
-



More information about the arch-commits mailing list