[arch-commits] Commit in ogmrip/repos (4 files)

Jan de Groot jgc at archlinux.org
Thu Nov 23 08:55:10 UTC 2017


    Date: Thursday, November 23, 2017 @ 08:55:10
  Author: jgc
Revision: 268179

archrelease: copy trunk to community-staging-x86_64

Added:
  ogmrip/repos/community-staging-x86_64/
  ogmrip/repos/community-staging-x86_64/PKGBUILD
    (from rev 268178, ogmrip/trunk/PKGBUILD)
  ogmrip/repos/community-staging-x86_64/enchant-2.patch
    (from rev 268178, ogmrip/trunk/enchant-2.patch)
  ogmrip/repos/community-staging-x86_64/ogmrip.changelog
    (from rev 268178, ogmrip/trunk/ogmrip.changelog)

------------------+
 PKGBUILD         |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 enchant-2.patch  |   19 +++++++++++++++++++
 ogmrip.changelog |   39 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 107 insertions(+)

Copied: ogmrip/repos/community-staging-x86_64/PKGBUILD (from rev 268178, ogmrip/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-11-23 08:55:10 UTC (rev 268179)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Daenyth
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Vrob (Markus Heuser) mheuser at mi.fu-berlin.de
+
+pkgname=ogmrip
+pkgver=1.0.1
+pkgrel=5
+pkgdesc="Libraries and GTK2 interface for DVD ripping using mencoder"
+arch=('x86_64')
+url="http://ogmrip.sourceforge.net/"
+license=('GPL')
+depends=('libdvdread>=4.1.3' 'mplayer' 'mencoder' 'enca' 'pkg-config' 'gconf' 'libglade' 'libnotify' 'enchant')
+makedepends=('patch' 'intltool' 'perl-xml-parser' 'faac' 'lame' 'libtheora'
+             'ogmtools' 'gpac' 'vorbis-tools' 'tesseract' 'python')
+optdepends=('faac: support for the AAC audio codec'
+            'lame: support for the MP3 audio codec'
+            'libtheora: decode and encode Ogg Theora files'
+            'ogmtools: support for the Ogg Media container'
+            'gpac: support for the MP4 container'
+            'vorbis-tools: support for the Ogg Vorbis audio codec'
+            'gocr: support for the SRT subtitle format'
+            'ocrad: support for the SRT subtitle format'
+            'tesseract: support for the SRT subtitle format')
+options=('!makeflags')
+changelog=$pkgname.changelog
+source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
+        enchant-2.patch)
+sha256sums=('4e2e9778ac4da9fe1ab159e3dc6d4367b7a9dbd8f3501df99733ecedb25b02ff'
+            '61fa359d44af8135ca80fbef2c98d6c30dcaf82e8817aeaf477d9203835f0ba8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../enchant-2.patch
+}
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/usr/share
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: ogmrip/repos/community-staging-x86_64/enchant-2.patch (from rev 268178, ogmrip/trunk/enchant-2.patch)
===================================================================
--- community-staging-x86_64/enchant-2.patch	                        (rev 0)
+++ community-staging-x86_64/enchant-2.patch	2017-11-23 08:55:10 UTC (rev 268179)
@@ -0,0 +1,19 @@
+--- ogmrip-1.0.1/src/ogmrip-spell-dialog.c.orig	2015-01-10 13:39:43.000000000 +0000
++++ ogmrip-1.0.1/src/ogmrip-spell-dialog.c	2017-11-23 08:47:19.352081545 +0000
+@@ -315,14 +315,14 @@
+         enchant_dict_add_to_session (dialog->priv->dict, word, len);
+         break;
+       case OGMRIP_SPELL_RESPONSE_ADD_WORD:
+-        enchant_dict_add_to_personal (dialog->priv->dict, word, len);
++        enchant_dict_add (dialog->priv->dict, word, len);
+         break;
+       default:
+         break;
+     }
+ 
+     if (suggs && n_suggs)
+-      enchant_dict_free_suggestions (dialog->priv->dict, suggs);
++      enchant_dict_free_string_list (dialog->priv->dict, suggs);
+   }
+ 
+   return status;

Copied: ogmrip/repos/community-staging-x86_64/ogmrip.changelog (from rev 268178, ogmrip/trunk/ogmrip.changelog)
===================================================================
--- community-staging-x86_64/ogmrip.changelog	                        (rev 0)
+++ community-staging-x86_64/ogmrip.changelog	2017-11-23 08:55:10 UTC (rev 268179)
@@ -0,0 +1,39 @@
+2017-11-16 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip 1.0.1-4 removed out-of-repo dependency
+
+2016-05-01 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip 1.0.1-3 pacman hooks rebuild
+
+2014-07-31 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip 1.0.1-1
+
+2013-12-25 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip 1.0.0-3 static libraries removed
+
+2013-04-20 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip 1.0.0-1
+
+2012-06-07 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip O.13.8-1
+
+2012-01-26  Eric Belanger  <eric at archlinux.org>
+	* Rebuild against libpng 1.5 and libtiff 4.0
+	* Add .install file
+
+2011-10-09 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip O.13.7-1
+
+2010-08-29 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* ogmrip O.13.6-1
+
+2010-06-29 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* Update to major release O.13.5
+
+2010-04-21 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* Update to major release O.13.4
+
+2010-01-03 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* FS#17517 fixed in minor release O.13.3-2
+
+2010-01-01 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* Update to major release O.13.3



More information about the arch-commits mailing list