Package Details: distro-info-data 0.60-1

Git Clone URL: https://aur.archlinux.org/distro-info-data.git (read-only, click to copy)
Package Base: distro-info-data
Description: information about the distributions' releases (data files)
Upstream URL: http://packages.debian.org/sid/distro-info-data
Licenses: MIT
Submitter: JonnyJD
Maintainer: Auerhuhn
Last Packager: Auerhuhn
Votes: 3
Popularity: 0.000000
First Submitted: 2013-04-09 23:07 (UTC)
Last Updated: 2024-01-02 08:18 (UTC)

Latest Comments

Auerhuhn commented on 2023-08-04 15:46 (UTC)

@ahmedmoselhi @dos1 Have you had a chance to look at the proposed patch?

Auerhuhn commented on 2023-06-16 20:55 (UTC)

Here’s a patch that works for me:

diff --git a/PKGBUILD b/PKGBUILD
index de11886..25c5620 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,30 +2,29 @@
 # Contributor: Johannes Dewender   arch at JonnyJD dot net

 pkgname=distro-info-data
-pkgver=0.56
+pkgver=0.58
 pkgrel=1
 pkgdesc="information about the distributions' releases (data files)"
 arch=('any')
 url="http://packages.debian.org/sid/distro-info-data"
 license=('MIT')
 depends=()
-makedepends=('python2-bin')
+checkdepends=('python')
 options=(!emptydirs)
 source=(http://ftp.debian.org/debian/pool/main/d/$pkgname/${pkgname}_${pkgver}.tar.xz)
-sha256sums=('74b01674a64db5911bce62e843e3822c12ebae40b3587c3432fc25a8fd606cfe')
+sha256sums=('7404a3dc5d50e73cd6b6a7cb82a7dfbe0c9a631a161bcce9cf339fb3726850f4')

 build() {
-  cd "$srcdir/$pkgname"
-  sed -i '1s/python$/python2/' validate-csv-data
+  cd "$srcdir/$pkgname-$pkgver"
 }

 check() {
-  cd "$srcdir/$pkgname"
+  cd "$srcdir/$pkgname-$pkgver"
   make test
 }

 package() {
-  cd "$srcdir/$pkgname"
+  cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install
   install -Dm644 debian/copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }

micwoj92 commented on 2023-04-09 01:48 (UTC)

Should depend on python2, not python2-bin.

l3rc10 commented on 2020-05-03 23:51 (UTC)

please update PKGBUILD with new version 0.44 (SHA256 96f48df8f526de8f5ff0ece6dfaac00722200a3910ab108497517b11c866d0d0)

Alad commented on 2014-05-31 18:14 (UTC)

Also please update to sha256sums or higher

Alad commented on 2014-05-31 18:11 (UTC)

Outdated/404 New version: 0.21 Fixed link: http://ftp.de.debian.org/debian/pool/main/d/distro-info-data/distro-info-data_0.21.tar.xz

JonnyJD commented on 2013-06-16 12:05 (UTC)

Ah, it looks like debian also removed 0.13 from the ftp server. Not sure what they do that for, but that means new installations really did need the update, otherwise the first download fails. You know, you could have told so. It is usually *not* such a big deal when a package is just outdated.

JonnyJD commented on 2013-06-16 08:38 (UTC)

The package isn't broken, it is only out-of-date, which you already flagged. Anyways, thanks for the notification. I updated the package. PKGBUILD also available in a git repository: https://github.com/JonnyJD/PKGBUILDs/blob/master/_debian/distro-info-data/PKGBUILD

<deleted-account> commented on 2013-06-16 06:38 (UTC)

This package is currently broken, apply the following patch to PKGBUILD for fixing it. --- PKGBUILD-old 2013-06-16 12:07:23.526373387 +0530 +++ PKGBUILD 2013-06-16 12:02:30.200851586 +0530 @@ -1,6 +1,6 @@ # Contributor: Johannes Dewender arch at JonnyJD dot net pkgname=distro-info-data -pkgver=0.13 +pkgver=0.16 pkgrel=1 pkgdesc="information about the distributions' releases (data files)" arch=('any') @@ -10,7 +10,7 @@ makedepends=('python2') options=(!emptydirs) source=(http://ftp.debian.org/debian/pool/main/d/$pkgname/${pkgname}_$pkgver.tar.gz) -md5sums=('4e2fdb6691244dc2e6bdb4ef3ad8ccbb') +md5sums=('12b88c7459b779885290db3a31229fc8') build() { cd "$srcdir/$pkgname-$pkgver"