blob: 2a17d3897994fd430ee7aa2bef859904a0806e3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Process this file with automake to produce an input makefile.
#
# Copyright (C) 2014, 2017, 2018 Patrick McDermott
#
# This file is part of opkg-opk.
#
# opkg-opk is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# opkg-opk is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
KEY = '2250 31F0 47FF E516 63ED 516F 1A45 9ECD E4D6 04BE'
if IN_GIT
PACKAGE_VERSION_GIT = $$(printf ' (%s)' \
"$$({ git describe --tags --dirty 2>/dev/null || \
printf '%s-g%s' \
"$$(git rev-list --count HEAD)" \
"$$(git describe --tags --dirty --always)"; \
} | sed 's|^.*/||')")
else
PACKAGE_VERSION_GIT =
endif
# PACKAGE_STRING is used in the test suite output and log.
# PACKAGE_VERSION can't be overridden. Automake ignores it in the IN_GIT
# conditional (and throws a warning), and setting it to $(PACKAGE_VERSION_GIT)
# outside the conditional causes PACKAGE_VERSION_GIT to reference itself.
# VERSION is not set here because it is used by:
# * Automake's distdir macro
# * Automake's distdir target (which checks for $(VERSION) in NEWS)
# * Our release target
PACKAGE_STRING = $(PACKAGE_NAME) $(PACKAGE_VERSION)$(PACKAGE_VERSION_GIT)
bin_PROGRAMS = opkg-opk/opkg-opk
if WITH_HELPERS
helpers_PROGRAMS = helpers/mknod
endif
opkg_opk_opkg_opk_SOURCES =
opkg_opk_opkg_opk_CFLAGS = \
$(WARN_CFLAGS) \
$(ASAN_CFLAGS)
opkg_opk_opkg_opk_CPPFLAGS = \
-DLOCALEDIR=\"$(localedir)\" \
-I"$(top_srcdir)/common"
$(ZLIB_CFLAGS)
opkg_opk_opkg_opk_LDADD = \
$(ASAN_CFLAGS) \
$(ZLIB_LIBS)
opkg_opk_opkg_opk_LINK = $(LINK) version.c
EXTRA_opkg_opk_opkg_opk_DEPENDENCIES = version.c
helpers_mknod_CFLAGS = \
$(WARN_CFLAGS) \
$(ASAN_CFLAGS)
helpers_mknod_CPPFLAGS = \
-DLOCALEDIR=\"$(localedir)\" \
-I"$(top_srcdir)/common"
helpers_mknod_LDADD = \
$(ASAN_CFLAGS)
CLEANFILES = version.c
CONFIG_CLEAN_FILES =
EXTRA_DIST = build-aux/config.rpath autogen.sh
version.c: $(opkg_opk_opkg_opk_OBJECTS) $(opkg_opk_opkg_opk_DEPENDENCIES)
$(AM_V_GEN)printf 'const char *PACKAGE_VERSION_GIT = "%s";\n' \
"$(PACKAGE_VERSION_GIT)" >version.c
really-clean: distclean
rm -Rf $(srcdir)/aclocal.m4 $(srcdir)/autom4te.cache/ \
$(srcdir)/configure \
$(srcdir)/config.h.in \
$(srcdir)/build-aux/ $(srcdir)/INSTALL $(srcdir)/Makefile.in \
$(srcdir)/ChangeLog
dist-hook:
if IN_GIT
printf 'Generated file. Do not edit.\n\n' 1>'$(distdir)/ChangeLog~'
GIT_DIR='$(srcdir)/.git' git log --stat --color=never \
1>>'$(distdir)/ChangeLog~'
mv '$(distdir)/ChangeLog~' '$(distdir)/ChangeLog'
endif
release:
sed "s/^Released: ????-??-??\$$/Released: $$(date '+%Y-%m-%d')/" \
'$(srcdir)/NEWS' >'$(srcdir)/NEWS~'
mv '$(srcdir)/NEWS~' '$(srcdir)/NEWS'
$(MAKE) distcheck
set -e; \
export GIT_DIR='$(srcdir)/.git'; \
export GIT_WORK_TREE='$(srcdir)'; \
git commit -m 'NEWS: Release $(PACKAGE) $(VERSION)' -- NEWS; \
git tag '$(PACKAGE)/$(VERSION)' HEAD; \
git push --tags origin master:master
md5sum $(DIST_ARCHIVES) >MD5SUMS
sha256sum $(DIST_ARCHIVES) >SHA256SUMS
set -e; \
sigs=''; \
for f in $(DIST_ARCHIVES); do \
gpg --local-user $(KEY) --armor --detach-sign $${f}; \
sigs="$${sigs} $${f}.asc"; \
done; \
ssh files@files.proteanos.com mkdir -p files/pub/$(PACKAGE); \
rsync -az --progress --stats $(DIST_ARCHIVES) $${sigs} \
MD5SUMS SHA256SUMS \
files@files.proteanos.com:files/pub/$(PACKAGE)/$(VERSION)/
'$(srcdir)/scripts/announce-release.sh' \
$(PACKAGE) $(VERSION) '$(PACKAGE_NAME)'
include $(top_srcdir)/opkg-opk/local.mk
include $(top_srcdir)/helpers/local.mk
include $(top_srcdir)/tests/local.mk
SUBDIRS = . po
|