Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 30514200AF7 for ; Tue, 14 Jun 2016 10:29:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2ED1C160A47; Tue, 14 Jun 2016 08:29:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4F42C1602C5 for ; Tue, 14 Jun 2016 10:29:04 +0200 (CEST) Received: (qmail 57967 invoked by uid 500); 14 Jun 2016 08:29:03 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 57958 invoked by uid 99); 14 Jun 2016 08:29:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2016 08:29:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 09EF1C200B for ; Tue, 14 Jun 2016 08:29:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.426 X-Spam-Level: X-Spam-Status: No, score=-0.426 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id K7L8V-bVc9DF for ; Tue, 14 Jun 2016 08:29:00 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with ESMTP id 2E2785FBF9 for ; Tue, 14 Jun 2016 08:29:00 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 837B8E0456 for ; Tue, 14 Jun 2016 08:28:59 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 821573A00EC for ; Tue, 14 Jun 2016 08:28:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1748356 - /directory/site/trunk/content/api/developer-guide.mdtext Date: Tue, 14 Jun 2016 08:28:59 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160614082859.821573A00EC@svn01-us-west.apache.org> archived-at: Tue, 14 Jun 2016 08:29:05 -0000 Author: elecharny Date: Tue Jun 14 08:28:59 2016 New Revision: 1748356 URL: http://svn.apache.org/viewvc?rev=1748356&view=rev Log: Updated the developer guide to reflect the change made on the package storage Modified: directory/site/trunk/content/api/developer-guide.mdtext Modified: directory/site/trunk/content/api/developer-guide.mdtext URL: http://svn.apache.org/viewvc/directory/site/trunk/content/api/developer-guide.mdtext?rev=1748356&r1=1748355&r2=1748356&view=diff ============================================================================== --- directory/site/trunk/content/api/developer-guide.mdtext (original) +++ directory/site/trunk/content/api/developer-guide.mdtext Tue Jun 14 08:28:59 2016 @@ -282,38 +282,33 @@ For the record, here is the script shell ### Publish Source and Binary Distribution Packages -First of all, create a new directory on people.apache.org/public_html to store the pacckages : +The sources, binaries and their signatures, have to be pushed in a place where they can be downloaded by the other committers, in order to be chekced while validating the release. As the ~/people.apache.org server is not anymore available for that purpose, we use the [distribution](https://dist.apache.org/repos/dist/dev/directory) space for that purpose. - $ ssh people.apache.org - $ mkdir public_html/ldap-api- - $ exit +If you haven't chekced out this space, do it now : -Then copy the packages : + $ mkdir -p ~/apacheds/dist/dev/directory + $ svn co https://dist.apache.org/repos/dist/dev/directory ~/apacheds/dist/dev/directory + +That will checkout the full project distributions. + +You may want to checkout only the part that you are going to generate, to avoid getting Gb of data : + + $ mkdir -p ~/apacheds/dist/dev/directory/api + $ svn co https://dist.apache.org/repos/dist/dev/directory/api ~/apacheds/dist/dev/directory/api + +Now, create a sub-directory for the version you have generated (here, for version 1.0.0-RC1) : + + $ mkdir ~/apacheds/dist/dev/directory/api/1.0.0-RC1 + +and copy the packages and signature to this area : $ cd distributions/target - $ scp apache-ldap-api--* people.apache.org:public_html/ldap-api-/ + $ cp apache-ldap-api--* ~/apacheds/dist/dev/directory/api/1.0.0-RC1 -Update your index.html file on people.apach.org/public_html to make the packages visible. Here is an example of possible content : +Last, not least, commit your changes -

Last Directory LDAP API 1.0.0-M16 tarballs

- apache-ldap-api-1.0.0-M16-bin.tar.gz
- apache-ldap-api-1.0.0-M16-bin.tar.gz.asc
- apache-ldap-api-1.0.0-M16-bin.tar.gz.md5
- apache-ldap-api-1.0.0-M16-bin.tar.gz.sha1
- apache-ldap-api-1.0.0-M16-bin.zip
- apache-ldap-api-1.0.0-M16-bin.zip.asc
- apache-ldap-api-1.0.0-M16-bin.zip.md5
- apache-ldap-api-1.0.0-M16-bin.zip.sha1
- apache-ldap-api-1.0.0-M16-src.tar.gz
- apache-ldap-api-1.0.0-M16-src.tar.gz.asc
- apache-ldap-api-1.0.0-M16-src.tar.gz.md5
- apache-ldap-api-1.0.0-M16-src.tar.gz.sha1
- apache-ldap-api-1.0.0-M16-src.zip
- apache-ldap-api-1.0.0-M16-src.zip.asc
- apache-ldap-api-1.0.0-M16-src.zip.md5
- apache-ldap-api-1.0.0-M16-src.zip.sha1
- apache-ldap-api-1.0.0-M16.pom
- apache-ldap-api-1.0.0-M16.pom.asc
+ $ scn add ~/apacheds/dist/dev/directory/api/1.0.0-RC1 + $ scn ci ~/apacheds/dist/dev/directory/api/1.0.0-RC1 -m "Apache LDAP API 1.0.0-RC1 packages" ### Test the New Version in ApacheDS and Studio