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

2009-11-07 Thread Eric Bélanger
Date: Saturday, November 7, 2009 @ 23:18:20
  Author: eric
Revision: 58449

upgpkg: joe 3.7-2
Updated backup array (close FS#12713)

Modified:
  joe/trunk/PKGBUILD

--+
 PKGBUILD |   62 +
 1 file changed, 10 insertions(+), 52 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-11-08 03:25:05 UTC (rev 58448)
+++ PKGBUILD2009-11-08 04:18:20 UTC (rev 58449)
@@ -1,66 +1,24 @@
 # $Id$
 # Maintainer: dorphell 
 # Contributor: Tom Newsom 
+
 pkgname=joe
 pkgver=3.7
-pkgrel=1
+pkgrel=2
 pkgdesc="JOE has the feel of most IBM PC text editors"
+arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/joe-editor";
-arch=(i686 x86_64)
 license=('GPL')
 depends=('glibc' 'ncurses' 'gpm')
+backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' \
+'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc')
 source=(http://downloads.sourceforge.net/joe-editor/$pkgname-$pkgver.tar.gz)
-backup=( etc/joe/ftyperc
- etc/joe/jicerc.ru
- etc/joe/jmacsrc
- etc/joe/joerc
- etc/joe/jpicorc
- etc/joe/jstarrc
- etc/joe/rjoerc
- etc/joe/syntax/4gl.jsf
- etc/joe/syntax/ada.jsf
- etc/joe/syntax/asm.jsf
- etc/joe/syntax/awk.jsf
- etc/joe/syntax/c.jsf
- etc/joe/syntax/cobol.jsf
- etc/joe/syntax/conf.jsf
- etc/joe/syntax/csh.jsf
- etc/joe/syntax/css.jsf
- etc/joe/syntax/diff.jsf
- etc/joe/syntax/fortran.jsf
- etc/joe/syntax/haskell.jsf
- etc/joe/syntax/html.jsf
- etc/joe/syntax/java.jsf
- etc/joe/syntax/joerc.jsf
- etc/joe/syntax/lisp.jsf
- etc/joe/syntax/lua.jsf
- etc/joe/syntax/m4.jsf
- etc/joe/syntax/mail.jsf
- etc/joe/syntax/mason.jsf
- etc/joe/syntax/ocaml.jsf
- etc/joe/syntax/pascal.jsf
- etc/joe/syntax/perl.jsf
- etc/joe/syntax/php.jsf
- etc/joe/syntax/ps.jsf
- etc/joe/syntax/python.jsf
- etc/joe/syntax/rexx.jsf
- etc/joe/syntax/ruby.jsf
- etc/joe/syntax/sed.jsf
- etc/joe/syntax/sh.jsf
- etc/joe/syntax/skill.jsf
- etc/joe/syntax/sml.jsf
- etc/joe/syntax/sql.jsf
- etc/joe/syntax/tcl.jsf
- etc/joe/syntax/tex.jsf
- etc/joe/syntax/troff.jsf
- etc/joe/syntax/verilog.jsf
- etc/joe/syntax/vhdl.jsf
- etc/joe/syntax/xml.jsf)
+md5sums=('66de1b073e869ba12abbfcde3885c577')
+sha1sums=('54398578886d4a3d325aece52c308a939d31101d')
 
 build() {
-  cd $startdir/src/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man || 
return 1
   make || return 1
-  make DESTDIR=$startdir/pkg install
+  make DESTDIR="$pkgdir" install || return 1
 }
-md5sums=('66de1b073e869ba12abbfcde3885c577')



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

2013-11-16 Thread Thomas Bächler
Date: Saturday, November 16, 2013 @ 15:39:10
  Author: thomas
Revision: 199793

newpkg: joe 3.7-4

Added:
  joe/trunk/PKGBUILD

--+
 PKGBUILD |   29 +
 1 file changed, 29 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-16 14:39:10 UTC (rev 199793)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+pkgname=joe
+pkgver=3.7
+pkgrel=4
+pkgdesc="Joe's own editor"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/joe-editor";
+license=('GPL')
+depends=('ncurses')
+optdepends=('gpm: console mouse support')
+backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc'
+'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc')
+source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('66de1b073e869ba12abbfcde3885c577')
+sha1sums=('54398578886d4a3d325aece52c308a939d31101d')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}/" install
+}


Property changes on: joe/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2015-08-13 Thread Thomas Bächler
Date: Thursday, August 13, 2015 @ 14:01:04
  Author: thomas
Revision: 243398

upgpkg: joe 4.0-1

Modified:
  joe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-08-13 11:54:51 UTC (rev 243397)
+++ PKGBUILD2015-08-13 12:01:04 UTC (rev 243398)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Thomas Bächler 
 pkgname=joe
-pkgver=3.7
-pkgrel=4
+pkgver=4.0
+pkgrel=1
 pkgdesc="Joe's own editor"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/joe-editor";
@@ -12,8 +12,8 @@
 backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc'
 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc')
 
source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('66de1b073e869ba12abbfcde3885c577')
-sha1sums=('54398578886d4a3d325aece52c308a939d31101d')
+md5sums=('3c3b6d5089a29ddc746ee89bab59286e')
+sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2015-09-06 Thread Evangelos Foutras
Date: Sunday, September 6, 2015 @ 22:20:01
  Author: foutrelis
Revision: 245403

ncurses 6.0 rebuild.

Modified:
  joe/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-06 19:40:14 UTC (rev 245402)
+++ PKGBUILD2015-09-06 20:20:01 UTC (rev 245403)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Bächler 
 pkgname=joe
 pkgver=4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Joe's own editor"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/joe-editor";


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

2016-09-16 Thread Thomas Bächler
Date: Friday, September 16, 2016 @ 12:22:30
  Author: thomas
Revision: 276536

upgpkg: joe 4.3-1

Modified:
  joe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-16 12:08:43 UTC (rev 276535)
+++ PKGBUILD2016-09-16 12:22:30 UTC (rev 276536)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Thomas Bächler 
 pkgname=joe
-pkgver=4.0
-pkgrel=2
+pkgver=4.3
+pkgrel=1
 pkgdesc="Joe's own editor"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/joe-editor";
@@ -12,8 +12,7 @@
 backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc'
 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc')
 
source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('3c3b6d5089a29ddc746ee89bab59286e')
-sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927')
+sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2017-03-04 Thread Thomas Bächler
Date: Saturday, March 4, 2017 @ 12:59:28
  Author: thomas
Revision: 289978

upgpkg: joe 4.4-1

Modified:
  joe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-04 10:32:11 UTC (rev 289977)
+++ PKGBUILD2017-03-04 12:59:28 UTC (rev 289978)
@@ -1,11 +1,11 @@
 # $Id$
 # Maintainer: Thomas Bächler 
 pkgname=joe
-pkgver=4.3
+pkgver=4.4
 pkgrel=1
 pkgdesc="Joe's own editor"
 arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/joe-editor";
+url="http://joe-editor.sourceforge.net/";
 license=('GPL')
 depends=('ncurses')
 optdepends=('gpm: console mouse support')
@@ -12,7 +12,7 @@
 backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc'
 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc')
 
source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";)
-sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1')
+sha256sums=('a5704828bbca29acb9e200414fef522c66cdf9ce28150f402d6767da43460979')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2020-05-16 Thread Felix Yan via arch-commits
Date: Saturday, May 16, 2020 @ 09:39:59
  Author: felixonmars
Revision: 383906

upgpkg: joe 4.6-2: reproducibility rebuild

Modified:
  joe/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-16 09:39:25 UTC (rev 383905)
+++ PKGBUILD2020-05-16 09:39:59 UTC (rev 383906)
@@ -1,7 +1,7 @@
 # Maintainer: Thomas Bächler 
 pkgname=joe
 pkgver=4.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Joe's own editor"
 arch=('x86_64')
 url="https://joe-editor.sourceforge.io/";


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

2018-05-30 Thread Christian Hesse via arch-commits
Date: Wednesday, May 30, 2018 @ 22:39:35
  Author: eworm
Revision: 325248

upgpkg: joe 4.6-1

new upstream release

Modified:
  joe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-30 22:18:00 UTC (rev 325247)
+++ PKGBUILD2018-05-30 22:39:35 UTC (rev 325248)
@@ -1,18 +1,18 @@
 # $Id$
 # Maintainer: Thomas Bächler 
 pkgname=joe
-pkgver=4.4
+pkgver=4.6
 pkgrel=1
 pkgdesc="Joe's own editor"
 arch=('x86_64')
-url="http://joe-editor.sourceforge.net/";
+url="https://joe-editor.sourceforge.io/";
 license=('GPL')
 depends=('ncurses')
 optdepends=('gpm: console mouse support')
 backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc'
 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc')
-source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";)
-sha256sums=('a5704828bbca29acb9e200414fef522c66cdf9ce28150f402d6767da43460979')
+source=("https://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('495a0a61f26404070fe8a719d80406dc7f337623788e445b92a9f6de512ab9de')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}