From 141ea963b585534eae0fd6cd151dc03c6c238712 Mon Sep 17 00:00:00 2001 From: Boohbah Date: Mon, 6 Jul 2015 21:22:03 +0000 Subject: [PATCH 1/8] Initial import --- .SRCINFO | 20 ++++++++++++ PKGBUILD | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ dlopen.c | 28 +++++++++++++++++ 3 files changed, 144 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 dlopen.c diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..82fc8a6 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = eggdrop + pkgdesc = The world's most popular Open Source IRC bot. + pkgver = 1.6.21 + pkgrel = 5 + url = http://www.eggheads.org/ + arch = i686 + arch = x86_64 + license = GPL2 + depends = sh + depends = tcl>=8.3 + depends = zlib + options = !makeflags + backup = etc/eggdrop.conf + source = http://ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop1.6.21.tar.bz2 + source = dlopen.c + sha256sums = 75bd5573a609eac3940c0b6ca8251c3f38ea5d54b520e1cad93c650b4bc21754 + sha256sums = d1758f84a69173a852e598fa55e69df0d73b8b62c6993b0ba04aa21d539213e6 + +pkgname = eggdrop + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..13fa1ac --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,96 @@ +# Maintainer: Boohbah +# Contributor: Daniel J Griffiths +# Contributor: Mantas Mikulėnas + +pkgname=eggdrop +pkgver=1.6.21 +pkgrel=5 +pkgdesc="The world's most popular Open Source IRC bot." +arch=('i686' 'x86_64') +url="http://www.eggheads.org/" +license=('GPL2') +depends=('sh' 'tcl>=8.3' 'zlib') +source=("http://ftp.eggheads.org/pub/$pkgname/source/1.6/$pkgname$pkgver.tar.bz2" + 'dlopen.c') +backup=("etc/$pkgname.conf") +options=('!makeflags') +sha256sums=('75bd5573a609eac3940c0b6ca8251c3f38ea5d54b520e1cad93c650b4bc21754' + 'd1758f84a69173a852e598fa55e69df0d73b8b62c6993b0ba04aa21d539213e6') + +# Want multiple *unique* installations? Change the pkgname, it will just work. +_sharedir="/usr/share" +_modulesdir="/usr/lib/$pkgname" +_scriptsdir="$_sharedir/$pkgname/scripts" +_helpdir="$_sharedir/$pkgname/help" +_bin="/usr/bin/$pkgname" +_mandir="$_sharedir/man/man1" +readonly -a _sharedir _modulesdir _scriptsdir _helpdir _bin _mandir + +build() { + cd "$srcdir/$pkgname$pkgver" + + # Don't complain about language files on startup. + sed -i "s|\"./language\"|\"$_sharedir/$pkgname/language\"|g" src/eggdrop.h + + ./configure --with-tcllib='/usr/lib/libtcl8.6.so' \ + --with-tclinc='/usr/include/tcl.h' + make config + + # Include LDFLAGS. + sed -i "s|-L/usr/lib|${LDFLAGS}|g" Makefile + make +} + +check() { + cd "$srcdir/$pkgname$pkgver" + + # If this fails, theres a rather good chance something is broken. + + gcc -O2 "$srcdir/dlopen.c" -o dlopen -ldl + + for module in *.so ; do + if ! env LD_PRELOAD='' ./dlopen "${module}" ; then + error "Sanity check failed: "${module}" cannot be loaded. Proceeding anyway.." + fi + done + + rm dlopen +} + +package() { + readonly eggtmp="$pkgdir/tmp" + mkdir -p -m 0755 "$eggtmp" + + # This is ugly.. + + cd "$srcdir/$pkgname$pkgver" + make DEST="$eggtmp" install + + find "$eggtmp" -name 'CONTENTS' -exec rm {} + + + mkdir -p -m 0755 "$pkgdir/etc" \ + "$pkgdir/usr/"{bin,lib} \ + "$pkgdir/$_sharedir/"{$pkgname,doc,man/man1} + + mv "$eggtmp/modules-$pkgver" "$pkgdir/$_modulesdir" + mv "$eggtmp/eggdrop-$pkgver" "$pkgdir/$_bin" + mv "$eggtmp/doc/man1/$pkgname.1" "$pkgdir/$_mandir/$pkgname.1" + rm -r "$eggtmp/doc/man1" + mv "$eggtmp/doc" "$pkgdir/$_sharedir/doc/$pkgname-$pkgver" + + for d in language scripts help text; do + mv "$eggtmp/${d}" "$pkgdir/$_sharedir/$pkgname" + done + + sed -e '2d' \ + -e "1s@^.*@#!$_bin@" \ + -e "s@scripts/@$_scriptsdir/@g" \ + -e "s@help/@$_helpdir@g" \ + -e "s@modules/@$_modulesdir/@g" \ + eggdrop.conf > "$pkgdir/etc/$pkgname.conf" + + rm -r "$eggtmp" + find "$pkgdir/$_sharedir" -type f -exec chmod 0444 {} + +} + +# vim:set ts=2 sw=2 et: diff --git a/dlopen.c b/dlopen.c new file mode 100644 index 0000000..0a96da8 --- /dev/null +++ b/dlopen.c @@ -0,0 +1,28 @@ +#include +#include +#include +#include +/* Simple program to see if dlopen() would succeed. */ +int main(int argc, char **argv) +{ + int i; + struct stat st; + char buf[PATH_MAX]; + for (i = 1; i < argc; i++) { + if (dlopen(argv[i], RTLD_NOW)) { + fprintf(stdout, "dlopen() of \"%s\" succeeded.\n", + argv[i]); + } else { + snprintf(buf, sizeof(buf), "./%s", argv[i]); + if ((stat(buf, &st) == 0) && dlopen(buf, RTLD_NOW)) { + fprintf(stdout, "dlopen() of \"./%s\" " + "succeeded.\n", argv[i]); + } else { + fprintf(stdout, "dlopen() of \"%s\" failed: " + "%s\n", argv[i], dlerror()); + return 1; + } + } + } + return 0; +} From 96bd1f61e813fcddf70141dbab6a4c3c42d150c8 Mon Sep 17 00:00:00 2001 From: kreon Date: Fri, 7 Oct 2016 22:22:24 +0300 Subject: [PATCH 2/8] fix cflags --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 13fa1ac..e4f731f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -32,7 +32,7 @@ build() { # Don't complain about language files on startup. sed -i "s|\"./language\"|\"$_sharedir/$pkgname/language\"|g" src/eggdrop.h - ./configure --with-tcllib='/usr/lib/libtcl8.6.so' \ + CFLAGS="-std=gnu89" ./configure --with-tcllib='/usr/lib/libtcl8.6.so' \ --with-tclinc='/usr/include/tcl.h' make config From 783e32f4d6ea5f06c902dfb06d9de1e1c670acbf Mon Sep 17 00:00:00 2001 From: kreon Date: Sun, 23 Oct 2016 14:51:04 +0300 Subject: [PATCH 3/8] added utf-8 patch; fixed building with gcc 6 --- .SRCINFO | 6 +++++- PKGBUILD | 10 +++++++--- utf8.patch | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+), 4 deletions(-) create mode 100644 utf8.patch diff --git a/.SRCINFO b/.SRCINFO index 82fc8a6..9929249 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,9 @@ +# Generated by mksrcinfo v8 +# Sun Oct 23 11:50:27 UTC 2016 pkgbase = eggdrop pkgdesc = The world's most popular Open Source IRC bot. pkgver = 1.6.21 - pkgrel = 5 + pkgrel = 7 url = http://www.eggheads.org/ arch = i686 arch = x86_64 @@ -13,8 +15,10 @@ pkgbase = eggdrop backup = etc/eggdrop.conf source = http://ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop1.6.21.tar.bz2 source = dlopen.c + source = utf8.patch sha256sums = 75bd5573a609eac3940c0b6ca8251c3f38ea5d54b520e1cad93c650b4bc21754 sha256sums = d1758f84a69173a852e598fa55e69df0d73b8b62c6993b0ba04aa21d539213e6 + sha256sums = cdf0b1d59bbfa3f2c5937d96b57d55836af5ad36280351c6f1421d109ad693b3 pkgname = eggdrop diff --git a/PKGBUILD b/PKGBUILD index e4f731f..58469f8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,21 +1,24 @@ +# Maintainer: kreon # Maintainer: Boohbah # Contributor: Daniel J Griffiths # Contributor: Mantas Mikulėnas pkgname=eggdrop pkgver=1.6.21 -pkgrel=5 +pkgrel=7 pkgdesc="The world's most popular Open Source IRC bot." arch=('i686' 'x86_64') url="http://www.eggheads.org/" license=('GPL2') depends=('sh' 'tcl>=8.3' 'zlib') source=("http://ftp.eggheads.org/pub/$pkgname/source/1.6/$pkgname$pkgver.tar.bz2" - 'dlopen.c') + 'dlopen.c' 'utf8.patch') backup=("etc/$pkgname.conf") options=('!makeflags') sha256sums=('75bd5573a609eac3940c0b6ca8251c3f38ea5d54b520e1cad93c650b4bc21754' - 'd1758f84a69173a852e598fa55e69df0d73b8b62c6993b0ba04aa21d539213e6') + 'd1758f84a69173a852e598fa55e69df0d73b8b62c6993b0ba04aa21d539213e6' + 'cdf0b1d59bbfa3f2c5937d96b57d55836af5ad36280351c6f1421d109ad693b3') + # Want multiple *unique* installations? Change the pkgname, it will just work. _sharedir="/usr/share" @@ -28,6 +31,7 @@ readonly -a _sharedir _modulesdir _scriptsdir _helpdir _bin _mandir build() { cd "$srcdir/$pkgname$pkgver" + patch -p1 < "$srcdir/utf8.patch" # Don't complain about language files on startup. sed -i "s|\"./language\"|\"$_sharedir/$pkgname/language\"|g" src/eggdrop.h diff --git a/utf8.patch b/utf8.patch new file mode 100644 index 0000000..4d6025e --- /dev/null +++ b/utf8.patch @@ -0,0 +1,36 @@ +diff -Nura e2/src/eggdrop.h e1/src/eggdrop.h +--- e2/src/eggdrop.h 2011-07-09 19:07:48.000000000 +0400 ++++ e1/src/eggdrop.h 2016-10-08 01:24:41.533290748 +0300 +@@ -49,7 +49,7 @@ + * You should leave this at 32 characters and modify nick-len in the + * configuration file instead. + */ +-#define HANDLEN 9 /* valid values 9->NICKMAX */ ++#define HANDLEN 32 /* valid values 9->NICKMAX */ + #define NICKMAX 32 /* valid values HANDLEN->32 */ + + +diff -Nura e2/src/main.h e1/src/main.h +--- e2/src/main.h 2011-07-09 19:07:48.000000000 +0400 ++++ e1/src/main.h 2016-10-08 01:25:20.746877377 +0300 +@@ -44,7 +44,7 @@ + #endif + + #if (((TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION >= 1)) || (TCL_MAJOR_VERSION > 8)) +-# define USE_TCL_BYTE_ARRAYS ++# undef USE_TCL_BYTE_ARRAYS + # define USE_TCL_ENCODING + #endif + +diff -Nura e2/src/tcl.c e1/src/tcl.c +--- e2/src/tcl.c 2011-09-10 01:37:53.000000000 +0400 ++++ e1/src/tcl.c 2016-10-08 01:25:00.830082096 +0300 +@@ -863,7 +863,7 @@ + } + + if (encoding == NULL) { +- encoding = "iso8859-1"; ++ encoding = "utf-8"; + } + + Tcl_SetSystemEncoding(NULL, encoding); From 5e6e164ca71a05c87b95cf06020e78ec2b50514a Mon Sep 17 00:00:00 2001 From: kreon Date: Sun, 23 Oct 2016 17:35:30 +0300 Subject: [PATCH 4/8] set utf-8 as optional --- .SRCINFO | 4 ++-- PKGBUILD | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9929249..5cccfe0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sun Oct 23 11:50:27 UTC 2016 +# Sun Oct 23 14:35:18 UTC 2016 pkgbase = eggdrop pkgdesc = The world's most popular Open Source IRC bot. pkgver = 1.6.21 - pkgrel = 7 + pkgrel = 8 url = http://www.eggheads.org/ arch = i686 arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 58469f8..377bc39 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=eggdrop pkgver=1.6.21 -pkgrel=7 +pkgrel=8 pkgdesc="The world's most popular Open Source IRC bot." arch=('i686' 'x86_64') url="http://www.eggheads.org/" @@ -31,7 +31,8 @@ readonly -a _sharedir _modulesdir _scriptsdir _helpdir _bin _mandir build() { cd "$srcdir/$pkgname$pkgver" - patch -p1 < "$srcdir/utf8.patch" +# UNCOMMENT IF YOU NEED UTF-8 SUPPORT +# patch -p1 < "$srcdir/utf8.patch" # Don't complain about language files on startup. sed -i "s|\"./language\"|\"$_sharedir/$pkgname/language\"|g" src/eggdrop.h From b85859bf3420fdcb0013bc450fd55c981cfd0c9a Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Tue, 18 Apr 2017 06:39:18 +0200 Subject: [PATCH 5/8] v1.8.1, added signature check --- .SRCINFO | 21 ++++++++++----------- PKGBUILD | 46 +++++++++++++++++++++++----------------------- utf8.patch | 24 ------------------------ 3 files changed, 33 insertions(+), 58 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5cccfe0..0c50239 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,24 +1,23 @@ -# Generated by mksrcinfo v8 -# Sun Oct 23 14:35:18 UTC 2016 pkgbase = eggdrop pkgdesc = The world's most popular Open Source IRC bot. - pkgver = 1.6.21 - pkgrel = 8 + pkgver = 1.8.1 + pkgrel = 1 url = http://www.eggheads.org/ arch = i686 arch = x86_64 license = GPL2 depends = sh - depends = tcl>=8.3 - depends = zlib - options = !makeflags + depends = tcl backup = etc/eggdrop.conf - source = http://ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop1.6.21.tar.bz2 + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.1.tar.gz + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.1.tar.gz.asc source = dlopen.c source = utf8.patch - sha256sums = 75bd5573a609eac3940c0b6ca8251c3f38ea5d54b520e1cad93c650b4bc21754 - sha256sums = d1758f84a69173a852e598fa55e69df0d73b8b62c6993b0ba04aa21d539213e6 - sha256sums = cdf0b1d59bbfa3f2c5937d96b57d55836af5ad36280351c6f1421d109ad693b3 + validpgpkeys = E01C240484DE7DBE190FE141E7667DE1D1A39AFF + sha512sums = cb3fafc52add6abb6376f4fb5a38a18a2a8b2be415d5658d0cc3dd3d61329e43dc0d65acc6c43f592ce444d7aeb7149329fb1e943bb6b84bacb4c3853df22b41 + sha512sums = SKIP + sha512sums = e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c + sha512sums = 7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503 pkgname = eggdrop diff --git a/PKGBUILD b/PKGBUILD index 377bc39..e009b5a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,27 @@ -# Maintainer: kreon -# Maintainer: Boohbah +# Maintainer: Giovanni Harting <539@idlegandalf.com> +# Contributor: kreon +# Contributor: Boohbah # Contributor: Daniel J Griffiths # Contributor: Mantas Mikulėnas pkgname=eggdrop -pkgver=1.6.21 -pkgrel=8 +pkgver=1.8.1 +pkgrel=1 pkgdesc="The world's most popular Open Source IRC bot." arch=('i686' 'x86_64') url="http://www.eggheads.org/" license=('GPL2') -depends=('sh' 'tcl>=8.3' 'zlib') -source=("http://ftp.eggheads.org/pub/$pkgname/source/1.6/$pkgname$pkgver.tar.bz2" +depends=('sh' 'tcl') +source=("http://ftp.eggheads.org/pub/$pkgname/source/1.8/$pkgname-$pkgver.tar.gz" + "http://ftp.eggheads.org/pub/$pkgname/source/1.8/$pkgname-$pkgver.tar.gz.asc" 'dlopen.c' 'utf8.patch') backup=("etc/$pkgname.conf") -options=('!makeflags') -sha256sums=('75bd5573a609eac3940c0b6ca8251c3f38ea5d54b520e1cad93c650b4bc21754' - 'd1758f84a69173a852e598fa55e69df0d73b8b62c6993b0ba04aa21d539213e6' - 'cdf0b1d59bbfa3f2c5937d96b57d55836af5ad36280351c6f1421d109ad693b3') - +#options=('!makeflags') +sha512sums=('cb3fafc52add6abb6376f4fb5a38a18a2a8b2be415d5658d0cc3dd3d61329e43dc0d65acc6c43f592ce444d7aeb7149329fb1e943bb6b84bacb4c3853df22b41' + 'SKIP' + 'e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c' + '7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503') +validpgpkeys=('E01C240484DE7DBE190FE141E7667DE1D1A39AFF') # Want multiple *unique* installations? Change the pkgname, it will just work. _sharedir="/usr/share" @@ -30,24 +33,21 @@ _mandir="$_sharedir/man/man1" readonly -a _sharedir _modulesdir _scriptsdir _helpdir _bin _mandir build() { - cd "$srcdir/$pkgname$pkgver" -# UNCOMMENT IF YOU NEED UTF-8 SUPPORT -# patch -p1 < "$srcdir/utf8.patch" + cd "$srcdir/$pkgname-$pkgver" + + # UNCOMMENT IF YOU NEED UTF-8 SUPPORT + #patch -p1 < "$srcdir/utf8.patch" # Don't complain about language files on startup. sed -i "s|\"./language\"|\"$_sharedir/$pkgname/language\"|g" src/eggdrop.h - CFLAGS="-std=gnu89" ./configure --with-tcllib='/usr/lib/libtcl8.6.so' \ - --with-tclinc='/usr/include/tcl.h' + ./configure make config - - # Include LDFLAGS. - sed -i "s|-L/usr/lib|${LDFLAGS}|g" Makefile make } check() { - cd "$srcdir/$pkgname$pkgver" + cd "$srcdir/$pkgname-$pkgver" # If this fails, theres a rather good chance something is broken. @@ -68,8 +68,8 @@ package() { # This is ugly.. - cd "$srcdir/$pkgname$pkgver" - make DEST="$eggtmp" install + cd "$srcdir/$pkgname-$pkgver" + make install DEST="$eggtmp" find "$eggtmp" -name 'CONTENTS' -exec rm {} + @@ -81,7 +81,7 @@ package() { mv "$eggtmp/eggdrop-$pkgver" "$pkgdir/$_bin" mv "$eggtmp/doc/man1/$pkgname.1" "$pkgdir/$_mandir/$pkgname.1" rm -r "$eggtmp/doc/man1" - mv "$eggtmp/doc" "$pkgdir/$_sharedir/doc/$pkgname-$pkgver" + mv "$eggtmp/doc" "$pkgdir/$_sharedir/doc/$pkgname" for d in language scripts help text; do mv "$eggtmp/${d}" "$pkgdir/$_sharedir/$pkgname" diff --git a/utf8.patch b/utf8.patch index 4d6025e..385357c 100644 --- a/utf8.patch +++ b/utf8.patch @@ -1,27 +1,3 @@ -diff -Nura e2/src/eggdrop.h e1/src/eggdrop.h ---- e2/src/eggdrop.h 2011-07-09 19:07:48.000000000 +0400 -+++ e1/src/eggdrop.h 2016-10-08 01:24:41.533290748 +0300 -@@ -49,7 +49,7 @@ - * You should leave this at 32 characters and modify nick-len in the - * configuration file instead. - */ --#define HANDLEN 9 /* valid values 9->NICKMAX */ -+#define HANDLEN 32 /* valid values 9->NICKMAX */ - #define NICKMAX 32 /* valid values HANDLEN->32 */ - - -diff -Nura e2/src/main.h e1/src/main.h ---- e2/src/main.h 2011-07-09 19:07:48.000000000 +0400 -+++ e1/src/main.h 2016-10-08 01:25:20.746877377 +0300 -@@ -44,7 +44,7 @@ - #endif - - #if (((TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION >= 1)) || (TCL_MAJOR_VERSION > 8)) --# define USE_TCL_BYTE_ARRAYS -+# undef USE_TCL_BYTE_ARRAYS - # define USE_TCL_ENCODING - #endif - diff -Nura e2/src/tcl.c e1/src/tcl.c --- e2/src/tcl.c 2011-09-10 01:37:53.000000000 +0400 +++ e1/src/tcl.c 2016-10-08 01:25:00.830082096 +0300 From a177f3bb56dacd272849c4f61ea7d016aa816801 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Tue, 10 Oct 2017 18:39:13 +0200 Subject: [PATCH 6/8] v1.8.2-1 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0c50239..9cfebd9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,20 +1,20 @@ pkgbase = eggdrop pkgdesc = The world's most popular Open Source IRC bot. - pkgver = 1.8.1 + pkgver = 1.8.2 pkgrel = 1 url = http://www.eggheads.org/ arch = i686 arch = x86_64 license = GPL2 - depends = sh depends = tcl + depends = openssl backup = etc/eggdrop.conf - source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.1.tar.gz - source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.1.tar.gz.asc + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.2.tar.gz + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.2.tar.gz.asc source = dlopen.c source = utf8.patch validpgpkeys = E01C240484DE7DBE190FE141E7667DE1D1A39AFF - sha512sums = cb3fafc52add6abb6376f4fb5a38a18a2a8b2be415d5658d0cc3dd3d61329e43dc0d65acc6c43f592ce444d7aeb7149329fb1e943bb6b84bacb4c3853df22b41 + sha512sums = 72436e2e56f92ec33ab2ff6b11607aac94e41216098f6141bc00b643c60a8b320ce5dfbf7cd870399479a3c328c08b9f0d1d628e7a8f618b446afb010a773b9b sha512sums = SKIP sha512sums = e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c sha512sums = 7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503 diff --git a/PKGBUILD b/PKGBUILD index e009b5a..736025e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,19 +5,19 @@ # Contributor: Mantas Mikulėnas pkgname=eggdrop -pkgver=1.8.1 +pkgver=1.8.2 pkgrel=1 pkgdesc="The world's most popular Open Source IRC bot." arch=('i686' 'x86_64') url="http://www.eggheads.org/" license=('GPL2') -depends=('sh' 'tcl') +depends=('tcl' 'openssl') source=("http://ftp.eggheads.org/pub/$pkgname/source/1.8/$pkgname-$pkgver.tar.gz" "http://ftp.eggheads.org/pub/$pkgname/source/1.8/$pkgname-$pkgver.tar.gz.asc" 'dlopen.c' 'utf8.patch') backup=("etc/$pkgname.conf") #options=('!makeflags') -sha512sums=('cb3fafc52add6abb6376f4fb5a38a18a2a8b2be415d5658d0cc3dd3d61329e43dc0d65acc6c43f592ce444d7aeb7149329fb1e943bb6b84bacb4c3853df22b41' +sha512sums=('72436e2e56f92ec33ab2ff6b11607aac94e41216098f6141bc00b643c60a8b320ce5dfbf7cd870399479a3c328c08b9f0d1d628e7a8f618b446afb010a773b9b' 'SKIP' 'e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c' '7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503') From 7ad3a8a64f10fcfa67368afa4927665a64f81217 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Mon, 5 Mar 2018 10:10:52 +0100 Subject: [PATCH 7/8] v1.8.3 --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9cfebd9..02f6f87 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = eggdrop pkgdesc = The world's most popular Open Source IRC bot. - pkgver = 1.8.2 + pkgver = 1.8.3 pkgrel = 1 url = http://www.eggheads.org/ arch = i686 @@ -9,12 +9,12 @@ pkgbase = eggdrop depends = tcl depends = openssl backup = etc/eggdrop.conf - source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.2.tar.gz - source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.2.tar.gz.asc + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.3.tar.gz + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.3.tar.gz.asc source = dlopen.c source = utf8.patch validpgpkeys = E01C240484DE7DBE190FE141E7667DE1D1A39AFF - sha512sums = 72436e2e56f92ec33ab2ff6b11607aac94e41216098f6141bc00b643c60a8b320ce5dfbf7cd870399479a3c328c08b9f0d1d628e7a8f618b446afb010a773b9b + sha512sums = ad3b93d18aaa05d0eb00f1089b68d1f077f316042e64fff511ad1bbac06d35105adcb503490faaac4c9fe720dd45a9f350115b6c5d0f41fe198f228213a7a3a3 sha512sums = SKIP sha512sums = e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c sha512sums = 7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503 diff --git a/PKGBUILD b/PKGBUILD index 736025e..11a67de 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ # Contributor: Mantas Mikulėnas pkgname=eggdrop -pkgver=1.8.2 +pkgver=1.8.3 pkgrel=1 pkgdesc="The world's most popular Open Source IRC bot." arch=('i686' 'x86_64') @@ -17,7 +17,7 @@ source=("http://ftp.eggheads.org/pub/$pkgname/source/1.8/$pkgname-$pkgver.tar.gz 'dlopen.c' 'utf8.patch') backup=("etc/$pkgname.conf") #options=('!makeflags') -sha512sums=('72436e2e56f92ec33ab2ff6b11607aac94e41216098f6141bc00b643c60a8b320ce5dfbf7cd870399479a3c328c08b9f0d1d628e7a8f618b446afb010a773b9b' +sha512sums=('ad3b93d18aaa05d0eb00f1089b68d1f077f316042e64fff511ad1bbac06d35105adcb503490faaac4c9fe720dd45a9f350115b6c5d0f41fe198f228213a7a3a3' 'SKIP' 'e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c' '7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503') From 2b21f843e485b88cf55ba09ee41e05d75e592e18 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Fri, 1 Feb 2019 19:29:50 +0100 Subject: [PATCH 8/8] v1.8.4 --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 02f6f87..c26d71b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = eggdrop pkgdesc = The world's most popular Open Source IRC bot. - pkgver = 1.8.3 + pkgver = 1.8.4 pkgrel = 1 url = http://www.eggheads.org/ arch = i686 @@ -9,12 +9,12 @@ pkgbase = eggdrop depends = tcl depends = openssl backup = etc/eggdrop.conf - source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.3.tar.gz - source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.3.tar.gz.asc + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.4.tar.gz + source = http://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.4.tar.gz.asc source = dlopen.c source = utf8.patch validpgpkeys = E01C240484DE7DBE190FE141E7667DE1D1A39AFF - sha512sums = ad3b93d18aaa05d0eb00f1089b68d1f077f316042e64fff511ad1bbac06d35105adcb503490faaac4c9fe720dd45a9f350115b6c5d0f41fe198f228213a7a3a3 + sha512sums = d08af09dc83045bf89eae957e7817591f16456f83ba3efe6b361fd421a3d4068348543275c26b27b006f09f06344c04cdf58ee4231f1aee0e7537ec39bc24b49 sha512sums = SKIP sha512sums = e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c sha512sums = 7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503 diff --git a/PKGBUILD b/PKGBUILD index 11a67de..28fb8c5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ # Contributor: Mantas Mikulėnas pkgname=eggdrop -pkgver=1.8.3 +pkgver=1.8.4 pkgrel=1 pkgdesc="The world's most popular Open Source IRC bot." arch=('i686' 'x86_64') @@ -17,7 +17,7 @@ source=("http://ftp.eggheads.org/pub/$pkgname/source/1.8/$pkgname-$pkgver.tar.gz 'dlopen.c' 'utf8.patch') backup=("etc/$pkgname.conf") #options=('!makeflags') -sha512sums=('ad3b93d18aaa05d0eb00f1089b68d1f077f316042e64fff511ad1bbac06d35105adcb503490faaac4c9fe720dd45a9f350115b6c5d0f41fe198f228213a7a3a3' +sha512sums=('d08af09dc83045bf89eae957e7817591f16456f83ba3efe6b361fd421a3d4068348543275c26b27b006f09f06344c04cdf58ee4231f1aee0e7537ec39bc24b49' 'SKIP' 'e1d254a6adae76198f7e20729aaff5d01a0947cb07faed560574886c1ce3794242204ec0c2f5905584240b243bf36103fffbb06f4154c022228c1b701a070e5c' '7966d4d42994e44a0e571b89f1c66cb41f672d75e6ced7051d1ece23d8c209059c3565b41de950bf9c907701ce7a5e33a215b637587075ed300a002a58eda503')