From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1441280-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3459B158094 for <garchives@archives.gentoo.org>; Sat, 1 Oct 2022 09:40:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 668F7E0A8A; Sat, 1 Oct 2022 09:40:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4DC2CE0A8A for <gentoo-commits@lists.gentoo.org>; Sat, 1 Oct 2022 09:40:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50AE0341035 for <gentoo-commits@lists.gentoo.org>; Sat, 1 Oct 2022 09:40:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD2F855B for <gentoo-commits@lists.gentoo.org>; Sat, 1 Oct 2022 09:40:09 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1664617098.7f33c3f2ea82600ad53498340f804520871876f0.ulm@gentoo> Subject: [gentoo-commits] proj/nxml-gentoo-schemas:master commit in: / X-VCS-Repository: proj/nxml-gentoo-schemas X-VCS-Files: .gitignore Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7f33c3f2ea82600ad53498340f804520871876f0 X-VCS-Branch: master Date: Sat, 1 Oct 2022 09:40:09 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b24ad2ca-8f2f-42f3-a594-9bf6077f623d X-Archives-Hash: 13efd03622b92f99b72fb0e3bcc5a7fb commit: 7f33c3f2ea82600ad53498340f804520871876f0 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat Oct 1 09:38:18 2022 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Oct 1 09:38:18 2022 +0000 URL: https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/commit/?id=7f33c3f2 Makefile: Build from sources in submodules Instead of fetching files over the network. Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> .gitignore | 2 -- Makefile | 15 ++++----------- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index cf60873..b5624b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1 @@ -*.dtd -*.stamp *.tar.xz diff --git a/Makefile b/Makefile index 57ca512..2a37157 100644 --- a/Makefile +++ b/Makefile @@ -18,17 +18,10 @@ dist: Makefile LICENCE schemas.xml $(RNCS) tar -cJf $(P).tar.xz --transform='s%^%$(P)/%' $^ clean: - rm -f *.dtd *.stamp *.tar.xz + rm -f *.tar.xz -%.rnc: %.dtd +%.rnc: dtd/%.dtd trang -I dtd -O rnc $< $@ -$(DTDS): - wget -N --no-verbose https://www.gentoo.org/dtd/$@ - -devbook.rnc: devbook.stamp - -devbook.stamp: - wget -N --no-verbose \ - https://gitweb.gentoo.org/proj/devmanual.git/plain/devbook.rnc - touch -r devbook.rnc $@ +devbook.rnc: devmanual/devbook.rnc + cp $< $@