mirror of
https://github.com/gophernicus/gophernicus.git
synced 2025-02-02 15:08:00 -05:00
Changed copyright years & corrected author email
This commit is contained in:
parent
10383d3747
commit
ff90756b80
4
INSTALL
4
INSTALL
@ -105,8 +105,8 @@ If you need to port Gophernicus to a new platform, please take
|
||||
a look at gophernicus.h which has a bunch of HAVE_* #defines.
|
||||
Fiddling with those usually makes it possible to compile a working
|
||||
server. If you succeed in compiling Gophernicus to a new
|
||||
platform please send the patches to kim@holviala.com so I can
|
||||
include them into the next release.
|
||||
platform please send the patches to me so I can include them into
|
||||
the next release.
|
||||
|
||||
Tested (and semi-supported) platforms include:
|
||||
|
||||
|
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
||||
Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
10
Makefile
10
Makefile
@ -12,6 +12,7 @@ VERSION = `./version`
|
||||
CODENAME = Outta Prison
|
||||
AUTHOR = Kim Holviala
|
||||
EMAIL = kimholviala@fastmail.com
|
||||
STARTED = 2009
|
||||
|
||||
SOURCES = $(NAME).c file.c menu.c string.c platform.c session.c options.c
|
||||
HEADERS = functions.h files.h
|
||||
@ -308,3 +309,12 @@ defines: functions.h files.h
|
||||
loc:
|
||||
@wc -l *.c
|
||||
|
||||
|
||||
#
|
||||
# Fix copyright notes
|
||||
#
|
||||
copyright:
|
||||
sed -i .stupid -e "s/Copyright .c. 2.*$$/Copyright (c) $(STARTED)-`date +%Y` $(AUTHOR) <$(EMAIL)>/" *.c *.h LICENSE README debian/copyright
|
||||
sed -i .stupid -e "s/Maintainer: .*$$/Maintainer: $(AUTHOR) <$(EMAIL)>/" debian/control
|
||||
rm -f *.stupid debian/*.stupid
|
||||
|
||||
|
2
README
2
README
@ -1,4 +1,4 @@
|
||||
Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
|
||||
Gophernicus is a modern full-featured (and hopefully) secure gopher
|
||||
daemon. It is licensed under the BSD license.
|
||||
|
@ -74,7 +74,7 @@ Examples of valid resource lines:
|
||||
1Absolute internal link /subdir
|
||||
1External link / gopher.floodgap.com 70
|
||||
1External relative link (which shouldn't work) subdir/ gopher.domain.dom 70
|
||||
0Finger-to-gopher link kim holviala.com 79
|
||||
0Finger-to-gopher link user example.test 79
|
||||
hLink to a website URL:http://www.google.com/
|
||||
|
||||
hLink to a local html page /path/to/file.html
|
||||
@ -82,7 +82,7 @@ hLink to a local html page /path/to/file.html
|
||||
9Link to a binary file /path/to/binary
|
||||
|
||||
7Search engine query /query
|
||||
8Telnet session kim holviala.com 79
|
||||
8Telnet session user example.test 79
|
||||
|
||||
# Hide a few files from the menu listing generated by *
|
||||
-hiddenfile.txt
|
||||
|
2
bin2c.c
2
bin2c.c
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* bin2c - Copyright (c) 2010 Kim Holviala <kim@holviala.com>
|
||||
* bin2c - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -1,7 +1,7 @@
|
||||
Source: gophernicus
|
||||
Section: net
|
||||
Priority: extra
|
||||
Maintainer: Kim Holviala <kim@holviala.com>
|
||||
Maintainer: Kim Holviala <kimholviala@fastmail.com>
|
||||
Build-Depends: debhelper (>= 5), libwrap0-dev
|
||||
Standards-Version: 3.7.3
|
||||
Homepage: gopher://gophernicus.org/1/software/gophernicus/server/
|
||||
|
2
debian/copyright
vendored
2
debian/copyright
vendored
@ -1,4 +1,4 @@
|
||||
Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
2
file.c
2
file.c
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
2
menu.c
2
menu.c
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
|
||||
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
Loading…
x
Reference in New Issue
Block a user