Re: [DNG] New mirror of Devuan 100% free

2015-09-19 Thread aitor_czr
I see there are some packages with a *.git file, instead of 
*debian.tar.gz and *orig.tar.gz


http://packages.devuan.org/devuan/pool/main/d/devuan-indices/

This is why my script sometimes doesn't work.

Aitor.

On 18/09/15 17:51, aitor_czr wrote:
I have a problem with the repository: i can't add some sources of 
devuan. For example, gdisk ,devuan-indices, tasksel, etc...:


http://188.165.204.61/repo/pool/main/g/gdisk/

http://188.165.204.61/repo/pool/main/d/devuan-indices/

http://188.165.204.61/repo/pool/main/t/tasksel/

Running the script i get:

>>  No section and no priority for 'tasksel', skipping.
>>  There have been errors.

Any idea?

Aitor.


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] New mirror of Devuan 100% free

2015-09-19 Thread aitor_czr

But i have a solution for that.

On 19/09/15 10:38, aitor_czr wrote:
I see there are some packages with a *.git file, instead of 
*debian.tar.gz and *orig.tar.gz


http://packages.devuan.org/devuan/pool/main/d/devuan-indices/

This is why my script sometimes doesn't work.

Aitor.

On 18/09/15 17:51, aitor_czr wrote:
I have a problem with the repository: i can't add some sources of 
devuan. For example, gdisk ,devuan-indices, tasksel, etc...:


http://188.165.204.61/repo/pool/main/g/gdisk/

http://188.165.204.61/repo/pool/main/d/devuan-indices/

http://188.165.204.61/repo/pool/main/t/tasksel/

Running the script i get:

>>  No section and no priority for 'tasksel', skipping.
>>  There have been errors.

Any idea?

Aitor.


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Messages from the future (Was: Re: [DN Offlist G], netman GIT project)

2015-09-19 Thread aitor_czr
˙uıɐƃɐ sʞuɐɥʇ ˙˙˙ǝuıɟ sʞɹoʍ ʇı puɐ 'qɐɹʇuoɔ oʇ pǝppɐ ʇdıɹɔs ʎɯ ƃuıʇsǝʇ 
uǝǝq ǝʌ,ı


On 18/09/15 12:06, aitor_czr wrote:
I noted that my clock changes automatically and periodically, i don't 
know why. I will take care...


I added a script to crontab, and run:

# chkconfig ntp on

so that does not happen again, to find out why.

On 18/09/15 11:54, aitor_czr wrote:

Hi Peter,

# ntpdate -u hora.roa.es

I returned from the future. Sorry again.

Aitor.

On 17/09/15 19:52, Peter Olson  wrote:

Your last few messages have had Date: lines far in the future.

Check your clock!

Peter Olson


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] [DN Offlist G] netman GIT project

2015-09-19 Thread Edward Bartolo
Hi all,

This morning I reviewed the C code for the backend to gracefully
account for error situations. At the moment I am using the latest
edited version to test whether it behaves so that I may git push the
latest changes.

As I am approaching the completion of this present and first project
for Devuan, I am thinking of what I can do next to help the Devuan
project develop. I have a small project that is already finished that
I wish to upload to Devuan. This is a simple frontend for dict, the
online dictionary but this is only the work of about 30 minutes of
coding. I wish to give more than that.


Edward

On 17/09/2015, Edward Bartolo  wrote:
> Hi Aitor,
>
> Yes.
>
> Edward.
>
> On 25/02/2032, aitor_czr  wrote:
>> So, the content of "/etc/netman.conf" would be:
>>
>> backend=/usr/lib/netman/bin/backend
>>
>> Isn't it?
>>
>> Aitor.
>>
>> On 17/09/15 16:28, Edward Bartolo wrote:
>>> Hi Aitor,
>>>
>>> Agreed. Shall I also remove the ability to have the backend placement
>>> set in an /etc/netman.conf file?
>>>
>>> By itself the frontend is unable to give root privileges to whatever
>>> is pointed to in that file. So, I see no problem in having an
>>> /etc/netman.conf file. But I stand to being corrected if this is not
>>> the case.
>>>
>>> Edward
>>
>>
>
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


[DNG] Ho do I remove added files using git?

2015-09-19 Thread Edward Bartolo
Hi,

I added two useless files to netman that I want to remove: these are
netman.lpi and netman.lps.

What should I do? git is rejecting my changes like this:
$ git pull
error: Your local changes to the following files would be overwritten by merge:
netman.lpi
netman.lps
Please, commit your changes or stash them before you can merge.
Aborting

I want to also delete my latest two git commits to the repository if
that is possible.

Edward
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Ho do I remove added files using git?

2015-09-19 Thread ibid . ag
On Sat, Sep 19, 2015 at 05:53:59PM +0200, Edward Bartolo wrote:
> Hi,
> 
> I added two useless files to netman that I want to remove: these are
> netman.lpi and netman.lps.
> 
> What should I do? git is rejecting my changes like this:
> $ git pull
> error: Your local changes to the following files would be overwritten by 
> merge:
>   netman.lpi
>   netman.lps
> Please, commit your changes or stash them before you can merge.
> Aborting

Assuming that you want to completely obliterate them, *I* would do this:
$ git diff -- netman.lpi netman.lps | patch -p1 -R
$ git pull
$ git rm netman.lpi netman.lps
$ git commit

The first step can also be done with
$ git reset --hard  -- $FILES
or
$ git checkout $COMMIT -- $FILES
> 
> I want to also delete my latest two git commits to the repository if
> that is possible.

If you haven't pushed them, you can use git rebase --interactive:
$ git rebase --interactive HEAD^^^
and delete the lines referring to them.

NOTE that they'll be completely gone if you do this.
If you don't want to do that, or you have pushed them, use "git revert".

Any use of git rebase --interactive should be before you delete the
files.

HTH,
Isaac Dunham
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Ho do I remove added files using git?

2015-09-19 Thread Edward Bartolo
Hi all,

I messed up git. Please somebody intervene to help.

This is the 'git status' output and it is ugly!
--


$ git status
On branch master
Your branch and 'origin/master' have diverged,
and have 2 and 3 different commits each, respectively.
  (use "git pull" to merge the remote branch into yours)
You have unmerged paths.
  (fix conflicts and run "git commit")

Changes to be committed:

new file:   backend_src/src/automated_scanner.13.09.2015.c
new file:   backend_src/src/automated_scanner.gslist.c
new file:   backend_src/src/backend
modified:   backend_src/src/caller.c
new file:   backend_src/src/core_functions.backup.c

Unmerged paths:
  (use "git add ..." to mark resolution)

both modified:   backend_src/src/automated_scanner.c

Untracked files:
  (use "git add ..." to include in what will be committed)

backend
backup/
lib/
netman
packagers.readme
ppas.sh
removed_but_working_functions.pas
y



I want to get rid of those 'new' files and the 'modified' file.


Thanks

On 19/09/2015, Edward Bartolo  wrote:
> Hi,
>
> I added two useless files to netman that I want to remove: these are
> netman.lpi and netman.lps.
>
> What should I do? git is rejecting my changes like this:
> $ git pull
> error: Your local changes to the following files would be overwritten by
> merge:
>   netman.lpi
>   netman.lps
> Please, commit your changes or stash them before you can merge.
> Aborting
>
> I want to also delete my latest two git commits to the repository if
> that is possible.
>
> Edward
>
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Ho do I remove added files using git?

2015-09-19 Thread ibid . ag
On Sat, Sep 19, 2015 at 07:17:23PM +0200, Edward Bartolo wrote:
> Hi all,
> 
> I messed up git. Please somebody intervene to help.
> 
> This is the 'git status' output and it is ugly!
> --
> 
> 
> $ git status
> On branch master
> Your branch and 'origin/master' have diverged,
> and have 2 and 3 different commits each, respectively.
>   (use "git pull" to merge the remote branch into yours)
> You have unmerged paths.
>   (fix conflicts and run "git commit")
> 
> Changes to be committed:
> 
>   new file:   backend_src/src/automated_scanner.13.09.2015.c
>   new file:   backend_src/src/automated_scanner.gslist.c
>   new file:   backend_src/src/backend
>   modified:   backend_src/src/caller.c
>   new file:   backend_src/src/core_functions.backup.c
> 
> Unmerged paths:
>   (use "git add ..." to mark resolution)
> 
>   both modified:   backend_src/src/automated_scanner.c
> 
[snip]
> I want to get rid of those 'new' files and the 'modified' file.

If you mean that you want to *delete* the "both modified" one, use
"git rm $FILE"
(you may need to add a -f).
Then run "git commit".
Then delete any remaining files that you want to remove, and run "git
commit" again.

However, the approach you usually want is to edit that file, search for
<< [commit info]
...
== [commit info]
...
>>

and choose which side of the == to keep.

Then you will run
$ git add $FILE
$ git commit


HTH,
Isaac
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] live-build

2015-09-19 Thread Ozi Traveller
Hi

I added --build-with-chroot false as suggested

But the build still fails.

Is there something else I could try?

Ozi

[2015-09-20 08:05:08] lb clean
P: Executing auto/clean script.
[2015-09-20 08:05:08] lb clean noauto
P: Cleaning chroot
[2015-09-20 08:05:09] lb config
P: Executing auto/config script.
[2015-09-20 08:05:09] lb config noauto --mode debian --build-with-chroot
false --distribution jessie --debian-installer-distribution jessie
--debian-installer live --architectures amd64 --linux-flavours amd64
--apt-recommends false --apt-secure true --apt-indices false
--apt-source-archives false --archive-areas main contrib non-free
--parent-mirror-bootstrap deb http://au.mirror.devuan.org/merged/
--parent-mirror-binary deb http://au.mirror.devuan.org/merged/
--mirror-bootstrap deb http://au.mirror.devuan.org/merged/ --mirror-binary
deb http://au.mirror.devuan.org/merged/ --iso-application DIY Linux
--iso-publisher DIY --iso-volume DIY Live --backports false --security
false --updates false --memtest none --win32-loader false --debug --verbose
--bootappend-live boot=live config components file=/preseed.cfg quiet
splash autologin nouveau.modeset=0 radeon.modeset=0
P: Updating config tree for a debian/jessie/amd64 system
P: Symlinking hooks...
[2015-09-20 08:05:09] lb build
P: Executing auto/build script.
[2015-09-20 08:05:09] lb build noauto
P: live-build 4.0.3
P: Building config tree for a debian/jessie/amd64 system
[2015-09-20 08:05:09] lb bootstrap
P: Setting up cleanup function
[2015-09-20 08:05:09] lb bootstrap_cache restore
P: Restoring bootstrap stage from cache...
[2015-09-20 08:05:09] lb bootstrap_cdebootstrap
[2015-09-20 08:05:09] lb bootstrap_debootstrap
P: Begin bootstrapping system...
P: If the following stage fails, the most likely cause of the problem is
with your mirror configuration or a caching proxy.
P: Running debootstrap (download-only)...
I: Retrieving Release
E: unknown location deb/dists/jessie/Release
P: Begin unmounting filesystems...
P: Saving caches...
chroot: failed to run command ‘/usr/bin/env’: No such file or directory


On Wed, Sep 16, 2015 at 1:25 PM, aitor_czr  wrote:

> I don't know... I will have a look at the package. Default config values
> must be changed.
>
> Aitor.
>
> El 16/09/15 a las 02:03, Ozi Traveller escribió:
>
> Will this be fixed for the beta?
>
> On Wed, Sep 16, 2015 at 8:36 AM, aitor_czr  wrote:
>
>> Add the following:
>>
>>   --build-with-chroot false
>>
>> to lb config. Then you will get the filesystem.squashfs file, but only
>> the filesystem.squashfs. I solve the rest of the puzzle *manually*.
>>
>> Aitor.
>>
>> El 15/09/15 a las 23:07, Ozi Traveller escribió:
>>
>> Hi
>>
>> I've finally got back to testing Live-Build again.
>>
>> Apart from MIRROR_BINARY, the rest is from my debian jessie lb config
>>
>> I would appreciate it if someone could please help me.
>>
>> I've missed something but what?
>>
>> I'd like to get this to work and add devuan to my distro.
>>
>> Cheers
>> Ozi
>>
>> E: unknown location deb/dists/jessie/Release
>>
>>
>>
>> _DISTRIBUTION="jessie"
>> _ARCHITECTURES="amd64"
>> _LINUX_FLAVOURS="amd64"
>> _ARCHIVE_AREAS="main contrib non-free"
>> _SOURCE="false"
>> _MIRROR_BINARY="deb http://au.mirror.devuan.org/merged/";
>>
>> lb config noauto \
>> --mode debian \
>> --distribution "${_DISTRIBUTION}" \
>> --debian-installer-distribution "${_DISTRIBUTION}" \
>> --debian-installer live \
>> --architectures "${_ARCHITECTURES}" \
>> --linux-flavours "${_LINUX_FLAVOURS}" \
>> --apt-recommends false \
>> --apt-secure true \
>> --apt-indices false \
>> --apt-source-archives false \
>> --archive-areas "${_ARCHIVE_AREAS}" \
>> --parent-mirror-bootstrap "${_MIRROR_BINARY}" \
>> --parent-mirror-binary "${_MIRROR_BINARY}" \
>> --mirror-bootstrap "${_MIRROR_BINARY}" \
>> --mirror-binary "${_MIRROR_BINARY}" \
>> --iso-application "DIY Linux" \
>> --iso-publisher "DIY" \
>> --iso-volume "DIY Live" \
>> --backports false \
>> --security false \
>> --updates false \
>> --memtest none \
>> --win32-loader false \
>> --debug \
>> --verbose \
>> --bootappend-live "boot=live config components file=/preseed.cfg quiet
>> splash autologin nouveau.modeset=0 radeon.modeset=0" \
>> "${@}"
>>
>> [2015-09-16 06:58:11] lb build noauto
>> P: live-build 4.0.3
>> P: Building config tree for a debian/jessie/amd64 system
>> [2015-09-16 06:58:11] lb bootstrap
>> P: Setting up cleanup function
>> [2015-09-16 06:58:11] lb bootstrap_cache restore
>> P: Restoring bootstrap stage from cache...
>> [2015-09-16 06:58:11] lb bootstrap_cdebootstrap
>> [2015-09-16 06:58:11] lb bootstrap_debootstrap
>> P: Begin bootstrapping system...
>> P: If the following stage fails, the most likely cause of the problem is
>> with your mirror configuration or a caching proxy.
>> P: Running debootstrap (download-only)...
>> I: Retrieving Release
>> E: unknown location deb/dists/jessie/Release
>> P: Begin unmounting filesystems...
>> P: Saving caches...
>> chroot: failed to run command ‘/usr/b