X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-oi0-f67.google.com (mail-oi0-f67.google.com [209.85.218.67]) by lists.alpinelinux.org (Postfix) with ESMTP id 551E65C43A9 for ; Fri, 4 Nov 2016 01:09:29 +0000 (GMT) Received: by mail-oi0-f67.google.com with SMTP id 62so9800127oif.1 for ; Thu, 03 Nov 2016 18:09:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=kc4OxUY+S8/u/3Hq+V6hGKXU2fA9tBx+HBPbej8QOVM=; b=0lE5cxwZtLdRUIeS1s+c1MFy91N3rHCH34YzvR7Uffe5wG6NZiclp1sj5R4JPQcpj0 6MBfS6vYE7YFYn6eA4q91/gcF6pye5qzReUpZogCi4VoqqO8b6y+n+bc0xdOSCkqLLTR jyuA/fdjeI9HVITPsZLLX4xxS0BA8/3f+3gYm9fdGAHpO7mkQ0ExzNM5uweC8ybltj3+ 3BuaCzarQD5BuRELhEK5QFHM8JvFp8/xA4cAYv/KTUmzdXPMdnTk70n1kg4a3gOYbVQD aaXI7qoHN8JPzYeudc7+kgKm6A9xV8ss9Ixo5oP7WNnsPHYqo8rUmG20B4GeXyiix3OW /Txg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=kc4OxUY+S8/u/3Hq+V6hGKXU2fA9tBx+HBPbej8QOVM=; b=TySe7mnJtJupTyg6SrSJpsm8yJJsRc9HiL1yJqC6moFk0OF5MsRSDzskUn4LGnUiUZ /L4FYMJ/DGokf5vjlyEY+4jeAw3W7oLN0H6pFtecQG8jFKodKjF1MnSgAO3tkxy3VdAL wLzx7qNtMafI5NX9VaykCqhC9o04E6nwMQoxt3hC8gqSy/vTLmj7rvtmiZ+VeCUaNT1q WPdQSszz+c1z4qQCfFUn8Y0dXZgwCKe6f/1LIGSe8YwLSBcoQtH7UT2KOWkf53LiM0xx F34lMP8yvEP+bmPHTsYdvfjZpAnsrVx8X0SJQuONKk/nMKJ+rlBF1gB34t9ki09Tiv8K PMNw== X-Gm-Message-State: ABUngvcEpEYVufiGezlzqkXooSkvMvPG3ViEumtzHMZ8GBq6deF10hhHk3CqrjgYVjsWyw== X-Received: by 10.157.49.26 with SMTP id e26mr8548168otc.121.1478218726837; Thu, 03 Nov 2016 17:18:46 -0700 (PDT) Received: from localhost.localdomain (104-180-35-43.lightspeed.wchtks.sbcglobal.net. [104.180.35.43]) by smtp.gmail.com with ESMTPSA id x55sm3008990otx.27.2016.11.03.17.18.45 (version=TLS1 cipher=AES128-SHA bits=128/128); Thu, 03 Nov 2016 17:18:46 -0700 (PDT) From: Corey Oliver To: alpine-aports@lists.alpinelinux.org Cc: Corey Oliver Subject: [alpine-aports] [PATCH 1/2] testing/libzen: fix and move from unmaintained Date: Thu, 3 Nov 2016 19:18:09 -0500 Message-Id: <20161104001810.927-1-corey.jon.oliver@gmail.com> X-Mailer: git-send-email 2.9.3 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- {unmaintained => testing}/libzen/APKBUILD | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) rename {unmaintained => testing}/libzen/APKBUILD (89%) diff --git a/unmaintained/libzen/APKBUILD b/testing/libzen/APKBUILD similarity index 89% rename from unmaintained/libzen/APKBUILD rename to testing/libzen/APKBUILD index 0ca3ea6..3faab2f 100644 --- a/unmaintained/libzen/APKBUILD +++ b/testing/libzen/APKBUILD @@ -1,5 +1,5 @@ # Contributor: Carlo Landmeter -# Maintainer: +# Maintainer: Corey Oliver pkgname=libzen pkgver=0.4.31 pkgrel=0 @@ -32,11 +32,9 @@ build() { ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --localstatedir=/var \ + --prefix=/usr \ + --enable-shared \ \ + --disable-static \ || return 1 make || return 1 } -- 2.9.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---