OSDN Git Service

[remove] : Removed aur packages
authorhayao <hayao@fascode.net>
Mon, 22 Mar 2021 03:04:51 +0000 (12:04 +0900)
committerhayao <hayao@fascode.net>
Mon, 22 Mar 2021 03:04:51 +0000 (12:04 +0900)
14 files changed:
alter-stable/any/alterlinux-xfce-conf/.SRCINFO [deleted file]
alter-stable/any/alterlinux-xfce-conf/PKGBUILD [deleted file]
alter-stable/any/man-pages-ja/.SRCINFO [deleted file]
alter-stable/any/man-pages-ja/PKGBUILD [deleted file]
alter-stable/any/man-pages-ja/man-pages-ja.install [deleted file]
alter-stable/any/powerline-go/.SRCINFO [deleted file]
alter-stable/any/powerline-go/PKGBUILD [deleted file]
alter-stable/any/unzip-iconv/.SRCINFO [deleted file]
alter-stable/any/unzip-iconv/.gitignore [deleted file]
alter-stable/any/unzip-iconv/CVE-2015-7696+CVE-2015-7697_pt2.patch [deleted file]
alter-stable/any/unzip-iconv/PKGBUILD [deleted file]
alter-stable/any/yay/.SRCINFO [deleted file]
alter-stable/any/yay/.gitignore [deleted file]
alter-stable/any/yay/PKGBUILD [deleted file]

diff --git a/alter-stable/any/alterlinux-xfce-conf/.SRCINFO b/alter-stable/any/alterlinux-xfce-conf/.SRCINFO
deleted file mode 100644 (file)
index c7594e3..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-pkgbase = alterlinux-xfce-conf
-       pkgdesc = AlterLinux Xfce Settings
-       pkgver = 1.8
-       pkgrel = 1
-       url = https:/fascode.net
-       arch = any
-       depends = alterlinux-wallpapers
-       conflicts = alterlinux-xfce-conf-git
-       source = https://github.com/FascodeNet/alterlinux-xfce-conf/archive/v1.8.zip
-       md5sums = 00219f29c12f81df3b91cc394863abd9
-
-pkgname = alterlinux-xfce-conf
-
diff --git a/alter-stable/any/alterlinux-xfce-conf/PKGBUILD b/alter-stable/any/alterlinux-xfce-conf/PKGBUILD
deleted file mode 100644 (file)
index 728dd1e..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-# Maintainer : Yamada Hayao <development@fascode.net>
-# Maintainer : lap1sid <development@fascode.net>
-
-pkgname=alterlinux-xfce-conf
-pkgver=1.8
-pkgrel=1
-pkgdesc='AlterLinux Xfce Settings'
-arch=('any')
-url='https:/fascode.net'
-source=("https://github.com/FascodeNet/${pkgname}/archive/v${pkgver}.zip")
-depends=('alterlinux-wallpapers')
-conflicts=("alterlinux-xfce-conf-git")
-md5sums=('00219f29c12f81df3b91cc394863abd9')
-
-
-build () {
-    function remove () {
-        local _list
-        local _file
-        _list=($(echo "$@"))
-        for _file in "${_list[@]}"; do
-            if [[ -f ${_file} ]]; then
-                rm -f "${_file}"
-            elif [[ -d ${_file} ]]; then
-                rm -rf "${_file}"
-            fi
-            echo "${_file} was deleted."
-        done
-    }
-    function copy () {
-        if [[ -f $1 ]]; then
-            cp $1 $2
-        elif [[ -d $1 ]]; then
-            cp -r $1 $2
-        fi
-    }
-    mkdir -p ${srcdir}/etc/skel/.config
-    cp -r ${srcdir}/${pkgname}-${pkgver}/* ${srcdir}/etc/skel/.config
-    copy ${srcdir}/${pkgname}-${pkgver}/.xinitrc ${srcdir}/etc/skel/
-    remove ${srcdir}/${pkgname}-${pkgver}
-    rm v${pkgver}.zip
-}
-
-package () {
-    mkdir -p "$pkgdir"
-    cp -r * "$pkgdir"
-}
diff --git a/alter-stable/any/man-pages-ja/.SRCINFO b/alter-stable/any/man-pages-ja/.SRCINFO
deleted file mode 100644 (file)
index c497b27..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-pkgbase = man-pages-ja
-       pkgdesc = Man pages for Japanese
-       pkgver = 20201115
-       pkgrel = 1
-       url = https://linuxjm.osdn.jp
-       install = man-pages-ja.install
-       arch = any
-       license = custom
-       makedepends = perl
-       optdepends = mdocml: makewhatis support
-       conflicts = man-pages-ja-git
-       source = https://linuxjm.osdn.jp/man-pages-ja-20201115.tar.gz
-       md5sums = 6a1d2b112684f89e746a1a9b2c6e0353
-
-pkgname = man-pages-ja
-
diff --git a/alter-stable/any/man-pages-ja/PKGBUILD b/alter-stable/any/man-pages-ja/PKGBUILD
deleted file mode 100644 (file)
index 3e744b0..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-# Maintainer: Tatsunori Aoki <ginjiro.135 at gmail dot com>
-pkgname=man-pages-ja
-pkgver=20201115
-pkgrel=1
-pkgdesc="Man pages for Japanese"
-arch=('any')
-url="https://linuxjm.osdn.jp"
-license=('custom')
-optdepends=('mdocml: makewhatis support')
-makedepends=('perl')
-conflicts=('man-pages-ja-git')
-install="${pkgname}.install"
-source=("https://linuxjm.osdn.jp/man-pages-ja-${pkgver}.tar.gz")
-md5sums=('6a1d2b112684f89e746a1a9b2c6e0353')
-
-
-prepare() {
-    cd ${srcdir}/${pkgname}-${pkgver}
-    cp script/configure.perl script/configure.perl.org
-
-    cat script/configure.perl.org                |
-    sed '/until/i$ans = "y";'                    |
-    sed "/usr[/]share[/]man[/]/s@/@${pkgdir}/@1" > script/configure.perl
-}
-
-build() {
-    cd ${srcdir}/${pkgname}-${pkgver}
-    yes '' | make config
-}
-
-package() {
-    mkdir -p ${pkgdir}/usr/share/man/${LANG}
-    cd ${srcdir}/${pkgname}-${pkgver}
-    make install
-}
diff --git a/alter-stable/any/man-pages-ja/man-pages-ja.install b/alter-stable/any/man-pages-ja/man-pages-ja.install
deleted file mode 100644 (file)
index 2d99cc8..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-post_install() {
-    set -x
-    which makewhatis >/dev/null 2>&1 && makewhatis -v
-    mandb
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
diff --git a/alter-stable/any/powerline-go/.SRCINFO b/alter-stable/any/powerline-go/.SRCINFO
deleted file mode 100644 (file)
index edcbbc3..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-pkgbase = powerline-go
-       pkgdesc = A beautiful, useful and fast prompt for your shell
-       pkgver = 1.18.0
-       pkgrel = 1
-       url = https://github.com/justjanne/powerline-go
-       arch = x86_64
-       license = GPL3
-       makedepends = go-pie
-       makedepends = git
-       optdepends = powerline-fonts
-       source = powerline-go-1.18.0.tar.gz::https://github.com/justjanne/powerline-go/archive/v1.18.0.tar.gz
-       sha256sums = f7418109e89a8280f2181c675a7790669ba0b0ba5c0eae2bca13879257f96d57
-
-pkgname = powerline-go
-
diff --git a/alter-stable/any/powerline-go/PKGBUILD b/alter-stable/any/powerline-go/PKGBUILD
deleted file mode 100644 (file)
index abc693f..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# Maintainer Adrià Arrufat <swiftscythe@gmail.com>
-# Contributor yochananmarqos 
-
-pkgname=powerline-go
-pkgver=1.18.0
-pkgrel=1
-pkgdesc="A beautiful, useful and fast prompt for your shell"
-arch=('x86_64')
-url="https://github.com/justjanne/powerline-go"
-license=('GPL3')
-makedepends=('go-pie' 'git')
-optdepends=('powerline-fonts')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('f7418109e89a8280f2181c675a7790669ba0b0ba5c0eae2bca13879257f96d57')
-
-build() {
-    export GOPATH="${srcdir}/gopath"
-    cd "$pkgname-$pkgver"
-    go build \
-    -trimpath \
-    -ldflags "-extldflags ${LDFLAGS}" \
-    .
-}
-
-package() {
-    cd "$pkgname-$pkgver"
-    install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
-}
diff --git a/alter-stable/any/unzip-iconv/.SRCINFO b/alter-stable/any/unzip-iconv/.SRCINFO
deleted file mode 100644 (file)
index f438982..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-pkgbase = unzip-iconv
-       pkgdesc = Unpacks .zip archives such as those made by PKZIP. With iconv patch for -O / -I goodness.
-       pkgver = 6.0
-       pkgrel = 6
-       url = http://www.info-zip.org/UnZip.html
-       arch = i686
-       arch = x86_64
-       license = custom::Info-ZIP
-       depends = bzip2
-       depends = bash
-       provides = unzip
-       conflicts = unzip
-       source = http://downloads.sourceforge.net/infozip/unzip60.tar.gz
-       source = CVE-2014-8139.patch::https://bugzilla.redhat.com/attachment.cgi?id=990132
-       source = CVE-2014-8140.patch::https://bugzilla.redhat.com/attachment.cgi?id=969621
-       source = CVE-2014-8141.patch::https://bugzilla.redhat.com/attachment.cgi?id=969625
-       source = CVE-2014-9636_pt1.patch::https://bugzilla.redhat.com/attachment.cgi?id=990649
-       source = CVE-2014-9636_pt2.patch::https://projects.archlinux.org/svntogit/packages.git/plain/trunk/overflow-fsize.patch?h=packages/unzip&id=15e9a8c67463aaf62a718c6e74b1c972de654346
-       source = iconv-utf8+CVE-2015-1315.patch::http://www.conostix.com/pub/adv/06-unzip60-alt-iconv-utf8_CVE-2015-1315.patch
-       source = CVE-2015-7696+CVE-2015-7697_pt1.patch::https://bugzilla.redhat.com/attachment.cgi?id=1073339
-       source = CVE-2015-7696+CVE-2015-7697_pt2.patch
-       sha1sums = abf7de8a4018a983590ed6f5cbd990d4740f8a22
-       sha1sums = 8ab9aa19e3743245696223035b04cba9d34aa4f6
-       sha1sums = 614c3e7fa7d6da7c60ea2aa79e36f4cbd17c3824
-       sha1sums = 9904365069c5fc72d10e42ce86eb9b4041aedc98
-       sha1sums = e8c0bc17c63eeed97ad62b86845d75c849bcf4f8
-       sha1sums = 2852ce1a9db8d646516f8828436a44d34785a0b3
-       sha1sums = 9b5d552cc6ab1f9e8b74fbbbcebfee84d46218c2
-       sha1sums = 1a412abf0861225767c776721a5cd75b7e2011d7
-       sha1sums = 9fe70b98dee314385eba5fdc73baebfb648c7b6e
-
-pkgname = unzip-iconv
-
diff --git a/alter-stable/any/unzip-iconv/.gitignore b/alter-stable/any/unzip-iconv/.gitignore
deleted file mode 100644 (file)
index 9cd4080..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-*
-!.gitignore
-!.SRCINFO
-!PKGBUILD
-!CVE-2015-7696+CVE-2015-7697_pt2.patch
diff --git a/alter-stable/any/unzip-iconv/CVE-2015-7696+CVE-2015-7697_pt2.patch b/alter-stable/any/unzip-iconv/CVE-2015-7696+CVE-2015-7697_pt2.patch
deleted file mode 100644 (file)
index 6b9c1a9..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-From bd150334fb4084f5555a6be26b015a0671cb5b74 Mon Sep 17 00:00:00 2001
-From: Kamil Dudka <kdudka@redhat.com>
-Date: Tue, 22 Sep 2015 18:52:23 +0200
-Subject: [PATCH] extract: prevent unsigned overflow on invalid input
-
-Suggested-by: Stefan Cornelius
----
- extract.c | 11 ++++++++++-
- 1 file changed, 10 insertions(+), 1 deletion(-)
-
-diff --git a/extract.c b/extract.c
-index 29db027..b9ae667 100644
---- a/extract.c
-+++ b/extract.c
-@@ -1257,8 +1257,17 @@ static int extract_or_test_entrylist(__G__ numchunk,
-         if (G.lrec.compression_method == STORED) {
-             zusz_t csiz_decrypted = G.lrec.csize;
--            if (G.pInfo->encrypted)
-+            if (G.pInfo->encrypted) {
-+                if (csiz_decrypted < 12) {
-+                    /* handle the error now to prevent unsigned overflow */
-+                    Info(slide, 0x401, ((char *)slide,
-+                      LoadFarStringSmall(ErrUnzipNoFile),
-+                      LoadFarString(InvalidComprData),
-+                      LoadFarStringSmall2(Inflate)));
-+                    return PK_ERR;
-+                }
-                 csiz_decrypted -= 12;
-+            }
-             if (G.lrec.ucsize != csiz_decrypted) {
-                 Info(slide, 0x401, ((char *)slide,
-                   LoadFarStringSmall2(WrnStorUCSizCSizDiff),
--- 
-2.5.2
-
diff --git a/alter-stable/any/unzip-iconv/PKGBUILD b/alter-stable/any/unzip-iconv/PKGBUILD
deleted file mode 100644 (file)
index 90a4795..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-# Contributor: Procyon
-# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
-# Contributor: Thayer Williams <thayer@archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
-# Contributor: Robson Peixoto
-# Contributor: shiracha
-
-pkgname=unzip-iconv
-pkgver=6.0
-pkgrel=6
-pkgdesc="Unpacks .zip archives such as those made by PKZIP. With iconv patch for -O / -I goodness."
-arch=('i686' 'x86_64')
-url='http://www.info-zip.org/UnZip.html'
-license=('custom::Info-ZIP')
-depends=('bzip2'
-         'bash')
-provides=('unzip')
-conflicts=('unzip')
-source=("http://downloads.sourceforge.net/infozip/unzip${pkgver/./}.tar.gz"
-        'CVE-2014-8139.patch::https://bugzilla.redhat.com/attachment.cgi?id=990132'
-        'CVE-2014-8140.patch::https://bugzilla.redhat.com/attachment.cgi?id=969621'
-        'CVE-2014-8141.patch::https://bugzilla.redhat.com/attachment.cgi?id=969625'
-        'CVE-2014-9636_pt1.patch::https://bugzilla.redhat.com/attachment.cgi?id=990649'
-        'CVE-2014-9636_pt2.patch::https://projects.archlinux.org/svntogit/packages.git/plain/trunk/overflow-fsize.patch?h=packages/unzip&id=15e9a8c67463aaf62a718c6e74b1c972de654346'
-        'iconv-utf8+CVE-2015-1315.patch::http://www.conostix.com/pub/adv/06-unzip60-alt-iconv-utf8_CVE-2015-1315.patch'
-        'CVE-2015-7696+CVE-2015-7697_pt1.patch::https://bugzilla.redhat.com/attachment.cgi?id=1073339'
-        'CVE-2015-7696+CVE-2015-7697_pt2.patch')
-sha1sums=('abf7de8a4018a983590ed6f5cbd990d4740f8a22'
-          '8ab9aa19e3743245696223035b04cba9d34aa4f6'
-          '614c3e7fa7d6da7c60ea2aa79e36f4cbd17c3824'
-          '9904365069c5fc72d10e42ce86eb9b4041aedc98'
-          'e8c0bc17c63eeed97ad62b86845d75c849bcf4f8'
-          '2852ce1a9db8d646516f8828436a44d34785a0b3'
-          '9b5d552cc6ab1f9e8b74fbbbcebfee84d46218c2'
-          '1a412abf0861225767c776721a5cd75b7e2011d7'
-          '9fe70b98dee314385eba5fdc73baebfb648c7b6e')
-
-prepare() {
-  cd "unzip${pkgver/./}"
-
-  patch -Np1 -i ../CVE-2014-8139.patch                              # FS#43300
-  patch -Np0 -i ../CVE-2014-8140.patch                              # FS#43391
-  patch -Np0 -i ../CVE-2014-8141.patch                              # FS#43300
-  patch -Np1 -i ../CVE-2014-9636_pt1.patch                          # FS#44171
-  patch -Np1 -i ../CVE-2014-9636_pt2.patch                          # FS#44171
-  patch -Np1 -i ../iconv-utf8+CVE-2015-1315.patch                   # iconv patch + CEV 2015-1315 fix http://seclists.org/oss-sec/2015/q1/579
-  patch -Np1 -i ../CVE-2015-7696+CVE-2015-7697_pt1.patch            # FS#46955
-  patch -Np1 -i ../CVE-2015-7696+CVE-2015-7697_pt2.patch            # FS#46955
-}
-
-build() {
-  cd "unzip${pkgver/./}"
-
-  # set CFLAGS -- from Debian
-  DEFINES='-DACORN_FTYPE_NFS -DWILD_STOP_AT_DIR -DLARGE_FILE_SUPPORT \
-           -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE -DNO_LCHMOD \
-           -DDATE_FORMAT=DF_YMD -DUSE_BZIP2 -DNOMEMCPY -DNO_WORKING_ISPRINT'
-
-  # make -- from Debian
-  make -f unix/Makefile prefix=/usr \
-  D_USE_BZ2=-DUSE_BZIP2 L_BZ2=-lbz2 \
-  LF2="${LDFLAGS}" CF="${CFLAGS} ${CPPFLAGS} -I. ${DEFINES}" \
-  unzips
-}
-
-package() {
-  cd "unzip${pkgver/./}"
-
-  # install -- from Debian
-  make -f unix/Makefile prefix="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man/man\$(manext)" install
-
-  # install the license file
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/unzip-iconv/LICENSE
-}
diff --git a/alter-stable/any/yay/.SRCINFO b/alter-stable/any/yay/.SRCINFO
deleted file mode 100644 (file)
index a80107e..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-pkgbase = yay
-       pkgdesc = Yet another yogurt. Pacman wrapper and AUR helper written in go.
-       pkgver = 10.1.1
-       pkgrel = 1
-       url = https://github.com/Jguer/yay
-       arch = i686
-       arch = pentium4
-       arch = x86_64
-       arch = arm
-       arch = armv7h
-       arch = armv6h
-       arch = aarch64
-       license = GPL
-       makedepends = go
-       depends = libalpm.so>=12
-       depends = sudo
-       depends = git
-       source = yay-10.1.1.tar.gz::https://github.com/Jguer/yay/archive/v10.1.1.tar.gz
-       sha256sums = d6a33a0344ced57f0ec7a833e4236843fd80d2b29f1a513984d05b1fba7edddd
-
-pkgname = yay
-
diff --git a/alter-stable/any/yay/.gitignore b/alter-stable/any/yay/.gitignore
deleted file mode 100644 (file)
index 6b087fc..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-/*.tar.xz
-/*.tar.gz
-/*.tar.zst
-/pkg
-/src
-/yay
diff --git a/alter-stable/any/yay/PKGBUILD b/alter-stable/any/yay/PKGBUILD
deleted file mode 100644 (file)
index 9d7cb6e..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# Maintainer: Jguer <joaogg3@gmail.com>
-pkgname=yay
-pkgver=10.1.1
-pkgrel=1
-pkgdesc="Yet another yogurt. Pacman wrapper and AUR helper written in go."
-arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64')
-url="https://github.com/Jguer/yay"
-license=('GPL')
-depends=(
-  'libalpm.so>=12'
-  'sudo'
-  'git'
-)
-makedepends=(
-  'go'
-)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Jguer/yay/archive/v${pkgver}.tar.gz")
-sha256sums=('d6a33a0344ced57f0ec7a833e4236843fd80d2b29f1a513984d05b1fba7edddd')
-
-build() {
-  export GOPATH="$srcdir"/gopath
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_ENABLED=1
-
-  cd "$srcdir/$pkgname-$pkgver"
-  LDFLAGS="-extldflags \"${LDFLAGS}\"" \
-    make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" build
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" install
-}