From 6165b85a24773d936783fdd30307d8b767f6554c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 6 Dec 2013 16:51:48 -0500 Subject: ~lukeshu: remove deprecated packages (things that moved elsewhere) - ~lukeshu/kdeutils-ark-unarchiver: is libre/kdeutils-ark-libre - ~lukeshu/pacman-vcsget: featureset has been included in upstream --- ~lukeshu/pacman-vcsget/PKGBUILD | 100 ---------------------------- ~lukeshu/pacman-vcsget/PKGBUILD.orig | 1 - ~lukeshu/pacman-vcsget/makepkg.conf | 1 - ~lukeshu/pacman-vcsget/pacman.conf | 1 - ~lukeshu/pacman-vcsget/pacman.conf.mips64el | 1 - ~lukeshu/pacman-vcsget/pacman.conf.x86_64 | 1 - ~lukeshu/pacman-vcsget/pacman.install | 1 - 7 files changed, 106 deletions(-) delete mode 100644 ~lukeshu/pacman-vcsget/PKGBUILD delete mode 120000 ~lukeshu/pacman-vcsget/PKGBUILD.orig delete mode 120000 ~lukeshu/pacman-vcsget/makepkg.conf delete mode 120000 ~lukeshu/pacman-vcsget/pacman.conf delete mode 120000 ~lukeshu/pacman-vcsget/pacman.conf.mips64el delete mode 120000 ~lukeshu/pacman-vcsget/pacman.conf.x86_64 delete mode 120000 ~lukeshu/pacman-vcsget/pacman.install (limited to '~lukeshu/pacman-vcsget') diff --git a/~lukeshu/pacman-vcsget/PKGBUILD b/~lukeshu/pacman-vcsget/PKGBUILD deleted file mode 100644 index c23eabd3a..000000000 --- a/~lukeshu/pacman-vcsget/PKGBUILD +++ /dev/null @@ -1,100 +0,0 @@ -# vim: set ts=2 sw=2 et: -# $Id: PKGBUILD 150148 2012-02-13 14:49:35Z dreisner $ -# Maintainer: Dan McGee -# Maintainer: Dave Reisner - -_pkgname=pacman -_basepath=parabola-pacman -pkgname=$_pkgname-vcsget -_relver=4.0.3 -#_gitver=f8fc16f -_gitver=6082ed9d -pkgver=${_relver}.git -provides=($_pkgname=$pkgver) -replaces=($_pkgname pacman-lukeshu) -conflicts=($_pkgname pacman-lukeshu) - -pkgrel=1 - -pkgdesc="A library-based package manager with dependency support (with vcsget)" -arch=('i686' 'x86_64' 'mips64el') -url="http://www.archlinux.org/pacman/" -license=('GPL') -#groups=('base') -depends=('bash' 'glibc>=2.15' 'libarchive>=3.0.2' 'curl>=7.19.4' - 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring' 'parabola-keyring') -makedepends=('asciidoc') -optdepends=('fakeroot: for makepkg usage as normal user') -backup=(etc/pacman.conf etc/makepkg.conf) -install=pacman.install -options=(!libtool) -source=(${_basepath}-${_gitver}.tar.gz::http://gitorious.org/parabola/pacman/archive-tarball/${_gitver} - pacman.conf - pacman.conf.x86_64 - pacman.conf.mips64el - makepkg.conf) -md5sums=('8c328c8f148f283656309fd4e2103178' - '080d9f76f56e135cc62205874636aa0f' - 'ce9943fc8086d491890565e91ea1a0d8' - 'eb8dba9bd0b315230fbf0e5dc0a7335b' - 'debc512689a1aa8c124fe0ccf27f5758') - -build() { - cd $srcdir/$_basepath - - ./autogen.sh - ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var --enable-doc - make - make -C contrib -} - -check() { - make -C "$srcdir/$_basepath" check -} - -package() { - cd $srcdir/$_basepath - make DESTDIR=$pkgdir install - - # install Arch specific stuff - mkdir -p $pkgdir/etc - case "$CARCH" in - i686) - install -m644 $srcdir/pacman.conf $pkgdir/etc/pacman.conf - mycarch="i686" - mychost="i686-pc-linux-gnu" - myflags="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2" - myldflags="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu" - ;; - x86_64) - install -m644 $srcdir/pacman.conf.x86_64 $pkgdir/etc/pacman.conf - mycarch="x86_64" - mychost="x86_64-unknown-linux-gnu" - myflags="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2" - myldflags="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu" - ;; - mips64el) - install -m644 $srcdir/pacman.conf.mips64el $pkgdir/etc/pacman.conf - mycarch="mips64el" - mychost="mips64el-unknown-linux-gnu" - myflags="-O2 -march=loongson2f -mabi=n32 -pipe -mplt -Wa,-mfix-loongson2f-nop -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2" - myldflags="-Wl,-O1,--sort-common,--as-needed,-z,relro" - ;; - esac - install -m644 $srcdir/makepkg.conf $pkgdir/etc/ - # set things correctly in the default conf file - sed -i $pkgdir/etc/makepkg.conf \ - -e "s|@CARCH[@]|$mycarch|g" \ - -e "s|@CHOST[@]|$mychost|g" \ - -e "s|@LDFLAGS[@]|$myldflags|g" \ - -e "s|@CARCHFLAGS[@]|$myflags|g" - - # install completion files - install -Dm644 contrib/bash_completion "$pkgdir/usr/share/bash-completion/completions/pacman" - for f in makepkg pacman-key; do - ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f" - done - - install -Dm644 contrib/zsh_completion $pkgdir/usr/share/zsh/site-functions/_pacman -} diff --git a/~lukeshu/pacman-vcsget/PKGBUILD.orig b/~lukeshu/pacman-vcsget/PKGBUILD.orig deleted file mode 120000 index 448b40973..000000000 --- a/~lukeshu/pacman-vcsget/PKGBUILD.orig +++ /dev/null @@ -1 +0,0 @@ -../../libre/pacman/PKGBUILD \ No newline at end of file diff --git a/~lukeshu/pacman-vcsget/makepkg.conf b/~lukeshu/pacman-vcsget/makepkg.conf deleted file mode 120000 index 2d1108635..000000000 --- a/~lukeshu/pacman-vcsget/makepkg.conf +++ /dev/null @@ -1 +0,0 @@ -../../libre/pacman/makepkg.conf \ No newline at end of file diff --git a/~lukeshu/pacman-vcsget/pacman.conf b/~lukeshu/pacman-vcsget/pacman.conf deleted file mode 120000 index c75a6eed0..000000000 --- a/~lukeshu/pacman-vcsget/pacman.conf +++ /dev/null @@ -1 +0,0 @@ -../../libre/pacman/pacman.conf \ No newline at end of file diff --git a/~lukeshu/pacman-vcsget/pacman.conf.mips64el b/~lukeshu/pacman-vcsget/pacman.conf.mips64el deleted file mode 120000 index 01fb857d8..000000000 --- a/~lukeshu/pacman-vcsget/pacman.conf.mips64el +++ /dev/null @@ -1 +0,0 @@ -../../libre/pacman/pacman.conf.mips64el \ No newline at end of file diff --git a/~lukeshu/pacman-vcsget/pacman.conf.x86_64 b/~lukeshu/pacman-vcsget/pacman.conf.x86_64 deleted file mode 120000 index 1be1966fd..000000000 --- a/~lukeshu/pacman-vcsget/pacman.conf.x86_64 +++ /dev/null @@ -1 +0,0 @@ -../../libre/pacman/pacman.conf.x86_64 \ No newline at end of file diff --git a/~lukeshu/pacman-vcsget/pacman.install b/~lukeshu/pacman-vcsget/pacman.install deleted file mode 120000 index 0b1fee98c..000000000 --- a/~lukeshu/pacman-vcsget/pacman.install +++ /dev/null @@ -1 +0,0 @@ -../../libre/pacman/pacman.install \ No newline at end of file -- cgit v1.2.3-2-g168b