* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-06-30 19:56 Matthias Schwarzott
0 siblings, 0 replies; 46+ messages in thread
From: Matthias Schwarzott @ 2011-06-30 19:56 UTC (permalink / raw
To: gentoo-commits
commit: a36dc6bb320ab9f08b5db8d6b24740f36d18ab51
Author: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 8 10:50:52 2011 +0000
Commit: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 8 10:50:52 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=a36dc6bb
make dist: Add check for uncommited changes
---
Makefile | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 5c69b7c..802c764 100644
--- a/Makefile
+++ b/Makefile
@@ -43,11 +43,15 @@ install:
@install -m 0644 rc/confd/udev.confd $(DESTDIR)$(CONFD)/udev
@install -m 0755 rc/baselayout1/* $(DESTDIR)$(RCADDON)
+check-git-repository:
+ git diff --quiet || { echo 'STOP, you have uncommitted changes in the working directory' ; false ; }
+ git diff --cached --quiet || { echo 'STOP, you have uncommitted changes in the index' ; false ; }
+
test:
@echo "Running tests"
@./test-kv.sh
-dist: test
+dist: check-git-repository test
git archive --format=tar --prefix=$(DESTNAME)/ HEAD | bzip2 > $(DESTNAME).tar.bz2
.PHONY: install test
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-07-08 15:34 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-07-08 15:34 UTC (permalink / raw
To: gentoo-commits
commit: 1c8eb740ce35dee38eec57c6a12dc23d116ae554
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Fri Jul 8 15:17:22 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Jul 8 15:31:44 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=1c8eb740
use destdir only in install target
Destdir should not have a value assigned to it; it should only be used
in the install target of the Makefile.
---
Makefile | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index d308682..202d1b6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-DESTDIR ?=
LIBDIR ?= lib
LIBUDEV ?= /lib/udev
RULESDIR ?= $(LIBUDEV)/rules.d
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-07-12 16:05 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-07-12 16:05 UTC (permalink / raw
To: gentoo-commits
commit: b86dfd3b1b35b6d028401e00d359c9ab80c5bde3
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 12 15:44:24 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Jul 12 15:44:24 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=b86dfd3b
fix permissions on rules and modprobe configurations
---
Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 202d1b6..69fd4fb 100644
--- a/Makefile
+++ b/Makefile
@@ -31,8 +31,8 @@ all:
install:
@install -d $(DESTDIR)$(LIBUDEV) $(DESTDIR)$(RULESDIR) $(DESTDIR)$(MODPROBE_DIR) $(DESTDIR)$(INITD) $(DESTDIR)$(CONFD) $(DESTDIR)$(RCADDON)
- @install modprobe.d/*.conf $(DESTDIR)$(MODPROBE_DIR)
- @install rules/??-*.rules $(DESTDIR)$(RULESDIR)
+ @install -m 0644 modprobe.d/*.conf $(DESTDIR)$(MODPROBE_DIR)
+ @install -m 0644 rules/??-*.rules $(DESTDIR)$(RULESDIR)
@install -m 0755 $(HELPERS) $(DESTDIR)$(LIBUDEV)
@install -m 0644 $(HELPERS_NOEXE) $(DESTDIR)$(LIBUDEV)
@install -m 0755 $(INIT_SCRIPTS) $(DESTDIR)$(INITD)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-07-15 10:21 Matthias Schwarzott
0 siblings, 0 replies; 46+ messages in thread
From: Matthias Schwarzott @ 2011-07-15 10:21 UTC (permalink / raw
To: gentoo-commits
commit: 025e215713e1c2abefc06a5cc4f7715cd0f80c5c
Author: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 15 10:18:26 2011 +0000
Commit: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 10:18:26 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=025e2157
let "make test" and "make check" run the tests
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 287e094..f6b2535 100644
--- a/Makefile
+++ b/Makefile
@@ -47,7 +47,7 @@ check-git-repository:
git diff --quiet || { echo 'STOP, you have uncommitted changes in the working directory' ; false ; }
git diff --cached --quiet || { echo 'STOP, you have uncommitted changes in the index' ; false ; }
-test:
+check test:
@cd test; ./run_test.sh
dist: check-git-repository test
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-09-06 16:27 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-09-06 16:27 UTC (permalink / raw
To: gentoo-commits
commit: 1f19637fa837356738cbafbff42a3247355ce671
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 6 16:26:08 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Sep 6 16:26:08 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=1f19637f
Add LIBDIR variable to Makefile
---
Makefile | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 67ef236..fed89ed 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
-LIBUDEV ?= /lib/udev
+LIBDIR ?= /lib
+LIBUDEV ?= $(LIBDIR)/udev
RULESDIR ?= $(LIBUDEV)/rules.d
SYSCONFDIR ?= /etc
CONFD ?= $(SYSCONFDIR)/conf.d
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-09-09 17:04 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-09-09 17:04 UTC (permalink / raw
To: gentoo-commits
commit: e3f3ff48c14e0b90cf51f519d9e39471c9ef65ac
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 17:02:27 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 17:02:27 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=e3f3ff48
Revert "Add LIBDIR variable to Makefile"
This reverts commit 1f19637fa837356738cbafbff42a3247355ce671.
This is being reverted due to Matthias' request.
---
Makefile | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index fed89ed..67ef236 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,4 @@
-LIBDIR ?= /lib
-LIBUDEV ?= $(LIBDIR)/udev
+LIBUDEV ?= /lib/udev
RULESDIR ?= $(LIBUDEV)/rules.d
SYSCONFDIR ?= /etc
CONFD ?= $(SYSCONFDIR)/conf.d
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-09-09 17:07 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-09-09 17:07 UTC (permalink / raw
To: gentoo-commits
commit: ad0a001765a21cbe15e5ea8274f1fd35acec5a41
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 17:06:19 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 17:06:19 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=ad0a0017
Remove reference to LIBDIR from all target
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 67ef236..b88c1bd 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ HELPERS_NOEXE = \
helpers/shell-compat-KV.sh
all:
- @echo "Run make install DESTDIR= LIBDIR=lib"
+ @echo "Run make install DESTDIR="
install:
@install -d $(DESTDIR)$(LIBUDEV)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-10-30 23:57 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-10-30 23:57 UTC (permalink / raw
To: gentoo-commits
commit: 67f11ceb548f69b005bcf0576adcf1badbc7e511
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 30 23:46:04 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 23:46:04 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=67f11ceb
Update makefile dist target and add snapshot target
The snapshot target makes a tarball named udev-gentoo-scripts.tar.bz2
which consists of whatever is at the current head of the master branch.
The dist target makes a tarball based on the tag set in the VERSION
makefile variable. This makes it possible to recreate a tarball of any
released version of the scripts by doing make VERSION=whatever dist.
---
Makefile | 17 +++++++++++------
1 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/Makefile b/Makefile
index 3fbfda4..dfe1862 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,7 @@
+PACKAGE = udev-gentoo-scripts
+VERSION = v4
+DISTNAME = $(PACKAGE)-$(VERSION)
+
LIBUDEV ?= /lib/udev
RULESDIR ?= $(LIBUDEV)/rules.d
SYSCONFDIR ?= /etc
@@ -5,10 +9,6 @@ CONFD ?= $(SYSCONFDIR)/conf.d
INITD ?= $(SYSCONFDIR)/init.d
MODPROBE_DIR ?= $(SYSCONFDIR)/modprobe.d
-VERSION = $(shell git describe --tags)
-
-DESTNAME = udev-gentoo-scripts-$(VERSION)
-
HELPERS = \
helpers/net.sh \
helpers/write_root_link_rule
@@ -35,8 +35,13 @@ check-git-repository:
check test:
@cd test; ./run_test.sh
-dist: check-git-repository test
- git archive --format=tar --prefix=$(DESTNAME)/ HEAD | bzip2 > $(DESTNAME).tar.bz2
+dist:
+ git archive --format=tar --prefix=$(DISTNAME)/ $(VERSION) | \
+ bzip2 > $(DISTNAME).tar.bz2
+
+snapshot: check-git-repository
+ git archive --format=tar --prefix=$(PACKAGE)/ HEAD | \
+ bzip2 > $(PACKAGE).tar.bz2
.PHONY: install test
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-11-02 18:15 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-11-02 18:15 UTC (permalink / raw
To: gentoo-commits
commit: 7080701fa346a70ac527f370176dba864d7967ed
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 2 18:13:27 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Nov 2 18:13:27 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=7080701f
Release udev-gentoo-scripts-5
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index dfe1862..d824cde 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-gentoo-scripts
-VERSION = v4
+VERSION = 5
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-12-09 15:56 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-12-09 15:56 UTC (permalink / raw
To: gentoo-commits
commit: fed03218b3aa69b36a9c92a2ed0329ffc3aea1ef
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 9 15:39:47 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Dec 9 15:39:47 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=fed03218
Release udev-gentoo-scripts 6
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index d824cde..e78625c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-gentoo-scripts
-VERSION = 5
+VERSION = 6
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2011-12-22 21:50 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2011-12-22 21:50 UTC (permalink / raw
To: gentoo-commits
commit: e283a82a64b62dd721e4b95c5f46360dea9a5f55
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 21:45:49 2011 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 21:45:49 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=e283a82a
release udev-gentoo-scripts 7
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index e78625c..26c5422 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-gentoo-scripts
-VERSION = 6
+VERSION = 7
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-01-12 17:01 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-01-12 17:01 UTC (permalink / raw
To: gentoo-commits
commit: ae5bf1f831d2640c66d00da41b4bbf0b7c6a643a
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 12 16:58:57 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Jan 12 16:59:02 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=ae5bf1f8
Rename to gentoo-init-scripts
I am renaming this for consistency; there is a misql-init-scripts in the
tree, so we should follow that lead with our udev init scripts.
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 26c5422..aa70dd4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-PACKAGE = udev-gentoo-scripts
+PACKAGE = udev-init-scripts
VERSION = 7
DISTNAME = $(PACKAGE)-$(VERSION)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-01-12 17:02 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-01-12 17:02 UTC (permalink / raw
To: gentoo-commits
commit: d10de4f965bafc98f3de67efc94718506be2e014
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 12 17:01:17 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Jan 12 17:01:17 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=d10de4f9
release udev-init-scripts 8
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index aa70dd4..2c53d4b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 7
+VERSION = 8
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-03-19 14:29 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-03-19 14:29 UTC (permalink / raw
To: gentoo-commits
commit: 16cf33d78214bafa7cb6327c5ae53f04b2284ef0
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 19 14:26:08 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Mar 19 14:26:08 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=16cf33d7
release udev-init-scripts 9
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 2c53d4b..8659285 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 8
+VERSION = 9
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-03-19 20:40 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-03-19 20:40 UTC (permalink / raw
To: gentoo-commits
commit: c4b67c2a6a59b837d93d2327e47f052552d081ee
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 19 20:39:38 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Mar 19 20:39:38 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=c4b67c2a
release udev-init-scripts 10
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 4ebb35a..35a4372 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 9
+VERSION = 10
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-05-03 18:24 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-05-03 18:24 UTC (permalink / raw
To: gentoo-commits
commit: afcdd655db5a39faff0cb27db80f81303490b46a
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu May 3 18:23:50 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu May 3 18:23:50 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=afcdd655
Release udev-init-scripts 11
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 6a67c94..2844d4a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 10
+VERSION = 11
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-07-04 18:19 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-07-04 18:19 UTC (permalink / raw
To: gentoo-commits
commit: aa9bba23abe7dd3b3212a0f9b5b42d88e664c38d
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 4 18:19:18 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Jul 4 18:19:18 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=aa9bba23
release udev-init-scripts-12
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index b4fbb67..43a7a5f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 11
+VERSION = 12
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-07-29 22:21 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-07-29 22:21 UTC (permalink / raw
To: gentoo-commits
commit: 7a901363d5d5afdfd804c80e7ea0561bc0e95179
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 29 22:20:57 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Jul 29 22:20:57 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=7a901363
release udev-init-scripts-13
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 43a7a5f..ba86802 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 12
+VERSION = 13
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-07-31 18:19 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-07-31 18:19 UTC (permalink / raw
To: gentoo-commits
commit: 3d0d5ba3a114abdabb8c5122052e456f1bd08c42
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 31 18:18:57 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Jul 31 18:18:57 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=3d0d5ba3
install rules and helpers in /usr/lib/udev
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index ba86802..47a5d74 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ PACKAGE = udev-init-scripts
VERSION = 13
DISTNAME = $(PACKAGE)-$(VERSION)
-LIBUDEV ?= /lib/udev
+LIBUDEV ?= /usr/lib/udev
RULESDIR ?= $(LIBUDEV)/rules.d
SYSCONFDIR ?= /etc
CONFD ?= $(SYSCONFDIR)/conf.d
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-08-01 16:28 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-08-01 16:28 UTC (permalink / raw
To: gentoo-commits
commit: d390b8272fbb4338495d56277598866d480724b5
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 1 16:26:45 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Aug 1 16:26:45 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=d390b827
release udev-init-scripts-14
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 47a5d74..3c531c9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 13
+VERSION = 14
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /usr/lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-08-07 17:29 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-08-07 17:29 UTC (permalink / raw
To: gentoo-commits
commit: 1044e681eb5d27738ef6b298df6736989ee297ec
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 7 17:28:09 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Aug 7 17:28:09 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=1044e681
clean up makefile
---
Makefile | 17 ++++++++---------
1 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/Makefile b/Makefile
index 4922ac7..152173c 100644
--- a/Makefile
+++ b/Makefile
@@ -12,17 +12,16 @@ HELPERS = \
helpers/net.sh
all:
- @echo "Run make install DESTDIR="
install:
- @install -d $(DESTDIR)$(LIBUDEV)
- @install -m 0755 $(HELPERS) $(DESTDIR)$(LIBUDEV)
- @install -d $(DESTDIR)$(RULESDIR)
- @install -m 0644 rules.d/??-*.rules $(DESTDIR)$(RULESDIR)
- @install -d $(DESTDIR)$(CONFD)
- @install -m 0644 conf.d/* $(DESTDIR)$(CONFD)
- @install -d $(DESTDIR)$(INITD)
- @install -m 0755 init.d/* $(DESTDIR)$(INITD)
+ install -d $(DESTDIR)$(LIBUDEV)
+ install -m 0755 $(HELPERS) $(DESTDIR)$(LIBUDEV)
+ install -d $(DESTDIR)$(RULESDIR)
+ install -m 0644 rules.d/??-*.rules $(DESTDIR)$(RULESDIR)
+ install -d $(DESTDIR)$(CONFD)
+ install -m 0644 conf.d/* $(DESTDIR)$(CONFD)
+ install -d $(DESTDIR)$(INITD)
+ install -m 0755 init.d/* $(DESTDIR)$(INITD)
check-git-repository:
git diff --quiet || { echo 'STOP, you have uncommitted changes in the working directory' ; false ; }
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-08-07 17:39 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-08-07 17:39 UTC (permalink / raw
To: gentoo-commits
commit: 18877aaca62d0036a037b1467819b92a0836d154
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 7 17:38:43 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Aug 7 17:38:43 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=18877aac
release udev-init-scripts-15
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 152173c..b76a11c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 14
+VERSION = 15
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-08-08 21:52 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-08-08 21:52 UTC (permalink / raw
To: gentoo-commits
commit: 89e3ff169ff019d06f59ff7917aea7b2e3c4bc53
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 8 21:52:29 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Aug 8 21:52:29 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=89e3ff16
release udev-init-scripts-16
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 0be0390..0a0f647 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 15
+VERSION = 16
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /usr/lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-10-19 17:15 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-10-19 17:15 UTC (permalink / raw
To: gentoo-commits
commit: a9ca2e2a790670b97a4e7ea834a8197788a2efbb
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 19 17:14:08 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Oct 19 17:14:08 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=a9ca2e2a
Release udev-init-scripts-17
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 0a0f647..b964f90 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 16
+VERSION = 17
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /usr/lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2012-11-24 4:44 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2012-11-24 4:44 UTC (permalink / raw
To: gentoo-commits
commit: fa2766d16887134accdd177aeea2c0cac2c8f2a3
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Sat Nov 24 04:26:31 2012 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sat Nov 24 04:26:31 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=fa2766d1
Start work on version 18
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index b964f90..11a433e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 17
+VERSION = 18
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /usr/lib/udev
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-01-09 0:53 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-01-09 0:53 UTC (permalink / raw
To: gentoo-commits
commit: bbfc1fd62e16b7d6971712109cf5abe9665ca9fd
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 9 00:53:12 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Jan 9 00:53:12 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=bbfc1fd6
build: use pkg-config
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 11a433e..92b9849 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ PACKAGE = udev-init-scripts
VERSION = 18
DISTNAME = $(PACKAGE)-$(VERSION)
-LIBUDEV ?= /usr/lib/udev
+LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
RULESDIR ?= $(LIBUDEV)/rules.d
SYSCONFDIR ?= /etc
CONFD ?= $(SYSCONFDIR)/conf.d
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-01-09 5:28 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-01-09 5:28 UTC (permalink / raw
To: gentoo-commits
commit: afc44dc25d8cb9e3dd43e0429eb46c56ac519759
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 9 05:27:12 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Jan 9 05:27:12 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=afc44dc2
increment version to 19
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 92b9849..f29ec79 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 18
+VERSION = 19
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-01-21 16:45 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-01-21 16:45 UTC (permalink / raw
To: gentoo-commits
commit: fb93f5b4a764b9cd372bdb0cf2ca21ce9ad0884f
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 21 15:39:35 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Jan 21 15:39:35 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=fb93f5b4
increment version
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index f29ec79..0543ef7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 19
+VERSION = 20
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-01-21 19:29 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-01-21 19:29 UTC (permalink / raw
To: gentoo-commits
commit: 6a10b73a93c0e4fc39725675b712783e1cc77f8b
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 21 19:27:35 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Jan 21 19:27:35 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=6a10b73a
increment version
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 0543ef7..a1c37cf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 20
+VERSION = 21
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-01-27 18:56 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-01-27 18:56 UTC (permalink / raw
To: gentoo-commits
commit: ad1872d1583f9ef0d608322d60af053f9b759d98
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 27 18:27:00 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Jan 27 18:28:55 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=ad1872d1
increment version
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index a1c37cf..17d82c8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 21
+VERSION = 22
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-02-04 21:43 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-02-04 21:43 UTC (permalink / raw
To: gentoo-commits
commit: 8449b2c141efd76153280652f48328fcedc6cf11
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 4 21:42:46 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Feb 4 21:42:46 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=8449b2c1
increment version
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 17d82c8..2d1de9d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 22
+VERSION = 23
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-02-28 0:48 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-02-28 0:48 UTC (permalink / raw
To: gentoo-commits
commit: 4eb2eea29b55ed1181bae307e0e4c3510f1e1322
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 28 00:47:45 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Feb 28 00:47:45 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=4eb2eea2
increment version
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 2d1de9d..b632151 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 23
+VERSION = 24
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-03-19 5:48 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-03-19 5:48 UTC (permalink / raw
To: gentoo-commits
commit: 3d58f19be6652f976862330adf0bcfff62e4edf3
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 19 05:47:36 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Mar 19 05:47:36 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=3d58f19b
increment version
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index b632151..67d40e7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 24
+VERSION = 25
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-04-03 15:08 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-04-03 15:08 UTC (permalink / raw
To: gentoo-commits
commit: 4b026599232a47de791f190c1333582d8a5a835a
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 3 15:05:16 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Apr 3 15:05:16 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=4b026599
increment version
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 7d146df..14dbc60 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 25
+VERSION = 26
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2013-12-31 5:28 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2013-12-31 5:28 UTC (permalink / raw
To: gentoo-commits
commit: 1af17955b52f07bb35d935fe13b7d8436378ede2
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Tue Dec 31 04:11:40 2013 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Dec 31 04:11:40 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=1af17955
start work on version 27
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 14dbc60..d631832 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 26
+VERSION = 27
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2014-03-05 20:36 Samuli Suominen
0 siblings, 0 replies; 46+ messages in thread
From: Samuli Suominen @ 2014-03-05 20:36 UTC (permalink / raw
To: gentoo-commits
commit: 838588be51234a6fa2553ec1887fb052963fc3ab
Author: Samuli Suominen <ssuominen <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 5 20:33:12 2014 +0000
Commit: Samuli Suominen <ssuominen <AT> gentoo <DOT> org>
CommitDate: Wed Mar 5 20:33:12 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=838588be
These files are now part of netifrc since version 0.2.1, see Gentoo bug 487922
---
Makefile | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/Makefile b/Makefile
index b1739ed..49d1924 100644
--- a/Makefile
+++ b/Makefile
@@ -2,22 +2,13 @@ PACKAGE = udev-init-scripts
VERSION = 27
DISTNAME = $(PACKAGE)-$(VERSION)
-LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
-RULESDIR ?= $(LIBUDEV)/rules.d
SYSCONFDIR ?= /etc
CONFD ?= $(SYSCONFDIR)/conf.d
INITD ?= $(SYSCONFDIR)/init.d
-HELPERS = \
- helpers/net.sh
-
all:
install:
- install -d $(DESTDIR)$(LIBUDEV)
- install -m 0755 $(HELPERS) $(DESTDIR)$(LIBUDEV)
- install -d $(DESTDIR)$(RULESDIR)
- install -m 0644 rules.d/??-*.rules $(DESTDIR)$(RULESDIR)
install -d $(DESTDIR)$(CONFD)
install -m 0644 conf.d/* $(DESTDIR)$(CONFD)
install -d $(DESTDIR)$(INITD)
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2014-08-29 9:02 Samuli Suominen
0 siblings, 0 replies; 46+ messages in thread
From: Samuli Suominen @ 2014-08-29 9:02 UTC (permalink / raw
To: gentoo-commits
commit: 7ad6491d9dbbbcff60e553a55594f1177da6f7cf
Author: Samuli Suominen <ssuominen <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 29 08:59:18 2014 +0000
Commit: Samuli Suominen <ssuominen <AT> gentoo <DOT> org>
CommitDate: Fri Aug 29 08:59:18 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=7ad6491d
Remove useless README file with outdated commit. Add up-to-date AUTHORS file instead.
---
AUTHORS | 8 ++++++++
README | 4 ----
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..93d7583
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,8 @@
+Current maintainers:
+
+William Hubbs <williamh@gentoo.org>
+Samuli Suominen <ssuominen@gentoo.org>
+
+Previous maintainers:
+
+Matthias Schwarzott <zzam@gentoo.org>
diff --git a/README b/README
deleted file mode 100644
index 7345256..0000000
--- a/README
+++ /dev/null
@@ -1,4 +0,0 @@
-Helper files for gentoo udev ebuild.
-
-Author: Matthias Schwarzott <zzam@gentoo.org>
-
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2014-11-03 20:38 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2014-11-03 20:38 UTC (permalink / raw
To: gentoo-commits
commit: 3a1fea130b7238c073fa7fc0d94f25896f0be2d8
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Mon Nov 3 18:52:47 2014 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Nov 3 20:33:11 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=3a1fea13
start work on version 28
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 49d1924..9f88d4d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = udev-init-scripts
-VERSION = 27
+VERSION = 28
DISTNAME = $(PACKAGE)-$(VERSION)
SYSCONFDIR ?= /etc
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2015-05-02 21:44 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2015-05-02 21:44 UTC (permalink / raw
To: gentoo-commits
commit: 4bd9670903829f38901356eae33c8ade04d32ed2
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Sat May 2 20:58:23 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sat May 2 20:58:23 2015 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=4bd96709
Convert dist target to git built-in tarball handling
The "git archive" command can create *.gz tarballs without piping
through external utilities. The *.gz file is about the same size as a
*.bz2 file, so using *.gz in this case doesn't change the size of the
tarball significantly.
Makefile | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index 9f88d4d..c0f63a1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-PACKAGE = udev-init-scripts
VERSION = 28
-DISTNAME = $(PACKAGE)-$(VERSION)
+PACKAGE = udev-init-scripts
+TARBALL = $(PACKAGE)-$(VERSION).tar.gz
SYSCONFDIR ?= /etc
CONFD ?= $(SYSCONFDIR)/conf.d
@@ -19,8 +19,7 @@ check-git-repository:
git diff --cached --quiet || { echo 'STOP, you have uncommitted changes in the index' ; false ; }
dist:
- git archive --format=tar --prefix=$(DISTNAME)/ $(VERSION) | \
- bzip2 > $(DISTNAME).tar.bz2
+ git archive --prefix=$(PACKAGE)-$(VERSION)/ $(VERSION) -o $(TARBALL)
snapshot: check-git-repository
git archive --format=tar --prefix=$(PACKAGE)/ HEAD | \
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2015-06-10 21:18 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2015-06-10 21:18 UTC (permalink / raw
To: gentoo-commits
commit: b075fa325f4b86a336c106a51bf12d1e56d1321f
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Wed Jun 10 21:14:49 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Jun 10 21:14:49 2015 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=b075fa32
start work on version 29
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index c0f63a1..ea8efbf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 28
+VERSION = 29
PACKAGE = udev-init-scripts
TARBALL = $(PACKAGE)-$(VERSION).tar.gz
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2015-06-14 15:43 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2015-06-14 15:43 UTC (permalink / raw
To: gentoo-commits
commit: 3a08458342e9a7cb91a12bd61d1996bc292e30b2
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Sun Jun 14 02:44:44 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Jun 14 02:44:44 2015 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=3a084583
start work on version 30
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index ea8efbf..3b60345 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 29
+VERSION = 30
PACKAGE = udev-init-scripts
TARBALL = $(PACKAGE)-$(VERSION).tar.gz
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2015-06-17 21:42 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2015-06-17 21:42 UTC (permalink / raw
To: gentoo-commits
commit: 1d55f108de2ffef18f0d6fdd57c9e30720bea0f4
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Wed Jun 17 21:41:44 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Jun 17 21:41:44 2015 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=1d55f108
Start work on version 31
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 3b60345..955ead7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 30
+VERSION = 31
PACKAGE = udev-init-scripts
TARBALL = $(PACKAGE)-$(VERSION).tar.gz
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2016-11-09 20:33 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2016-11-09 20:33 UTC (permalink / raw
To: gentoo-commits
commit: f399eacd34587895dcc83b947d2ace741996e3d5
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Wed Nov 9 20:31:11 2016 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 20:31:11 2016 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=f399eacd
version 32
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 955ead7..b100353 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 31
+VERSION = 32
PACKAGE = udev-init-scripts
TARBALL = $(PACKAGE)-$(VERSION).tar.gz
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2019-02-20 17:13 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2019-02-20 17:13 UTC (permalink / raw
To: gentoo-commits
commit: 1b6128184c2009f86ccebfa5a93f7ac4d871f471
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 20 15:01:55 2019 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Feb 20 17:06:27 2019 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=1b612818
version 33
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index b100353..b6b44ee 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 32
+VERSION = 33
PACKAGE = udev-init-scripts
TARBALL = $(PACKAGE)-$(VERSION).tar.gz
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2020-08-05 17:09 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2020-08-05 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 9909a7a77ee394c6d51a6bdde9608c1982d43f95
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 5 17:08:22 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Aug 5 17:09:23 2020 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=9909a7a7
version 34
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index b6b44ee..b734edc 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 33
+VERSION = 34
PACKAGE = udev-init-scripts
TARBALL = $(PACKAGE)-$(VERSION).tar.gz
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] proj/udev-gentoo-scripts:master commit in: /
@ 2021-08-29 18:43 William Hubbs
0 siblings, 0 replies; 46+ messages in thread
From: William Hubbs @ 2021-08-29 18:43 UTC (permalink / raw
To: gentoo-commits
commit: 0262986f5d18b53f1b1bb2de8183678e7df0a68c
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 29 18:39:59 2021 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Aug 29 18:39:59 2021 +0000
URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=0262986f
version 35
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index b734edc..3f9a013 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 34
+VERSION = 35
PACKAGE = udev-init-scripts
TARBALL = $(PACKAGE)-$(VERSION).tar.gz
^ permalink raw reply related [flat|nested] 46+ messages in thread
end of thread, other threads:[~2021-08-29 18:43 UTC | newest]
Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-15 10:21 [gentoo-commits] proj/udev-gentoo-scripts:master commit in: / Matthias Schwarzott
-- strict thread matches above, loose matches on Subject: below --
2021-08-29 18:43 William Hubbs
2020-08-05 17:09 William Hubbs
2019-02-20 17:13 William Hubbs
2016-11-09 20:33 William Hubbs
2015-06-17 21:42 William Hubbs
2015-06-14 15:43 William Hubbs
2015-06-10 21:18 William Hubbs
2015-05-02 21:44 William Hubbs
2014-11-03 20:38 William Hubbs
2014-08-29 9:02 Samuli Suominen
2014-03-05 20:36 Samuli Suominen
2013-12-31 5:28 William Hubbs
2013-04-03 15:08 William Hubbs
2013-03-19 5:48 William Hubbs
2013-02-28 0:48 William Hubbs
2013-02-04 21:43 William Hubbs
2013-01-27 18:56 William Hubbs
2013-01-21 19:29 William Hubbs
2013-01-21 16:45 William Hubbs
2013-01-09 5:28 William Hubbs
2013-01-09 0:53 William Hubbs
2012-11-24 4:44 William Hubbs
2012-10-19 17:15 William Hubbs
2012-08-08 21:52 William Hubbs
2012-08-07 17:39 William Hubbs
2012-08-07 17:29 William Hubbs
2012-08-01 16:28 William Hubbs
2012-07-31 18:19 William Hubbs
2012-07-29 22:21 William Hubbs
2012-07-04 18:19 William Hubbs
2012-05-03 18:24 William Hubbs
2012-03-19 20:40 William Hubbs
2012-03-19 14:29 William Hubbs
2012-01-12 17:02 William Hubbs
2012-01-12 17:01 William Hubbs
2011-12-22 21:50 William Hubbs
2011-12-09 15:56 William Hubbs
2011-11-02 18:15 William Hubbs
2011-10-30 23:57 William Hubbs
2011-09-09 17:07 William Hubbs
2011-09-09 17:04 William Hubbs
2011-09-06 16:27 William Hubbs
2011-07-12 16:05 William Hubbs
2011-07-08 15:34 William Hubbs
2011-06-30 19:56 Matthias Schwarzott
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox