[arch-commits] Commit in lout/repos (12 files)

Kyle Keen kkeen at nymeria.archlinux.org
Wed Feb 6 14:41:18 UTC 2013


    Date: Wednesday, February 6, 2013 @ 15:41:18
  Author: kkeen
Revision: 83917

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

Added:
  lout/repos/community-i686/PKGBUILD
    (from rev 83916, lout/trunk/PKGBUILD)
  lout/repos/community-i686/lout.install
    (from rev 83916, lout/trunk/lout.install)
  lout/repos/community-i686/makefile.arch
    (from rev 83916, lout/trunk/makefile.arch)
  lout/repos/community-x86_64/PKGBUILD
    (from rev 83916, lout/trunk/PKGBUILD)
  lout/repos/community-x86_64/lout.install
    (from rev 83916, lout/trunk/lout.install)
  lout/repos/community-x86_64/makefile.arch
    (from rev 83916, lout/trunk/makefile.arch)
Deleted:
  lout/repos/community-i686/PKGBUILD
  lout/repos/community-i686/lout.install
  lout/repos/community-i686/makefile.arch
  lout/repos/community-x86_64/PKGBUILD
  lout/repos/community-x86_64/lout.install
  lout/repos/community-x86_64/makefile.arch

--------------------------------+
 community-i686/PKGBUILD        |   60 +++++++++++++++-----------
 community-i686/lout.install    |   20 ++++----
 community-i686/makefile.arch   |   90 +++++++++++++++++++--------------------
 community-x86_64/PKGBUILD      |   60 +++++++++++++++-----------
 community-x86_64/lout.install  |   20 ++++----
 community-x86_64/makefile.arch |   90 +++++++++++++++++++--------------------
 6 files changed, 184 insertions(+), 156 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-02-06 14:40:49 UTC (rev 83916)
+++ community-i686/PKGBUILD	2013-02-06 14:41:18 UTC (rev 83917)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: catwell <catwell at archlinux.us>
-
-pkgname=lout
-pkgver=3.39
-pkgrel=1
-pkgdesc="A lightweight document formatting system."
-arch=('i686' 'x86_64')
-url="http://lout.wiki.sourceforge.net/"
-license=('GPL')
-depends=('glibc')
-install=lout.install
-source=(http://mirrors.ctan.org/support/$pkgname/$pkgname-$pkgver.tar.gz makefile.arch lout.install)
-md5sums=('151e1fba676c7052936ccc1bcd9663a9'
-         '088a29ca16477a9a30da9fafc9391de8'
-         'bc6c8df650fe75dd3c51d0c047c56f30')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  cp ../makefile.arch .
-  make -f makefile.arch PKGDIR="$pkgdir" install
-}
-

Copied: lout/repos/community-i686/PKGBUILD (from rev 83916, lout/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-02-06 14:41:18 UTC (rev 83917)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: catwell <catwell at archlinux.us>
+
+pkgname=lout
+pkgver=3.39
+pkgrel=2
+pkgdesc="A lightweight document formatting system."
+arch=('i686' 'x86_64')
+url="http://lout.wiki.sourceforge.net/"
+license=('GPL')
+depends=('glibc')
+install=lout.install
+source=(http://mirrors.ctan.org/support/$pkgname/$pkgname-$pkgver.tar.gz
+        makefile.arch
+        lout.install
+        http://pkgs.fedoraproject.org/repo/pkgs/lout/slides.pdf/6822c33e49a1dca0b090f297d404d7fa/slides.pdf)
+md5sums=('151e1fba676c7052936ccc1bcd9663a9'
+         '088a29ca16477a9a30da9fafc9391de8'
+         '597cd52eb87ef6253cf769bed4db3952'
+         '6822c33e49a1dca0b090f297d404d7fa')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  cp ../makefile.arch .
+  make -f makefile.arch
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -f makefile.arch PKGDIR="$pkgdir" install
+  chmod 0775  "$pkgdir/usr/lib/lout/data/"
+  chgrp users "$pkgdir/usr/lib/lout/data/"
+  install -Dm644 "$srcdir/slides.pdf" "$pkgdir/usr/share/doc/$pkgname/introduction.pdf"
+}
+

Deleted: community-i686/lout.install
===================================================================
--- community-i686/lout.install	2013-02-06 14:40:49 UTC (rev 83916)
+++ community-i686/lout.install	2013-02-06 14:41:18 UTC (rev 83917)
@@ -1,9 +0,0 @@
-post_install()
-{
-  /usr/bin/lout -x -s /usr/lib/lout/include/init
-}
-
-post_upgrade()
-{
- post_install $1
-}

Copied: lout/repos/community-i686/lout.install (from rev 83916, lout/trunk/lout.install)
===================================================================
--- community-i686/lout.install	                        (rev 0)
+++ community-i686/lout.install	2013-02-06 14:41:18 UTC (rev 83917)
@@ -0,0 +1,11 @@
+post_install()
+{
+  /usr/bin/lout -x -s /usr/lib/lout/include/init
+  chmod 0775  "/usr/lib/lout/data/"
+  chgrp users "/usr/lib/lout/data/"
+}
+
+post_upgrade()
+{
+ post_install $1
+}

Deleted: community-i686/makefile.arch
===================================================================
--- community-i686/makefile.arch	2013-02-06 14:40:49 UTC (rev 83916)
+++ community-i686/makefile.arch	2013-02-06 14:41:18 UTC (rev 83917)
@@ -1,45 +0,0 @@
-# Makefile for lout 3.38 on Arch Linux.
-# catwell <catwell at archlinux.us>
-
-PKGDIR = /
-COPTS = -ansi -pedantic -O3
-
-CFLAGS = -DOS_UNIX=1 -DOS_DOS=0 -DOS_MAC=0 -DDB_FIX=0 -DUSE_STAT=1 \
-  -DSAFE_DFT=0 -DCOLLATE=1 -DLIB_DIR=\"/usr/lib/lout\" -DFONT_DIR=\"font\" \
-  -DMAPS_DIR=\"maps\" -DINCL_DIR=\"include\" -DDATA_DIR=\"data\" -DHYPH_DIR=\"hyph\" \
-  -DLOCALE_DIR=\"locale\" -DCHAR_IN=1 -DCHAR_OUT=0 -DLOCALE_ON=0 \
-  -DASSERT_ON=1 $(COPTS) -DDEBUG_ON=0 -DPDF_COMPRESSION=1 -I/usr/lib/
-
-OBJS = z01.o z02.o z03.o z04.o z05.o z06.o z07.o z08.o \
-  z09.o z10.o z11.o z12.o z13.o z14.o z15.o z16.o \
-  z17.o z18.o z19.o z20.o z21.o z22.o z23.o z24.o \
-  z25.o z26.o z27.o z28.o z29.o z30.o z31.o z32.o \
-  z33.o z34.o z35.o z36.o z37.o z38.o z39.o z40.o \
-  z41.o z42.o z43.o z44.o z45.o z46.o z47.o z48.o \
-  z49.o z50.o z51.o z52.o
-
-arch: $(OBJS)
-	gcc -o lout $(OBJS) /usr/lib/libz.a -lm
-	gcc -o prg2lout prg2lout.c
-
-$(OBJS): externs.h
-
-externs.h:
-
-install: arch
-	# lout
-	install -Dm0755 lout $(PKGDIR)/usr/bin/lout
-	set include data hyph font maps; \
-	for i; do \
-	  install -d $(PKGDIR)/usr/lib/lout/$$i; \
-	  install -m0644 -t $(PKGDIR)/usr/lib/lout/$$i/ $$i/*; \
-	done
-	# prg2lout
-	install -Dm0755 prg2lout $(PKGDIR)/usr/bin/prg2lout
-	# man
-	sed -i -e "s@<BINDIR>@/usr/bin@" -e "s@<LIBDIR>@/usr/lib/lout@" \
-	  -e "s@<LOUTDOCDIR>@/usr/doc/lout@" -e "s@<MANDIR>@/usr/share/man/man1@" \
-	man/lout.1
-	install -Dm0644 man/lout.1 $(PKGDIR)/usr/share/man/man1/lout.1
-	install -Dm0644 man/prg2lout.1 $(PKGDIR)/usr/share/man/man1/prg2lout.1  
-

Copied: lout/repos/community-i686/makefile.arch (from rev 83916, lout/trunk/makefile.arch)
===================================================================
--- community-i686/makefile.arch	                        (rev 0)
+++ community-i686/makefile.arch	2013-02-06 14:41:18 UTC (rev 83917)
@@ -0,0 +1,45 @@
+# Makefile for lout 3.38 on Arch Linux.
+# catwell <catwell at archlinux.us>
+
+PKGDIR = /
+COPTS = -ansi -pedantic -O3
+
+CFLAGS = -DOS_UNIX=1 -DOS_DOS=0 -DOS_MAC=0 -DDB_FIX=0 -DUSE_STAT=1 \
+  -DSAFE_DFT=0 -DCOLLATE=1 -DLIB_DIR=\"/usr/lib/lout\" -DFONT_DIR=\"font\" \
+  -DMAPS_DIR=\"maps\" -DINCL_DIR=\"include\" -DDATA_DIR=\"data\" -DHYPH_DIR=\"hyph\" \
+  -DLOCALE_DIR=\"locale\" -DCHAR_IN=1 -DCHAR_OUT=0 -DLOCALE_ON=0 \
+  -DASSERT_ON=1 $(COPTS) -DDEBUG_ON=0 -DPDF_COMPRESSION=1 -I/usr/lib/
+
+OBJS = z01.o z02.o z03.o z04.o z05.o z06.o z07.o z08.o \
+  z09.o z10.o z11.o z12.o z13.o z14.o z15.o z16.o \
+  z17.o z18.o z19.o z20.o z21.o z22.o z23.o z24.o \
+  z25.o z26.o z27.o z28.o z29.o z30.o z31.o z32.o \
+  z33.o z34.o z35.o z36.o z37.o z38.o z39.o z40.o \
+  z41.o z42.o z43.o z44.o z45.o z46.o z47.o z48.o \
+  z49.o z50.o z51.o z52.o
+
+arch: $(OBJS)
+	gcc -o lout $(OBJS) /usr/lib/libz.a -lm
+	gcc -o prg2lout prg2lout.c
+
+$(OBJS): externs.h
+
+externs.h:
+
+install: arch
+	# lout
+	install -Dm0755 lout $(PKGDIR)/usr/bin/lout
+	set include data hyph font maps; \
+	for i; do \
+	  install -d $(PKGDIR)/usr/lib/lout/$$i; \
+	  install -m0644 -t $(PKGDIR)/usr/lib/lout/$$i/ $$i/*; \
+	done
+	# prg2lout
+	install -Dm0755 prg2lout $(PKGDIR)/usr/bin/prg2lout
+	# man
+	sed -i -e "s@<BINDIR>@/usr/bin@" -e "s@<LIBDIR>@/usr/lib/lout@" \
+	  -e "s@<LOUTDOCDIR>@/usr/doc/lout@" -e "s@<MANDIR>@/usr/share/man/man1@" \
+	man/lout.1
+	install -Dm0644 man/lout.1 $(PKGDIR)/usr/share/man/man1/lout.1
+	install -Dm0644 man/prg2lout.1 $(PKGDIR)/usr/share/man/man1/prg2lout.1  
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-02-06 14:40:49 UTC (rev 83916)
+++ community-x86_64/PKGBUILD	2013-02-06 14:41:18 UTC (rev 83917)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: catwell <catwell at archlinux.us>
-
-pkgname=lout
-pkgver=3.39
-pkgrel=1
-pkgdesc="A lightweight document formatting system."
-arch=('i686' 'x86_64')
-url="http://lout.wiki.sourceforge.net/"
-license=('GPL')
-depends=('glibc')
-install=lout.install
-source=(http://mirrors.ctan.org/support/$pkgname/$pkgname-$pkgver.tar.gz makefile.arch lout.install)
-md5sums=('151e1fba676c7052936ccc1bcd9663a9'
-         '088a29ca16477a9a30da9fafc9391de8'
-         'bc6c8df650fe75dd3c51d0c047c56f30')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  cp ../makefile.arch .
-  make -f makefile.arch PKGDIR="$pkgdir" install
-}
-

Copied: lout/repos/community-x86_64/PKGBUILD (from rev 83916, lout/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-02-06 14:41:18 UTC (rev 83917)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: catwell <catwell at archlinux.us>
+
+pkgname=lout
+pkgver=3.39
+pkgrel=2
+pkgdesc="A lightweight document formatting system."
+arch=('i686' 'x86_64')
+url="http://lout.wiki.sourceforge.net/"
+license=('GPL')
+depends=('glibc')
+install=lout.install
+source=(http://mirrors.ctan.org/support/$pkgname/$pkgname-$pkgver.tar.gz
+        makefile.arch
+        lout.install
+        http://pkgs.fedoraproject.org/repo/pkgs/lout/slides.pdf/6822c33e49a1dca0b090f297d404d7fa/slides.pdf)
+md5sums=('151e1fba676c7052936ccc1bcd9663a9'
+         '088a29ca16477a9a30da9fafc9391de8'
+         '597cd52eb87ef6253cf769bed4db3952'
+         '6822c33e49a1dca0b090f297d404d7fa')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  cp ../makefile.arch .
+  make -f makefile.arch
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -f makefile.arch PKGDIR="$pkgdir" install
+  chmod 0775  "$pkgdir/usr/lib/lout/data/"
+  chgrp users "$pkgdir/usr/lib/lout/data/"
+  install -Dm644 "$srcdir/slides.pdf" "$pkgdir/usr/share/doc/$pkgname/introduction.pdf"
+}
+

Deleted: community-x86_64/lout.install
===================================================================
--- community-x86_64/lout.install	2013-02-06 14:40:49 UTC (rev 83916)
+++ community-x86_64/lout.install	2013-02-06 14:41:18 UTC (rev 83917)
@@ -1,9 +0,0 @@
-post_install()
-{
-  /usr/bin/lout -x -s /usr/lib/lout/include/init
-}
-
-post_upgrade()
-{
- post_install $1
-}

Copied: lout/repos/community-x86_64/lout.install (from rev 83916, lout/trunk/lout.install)
===================================================================
--- community-x86_64/lout.install	                        (rev 0)
+++ community-x86_64/lout.install	2013-02-06 14:41:18 UTC (rev 83917)
@@ -0,0 +1,11 @@
+post_install()
+{
+  /usr/bin/lout -x -s /usr/lib/lout/include/init
+  chmod 0775  "/usr/lib/lout/data/"
+  chgrp users "/usr/lib/lout/data/"
+}
+
+post_upgrade()
+{
+ post_install $1
+}

Deleted: community-x86_64/makefile.arch
===================================================================
--- community-x86_64/makefile.arch	2013-02-06 14:40:49 UTC (rev 83916)
+++ community-x86_64/makefile.arch	2013-02-06 14:41:18 UTC (rev 83917)
@@ -1,45 +0,0 @@
-# Makefile for lout 3.38 on Arch Linux.
-# catwell <catwell at archlinux.us>
-
-PKGDIR = /
-COPTS = -ansi -pedantic -O3
-
-CFLAGS = -DOS_UNIX=1 -DOS_DOS=0 -DOS_MAC=0 -DDB_FIX=0 -DUSE_STAT=1 \
-  -DSAFE_DFT=0 -DCOLLATE=1 -DLIB_DIR=\"/usr/lib/lout\" -DFONT_DIR=\"font\" \
-  -DMAPS_DIR=\"maps\" -DINCL_DIR=\"include\" -DDATA_DIR=\"data\" -DHYPH_DIR=\"hyph\" \
-  -DLOCALE_DIR=\"locale\" -DCHAR_IN=1 -DCHAR_OUT=0 -DLOCALE_ON=0 \
-  -DASSERT_ON=1 $(COPTS) -DDEBUG_ON=0 -DPDF_COMPRESSION=1 -I/usr/lib/
-
-OBJS = z01.o z02.o z03.o z04.o z05.o z06.o z07.o z08.o \
-  z09.o z10.o z11.o z12.o z13.o z14.o z15.o z16.o \
-  z17.o z18.o z19.o z20.o z21.o z22.o z23.o z24.o \
-  z25.o z26.o z27.o z28.o z29.o z30.o z31.o z32.o \
-  z33.o z34.o z35.o z36.o z37.o z38.o z39.o z40.o \
-  z41.o z42.o z43.o z44.o z45.o z46.o z47.o z48.o \
-  z49.o z50.o z51.o z52.o
-
-arch: $(OBJS)
-	gcc -o lout $(OBJS) /usr/lib/libz.a -lm
-	gcc -o prg2lout prg2lout.c
-
-$(OBJS): externs.h
-
-externs.h:
-
-install: arch
-	# lout
-	install -Dm0755 lout $(PKGDIR)/usr/bin/lout
-	set include data hyph font maps; \
-	for i; do \
-	  install -d $(PKGDIR)/usr/lib/lout/$$i; \
-	  install -m0644 -t $(PKGDIR)/usr/lib/lout/$$i/ $$i/*; \
-	done
-	# prg2lout
-	install -Dm0755 prg2lout $(PKGDIR)/usr/bin/prg2lout
-	# man
-	sed -i -e "s@<BINDIR>@/usr/bin@" -e "s@<LIBDIR>@/usr/lib/lout@" \
-	  -e "s@<LOUTDOCDIR>@/usr/doc/lout@" -e "s@<MANDIR>@/usr/share/man/man1@" \
-	man/lout.1
-	install -Dm0644 man/lout.1 $(PKGDIR)/usr/share/man/man1/lout.1
-	install -Dm0644 man/prg2lout.1 $(PKGDIR)/usr/share/man/man1/prg2lout.1  
-

Copied: lout/repos/community-x86_64/makefile.arch (from rev 83916, lout/trunk/makefile.arch)
===================================================================
--- community-x86_64/makefile.arch	                        (rev 0)
+++ community-x86_64/makefile.arch	2013-02-06 14:41:18 UTC (rev 83917)
@@ -0,0 +1,45 @@
+# Makefile for lout 3.38 on Arch Linux.
+# catwell <catwell at archlinux.us>
+
+PKGDIR = /
+COPTS = -ansi -pedantic -O3
+
+CFLAGS = -DOS_UNIX=1 -DOS_DOS=0 -DOS_MAC=0 -DDB_FIX=0 -DUSE_STAT=1 \
+  -DSAFE_DFT=0 -DCOLLATE=1 -DLIB_DIR=\"/usr/lib/lout\" -DFONT_DIR=\"font\" \
+  -DMAPS_DIR=\"maps\" -DINCL_DIR=\"include\" -DDATA_DIR=\"data\" -DHYPH_DIR=\"hyph\" \
+  -DLOCALE_DIR=\"locale\" -DCHAR_IN=1 -DCHAR_OUT=0 -DLOCALE_ON=0 \
+  -DASSERT_ON=1 $(COPTS) -DDEBUG_ON=0 -DPDF_COMPRESSION=1 -I/usr/lib/
+
+OBJS = z01.o z02.o z03.o z04.o z05.o z06.o z07.o z08.o \
+  z09.o z10.o z11.o z12.o z13.o z14.o z15.o z16.o \
+  z17.o z18.o z19.o z20.o z21.o z22.o z23.o z24.o \
+  z25.o z26.o z27.o z28.o z29.o z30.o z31.o z32.o \
+  z33.o z34.o z35.o z36.o z37.o z38.o z39.o z40.o \
+  z41.o z42.o z43.o z44.o z45.o z46.o z47.o z48.o \
+  z49.o z50.o z51.o z52.o
+
+arch: $(OBJS)
+	gcc -o lout $(OBJS) /usr/lib/libz.a -lm
+	gcc -o prg2lout prg2lout.c
+
+$(OBJS): externs.h
+
+externs.h:
+
+install: arch
+	# lout
+	install -Dm0755 lout $(PKGDIR)/usr/bin/lout
+	set include data hyph font maps; \
+	for i; do \
+	  install -d $(PKGDIR)/usr/lib/lout/$$i; \
+	  install -m0644 -t $(PKGDIR)/usr/lib/lout/$$i/ $$i/*; \
+	done
+	# prg2lout
+	install -Dm0755 prg2lout $(PKGDIR)/usr/bin/prg2lout
+	# man
+	sed -i -e "s@<BINDIR>@/usr/bin@" -e "s@<LIBDIR>@/usr/lib/lout@" \
+	  -e "s@<LOUTDOCDIR>@/usr/doc/lout@" -e "s@<MANDIR>@/usr/share/man/man1@" \
+	man/lout.1
+	install -Dm0644 man/lout.1 $(PKGDIR)/usr/share/man/man1/lout.1
+	install -Dm0644 man/prg2lout.1 $(PKGDIR)/usr/share/man/man1/prg2lout.1  
+




More information about the arch-commits mailing list