[arch-commits] Commit in cdcd/repos (10 files)

Christian Hesse eworm at archlinux.org
Thu Apr 28 09:25:45 UTC 2016


    Date: Thursday, April 28, 2016 @ 11:25:44
  Author: eworm
Revision: 172400

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

Added:
  cdcd/repos/community-i686/PKGBUILD
    (from rev 172399, cdcd/trunk/PKGBUILD)
  cdcd/repos/community-i686/cdcd-0.6.6-x86_64.patch
    (from rev 172399, cdcd/trunk/cdcd-0.6.6-x86_64.patch)
  cdcd/repos/community-x86_64/PKGBUILD
    (from rev 172399, cdcd/trunk/PKGBUILD)
  cdcd/repos/community-x86_64/cdcd-0.6.6-x86_64.patch
    (from rev 172399, cdcd/trunk/cdcd-0.6.6-x86_64.patch)
Deleted:
  cdcd/repos/community-i686/PKGBUILD
  cdcd/repos/community-i686/cdcd-0.6.6-x86_64.patch
  cdcd/repos/community-i686/cdcd.install
  cdcd/repos/community-x86_64/PKGBUILD
  cdcd/repos/community-x86_64/cdcd-0.6.6-x86_64.patch
  cdcd/repos/community-x86_64/cdcd.install

------------------------------------------+
 /PKGBUILD                                |   92 +++++++++++++++++++++++++++++
 /cdcd-0.6.6-x86_64.patch                 |   22 ++++++
 community-i686/PKGBUILD                  |   47 --------------
 community-i686/cdcd-0.6.6-x86_64.patch   |   11 ---
 community-i686/cdcd.install              |   20 ------
 community-x86_64/PKGBUILD                |   47 --------------
 community-x86_64/cdcd-0.6.6-x86_64.patch |   11 ---
 community-x86_64/cdcd.install            |   20 ------
 8 files changed, 114 insertions(+), 156 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-04-28 09:25:38 UTC (rev 172399)
+++ community-i686/PKGBUILD	2016-04-28 09:25:44 UTC (rev 172400)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Federico Cinelli <cinelli at aur.archlinux.org>
-# Contributor dorphell <dorphell at archlinux.org>
-# Contributor Sarah Hay <sarahhay at mb.sympatico.ca>
-
-pkgname=cdcd
-pkgver=0.6.6
-pkgrel=7
-pkgdesc="A commandline cd-player"
-arch=('i686' 'x86_64')
-depends=('libcdaudio' 'readline')
-url="http://libcdaudio.sourceforge.net/"
-license=('GPL2')
-install=cdcd.install
-source=("http://downloads.sourceforge.net/libcdaudio/$pkgname-$pkgver.tar.gz")
-md5sums=('dc17f2e275c7214cb693f6abb50f29fb')
-
-if [[ "$CARCH" == "x86_64" ]]; then
-  source+=("cdcd-0.6.6-$CARCH.patch")
-  md5sums+=('7c39f01408fc084e2c62da4da324370e')
-fi
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver" 
-
-  if [[ "$CARCH" == "x86_64" ]]; then
-    patch -Np1 -i "$srcdir/cdcd-0.6.6-$CARCH.patch"
-  fi
-
-
-  sed -i 's/(CPPFunction \*)/(rl_completion_func_t \*)/' cmd_cdcd.c
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
- 
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  
-  mv "$pkgdir/usr/info" "$pkgdir/usr/share/"
-  mv "$pkgdir/usr/man/" "$pkgdir/usr/share/"
-  rm "$pkgdir/usr/share/dir"
-
-  install -dm755 "$pkgdir/usr/bin" "$pkgdir/usr/share"
-}

Copied: cdcd/repos/community-i686/PKGBUILD (from rev 172399, cdcd/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-04-28 09:25:44 UTC (rev 172400)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Federico Cinelli <cinelli at aur.archlinux.org>
+# Contributor dorphell <dorphell at archlinux.org>
+# Contributor Sarah Hay <sarahhay at mb.sympatico.ca>
+
+pkgname=cdcd
+pkgver=0.6.6
+pkgrel=8
+pkgdesc="A commandline cd-player"
+arch=('i686' 'x86_64')
+depends=('libcdaudio' 'readline')
+url="http://libcdaudio.sourceforge.net/"
+license=('GPL2')
+source=("http://downloads.sourceforge.net/libcdaudio/$pkgname-$pkgver.tar.gz")
+md5sums=('dc17f2e275c7214cb693f6abb50f29fb')
+
+if [[ "$CARCH" == "x86_64" ]]; then
+  source+=("cdcd-0.6.6-$CARCH.patch")
+  md5sums+=('7c39f01408fc084e2c62da4da324370e')
+fi
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver" 
+
+  if [[ "$CARCH" == "x86_64" ]]; then
+    patch -Np1 -i "$srcdir/cdcd-0.6.6-$CARCH.patch"
+  fi
+
+
+  sed -i 's/(CPPFunction \*)/(rl_completion_func_t \*)/' cmd_cdcd.c
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+
+  mv "$pkgdir/usr/info" "$pkgdir/usr/share/"
+  mv "$pkgdir/usr/man/" "$pkgdir/usr/share/"
+  rm "$pkgdir/usr/share/dir"
+
+  install -dm755 "$pkgdir/usr/bin" "$pkgdir/usr/share"
+}

Deleted: community-i686/cdcd-0.6.6-x86_64.patch
===================================================================
--- community-i686/cdcd-0.6.6-x86_64.patch	2016-04-28 09:25:38 UTC (rev 172399)
+++ community-i686/cdcd-0.6.6-x86_64.patch	2016-04-28 09:25:44 UTC (rev 172400)
@@ -1,11 +0,0 @@
---- a/config.sub	2009-09-15 00:42:36.000000000 -0700
-+++ b/config.sub	2009-09-15 00:42:36.000000000 -0700
-@@ -155,7 +155,7 @@
- 		| alpha | we32k | ns16k | clipper | i370 | sh \
- 		| powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
- 		| pdp11 | mips64el | mips64orion | mips64orionel \
--		| sparc | sparclet | sparclite | sparc64)
-+		| sparc | sparclet | sparclite | sparc64 | x86_64-*)
- 		basic_machine=$basic_machine-unknown
- 		;;
- 	# We use `pc' rather than `unknown'

Copied: cdcd/repos/community-i686/cdcd-0.6.6-x86_64.patch (from rev 172399, cdcd/trunk/cdcd-0.6.6-x86_64.patch)
===================================================================
--- community-i686/cdcd-0.6.6-x86_64.patch	                        (rev 0)
+++ community-i686/cdcd-0.6.6-x86_64.patch	2016-04-28 09:25:44 UTC (rev 172400)
@@ -0,0 +1,11 @@
+--- a/config.sub	2009-09-15 00:42:36.000000000 -0700
++++ b/config.sub	2009-09-15 00:42:36.000000000 -0700
+@@ -155,7 +155,7 @@
+ 		| alpha | we32k | ns16k | clipper | i370 | sh \
+ 		| powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
+ 		| pdp11 | mips64el | mips64orion | mips64orionel \
+-		| sparc | sparclet | sparclite | sparc64)
++		| sparc | sparclet | sparclite | sparc64 | x86_64-*)
+ 		basic_machine=$basic_machine-unknown
+ 		;;
+ 	# We use `pc' rather than `unknown'

Deleted: community-i686/cdcd.install
===================================================================
--- community-i686/cdcd.install	2016-04-28 09:25:38 UTC (rev 172399)
+++ community-i686/cdcd.install	2016-04-28 09:25:44 UTC (rev 172400)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(cdcd.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-04-28 09:25:38 UTC (rev 172399)
+++ community-x86_64/PKGBUILD	2016-04-28 09:25:44 UTC (rev 172400)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Federico Cinelli <cinelli at aur.archlinux.org>
-# Contributor dorphell <dorphell at archlinux.org>
-# Contributor Sarah Hay <sarahhay at mb.sympatico.ca>
-
-pkgname=cdcd
-pkgver=0.6.6
-pkgrel=7
-pkgdesc="A commandline cd-player"
-arch=('i686' 'x86_64')
-depends=('libcdaudio' 'readline')
-url="http://libcdaudio.sourceforge.net/"
-license=('GPL2')
-install=cdcd.install
-source=("http://downloads.sourceforge.net/libcdaudio/$pkgname-$pkgver.tar.gz")
-md5sums=('dc17f2e275c7214cb693f6abb50f29fb')
-
-if [[ "$CARCH" == "x86_64" ]]; then
-  source+=("cdcd-0.6.6-$CARCH.patch")
-  md5sums+=('7c39f01408fc084e2c62da4da324370e')
-fi
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver" 
-
-  if [[ "$CARCH" == "x86_64" ]]; then
-    patch -Np1 -i "$srcdir/cdcd-0.6.6-$CARCH.patch"
-  fi
-
-
-  sed -i 's/(CPPFunction \*)/(rl_completion_func_t \*)/' cmd_cdcd.c
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
- 
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  
-  mv "$pkgdir/usr/info" "$pkgdir/usr/share/"
-  mv "$pkgdir/usr/man/" "$pkgdir/usr/share/"
-  rm "$pkgdir/usr/share/dir"
-
-  install -dm755 "$pkgdir/usr/bin" "$pkgdir/usr/share"
-}

Copied: cdcd/repos/community-x86_64/PKGBUILD (from rev 172399, cdcd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-04-28 09:25:44 UTC (rev 172400)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Federico Cinelli <cinelli at aur.archlinux.org>
+# Contributor dorphell <dorphell at archlinux.org>
+# Contributor Sarah Hay <sarahhay at mb.sympatico.ca>
+
+pkgname=cdcd
+pkgver=0.6.6
+pkgrel=8
+pkgdesc="A commandline cd-player"
+arch=('i686' 'x86_64')
+depends=('libcdaudio' 'readline')
+url="http://libcdaudio.sourceforge.net/"
+license=('GPL2')
+source=("http://downloads.sourceforge.net/libcdaudio/$pkgname-$pkgver.tar.gz")
+md5sums=('dc17f2e275c7214cb693f6abb50f29fb')
+
+if [[ "$CARCH" == "x86_64" ]]; then
+  source+=("cdcd-0.6.6-$CARCH.patch")
+  md5sums+=('7c39f01408fc084e2c62da4da324370e')
+fi
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver" 
+
+  if [[ "$CARCH" == "x86_64" ]]; then
+    patch -Np1 -i "$srcdir/cdcd-0.6.6-$CARCH.patch"
+  fi
+
+
+  sed -i 's/(CPPFunction \*)/(rl_completion_func_t \*)/' cmd_cdcd.c
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+
+  mv "$pkgdir/usr/info" "$pkgdir/usr/share/"
+  mv "$pkgdir/usr/man/" "$pkgdir/usr/share/"
+  rm "$pkgdir/usr/share/dir"
+
+  install -dm755 "$pkgdir/usr/bin" "$pkgdir/usr/share"
+}

Deleted: community-x86_64/cdcd-0.6.6-x86_64.patch
===================================================================
--- community-x86_64/cdcd-0.6.6-x86_64.patch	2016-04-28 09:25:38 UTC (rev 172399)
+++ community-x86_64/cdcd-0.6.6-x86_64.patch	2016-04-28 09:25:44 UTC (rev 172400)
@@ -1,11 +0,0 @@
---- a/config.sub	2009-09-15 00:42:36.000000000 -0700
-+++ b/config.sub	2009-09-15 00:42:36.000000000 -0700
-@@ -155,7 +155,7 @@
- 		| alpha | we32k | ns16k | clipper | i370 | sh \
- 		| powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
- 		| pdp11 | mips64el | mips64orion | mips64orionel \
--		| sparc | sparclet | sparclite | sparc64)
-+		| sparc | sparclet | sparclite | sparc64 | x86_64-*)
- 		basic_machine=$basic_machine-unknown
- 		;;
- 	# We use `pc' rather than `unknown'

Copied: cdcd/repos/community-x86_64/cdcd-0.6.6-x86_64.patch (from rev 172399, cdcd/trunk/cdcd-0.6.6-x86_64.patch)
===================================================================
--- community-x86_64/cdcd-0.6.6-x86_64.patch	                        (rev 0)
+++ community-x86_64/cdcd-0.6.6-x86_64.patch	2016-04-28 09:25:44 UTC (rev 172400)
@@ -0,0 +1,11 @@
+--- a/config.sub	2009-09-15 00:42:36.000000000 -0700
++++ b/config.sub	2009-09-15 00:42:36.000000000 -0700
+@@ -155,7 +155,7 @@
+ 		| alpha | we32k | ns16k | clipper | i370 | sh \
+ 		| powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
+ 		| pdp11 | mips64el | mips64orion | mips64orionel \
+-		| sparc | sparclet | sparclite | sparc64)
++		| sparc | sparclet | sparclite | sparc64 | x86_64-*)
+ 		basic_machine=$basic_machine-unknown
+ 		;;
+ 	# We use `pc' rather than `unknown'

Deleted: community-x86_64/cdcd.install
===================================================================
--- community-x86_64/cdcd.install	2016-04-28 09:25:38 UTC (rev 172399)
+++ community-x86_64/cdcd.install	2016-04-28 09:25:44 UTC (rev 172400)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(cdcd.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}



More information about the arch-commits mailing list