From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E873B1381F3 for ; Fri, 19 Jul 2013 11:23:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABF6BE0C1C; Fri, 19 Jul 2013 11:23:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 246FEE0C1C for ; Fri, 19 Jul 2013 11:23:18 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FD7233DBAB for ; Fri, 19 Jul 2013 11:23:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2CE01E4B05 for ; Fri, 19 Jul 2013 11:23:16 +0000 (UTC) From: "Jauhien Piatlicki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jauhien Piatlicki" Message-ID: <1374232975.0f405aa40f4bb6b7c2811d476c80a84f5d991975.jauhien@gentoo> Subject: [gentoo-commits] proj/g-sorcery:master commit in: gs_ctan/ X-VCS-Repository: proj/g-sorcery X-VCS-Files: gs_ctan/ctan_db.py X-VCS-Directories: gs_ctan/ X-VCS-Committer: jauhien X-VCS-Committer-Name: Jauhien Piatlicki X-VCS-Revision: 0f405aa40f4bb6b7c2811d476c80a84f5d991975 X-VCS-Branch: master Date: Fri, 19 Jul 2013 11:23:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: de723c2a-4f4c-407f-a481-30bb74df3d88 X-Archives-Hash: 0af7cbd691c7d70858d2777866de8687 commit: 0f405aa40f4bb6b7c2811d476c80a84f5d991975 Author: Jauhien Piatlicki (jauhien) gmail com> AuthorDate: Fri Jul 19 11:22:55 2013 +0000 Commit: Jauhien Piatlicki gmail com> CommitDate: Fri Jul 19 11:22:55 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/g-sorcery.git;a=commit;h=0f405aa4 gs_ctan/ctan_db: homepage --- gs_ctan/ctan_db.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gs_ctan/ctan_db.py b/gs_ctan/ctan_db.py index 034f98d..1623375 100644 --- a/gs_ctan/ctan_db.py +++ b/gs_ctan/ctan_db.py @@ -150,11 +150,14 @@ class CtanDB(PackageDB): if "catalogue-ctan" in entry: source_type = "zip" base_src_uri = "ftp://tug.ctan.org/pub/tex-archive" - catalogue = entry["catalogue-ctan"][:-len(realname)] + catalogue = entry["catalogue-ctan"] + homepage = "http://www.ctan.org/tex-archive" + catalogue + catalogue = catalogue[:-len(realname)] else: source_type = "tar.xz" base_src_uri = "http://mirror.ctan.org/systems/texlive/tlnet/archive/" catalogue = "" + homepage = "http://www.ctan.org/tex-archive/systems/texlive/tlnet" dependencies = serializable_elist(separator="\n\t") @@ -166,7 +169,7 @@ class CtanDB(PackageDB): ebuild_data = {"realname" : realname, "description" : description, - "homepage" : "http://tug.org/texlive/", + "homepage" : homepage, "license" : license, "source_type" : source_type, "base_src_uri" : base_src_uri,