[arch-commits] Commit in stfl/repos/community-x86_64 (6 files)
Jaroslav Lichtblau
jlichtblau at archlinux.org
Sun Aug 5 19:27:43 UTC 2018
Date: Sunday, August 5, 2018 @ 19:27:42
Author: jlichtblau
Revision: 368417
archrelease: copy trunk to community-x86_64
Added:
stfl/repos/community-x86_64/PKGBUILD
(from rev 368416, stfl/trunk/PKGBUILD)
stfl/repos/community-x86_64/stfl-archlinux.patch
(from rev 368416, stfl/trunk/stfl-archlinux.patch)
stfl/repos/community-x86_64/stfl.changelog
(from rev 368416, stfl/trunk/stfl.changelog)
Deleted:
stfl/repos/community-x86_64/PKGBUILD
stfl/repos/community-x86_64/stfl-archlinux.patch
stfl/repos/community-x86_64/stfl.changelog
----------------------+
PKGBUILD | 69 ++++++++++++++++++++++++----------------------
stfl-archlinux.patch | 48 ++++++++++++++++----------------
stfl.changelog | 73 +++++++++++++++++++++++++------------------------
3 files changed, 98 insertions(+), 92 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-08-05 19:27:26 UTC (rev 368416)
+++ PKGBUILD 2018-08-05 19:27:42 UTC (rev 368417)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
-# Contributor: Sven Pfleiderer <pfleidi at roothausen.de>
-
-pkgname=stfl
-pkgver=0.24
-pkgrel=3
-pkgdesc="Library implementing a curses-based widget set for text terminals"
-arch=('x86_64')
-url="http://clifford.at/stfl/"
-license=('GPL3')
-depends=('ncurses')
-makedepends=('patch' 'swig')
-changelog=$pkgname.changelog
-source=(http://clifford.at/stfl/$pkgname-$pkgver.tar.gz
- $pkgname-archlinux.patch)
-sha512sums=('95df4574b1bc32d795751156dc5b93afbca3ba241607a3a55210c89dda61b9a26ad574bb5f729a0158c9052235dbf63d6c58b38e7f1061d14ab7062af6150fa0'
- '450859923f0decd2c723f826e8143882d65fe87ab5b49be139891cbbb361cbbe6f7b4f45676d7b2b37f598cfe0c3ad1cbc095d5be8ddfcd68215dcc43b556011')
-
-build() {
- cd "${srcdir}"/$pkgname-$pkgver
-
- patch -Np1 -i "${srcdir}"/$pkgname-archlinux.patch
-
- make prefix=/usr Makefile.deps
- make prefix=/usr
-}
-
-package() {
- cd "${srcdir}"/$pkgname-$pkgver
-
- make prefix=/usr DESTDIR="${pkgdir}" install
-}
Copied: stfl/repos/community-x86_64/PKGBUILD (from rev 368416, stfl/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-08-05 19:27:42 UTC (rev 368417)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Sven Pfleiderer <pfleidi at roothausen.de>
+
+pkgname=stfl
+pkgver=0.24
+pkgrel=4
+pkgdesc="Library implementing a curses-based widget set for text terminals"
+arch=('x86_64')
+url="http://clifford.at/stfl/"
+license=('GPL3')
+depends=('ncurses')
+makedepends=('patch' 'swig')
+changelog=$pkgname.changelog
+source=(http://clifford.at/stfl/$pkgname-$pkgver.tar.gz
+ $pkgname-archlinux.patch)
+sha256sums=('d4a7aa181a475aaf8a8914a8ccb2a7ff28919d4c8c0f8a061e17a0c36869c090'
+ 'c7d7c787bcd287a776aad3b26e6a90a3b121c281125c34c7c35a87f36dcdc453')
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ patch -Np1 -i "${srcdir}"/$pkgname-archlinux.patch
+
+ make prefix=/usr Makefile.deps
+ make prefix=/usr
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ make prefix=/usr DESTDIR="${pkgdir}" install
+
+#library symlink - FS#34890
+ ln -s /usr/lib/libstfl.so.0.24 "${pkgdir}"/usr/lib/libstfl.so.0
+}
Deleted: stfl-archlinux.patch
===================================================================
--- stfl-archlinux.patch 2018-08-05 19:27:26 UTC (rev 368416)
+++ stfl-archlinux.patch 2018-08-05 19:27:42 UTC (rev 368417)
@@ -1,24 +0,0 @@
-diff -ruN0 stfl-0.21-orig//Makefile.cfg stfl-0.21/Makefile.cfg
---- stfl-0.21-orig//Makefile.cfg 2009-05-31 20:20:39.000000000 +0200
-+++ stfl-0.21/Makefile.cfg 2010-03-25 20:01:19.000000000 +0100
-@@ -22 +22 @@
--export prefix ?= /usr/local
-+export prefix ?= /usr
-@@ -26 +26 @@
--FOUND_SPL = 1
-+FOUND_SPL = 0
-@@ -38 +38 @@
--FOUND_PERL5 = 1
-+FOUND_PERL5 = 0
-@@ -44 +44 @@
--FOUND_PYTHON = 1
-+FOUND_PYTHON = 0
-@@ -50 +50 @@
--FOUND_RUBY = 1
-+FOUND_RUBY = 0
-diff -ruN0 stfl-0.21-orig//stfl_internals.h stfl-0.21/stfl_internals.h
---- stfl-0.21-orig//stfl_internals.h 2009-06-19 19:27:33.000000000 +0200
-+++ stfl-0.21/stfl_internals.h 2010-03-25 20:00:52.000000000 +0100
-@@ -31 +31 @@
--#include <ncursesw/ncurses.h>
-+#include <ncurses.h>
Copied: stfl/repos/community-x86_64/stfl-archlinux.patch (from rev 368416, stfl/trunk/stfl-archlinux.patch)
===================================================================
--- stfl-archlinux.patch (rev 0)
+++ stfl-archlinux.patch 2018-08-05 19:27:42 UTC (rev 368417)
@@ -0,0 +1,24 @@
+diff -ruN0 stfl-0.21-orig//Makefile.cfg stfl-0.21/Makefile.cfg
+--- stfl-0.21-orig//Makefile.cfg 2009-05-31 20:20:39.000000000 +0200
++++ stfl-0.21/Makefile.cfg 2010-03-25 20:01:19.000000000 +0100
+@@ -22 +22 @@
+-export prefix ?= /usr/local
++export prefix ?= /usr
+@@ -26 +26 @@
+-FOUND_SPL = 1
++FOUND_SPL = 0
+@@ -38 +38 @@
+-FOUND_PERL5 = 1
++FOUND_PERL5 = 0
+@@ -44 +44 @@
+-FOUND_PYTHON = 1
++FOUND_PYTHON = 0
+@@ -50 +50 @@
+-FOUND_RUBY = 1
++FOUND_RUBY = 0
+diff -ruN0 stfl-0.21-orig//stfl_internals.h stfl-0.21/stfl_internals.h
+--- stfl-0.21-orig//stfl_internals.h 2009-06-19 19:27:33.000000000 +0200
++++ stfl-0.21/stfl_internals.h 2010-03-25 20:00:52.000000000 +0100
+@@ -31 +31 @@
+-#include <ncursesw/ncurses.h>
++#include <ncurses.h>
Deleted: stfl.changelog
===================================================================
--- stfl.changelog 2018-08-05 19:27:26 UTC (rev 368416)
+++ stfl.changelog 2018-08-05 19:27:42 UTC (rev 368417)
@@ -1,35 +0,0 @@
-2015-07-03 Jaroslav Lichtblau <svetlemodry at archlinux.org>
- * stfl 0.24-1
-
-2015-03-22 Jaroslav Lichtblau <svetlemodry at archlinux.org>
- * stfl 0.23-1
-
-2013-12-25 Jaroslav Lichtblau <svetlemodry at archlinux.org>
- * stfl 0.22-1 static library removed
-
-2012-02-25 Jaroslav Lichtblau <svetlemodry at archlinux.org>
- * stfl 0.22-1
-
-2010-03-25 Jaroslav Lichtblau <svetlemodry at archlinux.org>
- * FS#18210 - [stfl] no language bindings without swig fixed in 0.21-2
-
-2009-07-11 Jaroslav Lichtblau <svetlemodry at archlinux.org>
- * Update to major release 0.21
-
-2009-06-21 Jaroslav Lichtblau <svetlemodry at archlinux.org>
- * Package moved to [community]
-
-2009-05-02 by pfleidi
- * update to 0.20
-
-2008-02-09 by hrist
- * update to 0.18
-
-2008-01-04 by hrist
- * fixed the make command invocation (thanks to byte for the hint)
-
-2007-09-28 by hrist
- * removed the patch (thanks to xio for the hint)
-
-2007-06-01 by STiAT
- * made package build (patchfile global_stfl.patch)
Copied: stfl/repos/community-x86_64/stfl.changelog (from rev 368416, stfl/trunk/stfl.changelog)
===================================================================
--- stfl.changelog (rev 0)
+++ stfl.changelog 2018-08-05 19:27:42 UTC (rev 368417)
@@ -0,0 +1,38 @@
+2018-08-05 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * stfl 0.24-4 FS#34890 - [stfl] missing libstfl.so.0 fix
+
+2015-07-03 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * stfl 0.24-1
+
+2015-03-22 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * stfl 0.23-1
+
+2013-12-25 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * stfl 0.22-1 static library removed
+
+2012-02-25 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * stfl 0.22-1
+
+2010-03-25 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * FS#18210 - [stfl] no language bindings without swig fixed in 0.21-2
+
+2009-07-11 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * Update to major release 0.21
+
+2009-06-21 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+ * Package moved to [community]
+
+2009-05-02 by pfleidi
+ * update to 0.20
+
+2008-02-09 by hrist
+ * update to 0.18
+
+2008-01-04 by hrist
+ * fixed the make command invocation (thanks to byte for the hint)
+
+2007-09-28 by hrist
+ * removed the patch (thanks to xio for the hint)
+
+2007-06-01 by STiAT
+ * made package build (patchfile global_stfl.patch)
More information about the arch-commits
mailing list