From c42a9c8048ae2fe9a849452ef1ea1233fca0abdf Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 23 Oct 2013 16:25:13 -0200 Subject: pacman-4.1.2-4: updating revision * add \!staticlibs to makepkg.conf, remove install file as none of the checks are relevant on systems updated in the last two years * add \!libtool to makepkg.conf * remove static libraries --- libre/pacman/PKGBUILD | 6 ++-- libre/pacman/makepkg.conf | 4 +-- libre/pacman/pacman.install | 76 --------------------------------------------- 3 files changed, 4 insertions(+), 82 deletions(-) delete mode 100644 libre/pacman/pacman.install (limited to 'libre') diff --git a/libre/pacman/PKGBUILD b/libre/pacman/PKGBUILD index 1dec5dcc9..2d91706a7 100644 --- a/libre/pacman/PKGBUILD +++ b/libre/pacman/PKGBUILD @@ -1,11 +1,11 @@ # vim: set ts=2 sw=2 et: -# $Id: PKGBUILD 188692 2013-06-18 04:04:38Z allan $ +# $Id: PKGBUILD 197027 2013-10-21 14:05:24Z allan $ # Maintainer: Dan McGee # Maintainer: Dave Reisner pkgname=pacman pkgver=4.1.2 -pkgrel=1 +pkgrel=4 pkgdesc="A library-based package manager with dependency support" arch=('i686' 'x86_64' 'mips64el') url="http://www.archlinux.org/pacman/" @@ -19,8 +19,6 @@ provides=('pacman-contrib') conflicts=('pacman-contrib') replaces=('pacman-contrib') backup=(etc/pacman.conf etc/makepkg.conf) -install=pacman.install -options=(!libtool) source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig} pacman.conf.i686 pacman.conf.x86_64 diff --git a/libre/pacman/makepkg.conf b/libre/pacman/makepkg.conf index a4e7ceada..758d7d029 100644 --- a/libre/pacman/makepkg.conf +++ b/libre/pacman/makepkg.conf @@ -67,7 +67,7 @@ BUILDENV=(fakeroot !distcc color !ccache check !sign) # These are default values for the options=() settings ######################################################################### # -# Default: OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !upx !debug) +# Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug) # A negated option will do the opposite of the comments below. # #-- strip: Strip symbols from binaries/libraries @@ -80,7 +80,7 @@ BUILDENV=(fakeroot !distcc color !ccache check !sign) #-- upx: Compress binary executable files using UPX #-- debug: Add debugging flags as specified in DEBUG_* variables # -OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !upx !debug) +OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug) #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512 INTEGRITY_CHECK=(md5) diff --git a/libre/pacman/pacman.install b/libre/pacman/pacman.install deleted file mode 100644 index 5dc55c0c2..000000000 --- a/libre/pacman/pacman.install +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh -# arg 1: the new package version -# arg 2: the old package version -post_upgrade() { - # one time stuff for md5sum issue with older pacman versions - if [ "$(vercmp $2 3.0.2)" -lt 0 ]; then - _resetbackups - fi - if [ "$(vercmp $2 3.5.0)" -lt 0 ]; then - _warnupgrade - fi - if [ ! -f "etc/pacman.d/gnupg/pubring.gpg" ] || [ "$(vercmp $2 4.0.3-2)" -lt 0 ]; then - _check_pubring - fi -} - -post_install() { - _check_pubring -} - -_check_pubring() { - echo " >>> Run \`pacman-key --init; pacman-key --populate archlinux\`" - echo " >>> And \`pacman-key --populate parabola\`" - echo " >>> to import the data required by pacman for package verification." - echo " >>> See: https://www.archlinux.org/news/having-pacman-verify-packages" -} - -_warnupgrade() { - echo ">>> The pacman database format has changed as of pacman 3.5.0." - echo ">>> You will need to run \`pacman-db-upgrade\` as root." - echo ">>>" -} - -_resetbackups() { - echo ">>> Performing one-time reset of NoUpgrade md5sums. After this reset" - echo ">>> you are able to remove all NoUpgrade lines of already protected" - echo ">>> files from pacman.conf." - echo ">>>" - - # path variables - pacconf="/etc/pacman.conf" - dbpath="/var/lib/pacman/local" - - # get a list of NoUpgrade files from the user's pacman.conf - echo ">>> Retrieving pacman.conf NoUpgrade list..." - config=$(grep "^NoUpgrade" $pacconf | cut -d'=' -f2) - # add the standard list of files, even if they are already above - config="$config \ - etc/passwd etc/group etc/shadow etc/sudoers \ - etc/fstab etc/raidtab etc/ld.so.conf \ - etc/rc.conf etc/rc.local \ - etc/modprobe.conf etc/modules.conf \ - etc/lilo.conf boot/grub/menu.lst" - - # blank md5sum for use in sed expression - zeroes='00000000000000000000000000000000' - - for file in $config; do - echo ">>> -> finding owner of /$file..." - line=$(LC_ALL=C LANG=C pacman -Qo /$file 2>/dev/null) - # if file is owned by a package, go find its incorrectly stored sum - if [ ! -z "$line" ]; then - # get the name and version of the package owning file - name=$(echo $line | awk '{print $5}') - version=$(echo $line | awk '{print $6}') - # set the path to the backup array holding the md5sum - path="$dbpath/$name-$version/files" - # run a sed on the path to reset the line containing $file - # NOTE: literal tab characters in sed expression after $file - echo ">>> -> resetting sum of /$file..." - sed -i "s#$file [0-9a-fA-F]*#$file $zeroes#" $path - else - echo ">>> -> $file is unowned." - fi - done -} -- cgit v1.2.3 From a18082ce864e2554818bae24df65b88e8a734809 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 23 Oct 2013 16:30:44 -0200 Subject: pacman: update checksums --- libre/pacman/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/pacman/PKGBUILD b/libre/pacman/PKGBUILD index 2d91706a7..ab0f3fb57 100644 --- a/libre/pacman/PKGBUILD +++ b/libre/pacman/PKGBUILD @@ -29,7 +29,7 @@ md5sums=('063c8b0ff6bdf903dc235445525627cd' '688feb0a552f42643a76f72e7198bfe4' '765858b55d2112d948932fc645ea538b' '9e0c64937ef751ae4273fa4d73381484' - '7984963d89784d26b5c50218e2138467') + 'f0f310df411f943dbc4e2dd376c88662') build() { cd $srcdir/$pkgname-$pkgver -- cgit v1.2.3 From 04405a6ab7074a02ae6f23673f5c5070fd4f53fd Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 23 Oct 2013 16:51:52 -0200 Subject: doublecmd-libre-0.5.7-2: updating revision * fix FS#37439 => https://bugs.archlinux.org/task/37439 - [doublecmd-gtk2] [doublecmd-qt] Conflicting but not marked as conflicting --- libre/doublecmd-libre/PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libre') diff --git a/libre/doublecmd-libre/PKGBUILD b/libre/doublecmd-libre/PKGBUILD index 8b8ec9477..522204000 100644 --- a/libre/doublecmd-libre/PKGBUILD +++ b/libre/doublecmd-libre/PKGBUILD @@ -1,5 +1,5 @@ # vim:set ft=sh: -# $Id: PKGBUILD 97498 2013-09-22 18:08:53Z idevolder $ +# $Id: PKGBUILD 99027 2013-10-22 19:14:23Z idevolder $ # Maintainer: BlackIkeEagle # Contributor: (sirocco AT ngs.ru) @@ -8,7 +8,7 @@ pkgbase=doublecmd-libre pkgname=('doublecmd-libre-gtk2' 'doublecmd-libre-qt') pkgver=0.5.7 _helpver=0.5.5 -pkgrel=1 +pkgrel=2 url="http://doublecmd.sourceforge.net/" arch=('i686' 'x86_64') license=('GPL') @@ -50,7 +50,7 @@ build() { package_doublecmd-libre-gtk2() { pkgdesc="twin-panel (commander-style) file manager (GTK), with unar recommendation" depends=('gtk2') - conflicts=('doublecmd-gtk2' 'doublecmd-gtk2-libre') + conflicts=('doublecmd-qt' 'doublecmd-gtk2' 'doublecmd-gtk2-libre') replaces=('doublecmd-gtk2' 'doublecmd-gtk2-libre') provides=("doublecmd-gtk2=${pkgver}") cd "$srcdir/$_pkgbase-gtk" @@ -65,7 +65,7 @@ package_doublecmd-libre-gtk2() { package_doublecmd-libre-qt() { pkgdesc="twin-panel (commander-style) file manager (QT), with unar recommendation" depends=('qt4pas') - conflicts=('doublecmd-qt' 'doublecmd-qt-libre') + conflicts=('doublecmd-gtk2' 'doublecmd-qt' 'doublecmd-qt-libre') replaces=('doublecmd-qt' 'doublecmd-qt-libre') provides=("doublecmd-qt=${pkgver}") cd "$srcdir/$_pkgbase-qt" -- cgit v1.2.3 From 1d642dbda4408abc2677308f435035ea4e19a94d Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 23 Oct 2013 17:00:08 -0200 Subject: psi-0.15-2: rebuild old package --- libre/psi/PKGBUILD | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'libre') diff --git a/libre/psi/PKGBUILD b/libre/psi/PKGBUILD index 16c9e2b78..e37c37f05 100644 --- a/libre/psi/PKGBUILD +++ b/libre/psi/PKGBUILD @@ -1,10 +1,11 @@ -# $Id$ +# $Id: PKGBUILD 196956 2013-10-21 11:28:57Z pierre $ # Maintainer: Pierre Schmitz +# Maintainer (Parabola): André Silva pkgname=psi pkgver=0.15 -pkgrel=1.1 -pkgdesc='Instant messaging application designed for the Jabber IM, Parabola rebranded' +pkgrel=2 +pkgdesc='Instant messaging application designed for the Jabber IM (Parabola rebranded)' url='http://psi-im.org/' license=('GPL') arch=('i686' 'x86_64' 'mips64el') @@ -16,9 +17,13 @@ source=("http://downloads.sourceforge.net/psi/psi-${pkgver}.tar.bz2" md5sums=('aea15f17cf93e7cea52f305523f761be' 'a641b77517c82c6e1f254d5595a25113') -build() { +prepare() { cd ${srcdir}/psi-${pkgver} patch -p0 -i ${srcdir}/parabola.patch +} + +build() { + cd ${srcdir}/psi-${pkgver} ./configure --prefix=/usr --release --no-separate-debug-info make } -- cgit v1.2.3 From e6871cf2817d46b0ef6b7c6b95598444f40ffdd6 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Thu, 24 Oct 2013 01:11:29 -0200 Subject: sdl-libre-1.2.15-4: staticlibs --- libre/sdl-libre/PKGBUILD | 15 +++++++++++---- libre/sdl-libre/sdl_x11sym.patch | 12 ++++++++++++ 2 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 libre/sdl-libre/sdl_x11sym.patch (limited to 'libre') diff --git a/libre/sdl-libre/PKGBUILD b/libre/sdl-libre/PKGBUILD index cab25d91e..e16042e95 100644 --- a/libre/sdl-libre/PKGBUILD +++ b/libre/sdl-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 166672 2012-09-15 09:39:11Z heftig $ +# $Id: PKGBUILD 197193 2013-10-23 17:24:50Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Allan McRae # Contributor: dorphell @@ -8,7 +8,7 @@ pkgname=sdl-libre pkgver=1.2.15 -pkgrel=3 +pkgrel=4 pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard" arch=('i686' 'x86_64') url="http://www.libsdl.org" @@ -17,7 +17,7 @@ provides=("sdl=${pkgver}") conflicts=('sdl') replaces=('sdl') depends=('glibc' 'libxext' 'libxrender' 'libx11') -makedepends=('alsa-lib' 'mesa' 'libpulse') +makedepends=('alsa-lib' 'mesa' 'libpulse' 'glu') optdepends=('alsa-lib: ALSA audio driver' 'libpulse: PulseAudio audio driver') options=('!libtool') @@ -26,21 +26,28 @@ source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz sdl-1.2.14-disable-mmx.patch fix_joystick_misc_axes.diff libsdl-1.2.15-resizing.patch + sdl_x11sym.patch libre.patch) md5sums=('9d96df8417572a2afb781a7c4c811a85' '04d8c179f125e04bcd4c9d60e013c2d7' 'e5c16b7611f62c7cb25f0534eff68852' '687586a108b597a2a6b73070c1d37e51' '3dd50347d8856160a9cbd7f80383a1f8' + '148b285bccee9d21bb96db807363b962' '5c665f72b8a2adc97a91f6db6f2da79a') -build() { +prepare() { cd SDL-$pkgver patch -Np1 -i ../sdl-1.2.14-fix-mouse-clicking.patch patch -Np1 -i ../sdl-1.2.14-disable-mmx.patch patch -Np1 -i ../fix_joystick_misc_axes.diff patch -Np1 -i ../libsdl-1.2.15-resizing.patch + patch -Np0 -i ../sdl_x11sym.patch patch -Np0 -i ../libre.patch +} + +build() { + cd SDL-$pkgver ./configure --prefix=/usr --disable-nasm --enable-alsa \ --with-x --disable-rpath --disable-static make diff --git a/libre/sdl-libre/sdl_x11sym.patch b/libre/sdl-libre/sdl_x11sym.patch new file mode 100644 index 000000000..9aaa2353b --- /dev/null +++ b/libre/sdl-libre/sdl_x11sym.patch @@ -0,0 +1,12 @@ +--- src/video/x11/SDL_x11sym.h-orig 2013-07-16 23:56:46.718523385 -0600 ++++ src/video/x11/SDL_x11sym.h 2013-07-16 23:58:27.025186485 -0600 +@@ -165,7 +165,8 @@ + */ + #ifdef LONG64 + SDL_X11_MODULE(IO_32BIT) +-SDL_X11_SYM(int,_XData32,(Display *dpy,register long *data,unsigned len),(dpy,data,len),return) ++ ++SDL_X11_SYM(int,_XData32,(Display *dpy,register _Xconst long *data,unsigned len),(dpy,data,len),return) + SDL_X11_SYM(void,_XRead32,(Display *dpy,register long *data,long len),(dpy,data,len),) + #endif + -- cgit v1.2.3 From 6eeef6f4a172acdb79ebf01411676f9f0c8f87c8 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Thu, 24 Oct 2013 01:16:48 -0200 Subject: icecat-noscript-2.6.8.3-1.1: fix path to adapt the new version of icecat --- libre/icecat-noscript/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/icecat-noscript/PKGBUILD b/libre/icecat-noscript/PKGBUILD index 14fc3f383..41f637a99 100644 --- a/libre/icecat-noscript/PKGBUILD +++ b/libre/icecat-noscript/PKGBUILD @@ -5,7 +5,7 @@ _pkgname=firefox-noscript pkgname=icecat-noscript pkgver=2.6.8.3 -pkgrel=1 +pkgrel=1.1 pkgdesc="plugin for icecat which disables script" arch=('any') url="http://noscript.net/" @@ -23,7 +23,7 @@ package() { cd $srcdir local emid=$(sed -n -e '/<\?em:id>\?/!d; s/.*\([\"{].*[}\"]\).*/\1/; s/\"//g; p; q' install.rdf) - local dstdir=$pkgdir/usr/lib/icecat/extensions/${emid} + local dstdir=$pkgdir/usr/lib/icecat/browser/extensions/${emid} install -d $dstdir # sed -i 's#.*#7.*#' install.rdf cp -R * $dstdir -- cgit v1.2.3 From 50b35af18dd5a345f8f9e7012d50b9941fef43ff Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Thu, 24 Oct 2013 01:45:19 -0200 Subject: icecat-24.0-2: fix path on searchplugins --- libre/icecat/PKGBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libre') diff --git a/libre/icecat/PKGBUILD b/libre/icecat/PKGBUILD index 6727d45a5..3d2655917 100644 --- a/libre/icecat/PKGBUILD +++ b/libre/icecat/PKGBUILD @@ -1,20 +1,20 @@ +# Contributor (Parabola): André Silva +# Maintainer (Parabola): Márcio Silva # Contributor (ConnochaetOS): Henry Jensen # Contributor (Parabola): Luke Shumaker # Contributor: Figue # Contributor (Parabola): fauno # Contributor (Parabola): vando -# Contributor (Parabola): André Silva -# Maintainer (Parabola): Márcio Silva # Contributor (Arch): Jakub Schmidtke # Thank you very much to the older contributors: # Contributor: evr # Contributor: Muhammad 'MJ' Jassim -_pgo=true +_pgo=false pkgname=icecat pkgver=24.0 -pkgrel=1 +pkgrel=2 pkgdesc='GNU IceCat, the standalone web browser based on Mozilla Firefox.' arch=(i686 x86_64 mips64el) license=(MPL GPL LGPL) @@ -170,7 +170,7 @@ package() { ln -sf /usr/share/hunspell $pkgdir/usr/lib/$pkgname/dictionaries ln -sf /usr/share/hyphen $pkgdir/usr/lib/$pkgname/hyphenation - rm -rf $pkgdir/usr/lib/$pkgname/{searchplugins,plugins} + rm -rf $pkgdir/usr/lib/$pkgname/browser/{searchplugins,plugins} ln -sf /usr/lib/mozilla/plugins $pkgdir/usr/lib/$pkgname/browser/plugins ln -sf /usr/lib/mozilla/searchplugins $pkgdir/usr/lib/$pkgname/browser/searchplugins -- cgit v1.2.3 From b3cedc09a28eca46748c05164c5d94afdd27859c Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 25 Oct 2013 01:12:02 -0200 Subject: vim-runtime-7.4.16-2.1: upgrade revision and add mips64el support on arch line --- libre/vim-runtime/PKGBUILD | 104 +++++++++++++++++++++++++++++++++++++++++ libre/vim-runtime/parabola.vim | 27 +++++++++++ libre/vim-runtime/vimrc | 16 +++++++ libre/vim/PKGBUILD | 104 ----------------------------------------- libre/vim/parabola.vim | 27 ----------- libre/vim/vimrc | 16 ------- 6 files changed, 147 insertions(+), 147 deletions(-) create mode 100644 libre/vim-runtime/PKGBUILD create mode 100644 libre/vim-runtime/parabola.vim create mode 100644 libre/vim-runtime/vimrc delete mode 100644 libre/vim/PKGBUILD delete mode 100644 libre/vim/parabola.vim delete mode 100644 libre/vim/vimrc (limited to 'libre') diff --git a/libre/vim-runtime/PKGBUILD b/libre/vim-runtime/PKGBUILD new file mode 100644 index 000000000..8698c75d2 --- /dev/null +++ b/libre/vim-runtime/PKGBUILD @@ -0,0 +1,104 @@ +# Maintainer: Thomas Dziedzic +# Contributor: Jan "heftig" Steffens +# Contributor: tobias [ tobias at archlinux org ] +# Contributor: Daniel J Griffiths +# Maintainer (Parabola): André Silva + +pkgbase=vim +pkgname=vim-runtime +_topver=7.4 +_patchlevel=16 +__hgrev=d17ef148ada4 +_versiondir="vim${_topver//./}" +pkgver=${_topver}.${_patchlevel} +pkgrel=2.1 +arch=('i686' 'x86_64' 'mips64el') +license=('custom:vim') +url="http://www.vim.org" +makedepends=('gpm' 'python2' 'ruby' 'libxt' 'desktop-file-utils' 'gtk2' 'lua') +source=("ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz" + "ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz.sig" + 'vimrc' + 'parabola.vim') +md5sums=('733cce44a08ea953ad0e1f9d574670e0' + 'SKIP' + '27820c2bdc34624674c561ae6476bc6a' + 'a8c21928eefd766e211f987879a9199c') + +build() { + cp -a ${pkgbase}-${pkgver} vim-build + + # define the place for the global (g)vimrc file (set to /etc/vimrc) + sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' \ + vim-build/src/feature.h + sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' \ + vim-build/src/feature.h + + (cd vim-build/src && autoconf) + + cd "${srcdir}"/vim-build + + ./configure \ + --prefix=/usr \ + --localstatedir=/var/lib/vim \ + --with-features=huge \ + --with-compiledby='Parabola GNU/Linux-libre' \ + --enable-gpm \ + --enable-acl \ + --with-x=yes \ + --enable-gui=gtk2 \ + --enable-multibyte \ + --enable-cscope \ + --enable-netbeans \ + --enable-perlinterp \ + --enable-pythoninterp \ + --disable-python3interp \ + --enable-rubyinterp \ + --enable-luainterp + + make +} + +package_vim-runtime() { + pkgdesc='Runtime for vim and gvim (Parabola rebranded)' + depends=('perl' 'gawk') + backup=('etc/vimrc') + + cd "${srcdir}"/vim-build + + make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install + + # delete binaries and manuals files + rm -vr "${pkgdir}"/usr/bin + rm -vr "${pkgdir}"/usr/share/man + + # Don't forget logtalk.dict + install -Dm644 "${srcdir}"/vim-build/runtime/ftplugin/logtalk.dict \ + "${pkgdir}"/usr/share/vim/${_versiondir}/ftplugin/logtalk.dict + + # fix FS#17216 + sed -i 's|messages,/var|messages,/var/log/messages.log,/var|' \ + "${pkgdir}"/usr/share/vim/${_versiondir}/filetype.vim + + # patch filetype.vim for better handling of pacman related files + sed -i "s/rpmsave/pacsave/;s/rpmnew/pacnew/;s/,\*\.ebuild/\0,PKGBUILD*,*.install/" \ + "${pkgdir}"/usr/share/vim/${_versiondir}/filetype.vim + sed -i "/find the end/,+3{s/changelog_date_entry_search/changelog_date_end_entry_search/}" \ + "${pkgdir}"/usr/share/vim/${_versiondir}/ftplugin/changelog.vim + + # rc files + install -Dm644 "${srcdir}"/vimrc "${pkgdir}"/etc/vimrc + install -Dm644 "${srcdir}"/parabola.vim \ + "${pkgdir}"/usr/share/vim/vimfiles/parabola.vim + + # rgb.txt file + install -Dm644 "${srcdir}"/vim-${pkgver}/runtime/rgb.txt \ + "${pkgdir}"/usr/share/vim/${_versiondir}/rgb.txt + + # license + install -dm755 "${pkgdir}"/usr/share/licenses/vim-runtime + ln -s /usr/share/vim/${_versiondir}/doc/uganda.txt \ + "${pkgdir}"/usr/share/licenses/vim-runtime/license.txt +} + +# vim:set sw=2 sts=2 et: diff --git a/libre/vim-runtime/parabola.vim b/libre/vim-runtime/parabola.vim new file mode 100644 index 000000000..bc3c1f82e --- /dev/null +++ b/libre/vim-runtime/parabola.vim @@ -0,0 +1,27 @@ +" The Parabola GNU/Linux-libre global vimrc - setting only a few sane defaults +" +" Maintainer: Tobias Kieslich [tobias funnychar archlinux dot org] +" Maintainer for Parabola rebranding: André Silva [emulatorman funnychar parabola dot nu] +" +" NEVER EDIT THIS FILE, IT'S OVERWRITTEN UPON UPGRADES, GLOBAL CONFIGURATION +" SHALL BE DONE IN /etc/vimrc, USER SPECIFIC CONFIGURATION IN ~/.vimrc + +" Normally we use vim-extensions. If you want true vi-compatibility +" remove change the following statements +set nocompatible " Use Vim defaults instead of 100% vi compatibility +set backspace=indent,eol,start " more powerful backspacing + +" Now we set some defaults for the editor +set history=50 " keep 50 lines of command line history +set ruler " show the cursor position all the time + +" Suffixes that get lower priority when doing tab completion for filenames. +" These are files we are not likely to want to edit or read. +set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc + + +if has('gui_running') + " Make shift-insert work like in Xterm + map + map! +endif diff --git a/libre/vim-runtime/vimrc b/libre/vim-runtime/vimrc new file mode 100644 index 000000000..fc67e7eb0 --- /dev/null +++ b/libre/vim-runtime/vimrc @@ -0,0 +1,16 @@ +" All system-wide defaults are set in $VIMRUNTIME/parabola.vim (usually just +" /usr/share/vim/vimfiles/parabola.vim) and sourced by the call to :runtime +" you can find below. If you wish to change any of those settings, you should +" do it in this file (/etc/vimrc), since parabola.vim will be overwritten +" everytime an upgrade of the vim packages is performed. It is recommended to +" make changes after sourcing parabola.vim since it alters the value of the +" 'compatible' option. + +" This line should not be removed as it ensures that various options are +" properly set to work with the Vim-related packages. +runtime! parabola.vim + +" If you prefer the old-style vim functionalty, add 'runtime! vimrc_example.vim' +" Or better yet, read /usr/share/vim/vim74/vimrc_example.vim or the vim manual +" and configure vim to your own liking! + diff --git a/libre/vim/PKGBUILD b/libre/vim/PKGBUILD deleted file mode 100644 index 0a2ae3740..000000000 --- a/libre/vim/PKGBUILD +++ /dev/null @@ -1,104 +0,0 @@ -# Maintainer: Thomas Dziedzic -# Contributor: Jan "heftig" Steffens -# Contributor: tobias [ tobias at archlinux org ] -# Contributor: Daniel J Griffiths -# Maintainer (Parabola): André Silva - -pkgbase=vim -pkgname=vim-runtime -_topver=7.4 -_patchlevel=16 -__hgrev=d17ef148ada4 -_versiondir="vim${_topver//./}" -pkgver=${_topver}.${_patchlevel} -pkgrel=2 -arch=('i686' 'x86_64') -license=('custom:vim') -url="http://www.vim.org" -makedepends=('gpm' 'python2' 'ruby' 'libxt' 'desktop-file-utils' 'gtk2' 'lua') -source=("ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz" - "ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz.sig" - 'vimrc' - 'parabola.vim') -md5sums=('733cce44a08ea953ad0e1f9d574670e0' - 'SKIP' - '27820c2bdc34624674c561ae6476bc6a' - 'a8c21928eefd766e211f987879a9199c') - -build() { - cp -a ${pkgbase}-${pkgver} vim-build - - # define the place for the global (g)vimrc file (set to /etc/vimrc) - sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' \ - vim-build/src/feature.h - sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' \ - vim-build/src/feature.h - - (cd vim-build/src && autoconf) - - cd "${srcdir}"/vim-build - - ./configure \ - --prefix=/usr \ - --localstatedir=/var/lib/vim \ - --with-features=huge \ - --with-compiledby='Parabola GNU/Linux-libre' \ - --enable-gpm \ - --enable-acl \ - --with-x=yes \ - --enable-gui=gtk2 \ - --enable-multibyte \ - --enable-cscope \ - --enable-netbeans \ - --enable-perlinterp \ - --enable-pythoninterp \ - --disable-python3interp \ - --enable-rubyinterp \ - --enable-luainterp - - make -} - -package_vim-runtime() { - pkgdesc='Runtime for vim and gvim (Parabola rebranded)' - depends=('perl' 'gawk') - backup=('etc/vimrc') - - cd "${srcdir}"/vim-build - - make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install - - # delete binaries and manuals files - rm -vr "${pkgdir}"/usr/bin - rm -vr "${pkgdir}"/usr/share/man - - # Don't forget logtalk.dict - install -Dm644 "${srcdir}"/vim-build/runtime/ftplugin/logtalk.dict \ - "${pkgdir}"/usr/share/vim/${_versiondir}/ftplugin/logtalk.dict - - # fix FS#17216 - sed -i 's|messages,/var|messages,/var/log/messages.log,/var|' \ - "${pkgdir}"/usr/share/vim/${_versiondir}/filetype.vim - - # patch filetype.vim for better handling of pacman related files - sed -i "s/rpmsave/pacsave/;s/rpmnew/pacnew/;s/,\*\.ebuild/\0,PKGBUILD*,*.install/" \ - "${pkgdir}"/usr/share/vim/${_versiondir}/filetype.vim - sed -i "/find the end/,+3{s/changelog_date_entry_search/changelog_date_end_entry_search/}" \ - "${pkgdir}"/usr/share/vim/${_versiondir}/ftplugin/changelog.vim - - # rc files - install -Dm644 "${srcdir}"/vimrc "${pkgdir}"/etc/vimrc - install -Dm644 "${srcdir}"/parabola.vim \ - "${pkgdir}"/usr/share/vim/vimfiles/parabola.vim - - # rgb.txt file - install -Dm644 "${srcdir}"/vim-${pkgver}/runtime/rgb.txt \ - "${pkgdir}"/usr/share/vim/${_versiondir}/rgb.txt - - # license - install -dm755 "${pkgdir}"/usr/share/licenses/vim-runtime - ln -s /usr/share/vim/${_versiondir}/doc/uganda.txt \ - "${pkgdir}"/usr/share/licenses/vim-runtime/license.txt -} - -# vim:set sw=2 sts=2 et: diff --git a/libre/vim/parabola.vim b/libre/vim/parabola.vim deleted file mode 100644 index bc3c1f82e..000000000 --- a/libre/vim/parabola.vim +++ /dev/null @@ -1,27 +0,0 @@ -" The Parabola GNU/Linux-libre global vimrc - setting only a few sane defaults -" -" Maintainer: Tobias Kieslich [tobias funnychar archlinux dot org] -" Maintainer for Parabola rebranding: André Silva [emulatorman funnychar parabola dot nu] -" -" NEVER EDIT THIS FILE, IT'S OVERWRITTEN UPON UPGRADES, GLOBAL CONFIGURATION -" SHALL BE DONE IN /etc/vimrc, USER SPECIFIC CONFIGURATION IN ~/.vimrc - -" Normally we use vim-extensions. If you want true vi-compatibility -" remove change the following statements -set nocompatible " Use Vim defaults instead of 100% vi compatibility -set backspace=indent,eol,start " more powerful backspacing - -" Now we set some defaults for the editor -set history=50 " keep 50 lines of command line history -set ruler " show the cursor position all the time - -" Suffixes that get lower priority when doing tab completion for filenames. -" These are files we are not likely to want to edit or read. -set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc - - -if has('gui_running') - " Make shift-insert work like in Xterm - map - map! -endif diff --git a/libre/vim/vimrc b/libre/vim/vimrc deleted file mode 100644 index fc67e7eb0..000000000 --- a/libre/vim/vimrc +++ /dev/null @@ -1,16 +0,0 @@ -" All system-wide defaults are set in $VIMRUNTIME/parabola.vim (usually just -" /usr/share/vim/vimfiles/parabola.vim) and sourced by the call to :runtime -" you can find below. If you wish to change any of those settings, you should -" do it in this file (/etc/vimrc), since parabola.vim will be overwritten -" everytime an upgrade of the vim packages is performed. It is recommended to -" make changes after sourcing parabola.vim since it alters the value of the -" 'compatible' option. - -" This line should not be removed as it ensures that various options are -" properly set to work with the Vim-related packages. -runtime! parabola.vim - -" If you prefer the old-style vim functionalty, add 'runtime! vimrc_example.vim' -" Or better yet, read /usr/share/vim/vim74/vimrc_example.vim or the vim manual -" and configure vim to your own liking! - -- cgit v1.2.3 From 1f67237f8538f354c7cd7174c869f60d1a5bff34 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 25 Oct 2013 01:50:24 -0200 Subject: vim-runtime: downgrading revision due vim and gvim requires vim-runtime=7.4.16-2 --- libre/vim-runtime/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/vim-runtime/PKGBUILD b/libre/vim-runtime/PKGBUILD index 8698c75d2..93ac38edd 100644 --- a/libre/vim-runtime/PKGBUILD +++ b/libre/vim-runtime/PKGBUILD @@ -11,7 +11,7 @@ _patchlevel=16 __hgrev=d17ef148ada4 _versiondir="vim${_topver//./}" pkgver=${_topver}.${_patchlevel} -pkgrel=2.1 +pkgrel=2 arch=('i686' 'x86_64' 'mips64el') license=('custom:vim') url="http://www.vim.org" -- cgit v1.2.3 From 633d6a798a7dc21063443a9388cd85503344a751 Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Fri, 25 Oct 2013 14:46:17 -0300 Subject: ct-ng upgrade --- libre/crosstool-ng/PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/crosstool-ng/PKGBUILD b/libre/crosstool-ng/PKGBUILD index 0f4741470..aba7152a0 100644 --- a/libre/crosstool-ng/PKGBUILD +++ b/libre/crosstool-ng/PKGBUILD @@ -3,7 +3,7 @@ # Contributor (Parabola): Márcio Silva pkgname=crosstool-ng -pkgver=1.18.0 +pkgver=1.19.0 pkgrel=1 pkgdesc="A versatile cross toolchain generator (eglibc addons patch)" arch=('i686' 'x86_64') @@ -14,7 +14,6 @@ makedepends=('libtool') optdepends=('subversion: for retrieving eglibc sources') source=(http://crosstool-ng.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2) #libc_ports_short_name.patch) -md5sums=('3376d389c632baa77f0bce1db1a196a9') build() { cd $srcdir/$pkgname-$pkgver @@ -30,3 +29,5 @@ package() { install -Dm644 ct-ng.comp ${pkgdir}/usr/share/bash-completion/completions/ct-ng } +sha1sums=('b7ae3e90756b499ff5362064b7d80f8a45d09bfb') +sha256sums=('cd54f20bb8190533b21c9cf7f93c9073c22d59541f52774c3f3053264ba53a93') -- cgit v1.2.3 From 033970ea1faf203cb09665226d3fbd3302d8f271 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 25 Oct 2013 17:06:12 -0200 Subject: gst-plugins-bad-libre-1.2.0-2: rebuild against libass and add gobject-introspection on makedepends --- libre/gst-plugins-bad-libre/PKGBUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libre') diff --git a/libre/gst-plugins-bad-libre/PKGBUILD b/libre/gst-plugins-bad-libre/PKGBUILD index 17d1105e3..465072d3a 100644 --- a/libre/gst-plugins-bad-libre/PKGBUILD +++ b/libre/gst-plugins-bad-libre/PKGBUILD @@ -1,17 +1,18 @@ -# $Id: PKGBUILD 195012 2013-09-24 14:12:15Z heftig $ +# $Id: PKGBUILD 197399 2013-10-25 12:22:28Z heftig $ # Maintainer: Jan de Groot # Maintainer (Parabola): Márcio Silva _pkgname=gst-plugins-bad pkgname=$_pkgname-libre pkgver=1.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="GStreamer Multimedia Framework Bad Plugins, without nonfree faac support" arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://gstreamer.freedesktop.org/" depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 'faad2' 'mpg123' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 'libwebp' 'libsrtp' 'gnutls') -makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 'python' 'valgrind' 'wildmidi') +makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 'python' 'valgrind' 'wildmidi' + 'gobject-introspection') provides=($_pkgname=$pkgver) conflicts=$_pkgname replaces=$_pkgname -- cgit v1.2.3 From eb3b0c00d160385af5d4641d393941ee2e87819d Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 25 Oct 2013 17:09:51 -0200 Subject: gstreamer0.10-bad-libre-0.10.23-5: rebuild against libass --- libre/gstreamer0.10-bad-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/gstreamer0.10-bad-libre/PKGBUILD b/libre/gstreamer0.10-bad-libre/PKGBUILD index 329c5186c..593042e3e 100644 --- a/libre/gstreamer0.10-bad-libre/PKGBUILD +++ b/libre/gstreamer0.10-bad-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 183943 2013-04-29 17:33:53Z bpiotrowski $ +# $Id: PKGBUILD 197398 2013-10-25 12:22:00Z heftig $ # Maintainer: Jan de Groot # Maintainer (Parabola): fauno # Maintainer (Parabola): André Silva @@ -6,7 +6,7 @@ pkgbase=gstreamer0.10-bad-libre pkgname=('gstreamer0.10-bad-libre' 'gstreamer0.10-bad-libre-plugins') pkgver=0.10.23 -pkgrel=4 +pkgrel=5 arch=('i686' 'x86_64' 'mips64el') license=('LGPL' 'GPL') makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.36' 'xvidcore' 'libdca' 'bzip2' 'libdc1394' 'neon' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 'soundtouch' 'libvdpau' 'schroedinger' 'libass' 'libvpx' 'gsm' 'libgme' 'rtmpdump' 'libsndfile' 'librsvg' 'wildmidi' 'opus') -- cgit v1.2.3 From e4ae55955f6d9325daa45a5d90f7965cd69335c1 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 25 Oct 2013 17:12:02 -0200 Subject: mplayer-libre-36285-5: rebuild against libass --- libre/mplayer-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/mplayer-libre/PKGBUILD b/libre/mplayer-libre/PKGBUILD index faa53de37..717b56af5 100644 --- a/libre/mplayer-libre/PKGBUILD +++ b/libre/mplayer-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 193127 2013-08-17 00:43:52Z eric $ +# $Id: PKGBUILD 197402 2013-10-25 12:27:32Z giovanni $ # Maintainer : Ionut Biru # Contributor: Hugo Doria # Maintainer (Parabola): André Silva @@ -8,7 +8,7 @@ _pkgbase=mplayer pkgbase=mplayer-libre pkgname=('mplayer-libre' 'mencoder-libre') pkgver=36285 -pkgrel=4 +pkgrel=5 arch=('i686' 'x86_64') makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient' 'aalib' 'jack' 'libcaca' 'x264' 'faad2' 'lirc-utils' 'libxvmc' 'enca' 'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx' -- cgit v1.2.3 From b932a6157a18a66b4f8b502dc192ffceeb119958 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 25 Oct 2013 17:14:13 -0200 Subject: mplayer-vaapi-libre-36265-5: rebuild against libass --- libre/mplayer-vaapi-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/mplayer-vaapi-libre/PKGBUILD b/libre/mplayer-vaapi-libre/PKGBUILD index fe188f50e..a298033c4 100644 --- a/libre/mplayer-vaapi-libre/PKGBUILD +++ b/libre/mplayer-vaapi-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 95856 2013-08-17 15:21:03Z foutrelis $ +# $Id: PKGBUILD 99192 2013-10-25 12:40:52Z giovanni $ # Maintainer: Evangelos Foutras # Contributor: Ionut Biru # Contributor: Hugo Doria @@ -9,7 +9,7 @@ _pkgname=mplayer-vaapi pkgname=mplayer-vaapi-libre pkgver=36265 -pkgrel=4 +pkgrel=5 pkgdesc="A movie player, compiled with vaapi support, without nonfree faac support" arch=('i686' 'x86_64') url="http://gitorious.org/vaapi/mplayer" -- cgit v1.2.3 From f33cd8a9126577e3016df0fb1e843a8fa5093486 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Sat, 26 Oct 2013 14:11:10 -0200 Subject: calibre-libre-1.8.0-1: updating version --- libre/calibre-libre/PKGBUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libre') diff --git a/libre/calibre-libre/PKGBUILD b/libre/calibre-libre/PKGBUILD index 7636020a5..019b33cba 100644 --- a/libre/calibre-libre/PKGBUILD +++ b/libre/calibre-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 98784 2013-10-18 14:34:13Z jelle $ +# $Id: PKGBUILD 99239 2013-10-26 11:48:48Z jelle $ # Maintainer: jelle van der Waa # Maintainer: Daniel Wallace # Contributor: Giovanni Scafora @@ -9,7 +9,7 @@ _pkgname=calibre pkgname=calibre-libre -pkgver=1.7.0 +pkgver=1.8.0 pkgrel=1 pkgdesc="Ebook management application, with unar support" arch=('i686' 'x86_64' 'mips64el') @@ -30,12 +30,13 @@ install=calibre.install source=("http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz" 'desktop_integration.patch' 'calibre-mount-helper') -md5sums=('7c13fe58eabe1e98a47cfa5d25bebde7' +md5sums=('f1cb722f32f5e3d50fbcd21403e95514' '8353d1878c5a498b3e49eddef473605f' '675cd87d41342119827ef706055491e7') + prepare(){ cd "${srcdir}/${_pkgname}" #rm -rf src/{cherrypy,pyPdf} -- cgit v1.2.3 From d72dfd0aed74ef84d95d29ffb59121450b34de5b Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Sat, 26 Oct 2013 14:13:46 -0200 Subject: cgminer-libre-3.6.6-1: updating version --- libre/cgminer-libre/PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libre') diff --git a/libre/cgminer-libre/PKGBUILD b/libre/cgminer-libre/PKGBUILD index ab406e865..fafe50b50 100644 --- a/libre/cgminer-libre/PKGBUILD +++ b/libre/cgminer-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 98786 2013-10-18 14:39:59Z fyan $ +# $Id: PKGBUILD 99235 2013-10-26 09:56:23Z fyan $ # Maintainer: Felix Yan # Contributor: monson # Contributor: Thomas Dziedzic < gostrc at gmail > @@ -7,7 +7,7 @@ _pkgname=cgminer pkgname=cgminer-libre -pkgver=3.6.4 +pkgver=3.6.6 pkgrel=1 pkgdesc="Multi-threaded multi-pool GPU, FPGA and ASIC miner for bitcoin and derivative coins, without nonfree OpenCL recommendation" url='http://forum.bitcoin.org/index.php?topic=28402.0' @@ -53,10 +53,10 @@ build() { --enable-bitforce \ --enable-icarus \ --enable-modminer \ - --enable-ztex \ --enable-avalon \ --enable-klondike \ --enable-bitfury \ + --with-system-libusb \ --disable-adl # For license issues make @@ -76,6 +76,6 @@ package() { install -Dm644 $_pkgname.conf "$pkgdir"/etc/$_pkgname.conf } -sha512sums=('4ba9cdba52f4a9c8684758c71749ed418a8fda8776201c86c8f1f4674f7e8f0233a3cbcab6ecf97f1e54cb6a9756fe35a9577623e4cb48cb789f1c2e8fc80a52' +sha512sums=('1f913118fd3a2757a9fa9b2ffb8f1527109e90626044362ce94bbf93e876448cace189bc6c6e0c28f33d71ecc0488312d60530ef20baadf9894e82891b15171d' '99c38bc395848f9712ce172343d31f5c60f5d8ac1cfe2f48df8f3ec6c488fc275763a79c5ef36b99f32faa465b5a65284b38e8a63ef9b144075ee13971313b41' '3317b60c6b1f14c47d8ee636113ef40a4023ab14054129de80a37947b381fd2b647a7053f4e1bb639efa225a514e862fa531908714c34040dda2d6221dde7f5f') -- cgit v1.2.3 From cece1b1408e69810bb7c6775d4b94e2a5519971c Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Sat, 26 Oct 2013 14:17:19 -0200 Subject: ice{cat,weasel}-noscript-2.6.8.4-1: updating version --- libre/icecat-noscript/PKGBUILD | 8 ++++---- libre/iceweasel-noscript/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'libre') diff --git a/libre/icecat-noscript/PKGBUILD b/libre/icecat-noscript/PKGBUILD index 41f637a99..0ed0ed507 100644 --- a/libre/icecat-noscript/PKGBUILD +++ b/libre/icecat-noscript/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 98731 2013-10-17 12:50:32Z spupykin $ +# $Id: PKGBUILD 99237 2013-10-26 10:36:31Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer (Parabola): André Silva _pkgname=firefox-noscript pkgname=icecat-noscript -pkgver=2.6.8.3 -pkgrel=1.1 +pkgver=2.6.8.4 +pkgrel=1 pkgdesc="plugin for icecat which disables script" arch=('any') url="http://noscript.net/" @@ -14,7 +14,7 @@ depends=() provides=$_pkgname=$pkgver makedepends=('unzip') source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi) -md5sums=('5699558046ba96eff75a58b7ecf912ad') +md5sums=('3096cfcd43988c7a2f0caa031dc74d51') package() { # _ffver=`pacman -Q icecat | cut -f2 -d\ | cut -f1 -d-` diff --git a/libre/iceweasel-noscript/PKGBUILD b/libre/iceweasel-noscript/PKGBUILD index f015e02e8..7ff26b3b0 100644 --- a/libre/iceweasel-noscript/PKGBUILD +++ b/libre/iceweasel-noscript/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 98731 2013-10-17 12:50:32Z spupykin $ +# $Id: PKGBUILD 99237 2013-10-26 10:36:31Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer (Parabola): André Silva _pkgname=firefox-noscript pkgname=iceweasel-noscript -pkgver=2.6.8.3 +pkgver=2.6.8.4 pkgrel=1 pkgdesc="plugin for iceweasel which disables script" arch=('any') @@ -14,7 +14,7 @@ depends=() provides=$_pkgname=$pkgver makedepends=('unzip') source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi) -md5sums=('5699558046ba96eff75a58b7ecf912ad') +md5sums=('3096cfcd43988c7a2f0caa031dc74d51') package() { # _ffver=`pacman -Q iceweasel-libre | cut -f2 -d\ | cut -f1 -d-` -- cgit v1.2.3 From 74f0365a2b63204732833a7986ed211b42d4ce55 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 27 Oct 2013 11:47:41 -0400 Subject: update libre/libretools --- libre/libretools/PKGBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libre') diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index 994eb5382..a371f7733 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -9,9 +9,9 @@ pkgdesc="Programs for Parabola development" url="https://projects.parabolagnulinux.org/packages/libretools.git/" license=('GPL3' 'GPL2') -pkgver=20131015 -_libretools_commit=0d673eadca425d63c7367372575058324e9ecc91 -_devtools_commit=345358c4deb71b7316b99fb025d39d5644249e17 +pkgver=20131027 +_libretools_commit=11ca293c188ad394e2383381a4bce152cc7f0723 +_devtools_commit=021653a0acecc8763e1bbe90dbb770b4e6df4390 _packages_url=https://projects.parabolagnulinux.org/packages source=($_packages_url/libretools.git/snapshot/libretools-$_libretools_commit.tar.bz2 @@ -83,5 +83,5 @@ package_libretools-mips64el() { make install-libretools-mips64el DESTDIR="$pkgdir" } -md5sums=('6b662e93facb0535cdc7a84558ef17ac' - 'edda2408861dd0b4cffa0dd436a90ed5') +md5sums=('455f0ac438436b3580eb79dd9eb5a9e2' + '656008e8e35e6adba527b7bfc367b9f7') -- cgit v1.2.3 From 3db9f1eed9cf7946407d4ff67f3ec8fcc5219db5 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Mon, 28 Oct 2013 03:17:35 -0200 Subject: texlive-bin-libre-2013.30973-6: rebuild with shared libkpathsea/libptexenc --- libre/texlive-bin-libre/PKGBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/texlive-bin-libre/PKGBUILD b/libre/texlive-bin-libre/PKGBUILD index 21c12b87b..e43f8e70f 100644 --- a/libre/texlive-bin-libre/PKGBUILD +++ b/libre/texlive-bin-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 196425 2013-10-13 13:31:56Z andyrtr $ +# $Id: PKGBUILD 197649 2013-10-27 17:39:24Z remy $ # Maintainer: Rémy Oudompheng # Contributor: francois # Maintainer (Parabola): Michał Masłowski @@ -6,7 +6,7 @@ pkgname=texlive-bin-libre pkgver=2013.30973 -pkgrel=5 +pkgrel=6 pkgdesc="TeX Live binaries, without biber binaries (Parabola rebranded)" license=('GPL') arch=('i686' 'x86_64' 'mips64el') @@ -63,6 +63,8 @@ build() { --disable-t1utils \ --disable-bibtexu \ --disable-xz \ + --enable-shared \ + --disable-static \ --with-system-zlib \ --with-system-zziplib \ --with-system-pnglib \ -- cgit v1.2.3 From 84c420d503e8acf7a399e116f8a4f558e0be1224 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Mon, 28 Oct 2013 15:50:10 -0200 Subject: bfgminer-libre-3.4.0-1: updating version --- libre/bfgminer-libre/PKGBUILD | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'libre') diff --git a/libre/bfgminer-libre/PKGBUILD b/libre/bfgminer-libre/PKGBUILD index db92fa191..3559adcf4 100644 --- a/libre/bfgminer-libre/PKGBUILD +++ b/libre/bfgminer-libre/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 98781 2013-10-18 14:05:15Z tredaelli $ +# $Id: PKGBUILD 99405 2013-10-28 11:43:52Z tredaelli $ # Maintainer: Timothy Redaelli # Contributor: Andy Weidenbaum _pkgname=bfgminer pkgname=bfgminer-libre -pkgver=3.3.0 +pkgver=3.4.0 pkgrel=1 pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control and remote management. For FPGA/GPU/CPU Bitcoin mining, without nonfree OpenCL recommendation." arch=('i686' 'x86_64' 'mips64el') -depends=('curl' 'jansson' 'libusbx' 'lm_sensors') +depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusbx' 'lm_sensors') makedepends=('uthash' 'yasm') replaces=$_pkgname conflicts=$_pkgname @@ -18,7 +18,7 @@ license=('GPL3') options=(!libtool) source=(http://luke.dashjr.org/programs/bitcoin/files/$_pkgname/$pkgver/$_pkgname-$pkgver.tbz2 remove-dangerous-rpath.patch) -sha256sums=('773435dafb9b13c4450480a7731d024ffb2b7ac34d8511c9325d2a703f339ef6' +sha256sums=('5367802f303917810236be092a09400c6e105efc348eadcf27bdcea526728d67' 'd26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c') prepare() { @@ -31,7 +31,12 @@ prepare() { build() { cd "$srcdir"/$_pkgname-$pkgver - ./configure --prefix=/usr --enable-cpumining --enable-scrypt + ./configure --prefix=/usr \ + --enable-cpumining \ + --enable-bfsb \ + --enable-metabank \ + --enable-scrypt + # --enable-knc (FS#33640) make } -- cgit v1.2.3 From 29874a725cb05e996989cedc20a9eb0b15343d0b Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 30 Oct 2013 17:07:59 -0200 Subject: cups-filters-libre-1.0.41-1: updating version * remove !libtool --- libre/cups-filters-libre/PKGBUILD | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libre') diff --git a/libre/cups-filters-libre/PKGBUILD b/libre/cups-filters-libre/PKGBUILD index 07761093d..651a1189a 100644 --- a/libre/cups-filters-libre/PKGBUILD +++ b/libre/cups-filters-libre/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 196334 2013-10-11 15:48:49Z andyrtr $ +# $Id: PKGBUILD 198470 2013-10-30 15:04:07Z andyrtr $ # Maintainer: Andreas Radke pkgname=cups-filters-libre _pkgname=cups-filters -pkgver=1.0.40 +pkgver=1.0.41 pkgrel=1 pkgdesc="OpenPrinting CUPS Filters, without foomatic-db-nonfree recommendation" arch=('i686' 'x86_64') @@ -16,9 +16,8 @@ optdepends=('ghostscript: for non-PostScript printers to print with CUPS to conv 'foomatic-db-engine: drivers use Ghostscript to convert PostScript to a printable form directly') backup=(etc/fonts/conf.d/99pdftoopvp.conf etc/cups/cups-browsed.conf) -options=(!libtool) source=(http://www.openprinting.org/download/cups-filters/$_pkgname-$pkgver.tar.gz) -md5sums=('50936e556a2787a85cb14dd859e8f410') +md5sums=('9065084c7601ce1721cd6f34ca0a4337') replaces=("${_pkgname}") conflicts=("${_pkgname}") provides=("${_pkgname}=${pkgver}") @@ -44,8 +43,6 @@ check() { package() { cd $_pkgname-$pkgver make DESTDIR="$pkgdir/" install - # drop static lib - rm -f ${pkgdir}/usr/lib/*.a # add upstream systemd support file install -Dm644 utils/cups-browsed.service ${pkgdir}/usr/lib/systemd/system/cups-browsed.service -- cgit v1.2.3 From c81ba72e41b98c5a6517c24f05cc40c5a51417b9 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 30 Oct 2013 17:26:16 -0200 Subject: syslinux-6.02-4: updating revision * fix updater script, to not use symlinks. https://bbs.archlinux.org/viewtopic.php?id=171629 * add rebranding on syslinux-install_update * fix typo #37487 => https://bugs.archlinux.org/task/37487 --- libre/syslinux/PKGBUILD | 14 ++++----- libre/syslinux/syslinux-install_update | 57 +++++++++++++++------------------- libre/syslinux/syslinux.install | 2 +- 3 files changed, 32 insertions(+), 41 deletions(-) (limited to 'libre') diff --git a/libre/syslinux/PKGBUILD b/libre/syslinux/PKGBUILD index 35a17b630..ad30022df 100644 --- a/libre/syslinux/PKGBUILD +++ b/libre/syslinux/PKGBUILD @@ -5,7 +5,7 @@ pkgname="syslinux" pkgver="6.02" -pkgrel="3" +pkgrel="4" arch=('x86_64' 'i686') pkgdesc="Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs filesystems, from CDs and via PXE (Parabola rebranded)" url="http://syslinux.zytor.com/" @@ -22,19 +22,17 @@ optdepends=('perl-passwd-md5: For md5pass' 'util-linux: For isohybrid' 'efibootmgr: For EFI support' 'dosfstools: For EFI support') -md5sums=('6f275813a1b08cf852e55c0a3f8fbc78' - 'f048880b57e2c5a7017ff8804bfda327' - '0e7d47e1f791f0c5e7bd40ed5c6d80cc' - '9dbede6b71a4de9e46aac4aad65334d7' - 'cb46ca47c6b6323127d908440057d98f') - install="${pkgname}.install" - source=("https://www.kernel.org/pub/linux/utils/boot/syslinux/${pkgname}-${pkgver}.tar.xz" 'syslinux.cfg' 'syslinux-install_update' 'syslinux-6.02-fix-chainloading.patch' 'splash.png') +md5sums=('6f275813a1b08cf852e55c0a3f8fbc78' + 'f048880b57e2c5a7017ff8804bfda327' + '9da2b8b25ea8d628887f11749dc3fffa' + '9dbede6b71a4de9e46aac4aad65334d7' + 'cb46ca47c6b6323127d908440057d98f') _build_syslinux_bios() { diff --git a/libre/syslinux/syslinux-install_update b/libre/syslinux/syslinux-install_update index 4dc09696a..251b9c482 100644 --- a/libre/syslinux/syslinux-install_update +++ b/libre/syslinux/syslinux-install_update @@ -1,7 +1,8 @@ #!/usr/bin/env bash # # Syslinux Installer / Updater Script (for BIOS only) -# Copyright (C) 2013 Matthew Gyurgyik +# Copyright (C) 2011-2013 Matthew Gyurgyik +# Copyright (C) 2013 Keshav Padram Amburay <(the) (ddoott) (ridikulus) (ddoott) (rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)> # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -18,19 +19,23 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # #----------------- +# ChangeLog: +# 2013-10-23 : Keshav Padram Amburay : Updated script to work with Syslinux 6.02 Parabola GNU/Linux-libre pkg +# 2013-10-30 : André Silva : Rebranded script for Parabola +#----------------- # Exit Codes: # 1 - get_boot_device or other function failed # 2 - install/update failed # 3 - set_active failed # 4 - install_mbr failed -# +#----------------- + shopt -s nullglob -bios_libpath="/usr/lib/syslinux/bios/" -bios_bootpath="/boot/syslinux/" +bios_libpath="/usr/lib/syslinux/bios" +bios_bootpath="/boot/syslinux" EXTLINUX="/usr/bin/extlinux" -bios_core_modules=(config.c32 chain.c32 ldlinux.c32 libcom32.c32 libgpl.c32 liblua.c32 libmenu.c32 libutil.c32 linux.c32 menu.c32 vesamenu.c32) bios_autoupdate_file="/boot/syslinux/SYSLINUX_AUTOUPDATE" pciids_file="/usr/share/hwdata/pci.ids" @@ -294,34 +299,22 @@ install_mbr() { } install_modules() { - # Copy all com32 files to /boot - for file in "${bios_libpath}"/*.c32; do - file=${file##*/} - rm "$bios_bootpath/$file" &> /dev/null - if [[ "$boot" = root ]]; then - # Symlink files if /boot resides on the same partition as root - ln -sf "${bios_libpath#$CHROOT}/$file" "$bios_bootpath/$file" &> /dev/null - elif [[ "$boot" = boot ]]; then - cp "$bios_libpath/$file" "$bios_bootpath/$file" - fi - done + # Copy all syslinux *.c32 modules to /boot + rm "$bios_bootpath"/*.c32 &> /dev/null + cp "$bios_libpath"/*.c32 "$bios_bootpath"/ &> /dev/null # Copy / Symlink pci.ids if pci.ids exists on the FS - if [[ -f $pciids_file ]]; then + if [[ -f "$pciids_file" ]]; then rm "$bios_bootpath/pci.ids" &> /dev/null - if [[ "$boot" = root ]]; then - ln -sf "$pciids_file" "$bios_bootpath/pci.ids" &> /dev/null - elif [[ "$boot" = boot ]]; then - cp "$pciids_file" "$bios_bootpath/pci.ids" &> /dev/null - fi + cp "$pciids_file" "$bios_bootpath/pci.ids" &> /dev/null fi } _install() { install_modules - if device_is_raid "$bootpart"; then - echo "Detected RAID on /boot" + if device_is_raid "$bootpart" ; then + echo "Detected RAID on /boot - installing Syslinux with --raid" "$EXTLINUX" --install "$bios_bootpath" --raid &> /dev/null else "$EXTLINUX" --install "$bios_bootpath" &> /dev/null @@ -340,8 +333,8 @@ _install() { update() { install_modules - if device_is_raid $bootpart; then - echo "Detected RAID on /boot" + if device_is_raid "$bootpart" ; then + echo "Detected RAID on /boot - installing Syslinux with --raid" "$EXTLINUX" --update "$bios_bootpath" --raid &> /dev/null else "$EXTLINUX" --update "$bios_bootpath" &> /dev/null @@ -404,18 +397,18 @@ if [[ $USAGE ]]; then exit 0 fi -# Make sure only root can run our script -if (( $(id -u) != 0 )); then - echo "This script must be run as root" 1>&2 - exit 1 -fi - # Display Usage Information if both Install and Update are passed if [[ $INSTALL && $UPDATE ]]; then usage exit 1 fi +# Make sure only root can run our script +if (( $(id -u) != 0 )); then + echo "This script must be run as root" 1>&2 + exit 1 +fi + # If a chroot dir is path set variables to reflect chroot if [[ "$CHROOT" ]]; then bios_libpath="$CHROOT$bios_libpath" diff --git a/libre/syslinux/syslinux.install b/libre/syslinux/syslinux.install index ac8553a97..7dc7a43c1 100644 --- a/libre/syslinux/syslinux.install +++ b/libre/syslinux/syslinux.install @@ -26,7 +26,7 @@ post_upgrade() { echo "" echo "If you manually installed syslinux:" echo "==> Please copy or symlink all .c32 modules to your /boot/syslinux directory." - echo "==> If (/ and /boot on seperate fs):" + echo "==> If (/ and /boot on separate fs):" echo "==> # cp /usr/lib/syslinux/bios/*.c32 /boot/syslinux" echo "==> If (/ and /boot on same fs):" echo "==> # ln -s /usr/lib/syslinux/bios/*.c32 /boot/syslinux" -- cgit v1.2.3 From 4418414c4e3e22f25445ef6a57861b22371036af Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Thu, 31 Oct 2013 19:12:11 -0200 Subject: netsurf-libre-3.0-5: add netsurf.sh --- libre/netsurf-libre/PKGBUILD | 12 ++++++++---- libre/netsurf-libre/netsurf.sh | 7 +++++++ 2 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 libre/netsurf-libre/netsurf.sh (limited to 'libre') diff --git a/libre/netsurf-libre/PKGBUILD b/libre/netsurf-libre/PKGBUILD index d3c6463a2..bcb40c614 100644 --- a/libre/netsurf-libre/PKGBUILD +++ b/libre/netsurf-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 95886 2013-08-18 11:31:23Z arodseth $ +# $Id: PKGBUILD 100033 2013-10-31 10:58:22Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Paulo Matias # Contributor: Georgij Kondratjev @@ -8,7 +8,7 @@ _pkgname=netsurf pkgname=netsurf-libre pkgver=3.0 -pkgrel=4 +pkgrel=5 pkgdesc='Lightweight and fast web browser, without non-privacy search providers' arch=('x86_64' 'i686' 'mips64el') url='http://www.netsurf-browser.org/' @@ -20,9 +20,11 @@ depends=('gtk2' 'libmng' 'curl' 'librsvg' 'desktop-file-utils' 'libnsbmp' 'libns makedepends=('js' 're2c' 'gendesk' 'netsurf-buildsystem' 'libglade' 'addinclude') install="$_pkgname.install" source=("netsurf.png::http://ubuntu.allmyapps.com/data/n/e/netsurf-netsurf-web-browser/icon_48x48_netsurf.png" - "http://download.$_pkgname-browser.org/$_pkgname/releases/source/$_pkgname-$pkgver-src.tar.gz") + "http://download.$_pkgname-browser.org/$_pkgname/releases/source/$_pkgname-$pkgver-src.tar.gz" + 'netsurf.sh') sha256sums=('f0dbcc5d80bf03d706aa8b28a322aa7f169a40813848c2d1505691f6e2c7ef00' - '7c6a48d3cc3e9a3e3a51b532ddf60f7697e97bf8b61a6d3b2ced1a2e89fbccc6') + '7c6a48d3cc3e9a3e3a51b532ddf60f7697e97bf8b61a6d3b2ced1a2e89fbccc6' + '3efaf14b95c9aeb83caac488135bd5b6040d2ede382caa5589ff7ebd2bd506cc') prepare() { cd "$_pkgname-$pkgver" @@ -115,6 +117,8 @@ package() { cd "$_pkgname-$pkgver" make install PREFIX=/usr DESTDIR="$pkgdir" + mv "$pkgdir/usr/bin/$_pkgname" "$pkgdir/usr/bin/$_pkgname.elf" + install -Dm755 "../$_pkgname.sh" "$pkgdir/usr/bin/$_pkgname" install -Dm644 "../$_pkgname.png" "$pkgdir/usr/share/pixmaps/$_pkgname.png" install -Dm644 "$_pkgname.desktop" \ "$pkgdir/usr/share/applications/$_pkgname.desktop" diff --git a/libre/netsurf-libre/netsurf.sh b/libre/netsurf-libre/netsurf.sh new file mode 100644 index 000000000..49b1e161e --- /dev/null +++ b/libre/netsurf-libre/netsurf.sh @@ -0,0 +1,7 @@ +#!/bin/sh +shortname=`echo $LANG | cut -b1-2` +if [[ -d /usr/share/netsurf/$shortname ]]; then + /usr/bin/netsurf.elf "$@" +else + LANG=en_US /usr/bin/netsurf.elf "$@" +fi -- cgit v1.2.3 From c0bf606a1ae9c601022fb4b3bd6124558d8d8c76 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Thu, 31 Oct 2013 19:15:58 -0200 Subject: sdl-libre-1.2.15-5: bring back libSDLmain.a, remove !libtool --- libre/sdl-libre/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libre') diff --git a/libre/sdl-libre/PKGBUILD b/libre/sdl-libre/PKGBUILD index e16042e95..e745c3dbe 100644 --- a/libre/sdl-libre/PKGBUILD +++ b/libre/sdl-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 197193 2013-10-23 17:24:50Z heftig $ +# $Id: PKGBUILD 198628 2013-10-31 13:07:39Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Allan McRae # Contributor: dorphell @@ -8,7 +8,7 @@ pkgname=sdl-libre pkgver=1.2.15 -pkgrel=4 +pkgrel=5 pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard" arch=('i686' 'x86_64') url="http://www.libsdl.org" @@ -20,7 +20,7 @@ depends=('glibc' 'libxext' 'libxrender' 'libx11') makedepends=('alsa-lib' 'mesa' 'libpulse' 'glu') optdepends=('alsa-lib: ALSA audio driver' 'libpulse: PulseAudio audio driver') -options=('!libtool') +options=('staticlibs') source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz sdl-1.2.14-fix-mouse-clicking.patch sdl-1.2.14-disable-mmx.patch -- cgit v1.2.3 From 350b98e955518790c2b8867b1a09e414253f9d8a Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 1 Nov 2013 18:13:16 -0200 Subject: calibre-libre-1.9.0-1: updating version --- libre/calibre-libre/PKGBUILD | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libre') diff --git a/libre/calibre-libre/PKGBUILD b/libre/calibre-libre/PKGBUILD index 019b33cba..52fd8b73d 100644 --- a/libre/calibre-libre/PKGBUILD +++ b/libre/calibre-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 99239 2013-10-26 11:48:48Z jelle $ +# $Id: PKGBUILD 100069 2013-11-01 09:01:32Z jelle $ # Maintainer: jelle van der Waa # Maintainer: Daniel Wallace # Contributor: Giovanni Scafora @@ -9,7 +9,7 @@ _pkgname=calibre pkgname=calibre-libre -pkgver=1.8.0 +pkgver=1.9.0 pkgrel=1 pkgdesc="Ebook management application, with unar support" arch=('i686' 'x86_64' 'mips64el') @@ -30,13 +30,10 @@ install=calibre.install source=("http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz" 'desktop_integration.patch' 'calibre-mount-helper') -md5sums=('f1cb722f32f5e3d50fbcd21403e95514' +md5sums=('69e0262f0e06b7d6384c3a183a44d02f' '8353d1878c5a498b3e49eddef473605f' '675cd87d41342119827ef706055491e7') - - - prepare(){ cd "${srcdir}/${_pkgname}" #rm -rf src/{cherrypy,pyPdf} -- cgit v1.2.3