From a78b434ff9cfdfb3d175c900ff622a561b84123f Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Tue, 4 Mar 2014 03:52:56 +0000 Subject: Tue Mar 4 03:48:46 UTC 2014 --- community/chmsee/PKGBUILD | 8 +++--- community/gdc/PKGBUILD | 41 +++++++++++++++++++------------ community/go/PKGBUILD | 43 ++++++++++++--------------------- community/go/go.install | 13 ---------- community/go/go.sh | 1 - community/mediainfo-gui/PKGBUILD | 8 +++--- community/pptpd/PKGBUILD | 4 +-- community/simplescreenrecorder/PKGBUILD | 4 +-- community/uwsgi/PKGBUILD | 6 ++--- 9 files changed, 57 insertions(+), 71 deletions(-) delete mode 100644 community/go/go.sh (limited to 'community') diff --git a/community/chmsee/PKGBUILD b/community/chmsee/PKGBUILD index 0dc231df3..96236dd59 100644 --- a/community/chmsee/PKGBUILD +++ b/community/chmsee/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 103375 2014-01-04 11:27:06Z bpiotrowski $ +# $Id: PKGBUILD 106444 2014-03-03 14:17:49Z lcarlier $ # Maintainer : Laurent Carlier # Contributor: dionydonny # Contributor: Ermanno pkgname=chmsee pkgver=2.0.2 -pkgrel=2 +pkgrel=3 arch=('i686' 'x86_64') pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner." url="http://chmsee.googlecode.com/" license=('GPL') -depends=('xulrunner>21.0' 'xulrunner<27.0' 'chmlib' 'desktop-file-utils') +depends=('xulrunner>21.0' 'xulrunner<28.0' 'chmlib' 'desktop-file-utils') makedepends=('python2') source=(https://chmsee.googlecode.com/files/$pkgname-$pkgver.tar.gz chmsee) @@ -20,7 +20,7 @@ md5sums=('c6a6ce009395c72ecf0530500ecda37c' prepare() { cd $pkgname-$pkgver - sed -i -e 's/^\(MaxVersion=\).*/\126.*/' application.ini + sed -i -e 's/^\(MaxVersion=\).*/\127.*/' application.ini } build() { diff --git a/community/gdc/PKGBUILD b/community/gdc/PKGBUILD index 01aeea0fe..7c7c5977c 100644 --- a/community/gdc/PKGBUILD +++ b/community/gdc/PKGBUILD @@ -5,19 +5,25 @@ pkgname=('gdc' 'libgphobos-devel') pkgver=4.8.2 -pkgrel=5 +pkgrel=7 arch=('i686' 'x86_64') url="https://github.com/D-Programming-GDC/GDC" license=('GPL') makedepends=('binutils>=2.23' 'git' 'gcc' 'make' 'perl' 'cloog' 'automake') options=('!emptydirs' '!buildflags') _snapshot=4.8-20130725 -source=(ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2 - gdc::git://github.com/D-Programming-GDC/GDC.git#branch=gdc-4.8 - folders.diff) -sha256sums=('e4e2202b15f8ba323f88c65de0e4190b0630a4b2e70b0653526b31e946877ead' - 'SKIP' - '82f1ba0825164a74660bd5008d8f3acae1bacc3271c86475efc1601fe0da73c4') +source=( + "ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2" + "gdc::git://github.com/D-Programming-GDC/GDC.git#branch=gdc-4.8" + "git+https://github.com/D-Programming-GDC/GDMD.git" + "folders.diff" +) +sha256sums=( + 'e4e2202b15f8ba323f88c65de0e4190b0630a4b2e70b0653526b31e946877ead' + 'SKIP' + 'SKIP' + '82f1ba0825164a74660bd5008d8f3acae1bacc3271c86475efc1601fe0da73c4' +) groups=('dlang' 'dlang-gdc') conflicts=('gdc1-bin' 'gdc1-hg' 'gdc-git') @@ -54,28 +60,32 @@ build() --enable-shared --enable-threads=posix \ --with-system-zlib --enable-__cxa_atexit \ --disable-libunwind-exceptions --enable-clocale=gnu \ - --disable-libstdcxx-pch \ + --disable-libstdcxx-pch --disable-libssp \ --enable-gnu-unique-object --enable-linker-build-id \ --enable-cloog-backend=isl --disable-cloog-version-check \ - --enable-lto --enable-gold --enable-ld=default \ - --enable-plugin --with-plugin-ld=ld.gold \ - --with-linker-hash-style=gnu --disable-install-libiberty \ - --disable-multilib --disable-libssp --disable-werror \ + --enable-lto --enable-gold --enable-plugin --enable-ld=default \ + --enable-install-libiberty --with-plugin-ld=ld.gold \ + --with-linker-hash-style=gnu \ + --disable-multilib --disable-werror \ --disable-nls --disable-bootstrap \ - --disable-libgomp --disable-libmudflap --disable-libquadmath + --disable-libgomp --disable-libmudflap --disable-libquadmath \ + --enable-checking=release make } package_gdc() { - depends=('gcc' 'binutils') - optdepends=('libgphobos-devel: D standard library, GDC version') + depends=('gcc' 'perl' 'binutils' 'libgphobos-devel') provides=("d-compiler") pkgdesc="Compiler for D programming language which uses gcc backend (2.064.2 frontend version)" install -D -m755 $srcdir/gcc-build/gcc/gdc $pkgdir/usr/bin/gdc install -D -m755 $srcdir/gcc-build/gcc/cc1d $pkgdir/usr/lib/gcc/$CHOST/$pkgver/cc1d + + # tools + install -D -m755 $srcdir/GDMD/dmd-script $pkgdir/usr/bin/gdmd + install -D -m644 $srcdir/GDMD/dmd-script.1 $pkgdir/usr/share/man/man1/gdmd.1 } package_libgphobos-devel() @@ -83,7 +93,6 @@ package_libgphobos-devel() pkgdesc="Standard library for D programming language, GDC port" provides=("d-runtime" "d-stdlib") options=("staticlibs") - depends=('gdc') # druntime install -D $srcdir/gdc/libphobos/libdruntime/object.di $pkgdir/usr/include/dlang/gdc/object.di diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD index 56e9c03db..9eee99996 100644 --- a/community/go/PKGBUILD +++ b/community/go/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 105906 2014-02-18 23:59:49Z arodseth $ +# $Id: PKGBUILD 106448 2014-03-03 17:04:25Z arodseth $ # Maintainer: Vesa Kaihlavirta # Maintainer: Alexander Rødseth # Contributor: Rémy Oudompheng @@ -9,36 +9,25 @@ # Contributor: Daniel YC Lin pkgname=go -pkgver=1.2 -pkgrel=3 +pkgver=1.2.1 +pkgrel=1 epoch=2 pkgdesc='Compiler and tools for the Go programming language from Google' arch=('x86_64' 'i686') url='http://golang.org/' license=('custom') depends=('perl' 'gawk') -makedepends=('inetutils') +makedepends=('inetutils' 'mercurial') options=('!strip' 'staticlibs') optdepends=('liteide: IDE for editing and building projects written in Go' - 'mercurial: Version control system written in Python' - 'git: Version control system written in C') + 'mercurial: VCS written in Python' + 'git: VCS written in C') install="$pkgname.install" -backup=('usr/lib/go/bin') - -if [ "$CARCH" == 'x86_64' ]; then - source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-amd64.tar.gz" - 'go.sh') - sha256sums=('1252ca0aa0a96d53c0592fbc4ea9c9ff5c6b588169c92e08d06da9d89d9d91f2' - 'b6209904c88bde96efcac846c267e308e4dc39c8a45f2690204c2175de4b9b0a') -else - source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-386.tar.gz" - 'go.sh') - sha256sums=('3f51aacc7af60c520fe1071f3cb1d9ceee5db0e8fdfb7168a73e12fd7603e651' - 'b6209904c88bde96efcac846c267e308e4dc39c8a45f2690204c2175de4b9b0a') -fi +source=("$pkgname-$pkgver::hg+https://code.google.com/p/$pkgname#branch=release-branch.$pkgname${pkgver/.1}") +md5sums=('SKIP') build() { - cd "$pkgname/src" + cd "$pkgname-$pkgver/src" export GOROOT_FINAL=/usr/lib/go @@ -63,10 +52,13 @@ build() { bash make.bash --no-clean done done + + # TODO: Find a way to install these tools as well: + #go get code.google.com/p/go.tools/cmd/... } check() { - cd "$pkgname" + cd "$pkgname-$pkgver" export GO386=387 @@ -77,15 +69,15 @@ check() { export GOARCH=386 fi - export GOROOT="$srcdir/$pkgname" - export PATH="$srcdir/$pkgname/bin:$PATH" + export GOROOT="$srcdir/$pkgname-$pkgver" + export PATH="$srcdir/$pkgname-$pkgver/bin:$PATH" # TestSimpleMulticastListener will fail in standard chroot cd src && bash run.bash --no-rebuild || true } package() { - cd "$pkgname" + cd "$pkgname-$pkgver" install -Dm644 LICENSE \ "$pkgdir/usr/share/licenses/go/LICENSE" @@ -135,9 +127,6 @@ package() { install -Dm644 src/pkg/runtime/cgocall.h \ "$pkgdir/usr/lib/go/src/pkg/runtime/cgocall.h" - # In order to make godoc work, see FS#38597 - install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/etc/profile.d/$pkgname.sh" - # This is to make go get code.google.com/p/go-tour/gotour and # then running the gotour executable work out of the box. ln -sf /usr/bin "$pkgdir/usr/lib/go/bin" diff --git a/community/go/go.install b/community/go/go.install index 2f6482620..286aaf9dd 100644 --- a/community/go/go.install +++ b/community/go/go.install @@ -8,19 +8,6 @@ post_install() { echo ' export PATH=$PATH:~/go/bin' echo ' go get code.google.com/p/go-tour/gotour' echo - echo 'For adding useful go tools:' - echo - echo ' go get code.google.com/p/go.tools/cmd/benchcmp' - echo ' go get code.google.com/p/go.tools/cmd/cover' - echo ' go get code.google.com/p/go.tools/cmd/godoc' - echo ' go get code.google.com/p/go.tools/cmd/goimports' - echo ' go get code.google.com/p/go.tools/cmd/gotype' - echo ' go get code.google.com/p/go.tools/cmd/html2article' - echo ' go get code.google.com/p/go.tools/cmd/ssadump' - echo ' go get code.google.com/p/go.tools/cmd/vet' - echo - echo '#go-nuts at irc.freenode.net may provide more answers.' - echo } # vim:set ts=2 sw=2 et: diff --git a/community/go/go.sh b/community/go/go.sh deleted file mode 100644 index 8393dc8d2..000000000 --- a/community/go/go.sh +++ /dev/null @@ -1 +0,0 @@ -export GOROOT=/usr/lib/go diff --git a/community/mediainfo-gui/PKGBUILD b/community/mediainfo-gui/PKGBUILD index 221b9be17..9e3280861 100644 --- a/community/mediainfo-gui/PKGBUILD +++ b/community/mediainfo-gui/PKGBUILD @@ -1,15 +1,16 @@ -# $Id: PKGBUILD 105973 2014-02-20 09:02:55Z spupykin $ +# $Id: PKGBUILD 106439 2014-03-03 06:36:23Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: hydro pkgname=mediainfo-gui pkgver=0.7.67 -pkgrel=1 +pkgrel=2 pkgdesc="GUI for mediainfo" arch=('i686' 'x86_64') url="http://mediainfo.sourceforge.net" license=('GPL') depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils') +makedepends=('imagemagick') install=mediainfo-gui.install source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2) md5sums=('480ac31a4080737f21937f9d260b96de') @@ -24,8 +25,9 @@ build() { package() { cd MediaInfo/Project/GNU/GUI make DESTDIR="$pkgdir" install + _iconsize=`identify $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png | grep -oP ' \d+x\d+ ' | tr -d ' '` install -D -m 644 "$srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png" \ - "$pkgdir/usr/share/icons/hicolor/128x128/apps/mediainfo.png" + "$pkgdir/usr/share/icons/hicolor/${_iconsize}/apps/mediainfo.png" install -D -m 644 "$srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png" \ "$pkgdir/usr/share/pixmaps/mediainfo-gui.png" install -D -m 644 "$srcdir/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop" \ diff --git a/community/pptpd/PKGBUILD b/community/pptpd/PKGBUILD index 8a3a1bd05..696dfddd2 100644 --- a/community/pptpd/PKGBUILD +++ b/community/pptpd/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 91528 2013-05-23 11:16:52Z spupykin $ +# $Id: PKGBUILD 106452 2014-03-03 19:27:46Z spupykin $ # Maintainer: Sergej Pupykin pkgname=pptpd pkgver=1.3.4 -pkgrel=13 +pkgrel=14 pkgdesc="Poptop server" arch=(i686 x86_64) url="http://poptop.sourceforge.net/" diff --git a/community/simplescreenrecorder/PKGBUILD b/community/simplescreenrecorder/PKGBUILD index 58676420c..56cd0c2d3 100644 --- a/community/simplescreenrecorder/PKGBUILD +++ b/community/simplescreenrecorder/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 106356 2014-02-28 23:38:25Z kkeen $ +# $Id: PKGBUILD 106433 2014-03-03 02:44:00Z kkeen $ # Maintainer: Kyle Keen # Contributor: Maarten Baert pkgname=simplescreenrecorder -pkgver=0.2.1 +pkgver=0.2.2 pkgrel=1 pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL." arch=("i686" "x86_64") diff --git a/community/uwsgi/PKGBUILD b/community/uwsgi/PKGBUILD index 39cf1d837..deeb14481 100644 --- a/community/uwsgi/PKGBUILD +++ b/community/uwsgi/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 105643 2014-02-12 17:51:46Z dwallace $ +# $Id: PKGBUILD 106429 2014-03-03 02:41:19Z dwallace $ # Maintainer: Daniel Wallace # Contributor: Valentin Hăloiu # Contributor: Angel Velasquez @@ -23,7 +23,7 @@ pkgname=(uwsgi ) #uwsgi-plugin-erlang #uwsgi-plugin-admin -pkgver=2.0.1 +pkgver=2.0.2 pkgrel=1 arch=(i686 x86_64) url="http://projects.unbit.it/$pkgbase" @@ -41,7 +41,7 @@ source=(http://projects.unbit.it/downloads/$pkgbase-$pkgver.tar.gz uwsgi_ruby20_compatibility.patch uwsgi_trick_chroot.patch) -md5sums=('e7234f16ddfb4fe5d0b5d5fa76dc17e1' +md5sums=('297578b2e3ef2102faeadaa0fb8aac6b' 'a0749da07b545efcbb0276f52be22652' 'b05ba1d796e1ea608a40635bc4f3ec67' '740a7718bd341b03d916a13ddbbbe694' -- cgit v1.2.3-54-g00ecf