[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2020-12-06 Thread Rémy Oudompheng via arch-commits
Date: Sunday, December 6, 2020 @ 10:11:45
  Author: remy
Revision: 402945

upgpkg: texlive-music 2020.56473-1

Lilyglyphs is now compatible with Python 3.

- upgrade package lilyglyphs 33164 -> 56473

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |   15 +--
 1 file changed, 5 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-06 10:10:41 UTC (rev 402944)
+++ PKGBUILD2020-12-06 10:11:45 UTC (rev 402945)
@@ -2,9 +2,9 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2020.54758
+pkgver=2020.56473
 _revnr=${pkgver#2020.}
-pkgrel=2
+pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
 arch=(any)
@@ -13,11 +13,10 @@
 'fontforge: for scripts from the lilyglyphs packages')
 groups=('texlive-most')
 url='http://tug.org/texlive/'
-source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps" python3-compat.patch)
+source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('47f418d851a0f838c08be406135ef338533e32cf0bc9c4ffefeaa0139973e8f1'
-'0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f'
-'f439a94c93eca9fa7e1e52b9d1f6af2abb963b33978bdea4b6f893cd97562392')
+sha256sums=('06caf29f5ef2e3881cde74963f70ffe75215359ae824ebae4f0599b24ca4458b'
+'0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {
for p in *.tar.xz; do
@@ -24,10 +23,6 @@
   bsdtar -xf $p
done
rm -rf {tlpkg,doc,source} || true
-
-   # Update print statements to Python 3
-   cd texmf-dist
-   patch -Np1 -i ${srcdir}/python3-compat.patch
 }
 
 package() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD python3-compat.patch)

2020-06-12 Thread Jelle van der Waa via arch-commits
Date: Friday, June 12, 2020 @ 20:04:24
  Author: jelle
Revision: 389059

Port lilyglyphs print statements to python3 to remove the python2 optdependency

Added:
  texlive-music/trunk/python3-compat.patch
Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |   16 +-
 python3-compat.patch |  309 +
 2 files changed, 319 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-12 18:21:12 UTC (rev 389058)
+++ PKGBUILD2020-06-12 20:04:24 UTC (rev 389059)
@@ -4,18 +4,20 @@
 pkgname=texlive-music
 pkgver=2020.54758
 _revnr=${pkgver#2020.}
-pkgrel=1
+pkgrel=2
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
 arch=(any)
 depends=('texlive-core')
-optdepends=('python2: for scripts from the lilyglyphs packages')
+optdepends=('python: for scripts from the lilyglyphs packages'
+'fontforge: for scripts from the lilyglyphs packages')
 groups=('texlive-most')
 url='http://tug.org/texlive/'
-source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
+source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps" python3-compat.patch)
 options=('!emptydirs')
 sha256sums=('47f418d851a0f838c08be406135ef338533e32cf0bc9c4ffefeaa0139973e8f1'
-'0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
+'0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f'
+'f439a94c93eca9fa7e1e52b9d1f6af2abb963b33978bdea4b6f893cd97562392')
 
 build() {
for p in *.tar.xz; do
@@ -22,6 +24,10 @@
   bsdtar -xf $p
done
rm -rf {tlpkg,doc,source} || true
+
+   # Update print statements to Python 3
+   cd texmf-dist
+   patch -Np1 -i ${srcdir}/python3-compat.patch
 }
 
 package() {
@@ -42,8 +48,6 @@
if [[ -d "$pkgdir"/usr/share/texmf-dist/scripts ]]; then
  find "$pkgdir"/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' 
\;
fi
-   # fix python2 command name in scripts.
-   sed -i 's/env python/env python2/' 
"$pkgdir"/usr/share/texmf-dist/scripts/lilyglyphs/*.py
# script symlinks
install -m755 -d "$pkgdir"/usr/bin
ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py 
"$pkgdir"/usr/bin/lily-glyph-commands

Added: python3-compat.patch
===
--- python3-compat.patch(rev 0)
+++ python3-compat.patch2020-06-12 20:04:24 UTC (rev 389059)
@@ -0,0 +1,309 @@
+diff -aur texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py 
texmf-dist.new/scripts/lilyglyphs/lily-glyph-commands.py
+--- texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py   2013-10-03 
00:18:36.0 +0200
 texmf-dist.new/scripts/lilyglyphs/lily-glyph-commands.py   2020-06-12 
21:28:27.383263794 +0200
+@@ -80,10 +80,10 @@
+ if not len(line):
+ # skip if cmd and glyph haven't been filled both
+ if not (entry['cmd'] and entry['element']):
+-print 'Skip malformed entry \'' + entry['cmd'] + '\'. Please 
check input file'
++print('Skip malformed entry \'' + entry['cmd'] + '\'. Please 
check input file')
+ reset_entry()
+ else:
+-print 'Read entry \'' + entry['cmd'] + '\''
++print('Read entry \'' + entry['cmd'] + '\'')
+ lg.in_cmds[entry['cmd']] = {}
+ lg.in_cmds[entry['cmd']]['element'] = entry['element']
+ lg.in_cmds[entry['cmd']]['type'] = entry['type']
+@@ -110,13 +110,13 @@
+ 
+ 
+ def usage():
+-print 'genGlyphCommands.py'
+-print 'is part of the lilyglyphs package'
+-print ''
+-print 'Usage:'
+-print 'Pass the name (without path) of an input definitions file'
+-print '(this has to be located in the /stash_new_commands directory.'
+-print 'Please refer to the manual (documentation/lilyglyphs.pdf).'
++print('genGlyphCommands.py')
++print('is part of the lilyglyphs package')
++print('')
++print('Usage:')
++print('Pass the name (without path) of an input definitions file')
++print('(this has to be located in the /stash_new_commands directory.')
++print('Please refer to the manual (documentation/lilyglyphs.pdf).')
+ 
+ # 
+ # Finally launch the program
+diff -aur texmf-dist/scripts/lilyglyphs/lilyglyphs_common.py 
texmf-dist.new/scripts/lilyglyphs/lilyglyphs_common.py
+--- texmf-dist/scripts/lilyglyphs/lilyglyphs_common.py 2014-03-12 
23:37:31.0 +0100
 texmf-dist.new/scripts/lilyglyphs/lilyglyphs_common.py 2020-06-12 
21:27:46.323032709 +0200
+@@ -232,7 +232,7 @@
+ """Removes unneccessary files from LilyPond compilation,
+ rename and remove the preview PDF files to the right directory."""
+ 
+-print 'Clean 

[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2020-06-07 Thread Rémy Oudompheng via arch-commits
Date: Sunday, June 7, 2020 @ 22:44:19
  Author: remy
Revision: 388470

upgpkg: texlive-music 2020.54758-1

- new package musical

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-07 22:38:32 UTC (rev 388469)
+++ PKGBUILD2020-06-07 22:44:19 UTC (rev 388470)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2020.54512
+pkgver=2020.54758
 _revnr=${pkgver#2020.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -14,7 +14,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('fff13d46acb927beffb8ffbfb18e25d98b320f67f8db055001f70b32829332e9'
+sha256sums=('47f418d851a0f838c08be406135ef338533e32cf0bc9c4ffefeaa0139973e8f1'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2020-04-02 Thread Rémy Oudompheng via arch-commits
Date: Thursday, April 2, 2020 @ 06:54:26
  Author: remy
Revision: 379113

upgpkg: texlive-music 2020.54512-1

TL2020 update

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |   44 ++--
 1 file changed, 22 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-02 06:54:08 UTC (rev 379112)
+++ PKGBUILD2020-04-02 06:54:26 UTC (rev 379113)
@@ -2,8 +2,8 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2019.52275
-_revnr=${pkgver#2019.}
+pkgver=2020.54512
+_revnr=${pkgver#2020.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
@@ -14,7 +14,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('bfd6866c0da56fc383e2d1fcc5327c3f567e658fdbefd14fecec5aee9a6cf98e'
+sha256sums=('fff13d46acb927beffb8ffbfb18e25d98b320f67f8db055001f70b32829332e9'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {
@@ -25,32 +25,32 @@
 }
 
 package() {
-   install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs
+   install -m755 -d "$pkgdir"/var/lib/texmf/arch/installedpkgs
sed -i '/^#/d' CONTENTS
-   install -m644 CONTENTS 
$pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
-   install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/
-   install -m755 -d $pkgdir/usr/share
+   install -m644 CONTENTS 
"$pkgdir"/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
+   install -m644 $pkgname.maps "$pkgdir"/var/lib/texmf/arch/installedpkgs/
+   install -m755 -d "$pkgdir"/usr/share
wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; 
done) || true
for dir in $wanteddirs; do
- find $dir -type d -exec install -d -m755 
$pkgdir/usr/share/texmf-dist/'{}' \;
- find $dir -type f -exec install -m644 '{}' 
$pkgdir/usr/share/texmf-dist/'{}' \;
+ find $dir -type d -exec install -d -m755 
"$pkgdir"/usr/share/texmf-dist/'{}' \;
+ find $dir -type f -exec install -m644 '{}' 
"$pkgdir"/usr/share/texmf-dist/'{}' \;
done
if [[ -d texmf-dist ]]; then
- find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \;
- find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \;
+ find texmf-dist -type d -exec install -d -m755 "$pkgdir"/usr/share/'{}' \;
+ find texmf-dist -type f -exec install -m644 '{}' "$pkgdir"/usr/share/'{}' 
\;
fi
-   if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then
- find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \;
+   if [[ -d "$pkgdir"/usr/share/texmf-dist/scripts ]]; then
+ find "$pkgdir"/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' 
\;
fi
# fix python2 command name in scripts.
-   sed -i 's/env python/env python2/' 
$pkgdir/usr/share/texmf-dist/scripts/lilyglyphs/*.py
+   sed -i 's/env python/env python2/' 
"$pkgdir"/usr/share/texmf-dist/scripts/lilyglyphs/*.py
# script symlinks
-   install -m755 -d $pkgdir/usr/bin
-   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py 
$pkgdir/usr/bin/lily-glyph-commands
-   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-image-commands.py 
$pkgdir/usr/bin/lily-image-commands
-   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py 
$pkgdir/usr/bin/lily-rebuild-pdfs
-   ln -s /usr/share/texmf-dist/scripts/m-tx/m-tx.lua $pkgdir/usr/bin/m-tx
-   ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua 
$pkgdir/usr/bin/musixflx
-   ln -s /usr/share/texmf-dist/scripts/musixtex/musixtex.lua 
$pkgdir/usr/bin/musixtex
-   ln -s /usr/share/texmf-dist/scripts/pmxchords/pmxchords.lua 
$pkgdir/usr/bin/pmxchords
+   install -m755 -d "$pkgdir"/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py 
"$pkgdir"/usr/bin/lily-glyph-commands
+   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-image-commands.py 
"$pkgdir"/usr/bin/lily-image-commands
+   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py 
"$pkgdir"/usr/bin/lily-rebuild-pdfs
+   ln -s /usr/share/texmf-dist/scripts/m-tx/m-tx.lua "$pkgdir"/usr/bin/m-tx
+   ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua 
"$pkgdir"/usr/bin/musixflx
+   ln -s /usr/share/texmf-dist/scripts/musixtex/musixtex.lua 
"$pkgdir"/usr/bin/musixtex
+   ln -s /usr/share/texmf-dist/scripts/pmxchords/pmxchords.lua 
"$pkgdir"/usr/bin/pmxchords
 }


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2019-11-01 Thread Rémy Oudompheng via arch-commits
Date: Friday, November 1, 2019 @ 09:21:15
  Author: remy
Revision: 366341

upgpkg: texlive-music 2019.52275-1

Upgrading package texlive-music from 50602 to 52275
- upgrade package autosp 50602 -> 52236
- new package chordbox
- new package ddphonism
- upgrade package gregoriotex 50357 -> 51029
- upgrade package leadsheets 45405 -> 52275
- upgrade package lyluatex 47584 -> 51252
- upgrade package musicography 47838 -> 51251
- upgrade package songs 44553 -> 51494

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-01 09:20:48 UTC (rev 366340)
+++ PKGBUILD2019-11-01 09:21:15 UTC (rev 366341)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2019.50602
+pkgver=2019.52275
 _revnr=${pkgver#2019.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -14,7 +14,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('ba558b73f44f956f951c32fbb76cc1666337df787a6060be2ac9a7f9b0281fe3'
+sha256sums=('bfd6866c0da56fc383e2d1fcc5327c3f567e658fdbefd14fecec5aee9a6cf98e'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2019-05-11 Thread Rémy Oudompheng via arch-commits
Date: Saturday, May 11, 2019 @ 21:13:50
  Author: remy
Revision: 352882

upgpkg: texlive-music 2019.50602-1

TeXLive 2019 release

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-11 21:13:35 UTC (rev 352881)
+++ PKGBUILD2019-05-11 21:13:50 UTC (rev 352882)
@@ -2,8 +2,8 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2018.49818
-_revnr=${pkgver#2018.}
+pkgver=2019.50602
+_revnr=${pkgver#2019.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
@@ -14,7 +14,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('a8705c3e063d368b93ba5d417b2e2a5d30b01f4c28c03250cd80602a8eaa32c0'
+sha256sums=('ba558b73f44f956f951c32fbb76cc1666337df787a6060be2ac9a7f9b0281fe3'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2019-02-17 Thread Rémy Oudompheng via arch-commits
Date: Monday, February 18, 2019 @ 06:53:19
  Author: remy
Revision: 346460

upgpkg: texlive-music 2018.49818-1

- upgrade package autosp 47198 -> 49652
- new package chordbars
- new package latex4musicians
- upgrade package m-tx 47553 -> 49818

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-18 06:53:03 UTC (rev 346459)
+++ PKGBUILD2019-02-18 06:53:19 UTC (rev 346460)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2018.48353
+pkgver=2018.49818
 _revnr=${pkgver#2018.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -14,7 +14,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('937f9465021576da846d058ba8164bee4b92479c293f7590c4f2f915a044ec24'
+sha256sums=('a8705c3e063d368b93ba5d417b2e2a5d30b01f4c28c03250cd80602a8eaa32c0'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2018-09-04 Thread Rémy Oudompheng via arch-commits
Date: Wednesday, September 5, 2018 @ 05:47:02
  Author: remy
Revision: 92

upgpkg: texlive-music 2018.48353-1

- new package guitartabs
- upgrade package lyluatex 46952 -> 47584
- upgrade package m-tx 47198 -> 47553
- upgrade package musicography 45658 -> 47838
- upgrade package musixtex 46141 -> 48353

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-05 05:46:51 UTC (rev 91)
+++ PKGBUILD2018-09-05 05:47:02 UTC (rev 92)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2018.47198
+pkgver=2018.48353
 _revnr=${pkgver#2018.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -15,7 +15,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('ab9633dd966e40566c342f737e965330bcf5690c077fce5b5bcef7ae26bf2a6a'
+sha256sums=('937f9465021576da846d058ba8164bee4b92479c293f7590c4f2f915a044ec24'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2018-04-29 Thread Rémy Oudompheng via arch-commits
Date: Sunday, April 29, 2018 @ 22:35:57
  Author: remy
Revision: 323152

upgpkg: texlive-music 2018.47198-1

- upgrade package autosp 44166 -> 47198
- upgrade package gregoriotex 44502 -> 47133
- upgrade package lyluatex 46005 -> 46952
- upgrade package m-tx 44166 -> 47198
- upgrade package pmx 43869 -> 46823

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-29 22:35:21 UTC (rev 323151)
+++ PKGBUILD2018-04-29 22:35:57 UTC (rev 323152)
@@ -3,8 +3,8 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2017.46141
-_revnr=${pkgver#2017.}
+pkgver=2018.47198
+_revnr=${pkgver#2018.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
@@ -15,7 +15,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('b48dabaab5653df226bcacd6a01e5b9a4dd12add4bc5b37f5f174bddf519e97a'
+sha256sums=('ab9633dd966e40566c342f737e965330bcf5690c077fce5b5bcef7ae26bf2a6a'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2018-03-04 Thread Rémy Oudompheng via arch-commits
Date: Sunday, March 4, 2018 @ 10:04:15
  Author: remy
Revision: 317806

upgpkg: texlive-music 2017.46141-1

- new package lyluatex
- upgrade package musixtex 44885 -> 46141

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-04 10:03:19 UTC (rev 317805)
+++ PKGBUILD2018-03-04 10:04:15 UTC (rev 317806)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2017.45674
+pkgver=2017.46141
 _revnr=${pkgver#2017.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -15,7 +15,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('e62d604f174c0c800c436afdc237f9aad4cd7c0ffa6d672d9b4d49bce62c244d'
+sha256sums=('b48dabaab5653df226bcacd6a01e5b9a4dd12add4bc5b37f5f174bddf519e97a'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2017-11-11 Thread Rémy Oudompheng
Date: Saturday, November 11, 2017 @ 12:20:06
  Author: remy
Revision: 309544

upgpkg: texlive-music 2017.45674-1

Upgrading package texlive-music from 44885 to 45674
- upgrade package leadsheets 43034 -> 45405
- new package musicography
- new package octave

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-11 12:19:08 UTC (rev 309543)
+++ PKGBUILD2017-11-11 12:20:06 UTC (rev 309544)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2017.44885
+pkgver=2017.45674
 _revnr=${pkgver#2017.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -15,7 +15,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('99b631f5d8b3bee474a27ee21eb7a10a7d56f8514ca48bb94665ec1953e2c804'
+sha256sums=('e62d604f174c0c800c436afdc237f9aad4cd7c0ffa6d672d9b4d49bce62c244d'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2017-08-01 Thread Rémy Oudompheng
Date: Tuesday, August 1, 2017 @ 20:19:18
  Author: remy
Revision: 301498

upgpkg: texlive-music 2017.44885-1

- upgrade package musixtex 43375 -> 44885
- upgrade package songs 30005 -> 44553

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-01 20:19:13 UTC (rev 301497)
+++ PKGBUILD2017-08-01 20:19:18 UTC (rev 301498)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2017.44502
+pkgver=2017.44885
 _revnr=${pkgver#2017.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -15,7 +15,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('923ad18279447e9535fde81206fc482b32467cb8f711625b1bb6bed91dfe48f9'
+sha256sums=('99b631f5d8b3bee474a27ee21eb7a10a7d56f8514ca48bb94665ec1953e2c804'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2017-06-20 Thread Rémy Oudompheng
Date: Tuesday, June 20, 2017 @ 06:11:49
  Author: remy
Revision: 299026

upgpkg: texlive-music 2017.44502-1

TeXLive 2017 release.

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-20 06:11:15 UTC (rev 299025)
+++ PKGBUILD2017-06-20 06:11:49 UTC (rev 299026)
@@ -3,8 +3,8 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2016.43375
-_revnr=${pkgver#2016.}
+pkgver=2017.44502
+_revnr=${pkgver#2017.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
@@ -15,7 +15,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-sha256sums=('a7adb10369f2d37d1b7cd3840f6371027fc93987bdeb76c9075f61748266d9a8'
+sha256sums=('923ad18279447e9535fde81206fc482b32467cb8f711625b1bb6bed91dfe48f9'
 '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {
@@ -53,6 +53,5 @@
ln -s /usr/share/texmf-dist/scripts/m-tx/m-tx.lua $pkgdir/usr/bin/m-tx
ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua 
$pkgdir/usr/bin/musixflx
ln -s /usr/share/texmf-dist/scripts/musixtex/musixtex.lua 
$pkgdir/usr/bin/musixtex
-   ln -s /usr/share/texmf-dist/scripts/pmx/pmx2pdf.lua $pkgdir/usr/bin/pmx2pdf
ln -s /usr/share/texmf-dist/scripts/pmxchords/pmxchords.lua 
$pkgdir/usr/bin/pmxchords
 }


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2017-04-18 Thread Rémy Oudompheng
Date: Tuesday, April 18, 2017 @ 20:14:01
  Author: remy
Revision: 293124

upgpkg: texlive-music 2016.43375-1

- upgrade package autosp 40768 -> 43361
- upgrade package leadsheets 41890 -> 43034
- upgrade package musixtex 41352 -> 43375

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-18 20:12:34 UTC (rev 293123)
+++ PKGBUILD2017-04-18 20:14:01 UTC (rev 293124)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2016.41913
+pkgver=2016.43375
 _revnr=${pkgver#2016.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -15,8 +15,8 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-md5sums=('39e8c44598fe6689f91143962cc8c3f6'
- '6af96d016e18492867d6f4ba2eff0a31')
+sha256sums=('a7adb10369f2d37d1b7cd3840f6371027fc93987bdeb76c9075f61748266d9a8'
+'0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f')
 
 build() {
for p in *.tar.xz; do


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2016-11-19 Thread Rémy Oudompheng
Date: Saturday, November 19, 2016 @ 19:05:44
  Author: remy
Revision: 281610

upgpkg: texlive-music 2016.41913-1

Updated packages:
gregoriotex has been updated (41389 => 41913)
guitarchordschemes has been updated (35179 => 41880)
leadsheets has been updated (39564 => 41890)

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-19 19:04:57 UTC (rev 281609)
+++ PKGBUILD2016-11-19 19:05:44 UTC (rev 281610)
@@ -3,9 +3,9 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2016.41389
+pkgver=2016.41913
 _revnr=${pkgver#2016.}
-pkgrel=2
+pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
 arch=(any)
@@ -15,7 +15,7 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-md5sums=('9b0de51b1820cc81332e9046f73411b6'
+md5sums=('39e8c44598fe6689f91143962cc8c3f6'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD texlive.install)

2016-08-02 Thread Rémy Oudompheng
Date: Tuesday, August 2, 2016 @ 21:03:22
  Author: remy
Revision: 272910

upgpkg: texlive-music 2016.41389-2

Removed obsolete install file.

Modified:
  texlive-music/trunk/PKGBUILD
Deleted:
  texlive-music/trunk/texlive.install

-+
 PKGBUILD|3 +--
 texlive.install |   52 
 2 files changed, 1 insertion(+), 54 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-02 20:40:56 UTC (rev 272909)
+++ PKGBUILD2016-08-02 21:03:22 UTC (rev 272910)
@@ -5,7 +5,7 @@
 pkgname=texlive-music
 pkgver=2016.41389
 _revnr=${pkgver#2016.}
-pkgrel=1
+pkgrel=2
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
 arch=(any)
@@ -15,7 +15,6 @@
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
-install=texlive.install
 md5sums=('9b0de51b1820cc81332e9046f73411b6'
  '6af96d016e18492867d6f4ba2eff0a31')
 

Deleted: texlive.install
===
--- texlive.install 2016-08-02 20:40:56 UTC (rev 272909)
+++ texlive.install 2016-08-02 21:03:22 UTC (rev 272910)
@@ -1,52 +0,0 @@
-PKGNAME="texlive-music"
-UPDMAP="etc/texmf/web2c/updmap.cfg"
-UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg"
-SYNCWITHTREES=''
-
-MAPFILE="var/lib/texmf/arch/installedpkgs/$PKGNAME.maps"
-
-post_install() {
-  TMPFILE=`mktemp`
-  echo">>> texlive: saving updmap.cfg as $TMPFILE..."
-  cp "$UPDMAP" "$TMPFILE"
-  echo">>> texlive: regenerating updmap.cfg (custom additions should go"
-  echo" into /etc/texmf/web2c/updmap-local.cfg"
-  cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP
-  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
-  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP
-  echo">>> texlive: updating the filename database..."
-  usr/bin/mktexlsr
-  echo">>> texlive: updating the fontmap files with updmap..."
-  usr/bin/updmap-sys --quiet --nohash
-  echo" done." 
-}
-
-post_upgrade() {
-  TMPFILE=`mktemp`
-  echo">>> texlive: saving updmap.cfg as $TMPFILE..."
-  cp "$UPDMAP" "$TMPFILE"
-  echo">>> texlive: regenerating updmap.cfg (custom additions should go"
-  echo" into /etc/texmf/web2c/updmap-local.cfg"
-  cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP
-  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
-  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP
-  echo">>> texlive: updating the filename database..."
-  usr/bin/mktexlsr
-  echo">>> texlive: updating the fontmap files with updmap..."
-  usr/bin/updmap-sys --quiet --nohash $SYNCWITHTREES
-  echo" done." 
-}
-
-pre_remove() {
-for m in `cut -d' ' -f2 $MAPFILE`; do 
-  sed -i "/\s$m/d" $UPDMAP ; 
-done
-}
-
-post_remove() {
-  echo">>> texlive: updating the filename database..."
-  usr/bin/mktexlsr
-  echo">>> texlive: updating the fontmap files with updmap..."
-  usr/bin/updmap-sys --quiet --nohash
-  echo" done." 
-}


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2016-06-19 Thread Rémy Oudompheng
Date: Sunday, June 19, 2016 @ 22:32:50
  Author: remy
Revision: 270218

upgpkg: texlive-music 2016.41389-1

Update to TL2016 release.

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-19 22:31:01 UTC (rev 270217)
+++ PKGBUILD2016-06-19 22:32:50 UTC (rev 270218)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2016.41008
+pkgver=2016.41389
 _revnr=${pkgver#2016.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -16,7 +16,7 @@
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
 install=texlive.install
-md5sums=('ace217454d486ccc60e2486d035919f6'
+md5sums=('9b0de51b1820cc81332e9046f73411b6'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2015-11-14 Thread Rémy Oudompheng
Date: Saturday, November 14, 2015 @ 22:28:56
  Author: remy
Revision: 251049

Upgrade texlive-music to revision 38340

- upgrade package abc 15878 -> 38340
- upgrade package leadsheets 36029 -> 37982
- upgrade package musixtex 37025 -> 37959
- upgrade package musixtex-fonts 36414 -> 37762
- new package piano
- new package xpiano

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-14 21:25:42 UTC (rev 251048)
+++ PKGBUILD2015-11-14 21:28:56 UTC (rev 251049)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2015.37078
+pkgver=2015.38340
 _revnr=${pkgver#2015.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -16,7 +16,7 @@
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
 install=texlive.install
-md5sums=('f18b0081ac533fbce6f94392ca8d1c6b'
+md5sums=('122db9c7f8b55c3caa1f12647c426b3b'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2015-09-01 Thread Rémy Oudompheng
Date: Tuesday, September 1, 2015 @ 12:30:16
  Author: remy
Revision: 245140

upgpkg: texlive-music 2015.37078-1

Update to TeXLive 2015

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-01 10:30:08 UTC (rev 245139)
+++ PKGBUILD2015-09-01 10:30:16 UTC (rev 245140)
@@ -3,8 +3,8 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2014.36414
-_revnr=${pkgver#2014.}
+pkgver=2015.37078
+_revnr=${pkgver#2015.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
 license=('GPL')
@@ -16,7 +16,7 @@
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
 options=('!emptydirs')
 install=texlive.install
-md5sums=('1270d4c9afab04f9ab6ea74bd5848819'
+md5sums=('f18b0081ac533fbce6f94392ca8d1c6b'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {
@@ -25,6 +25,7 @@
done
rm -rf {tlpkg,doc,source} || true
 }
+
 package() {
install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs
sed -i '/^#/d' CONTENTS


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2015-04-05 Thread Rémy Oudompheng
Date: Monday, April 6, 2015 @ 02:32:42
  Author: remy
Revision: 235514

upgpkg: texlive-music 2014.36414-1

- new package bagpipe
- upgrade package guitarchordschemes 31524 - 35179
- new package leadsheets
- upgrade package musixtex 32402 - 36401
- upgrade package musixtex-fonts 28934 - 36414
- upgrade package pmx 33826 - 35650

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-06 00:32:09 UTC (rev 235513)
+++ PKGBUILD2015-04-06 00:32:42 UTC (rev 235514)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng r...@archlinux.org
 
 pkgname=texlive-music
-pkgver=2014.33826
+pkgver=2014.36414
 _revnr=${pkgver#2014.}
 pkgrel=1
 pkgdesc=TeX Live - Music typesetting packages
@@ -16,7 +16,7 @@
 source=(https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
 options=('!emptydirs')
 install=texlive.install
-md5sums=('6df6156025e266c3e8e296295d4dda89'
+md5sums=('1270d4c9afab04f9ab6ea74bd5848819'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {


[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2014-08-13 Thread Rémy Oudompheng
Date: Thursday, August 14, 2014 @ 01:16:12
  Author: remy
Revision: 219689

upgpkg: texlive-music 2014.33826-1

New python2 optdep for some scripts.

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-13 23:13:09 UTC (rev 219688)
+++ PKGBUILD2014-08-13 23:16:12 UTC (rev 219689)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Firmicus firmicus āt gmx dōt net
 # Maintainer: Rémy Oudompheng r...@archlinux.org
 
@@ -9,11 +10,11 @@
 license=('GPL')
 arch=(any)
 depends=('texlive-core')
+optdepends=('python2: for scripts from the lilyglyphs packages')
 groups=('texlive-most')
 url='http://tug.org/texlive/'
 source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
 options=('!emptydirs')
-options=(!strip)
 install=texlive.install
 md5sums=('6df6156025e266c3e8e296295d4dda89'
  '6af96d016e18492867d6f4ba2eff0a31')
@@ -42,10 +43,16 @@
if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then
  find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \;
fi
+   # fix python2 command name in scripts.
+   sed -i 's/env python/env python2/' 
$pkgdir/usr/share/texmf-dist/scripts/lilyglyphs/*.py
# script symlinks
install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py 
$pkgdir/usr/bin/lily-glyph-commands
+   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-image-commands.py 
$pkgdir/usr/bin/lily-image-commands
+   ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py 
$pkgdir/usr/bin/lily-rebuild-pdfs
ln -s /usr/share/texmf-dist/scripts/m-tx/m-tx.lua $pkgdir/usr/bin/m-tx
ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua 
$pkgdir/usr/bin/musixflx
ln -s /usr/share/texmf-dist/scripts/musixtex/musixtex.lua 
$pkgdir/usr/bin/musixtex
ln -s /usr/share/texmf-dist/scripts/pmx/pmx2pdf.lua $pkgdir/usr/bin/pmx2pdf
+   ln -s /usr/share/texmf-dist/scripts/pmxchords/pmxchords.lua 
$pkgdir/usr/bin/pmxchords
 }



[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2014-03-12 Thread Rémy Oudompheng
Date: Wednesday, March 12, 2014 @ 23:58:44
  Author: remy
Revision: 207651

upgpkg: texlive-music 2013.32525-1

Changes from 31524 to 32525
- upgrade package gtrcrd 25121 - 32484
- upgrade package guitar 17355 - 32258
- new package lilyglyphs
- upgrade package m-tx 29764 - 32525
- upgrade package musixtex 29752 - 32402
- upgrade package pmx 29978 - 32412
- new package pmxchords

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-12 22:58:18 UTC (rev 207650)
+++ PKGBUILD2014-03-12 22:58:44 UTC (rev 207651)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng r...@archlinux.org
 
 pkgname=texlive-music
-pkgver=2013.31524
+pkgver=2013.32525
 _revnr=${pkgver#2013.}
 pkgrel=1
 pkgdesc=TeX Live - Music typesetting packages
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('40ea2d485056aee16c991ffd5b141a9e'
+md5sums=('c701da1f890d3ac107af27fbc7a2e878'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {



[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2013-09-09 Thread Rémy Oudompheng
Date: Monday, September 9, 2013 @ 14:57:04
  Author: remy
Revision: 193981

upgpkg: texlive-music 2013.31524-1

- new package guitarchordschemes

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-09 12:55:35 UTC (rev 193980)
+++ PKGBUILD2013-09-09 12:57:04 UTC (rev 193981)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng r...@archlinux.org
 
 pkgname=texlive-music
-pkgver=2013.30005
+pkgver=2013.31524
 _revnr=${pkgver#2013.}
 pkgrel=1
 pkgdesc=TeX Live - Music typesetting packages
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('5259af448b333481c3e58a159eb5ef58'
+md5sums=('40ea2d485056aee16c991ffd5b141a9e'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {



[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2013-04-18 Thread Rémy Oudompheng
Date: Friday, April 19, 2013 @ 01:52:58
  Author: remy
Revision: 183223

upgpkg: texlive-music 2012.28943-1

- upgrade package figbas 27405 - 28943
- upgrade package m-tx 28032 - 28900
- upgrade package musixtex 24518 - 28937
- upgrade package musixtex-fonts 24517 - 28934
- upgrade package pmx 26689 - 28894

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-18 23:52:34 UTC (rev 183222)
+++ PKGBUILD2013-04-18 23:52:58 UTC (rev 183223)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng r...@archlinux.org
 
 pkgname=texlive-music
-pkgver=2012.28032
+pkgver=2012.28943
 _revnr=${pkgver#2012.}
 pkgrel=1
 pkgdesc=TeX Live - Music typesetting packages
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('59a71300b8f99780e61301567a5f8188'
+md5sums=('6304f3196a62cc41c50dae9a6497eab0'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {




[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2012-11-18 Thread Rémy Oudompheng
Date: Monday, November 19, 2012 @ 02:36:56
  Author: remy
Revision: 171567

upgpkg: texlive-music 2012.28032-1

- upgrade package figbas 21037 - 27405
- upgrade package m-tx 26726 - 28032

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-19 07:34:20 UTC (rev 171566)
+++ PKGBUILD2012-11-19 07:36:56 UTC (rev 171567)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng r...@archlinux.org
 
 pkgname=texlive-music
-pkgver=2012.26726
+pkgver=2012.28032
 _revnr=${pkgver#2012.}
 pkgrel=1
 pkgdesc=TeX Live - Music typesetting packages
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('3777a169abffaeb93eb0cce3112f1ee5'
+md5sums=('59a71300b8f99780e61301567a5f8188'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {



[arch-commits] Commit in texlive-music/trunk (PKGBUILD)

2012-06-24 Thread Rémy Oudompheng
Date: Sunday, June 24, 2012 @ 14:16:08
  Author: remy
Revision: 162275

Update to texlive 2012.

Modified:
  texlive-music/trunk/PKGBUILD

--+
 PKGBUILD |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-24 18:10:43 UTC (rev 162274)
+++ PKGBUILD2012-06-24 18:16:08 UTC (rev 162275)
@@ -2,8 +2,8 @@
 # Maintainer: Rémy Oudompheng r...@archlinux.org
 
 pkgname=texlive-music
-pkgver=2011.24518
-_revnr=${pkgver#2011.}
+pkgver=2012.26726
+_revnr=${pkgver#2012.}
 pkgrel=1
 pkgdesc=TeX Live - Music typesetting packages
 license=('GPL')
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('6a7fa8135f2c55e063c1a4104e51e097'
+md5sums=('3777a169abffaeb93eb0cce3112f1ee5'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {
@@ -44,6 +44,8 @@
fi
# script symlinks
install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/m-tx/m-tx.lua $pkgdir/usr/bin/m-tx
+   ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua 
$pkgdir/usr/bin/musixflx
ln -s /usr/share/texmf-dist/scripts/musixtex/musixtex.lua 
$pkgdir/usr/bin/musixtex
-   ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua 
$pkgdir/usr/bin/musixflx
+   ln -s /usr/share/texmf-dist/scripts/pmx/pmx2pdf.lua $pkgdir/usr/bin/pmx2pdf
 }



[arch-commits] Commit in texlive-music/trunk (PKGBUILD texlive.install)

2010-06-26 Thread François Charette
Date: Saturday, June 26, 2010 @ 10:43:19
  Author: francois
Revision: 84112

prerelease of texlive 2010

Modified:
  texlive-music/trunk/PKGBUILD
  texlive-music/trunk/texlive.install

-+
 PKGBUILD|   26 ++
 texlive.install |   18 +++---
 2 files changed, 25 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-06-26 14:43:13 UTC (rev 84111)
+++ PKGBUILD2010-06-26 14:43:19 UTC (rev 84112)
@@ -1,8 +1,8 @@
 # Maintainer: Firmicus firmicus āt gmx dōt net
 
 pkgname=texlive-music
-pkgver=2009.15878
-pkgrel=2
+pkgver=2010.18434
+pkgrel=1
 pkgdesc=TeX Live - Music typesetting packages
 license=('GPL')
 arch=(any)
@@ -11,23 +11,25 @@
 url='http://tug.org/texlive/'
 source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
 options=('!emptydirs')
+options=(!strip)
 install=texlive.install
-md5sums=('ad1fba3200889abe1af6a87386421fbe'
+md5sums=('e3d8e54281e2c4aec14952517d1ee252'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {
-   cd $srcdir
-   install -m755 -d $pkgdir/usr/share/texmf-var/arch/installedpkgs || return 1
-   sed -i '/^#/d' CONTENTS || return 1
-   _revnr=`echo $pkgver | sed 's/2009\.//'`
-   install -m644 CONTENTS 
$pkgdir/usr/share/texmf-var/arch/installedpkgs/${pkgname}_${_revnr}.pkgs || 
return 1
-   install -m644 $pkgname.maps $pkgdir/usr/share/texmf-var/arch/installedpkgs/ 
|| return 1
-   for p in *.tar.xz; do 
+   for p in *.tar.xz; do
   bsdtar -xf $p || return 1
done
-   rm -rf {tlpkg,doc,source}
+   rm -rf {tlpkg,doc,source} || true
+}
+package() {
+   install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs || return 1
+   sed -i '/^#/d' CONTENTS || return 1
+   _revnr=`echo $pkgver | sed 's/2010\.//'`
+   install -m644 CONTENTS 
$pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs || return 1
+   install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ || 
return 1
install -m755 -d $pkgdir/usr/share || return 1
-   wanteddirs=$(for d in *; do test -d $d  [[ $d != texmf* ]]  echo $d; 
done)
+   wanteddirs=$(for d in *; do test -d $d  [[ $d != texmf* ]]  echo $d; 
done) || true
for dir in $wanteddirs; do
  find $dir -type d -exec install -d -m755 
$pkgdir/usr/share/texmf-dist/'{}' \; || return 1
  find $dir -type f -exec install -m644 '{}' 
$pkgdir/usr/share/texmf-dist/'{}' \; || return 1

Modified: texlive.install
===
--- texlive.install 2010-06-26 14:43:13 UTC (rev 84111)
+++ texlive.install 2010-06-26 14:43:19 UTC (rev 84112)
@@ -1,5 +1,5 @@
 PKGNAME=texlive-music
-UPDMAP=/usr/share/texmf-config/web2c/updmap.cfg
+UPDMAP=/etc/texmf/web2c/updmap.cfg
 SYNCWITHTREES=''
 NEWMAPS=`mktemp`
 cat EOF  $NEWMAPS
@@ -12,15 +12,19 @@
 
 post_install() {
echo texlive: updating the filename database...
-   texconfig-sys rehash
+   /usr/bin/mktexlsr
echo texlive: updating the fontmap files with updmap...
-   updmap-sys --quiet --nohash
+   /usr/bin/updmap-sys --quiet --nohash
echo done. 
 }
 
 
 pre_upgrade() {
-  OLDMAPS=/usr/share/texmf-var/arch/installedpkgs/$PKGNAME.maps
+  if [[ $2 == 200* ]]; then
+OLDMAPS=/usr/share/texmf-var/arch/installedpkgs/$PKGNAME.maps
+  else # = 2010
+OLDMAPS=/var/lib/texmf/arch/installedpkgs/$PKGNAME.maps
+  fi
   if [ -f $OLDMAPS ] ; then
 MAPSDIFF=`mktemp`
 TOADD=`mktemp`
@@ -36,7 +40,7 @@
cat $TOADD  $UPDMAP
 fi
   else
-echo Warning: file $PKGNAME.maps not found 
+echo Warning: file $OLDMAPS not found 
 echo (ignore the above if updating from TL2008 or from TL2009 in testing)
 SYNCWITHTREES=--syncwithtrees
   fi
@@ -45,9 +49,9 @@
 
 post_upgrade() {
echo texlive: updating the filename database...
-   texconfig-sys rehash
+   /usr/bin/mktexlsr
echo texlive: updating the fontmap files with updmap...
-   updmap-sys --quiet --nohash $SYNCWITHTREES
+   /usr/bin/updmap-sys --quiet --nohash $SYNCWITHTREES
echo done. 
 }