[arch-commits] Commit in easytag/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-09-07 Thread David Runge via arch-commits
Date: Monday, September 7, 2020 @ 12:02:27
  Author: dvzrv
Revision: 395539

archrelease: copy trunk to extra-x86_64

Added:
  easytag/repos/extra-x86_64/PKGBUILD
(from rev 395538, easytag/trunk/PKGBUILD)
Deleted:
  easytag/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   89 ++---
 1 file changed, 56 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-07 12:02:02 UTC (rev 395538)
+++ PKGBUILD2020-09-07 12:02:27 UTC (rev 395539)
@@ -1,33 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-# Contributor: Kevin Piche 
-# Contributor: Aaron Griffin 
-# Contributor: dorphell 
-
-pkgname=easytag
-pkgver=2.4.3
-pkgrel=3
-pkgdesc='Simple application for viewing and editing tags in audio files'
-arch=('x86_64')
-license=('GPL')
-url='https://wiki.gnome.org/Apps/EasyTAG'
-makedepends=('intltool' 'itstool' 'python')
-depends=('id3lib' 'libid3tag' 'gtk3' 'libvorbis' 'flac' 'speex' 'wavpack' 
'taglib'
- 'desktop-file-utils' 'opusfile')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('fc51ee92a705e3c5979dff1655f7496effb68b98f1ada0547e8cbbc033b67dd5')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -k check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: easytag/repos/extra-x86_64/PKGBUILD (from rev 395538, 
easytag/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-07 12:02:27 UTC (rev 395539)
@@ -0,0 +1,56 @@
+# Maintainer: David Runge 
+# Contributor: Guillaume ALAUX 
+# Contributor: Kevin Piche 
+# Contributor: Aaron Griffin 
+# Contributor: dorphell 
+
+pkgname=easytag
+pkgver=2.4.3
+pkgrel=4
+pkgdesc="Simple application for viewing and editing tags in audio files"
+arch=('x86_64')
+url="https://wiki.gnome.org/Apps/EasyTAG;
+license=('GPL2')
+# TODO: add back opus, speex, libvorbis and opusfile when files do not get
+# corrupted anymore
+depends=('cairo' 'gcc-libs' 'gdk-pixbuf2' 'glibc' 'id3lib' 'taglib' 'wavpack'
+'zlib')
+makedepends=('appstream-glib' 'atk' 'flac' 'glib2' 'gtk3' 'harfbuzz' 'intltool'
+'itstool' 'libid3tag' 'libnautilus-extension' 'pango' 'python' 'yelp-tools')
+source=("https://gitlab.gnome.org/GNOME/${pkgname}/-/archive/${pkgname}-${pkgver}/${pkgname}-${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('a14ce7432592e8430039f8960a9de70f49adf0a60bc4232e8d894b9cab09d72b8205dd1660a51718b655130a4cee69841106461df7d0b05b4b36b611398789e3')
+b2sums=('dbb47f4f653da12e7b677a4757d60ad136d6281e075bdb74a57cab3d3848cb414dab67e3b0f463cabf8dcdeecf7dc193cfe9a52a8d9023b8b29025a9f2168d87')
+
+prepare() {
+  mv -v "${pkgname}-${pkgname}-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  ./autogen.sh
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  # disable ogg vorbis because easytag has a bug that corrupts files
+  # https://gitlab.gnome.org/GNOME/easytag/-/issues/8
+  ./configure --prefix=/usr \
+  --disable-ogg \
+  --disable-opus \
+  --disable-speex
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # tests claim that easytag.appdata.xml is not valid, but it is, so we touch
+  # the validation file
+  touch "data/${pkgname}.appdata.valid"
+  make -k check
+}
+
+package() {
+  depends+=('libFLAC.so' 'libatk-1.0.so' 'libid3tag.so' 'libgdk-3.so'
+  'libgio-2.0.so' 'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-3.so'
+  'libharfbuzz.so' 'libnautilus-extension.so' 'libpango-1.0.so'
+  'libpangocairo-1.0.so')
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in easytag/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-11-09 Thread Jelle van der Waa via arch-commits
Date: Friday, November 9, 2018 @ 16:46:03
  Author: jelle
Revision: 338462

archrelease: copy trunk to extra-x86_64

Added:
  easytag/repos/extra-x86_64/PKGBUILD
(from rev 338461, easytag/trunk/PKGBUILD)
Deleted:
  easytag/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   67 ++---
 1 file changed, 33 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-09 16:45:48 UTC (rev 338461)
+++ PKGBUILD2018-11-09 16:46:03 UTC (rev 338462)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX 
-# Contributor: Kevin Piche 
-# Contributor: Aaron Griffin 
-# Contributor: dorphell 
-
-pkgname=easytag
-pkgver=2.4.3
-pkgrel=1
-pkgdesc='Simple application for viewing and editing tags in audio files'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='https://wiki.gnome.org/Apps/EasyTAG'
-makedepends=('intltool' 'itstool')
-depends=('id3lib' 'libid3tag' 'gtk3' 'libvorbis' 'flac' 'speex' 'wavpack' 
'taglib'
- 'desktop-file-utils' 'opusfile')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('fc51ee92a705e3c5979dff1655f7496effb68b98f1ada0547e8cbbc033b67dd5')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -k check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: easytag/repos/extra-x86_64/PKGBUILD (from rev 338461, 
easytag/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-09 16:46:03 UTC (rev 338462)
@@ -0,0 +1,33 @@
+# Maintainer: Guillaume ALAUX 
+# Contributor: Kevin Piche 
+# Contributor: Aaron Griffin 
+# Contributor: dorphell 
+
+pkgname=easytag
+pkgver=2.4.3
+pkgrel=2
+pkgdesc='Simple application for viewing and editing tags in audio files'
+arch=('x86_64')
+license=('GPL')
+url='https://wiki.gnome.org/Apps/EasyTAG'
+makedepends=('intltool' 'itstool' 'python')
+depends=('id3lib' 'libid3tag' 'gtk3' 'libvorbis' 'flac' 'speex' 'wavpack' 
'taglib'
+ 'desktop-file-utils' 'opusfile')
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('fc51ee92a705e3c5979dff1655f7496effb68b98f1ada0547e8cbbc033b67dd5')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make -k check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}