* [gentoo-commits] proj/openrc:openrc-0.13.x commit in: mk/
@ 2014-10-26 18:33 William Hubbs
0 siblings, 0 replies; 4+ messages in thread
From: William Hubbs @ 2014-10-26 18:33 UTC (permalink / raw
To: gentoo-commits
commit: 5bdd08e0e74bb071e775c706cf88b7bd7c48a572
Author: Johan Bergström <bugs <AT> bergstroem <DOT> nu>
AuthorDate: Wed Oct 22 22:59:57 2014 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Oct 26 18:32:46 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=5bdd08e0
Pass ncurses cflags to build
Fixes #25
Note from William Hubbs:
The original patch overwrote CFLAGS. I modified this patch to add the
ncurses cflags to CPPFLAGS instead of overwriting CFLAGS.
---
mk/termcap.mk | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/mk/termcap.mk b/mk/termcap.mk
index 6f590da..2d6ad01 100644
--- a/mk/termcap.mk
+++ b/mk/termcap.mk
@@ -1,11 +1,12 @@
ifeq (${MKTERMCAP},ncurses)
- LTERMCAP:= $(shell pkg-config ncurses --libs 2> /dev/null)
+TERMCAP_CFLAGS:= $(shell pkg-config ncurses --cflags 2> /dev/null)
+LTERMCAP:= $(shell pkg-config ncurses --libs 2> /dev/null)
ifeq ($(LTERMCAP),)
LIBTERMCAP?= -lncurses
else
LIBTERMCAP?= $(LTERMCAP)
endif
-CPPFLAGS+= -DHAVE_TERMCAP
+CPPFLAGS+= -DHAVE_TERMCAP ${TERMCAP_CFLAGS}
LDADD+= ${LIBTERMCAP}
else ifeq (${MKTERMCAP},termcap)
LIBTERMCAP?= -ltermcap
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/openrc:openrc-0.13.x commit in: mk/
@ 2015-01-15 16:01 William Hubbs
0 siblings, 0 replies; 4+ messages in thread
From: William Hubbs @ 2015-01-15 16:01 UTC (permalink / raw
To: gentoo-commits
commit: 50e99aa30aee155865842e0a198fda473b647096
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Mon Dec 8 15:47:42 2014 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Jan 13 07:07:02 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=50e99aa3
Do not call the shell to evaluate CHANGELOG_LIMIT
The git log command understands dates such as "1 year ago", so there is
no need to use the date command.
---
mk/dist.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mk/dist.mk b/mk/dist.mk
index 6c37dc8..4f7babb 100644
--- a/mk/dist.mk
+++ b/mk/dist.mk
@@ -8,7 +8,7 @@ DISTFILE?= ${DISTPREFIX}.tar.bz2
CLEANFILES+= ${NAME}-*.tar.bz2
-CHANGELOG_LIMIT?= --after=$(shell date --utc --date="1 year ago" +%Y-%m-%d)
+CHANGELOG_LIMIT?= --after="1 year ago"
_SNAP_SH= date -u +%Y%m%d%H%M
_SNAP:= $(shell ${_SNAP_SH})
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/openrc:openrc-0.13.x commit in: mk/
@ 2015-01-15 16:01 William Hubbs
0 siblings, 0 replies; 4+ messages in thread
From: William Hubbs @ 2015-01-15 16:01 UTC (permalink / raw
To: gentoo-commits
commit: b177b7924250058d1ad9f8d758dcf8182099341d
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Sun Dec 7 23:16:48 2014 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Jan 13 07:07:02 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=b177b792
Add target to create ChangeLog
This was added by request because some users are requesting a ChangeLog.
This fixes #29.
---
mk/dist.mk | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/mk/dist.mk b/mk/dist.mk
index 82fb8cb..6c37dc8 100644
--- a/mk/dist.mk
+++ b/mk/dist.mk
@@ -8,12 +8,17 @@ DISTFILE?= ${DISTPREFIX}.tar.bz2
CLEANFILES+= ${NAME}-*.tar.bz2
+CHANGELOG_LIMIT?= --after=$(shell date --utc --date="1 year ago" +%Y-%m-%d)
+
_SNAP_SH= date -u +%Y%m%d%H%M
_SNAP:= $(shell ${_SNAP_SH})
SNAP= ${_SNAP}
SNAPDIR= ${DISTPREFIX}-${SNAP}
SNAPFILE= ${SNAPDIR}.tar.bz2
+changelog:
+ git log ${CHANGELOG_LIMIT} --format=medium > ChangeLog
+
dist:
git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/openrc:openrc-0.13.x commit in: mk/
@ 2015-02-18 18:59 William Hubbs
0 siblings, 0 replies; 4+ messages in thread
From: William Hubbs @ 2015-02-18 18:59 UTC (permalink / raw
To: gentoo-commits
commit: 52220d5df177353b222c16bd941261501fce9ddb
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Wed Feb 18 18:46:51 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Feb 18 18:49:39 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=52220d5d
ChangeLog: show authors and committers
---
mk/dist.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mk/dist.mk b/mk/dist.mk
index 4f7babb..aa07dbb 100644
--- a/mk/dist.mk
+++ b/mk/dist.mk
@@ -17,7 +17,7 @@ SNAPDIR= ${DISTPREFIX}-${SNAP}
SNAPFILE= ${SNAPDIR}.tar.bz2
changelog:
- git log ${CHANGELOG_LIMIT} --format=medium > ChangeLog
+ git log ${CHANGELOG_LIMIT} --format=full > ChangeLog
dist:
git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-02-18 18:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-18 18:59 [gentoo-commits] proj/openrc:openrc-0.13.x commit in: mk/ William Hubbs
-- strict thread matches above, loose matches on Subject: below --
2015-01-15 16:01 William Hubbs
2015-01-15 16:01 William Hubbs
2014-10-26 18:33 William Hubbs
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox