From owner-freebsd-gnome@FreeBSD.ORG Sun May 12 04:46:40 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A7AD7676; Sun, 12 May 2013 04:46:40 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com [209.85.220.47]) by mx1.freebsd.org (Postfix) with ESMTP id 7E9A4A6E; Sun, 12 May 2013 04:46:40 +0000 (UTC) Received: by mail-pa0-f47.google.com with SMTP id kl13so3834216pab.34 for ; Sat, 11 May 2013 21:46:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:to:subject:from:cc:x-send-pr-version:x-gnats-notify :message-id:date; bh=9qF0vfZQxx6eKGwI5e04yVkOwGA4FhBtb1es4137TIM=; b=E+sn76P5fBTpS274B5GJk/EM2KR/L8WIchc3wwxNLRGPVTgjD57EBMcAHr3e2LEGUf Q/9fg4UfRCnZI8RprgUZlW+b3c6jrHf/e+/iBWnC7vpPCc3nGK6+4lfe1oJ1FX9uuVSY C8DWFARD0ojicXfj3TbC1WIEqfVBZbRs5veyMNkTzoFzIFvWFa+I3kO1rMntaAdcdqpC gOMDhehwaopiMBxCJuutNm2ynTMSL8m3sql6ljuWhaDZHdgXN+vm/OdOfkuJ0LvL2nVc oi4UA1e4VmO9j6itikrB5WBc5eBQm2NRVp+sYmsTleymkHff7uK1LXQ/LXfshJxTuAXC KVtw== X-Received: by 10.66.25.80 with SMTP id a16mr24143156pag.97.1368333994693; Sat, 11 May 2013 21:46:34 -0700 (PDT) Received: from freebsd-RELENG_9-amd64.elysium (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id vb8sm8790276pbc.11.2013.05.11.21.46.32 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 11 May 2013 21:46:33 -0700 (PDT) Received: by freebsd-RELENG_9-amd64.elysium (Postfix, from userid 1001) id 1D44B39FFB; Sun, 12 May 2013 14:46:29 +1000 (EST) To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] textproc/libxslt: Put the fastest MASTER_SITE first From: Kubilay Kocak X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20130512044629.1D44B39FFB@freebsd-RELENG_9-amd64.elysium> Date: Sun, 12 May 2013 14:46:29 +1000 (EST) Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 May 2013 04:46:40 -0000 >Submitter-Id: current-users >Originator: Kubilay Kocak >Organization: >Confidential: no >Synopsis: [PATCH] textproc/libxslt: Put the fastest MASTER_SITE first >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 9.1-STABLE amd64 >Environment: System: FreeBSD freebsd-RELENG_9-amd64.elysium 9.1-STABLE FreeBSD 9.1-STABLE #0 r249542: Sun Apr 21 21:01:52 EST >Description: gd.tuwien.ac.at is a mirror for the libxml2 project, and frequently exhibits extremely slow throughput (<= 8k/sec) causing installation and upgrade to unecessarily take a long time. This change also matches the textproc/libxml2 MASTER_SITES order. Switch the order of MASTER_SITES, making the primary download host [1] of the libxml2 project first in the list. make checksum confirms distinfo match [1] http://www.xmlsoft.org/downloads.html Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_7 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- libxslt-1.1.28_1.patch begins here --- diff -ruN /usr/ports/textproc/libxslt/Makefile ./Makefile --- /usr/ports/textproc/libxslt/Makefile 2013-05-04 02:36:39.000000000 +1000 +++ ./Makefile 2013-05-12 13:52:59.824713312 +1000 @@ -1,12 +1,12 @@ # Created by: Ade Lovett -# $FreeBSD: textproc/libxslt/Makefile 317220 2013-05-03 16:36:39Z ehaupt $ +# $FreeBSD: head/textproc/libxslt/Makefile 317220 2013-05-03 16:36:39Z ehaupt $ PORTNAME= libxslt PORTVERSION= 1.1.28 PORTREVISION?= 1 CATEGORIES?= textproc gnome -MASTER_SITES= ftp://gd.tuwien.ac.at/pub/libxml/ \ - ftp://xmlsoft.org/libxml2/ +MASTER_SITES= ftp://xmlsoft.org/libxml2/ \ + ftp://gd.tuwien.ac.at/pub/libxml/ DIST_SUBDIR= gnome2 MAINTAINER?= gnome@FreeBSD.org --- libxslt-1.1.28_1.patch ends here ---