summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LICENSE10
-rw-r--r--Makefile12
-rw-r--r--src/rhlibrary/main.go (renamed from src/rhrdlibrary/main.go)16
-rw-r--r--src/rhlibrary/player.go (renamed from src/rhrdlibrary/player.go)10
4 files changed, 24 insertions, 24 deletions
diff --git a/LICENSE b/LICENSE
index 783c6a6..2ca30f4 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,25 +1,25 @@
/*
- * rhrdlibrary
+ * rhlibrary
*
* The Radio Helsinki Rivendell Library
*
*
* Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
*
- * This file is part of rhrdlibrary.
+ * This file is part of rhlibrary.
*
- * rhrdlibrary is free software: you can redistribute it and/or modify
+ * rhlibrary 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
* any later version.
*
- * rhrdlibrary is distributed in the hope that it will be useful,
+ * rhlibrary 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 rhrdlibrary. If not, see <http://www.gnu.org/licenses/>.
+ * along with rhlibrary. If not, see <http://www.gnu.org/licenses/>.
*/
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
diff --git a/Makefile b/Makefile
index 33101d6..8e4d72e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,31 +1,31 @@
##
-## rhrdlibrary
+## rhlibrary
##
## The Radio Helsinki Rivendell Import Daemon
##
##
## Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
##
-## This file is part of rhrdlibrary.
+## This file is part of rhlibrary.
##
-## rhrdlibrary is free software: you can redistribute it and/or modify
+## rhlibrary 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
## any later version.
##
-## rhrdlibrary is distributed in the hope that it will be useful,
+## rhlibrary 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 rhrdlibrary. If not, see <http://www.gnu.org/licenses/>.
+## along with rhlibrary. If not, see <http://www.gnu.org/licenses/>.
##
curdir:= $(shell pwd)
GOCMD := GOPATH=$(curdir) go
-EXECUTEABLE := rhrdlibrary
+EXECUTEABLE := rhlibrary
LIBS := "code.helsinki.at/rhrd-go/rddb" \
"github.com/ziutek/glib" \
diff --git a/src/rhrdlibrary/main.go b/src/rhlibrary/main.go
index 4209b8a..85e5b8a 100644
--- a/src/rhrdlibrary/main.go
+++ b/src/rhlibrary/main.go
@@ -1,25 +1,25 @@
//
-// rhrdlibrary
+// rhlibrary
//
// The Radio Helsinki Rivendell Library
//
//
// Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
//
-// This file is part of rhrdlibrary.
+// This file is part of rhlibrary.
//
-// rhrdlibrary is free software: you can redistribute it and/or modify
+// rhlibrary 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
// any later version.
//
-// rhrdlibrary is distributed in the hope that it will be useful,
+// rhlibrary 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 rhrdlibrary. If not, see <http://www.gnu.org/licenses/>.
+// along with rhlibrary. If not, see <http://www.gnu.org/licenses/>.
//
package main
@@ -36,8 +36,8 @@ import (
)
var (
- rhl = log.New(os.Stderr, "[rhrdlibrary]\t", log.LstdFlags)
- rhdl = log.New(ioutil.Discard, "[rhrdlibrary-dbg]\t", log.LstdFlags)
+ rhl = log.New(os.Stderr, "[rhlibrary]\t", log.LstdFlags)
+ rhdl = log.New(ioutil.Discard, "[rhlibrary-dbg]\t", log.LstdFlags)
)
func init() {
@@ -83,7 +83,7 @@ func main() {
}
defer db.Cleanup()
- player, _ := NewPlayer("/home/equinox/helsinki/rivenhell/contrib/rhrdlibrary/snd")
+ player, _ := NewPlayer("/home/equinox/helsinki/rivenhell/contrib/rhlibrary/snd")
var wg sync.WaitGroup
diff --git a/src/rhrdlibrary/player.go b/src/rhlibrary/player.go
index 3463190..3e4211c 100644
--- a/src/rhrdlibrary/player.go
+++ b/src/rhlibrary/player.go
@@ -1,25 +1,25 @@
//
-// rhrdlibrary
+// rhlibrary
//
// The Radio Helsinki Rivendell Library
//
//
// Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
//
-// This file is part of rhrdlibrary.
+// This file is part of rhlibrary.
//
-// rhrdlibrary is free software: you can redistribute it and/or modify
+// rhlibrary 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
// any later version.
//
-// rhrdlibrary is distributed in the hope that it will be useful,
+// rhlibrary 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 rhrdlibrary. If not, see <http://www.gnu.org/licenses/>.
+// along with rhlibrary. If not, see <http://www.gnu.org/licenses/>.
//
package main