ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ozone/mgar/pkg/py311/gar/gar.svn.mk
Revision: 11
Committed: Sat Jun 20 21:40:57 2026 UTC (4 weeks, 2 days ago) by operz
File size: 786 byte(s)
Log Message:
Add Python 3.11.15 recipe (OZSWpy311); update readline to link against ncurses (for Python curses module)

File Contents

# Content
1 # vim: ft=make ts=4 sw=4 noet
2 #
3 # $Id$
4 #
5 # Copyright 2008-2009 OpenCSW
6 #
7 # Redistribution and/or use, with or without modification, is
8 # permitted. This software is without warranty of any kind. The
9 # author(s) shall not be liable in the event that use of the
10 # software causes damage.
11 #
12 # gar.svn.mk - Targets for working with svn
13 #
14
15 scm-help:
16 @cat $(GARDIR)/scm-help
17
18 scm-update-all: scm-update-package scm-update-gar
19
20 scm-update-package:
21 $(SVN) --ignore-externals up
22
23 scm-update-gar:
24 cd $(GARDIR) && $(SVN) --ignore-externals up
25
26 scm-update-ignores:
27 $(GARDIR)/bin/svnignore work cookies download
28
29 scm-tag-release:
30 $(SVN) cp ../trunk ../tags/$(NAME)-$(VERSION)$(SPKG_REVSTAMP)
31
32 .PHONY: scm-help scm-update-all scm-update-package scm-update-gar scm-update-ignores scm-tag-release